ENABLE_CHECKING refactoring: C family front ends
[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 "tm.h"
31 #include "tree.h"
32 #include "cp-tree.h"
33 #include "c-family/c-common.h"
34 #include "timevar.h"
35 #include "stringpool.h"
36 #include "varasm.h"
37 #include "attribs.h"
38 #include "stor-layout.h"
39 #include "intl.h"
40 #include "flags.h"
41 #include "c-family/c-objc.h"
42 #include "cp-objcp-common.h"
43 #include "tree-inline.h"
44 #include "decl.h"
45 #include "toplev.h"
46 #include "tree-iterator.h"
47 #include "type-utils.h"
48 #include "gimplify.h"
49
50 /* The type of functions taking a tree, and some additional data, and
51 returning an int. */
52 typedef int (*tree_fn_t) (tree, void*);
53
54 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
55 instantiations have been deferred, either because their definitions
56 were not yet available, or because we were putting off doing the work. */
57 struct GTY ((chain_next ("%h.next"))) pending_template {
58 struct pending_template *next;
59 struct tinst_level *tinst;
60 };
61
62 static GTY(()) struct pending_template *pending_templates;
63 static GTY(()) struct pending_template *last_pending_template;
64
65 int processing_template_parmlist;
66 static int template_header_count;
67
68 static GTY(()) tree saved_trees;
69 static vec<int> inline_parm_levels;
70
71 static GTY(()) struct tinst_level *current_tinst_level;
72
73 static GTY(()) tree saved_access_scope;
74
75 /* Live only within one (recursive) call to tsubst_expr. We use
76 this to pass the statement expression node from the STMT_EXPR
77 to the EXPR_STMT that is its result. */
78 static tree cur_stmt_expr;
79
80 // -------------------------------------------------------------------------- //
81 // Local Specialization Stack
82 //
83 // Implementation of the RAII helper for creating new local
84 // specializations.
85 local_specialization_stack::local_specialization_stack ()
86 : saved (local_specializations)
87 {
88 local_specializations = new hash_map<tree, tree>;
89 }
90
91 local_specialization_stack::~local_specialization_stack ()
92 {
93 delete local_specializations;
94 local_specializations = saved;
95 }
96
97 /* True if we've recursed into fn_type_unification too many times. */
98 static bool excessive_deduction_depth;
99
100 struct GTY((for_user)) spec_entry
101 {
102 tree tmpl;
103 tree args;
104 tree spec;
105 };
106
107 struct spec_hasher : ggc_ptr_hash<spec_entry>
108 {
109 static hashval_t hash (spec_entry *);
110 static bool equal (spec_entry *, spec_entry *);
111 };
112
113 static GTY (()) hash_table<spec_hasher> *decl_specializations;
114
115 static GTY (()) hash_table<spec_hasher> *type_specializations;
116
117 /* Contains canonical template parameter types. The vector is indexed by
118 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
119 TREE_LIST, whose TREE_VALUEs contain the canonical template
120 parameters of various types and levels. */
121 static GTY(()) vec<tree, va_gc> *canonical_template_parms;
122
123 #define UNIFY_ALLOW_NONE 0
124 #define UNIFY_ALLOW_MORE_CV_QUAL 1
125 #define UNIFY_ALLOW_LESS_CV_QUAL 2
126 #define UNIFY_ALLOW_DERIVED 4
127 #define UNIFY_ALLOW_INTEGER 8
128 #define UNIFY_ALLOW_OUTER_LEVEL 16
129 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
130 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
131
132 enum template_base_result {
133 tbr_incomplete_type,
134 tbr_ambiguous_baseclass,
135 tbr_success
136 };
137
138 static void push_access_scope (tree);
139 static void pop_access_scope (tree);
140 static bool resolve_overloaded_unification (tree, tree, tree, tree,
141 unification_kind_t, int,
142 bool);
143 static int try_one_overload (tree, tree, tree, tree, tree,
144 unification_kind_t, int, bool, bool);
145 static int unify (tree, tree, tree, tree, int, bool);
146 static void add_pending_template (tree);
147 static tree reopen_tinst_level (struct tinst_level *);
148 static tree tsubst_initializer_list (tree, tree);
149 static tree get_partial_spec_bindings (tree, tree, tree, tree);
150 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
151 bool, bool);
152 static tree coerce_innermost_template_parms (tree, tree, tree, tsubst_flags_t,
153 bool, bool);
154 static void tsubst_enum (tree, tree, tree);
155 static tree add_to_template_args (tree, tree);
156 static tree add_outermost_template_args (tree, tree);
157 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
158 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
159 tree);
160 static int type_unification_real (tree, tree, tree, const tree *,
161 unsigned int, int, unification_kind_t, int,
162 vec<deferred_access_check, va_gc> **,
163 bool);
164 static void note_template_header (int);
165 static tree convert_nontype_argument_function (tree, tree, tsubst_flags_t);
166 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
167 static tree convert_template_argument (tree, tree, tree,
168 tsubst_flags_t, int, tree);
169 static tree for_each_template_parm (tree, tree_fn_t, void*,
170 hash_set<tree> *, bool);
171 static tree expand_template_argument_pack (tree);
172 static tree build_template_parm_index (int, int, int, tree, tree);
173 static bool inline_needs_template_parms (tree, bool);
174 static void push_inline_template_parms_recursive (tree, int);
175 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
176 static int mark_template_parm (tree, void *);
177 static int template_parm_this_level_p (tree, void *);
178 static tree tsubst_friend_function (tree, tree);
179 static tree tsubst_friend_class (tree, tree);
180 static int can_complete_type_without_circularity (tree);
181 static tree get_bindings (tree, tree, tree, bool);
182 static int template_decl_level (tree);
183 static int check_cv_quals_for_unify (int, tree, tree);
184 static void template_parm_level_and_index (tree, int*, int*);
185 static int unify_pack_expansion (tree, tree, tree,
186 tree, unification_kind_t, bool, bool);
187 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
188 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
189 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
190 static void regenerate_decl_from_template (tree, tree);
191 static tree most_specialized_partial_spec (tree, tsubst_flags_t);
192 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
193 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
194 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
195 static bool check_specialization_scope (void);
196 static tree process_partial_specialization (tree);
197 static void set_current_access_from_decl (tree);
198 static enum template_base_result get_template_base (tree, tree, tree, tree,
199 bool , tree *);
200 static tree try_class_unification (tree, tree, tree, tree, bool);
201 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
202 tree, tree);
203 static bool template_template_parm_bindings_ok_p (tree, tree);
204 static int template_args_equal (tree, tree);
205 static void tsubst_default_arguments (tree, tsubst_flags_t);
206 static tree for_each_template_parm_r (tree *, int *, void *);
207 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
208 static void copy_default_args_to_explicit_spec (tree);
209 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
210 static bool dependent_template_arg_p (tree);
211 static bool any_template_arguments_need_structural_equality_p (tree);
212 static bool dependent_type_p_r (tree);
213 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
214 static tree tsubst_decl (tree, tree, tsubst_flags_t);
215 static void perform_typedefs_access_check (tree tmpl, tree targs);
216 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
217 location_t);
218 static tree listify (tree);
219 static tree listify_autos (tree, tree);
220 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
221 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
222 static bool complex_alias_template_p (const_tree tmpl);
223
224 /* Make the current scope suitable for access checking when we are
225 processing T. T can be FUNCTION_DECL for instantiated function
226 template, VAR_DECL for static member variable, or TYPE_DECL for
227 alias template (needed by instantiate_decl). */
228
229 static void
230 push_access_scope (tree t)
231 {
232 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
233 || TREE_CODE (t) == TYPE_DECL);
234
235 if (DECL_FRIEND_CONTEXT (t))
236 push_nested_class (DECL_FRIEND_CONTEXT (t));
237 else if (DECL_CLASS_SCOPE_P (t))
238 push_nested_class (DECL_CONTEXT (t));
239 else
240 push_to_top_level ();
241
242 if (TREE_CODE (t) == FUNCTION_DECL)
243 {
244 saved_access_scope = tree_cons
245 (NULL_TREE, current_function_decl, saved_access_scope);
246 current_function_decl = t;
247 }
248 }
249
250 /* Restore the scope set up by push_access_scope. T is the node we
251 are processing. */
252
253 static void
254 pop_access_scope (tree t)
255 {
256 if (TREE_CODE (t) == FUNCTION_DECL)
257 {
258 current_function_decl = TREE_VALUE (saved_access_scope);
259 saved_access_scope = TREE_CHAIN (saved_access_scope);
260 }
261
262 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
263 pop_nested_class ();
264 else
265 pop_from_top_level ();
266 }
267
268 /* Do any processing required when DECL (a member template
269 declaration) is finished. Returns the TEMPLATE_DECL corresponding
270 to DECL, unless it is a specialization, in which case the DECL
271 itself is returned. */
272
273 tree
274 finish_member_template_decl (tree decl)
275 {
276 if (decl == error_mark_node)
277 return error_mark_node;
278
279 gcc_assert (DECL_P (decl));
280
281 if (TREE_CODE (decl) == TYPE_DECL)
282 {
283 tree type;
284
285 type = TREE_TYPE (decl);
286 if (type == error_mark_node)
287 return error_mark_node;
288 if (MAYBE_CLASS_TYPE_P (type)
289 && CLASSTYPE_TEMPLATE_INFO (type)
290 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
291 {
292 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
293 check_member_template (tmpl);
294 return tmpl;
295 }
296 return NULL_TREE;
297 }
298 else if (TREE_CODE (decl) == FIELD_DECL)
299 error ("data member %qD cannot be a member template", decl);
300 else if (DECL_TEMPLATE_INFO (decl))
301 {
302 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
303 {
304 check_member_template (DECL_TI_TEMPLATE (decl));
305 return DECL_TI_TEMPLATE (decl);
306 }
307 else
308 return decl;
309 }
310 else
311 error ("invalid member template declaration %qD", decl);
312
313 return error_mark_node;
314 }
315
316 /* Create a template info node. */
317
318 tree
319 build_template_info (tree template_decl, tree template_args)
320 {
321 tree result = make_node (TEMPLATE_INFO);
322 TI_TEMPLATE (result) = template_decl;
323 TI_ARGS (result) = template_args;
324 return result;
325 }
326
327 /* Return the template info node corresponding to T, whatever T is. */
328
329 tree
330 get_template_info (const_tree t)
331 {
332 tree tinfo = NULL_TREE;
333
334 if (!t || t == error_mark_node)
335 return NULL;
336
337 if (TREE_CODE (t) == NAMESPACE_DECL)
338 return NULL;
339
340 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
341 tinfo = DECL_TEMPLATE_INFO (t);
342
343 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
344 t = TREE_TYPE (t);
345
346 if (OVERLOAD_TYPE_P (t))
347 tinfo = TYPE_TEMPLATE_INFO (t);
348 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
349 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
350
351 return tinfo;
352 }
353
354 /* Returns the template nesting level of the indicated class TYPE.
355
356 For example, in:
357 template <class T>
358 struct A
359 {
360 template <class U>
361 struct B {};
362 };
363
364 A<T>::B<U> has depth two, while A<T> has depth one.
365 Both A<T>::B<int> and A<int>::B<U> have depth one, if
366 they are instantiations, not specializations.
367
368 This function is guaranteed to return 0 if passed NULL_TREE so
369 that, for example, `template_class_depth (current_class_type)' is
370 always safe. */
371
372 int
373 template_class_depth (tree type)
374 {
375 int depth;
376
377 for (depth = 0;
378 type && TREE_CODE (type) != NAMESPACE_DECL;
379 type = (TREE_CODE (type) == FUNCTION_DECL)
380 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
381 {
382 tree tinfo = get_template_info (type);
383
384 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
385 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
386 ++depth;
387 }
388
389 return depth;
390 }
391
392 /* Subroutine of maybe_begin_member_template_processing.
393 Returns true if processing DECL needs us to push template parms. */
394
395 static bool
396 inline_needs_template_parms (tree decl, bool nsdmi)
397 {
398 if (!decl || (!nsdmi && ! DECL_TEMPLATE_INFO (decl)))
399 return false;
400
401 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
402 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
403 }
404
405 /* Subroutine of maybe_begin_member_template_processing.
406 Push the template parms in PARMS, starting from LEVELS steps into the
407 chain, and ending at the beginning, since template parms are listed
408 innermost first. */
409
410 static void
411 push_inline_template_parms_recursive (tree parmlist, int levels)
412 {
413 tree parms = TREE_VALUE (parmlist);
414 int i;
415
416 if (levels > 1)
417 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
418
419 ++processing_template_decl;
420 current_template_parms
421 = tree_cons (size_int (processing_template_decl),
422 parms, current_template_parms);
423 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
424
425 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
426 NULL);
427 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
428 {
429 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
430
431 if (error_operand_p (parm))
432 continue;
433
434 gcc_assert (DECL_P (parm));
435
436 switch (TREE_CODE (parm))
437 {
438 case TYPE_DECL:
439 case TEMPLATE_DECL:
440 pushdecl (parm);
441 break;
442
443 case PARM_DECL:
444 {
445 /* Make a CONST_DECL as is done in process_template_parm.
446 It is ugly that we recreate this here; the original
447 version built in process_template_parm is no longer
448 available. */
449 tree decl = build_decl (DECL_SOURCE_LOCATION (parm),
450 CONST_DECL, DECL_NAME (parm),
451 TREE_TYPE (parm));
452 DECL_ARTIFICIAL (decl) = 1;
453 TREE_CONSTANT (decl) = 1;
454 TREE_READONLY (decl) = 1;
455 DECL_INITIAL (decl) = DECL_INITIAL (parm);
456 SET_DECL_TEMPLATE_PARM_P (decl);
457 pushdecl (decl);
458 }
459 break;
460
461 default:
462 gcc_unreachable ();
463 }
464 }
465 }
466
467 /* Restore the template parameter context for a member template, a
468 friend template defined in a class definition, or a non-template
469 member of template class. */
470
471 void
472 maybe_begin_member_template_processing (tree decl)
473 {
474 tree parms;
475 int levels = 0;
476 bool nsdmi = TREE_CODE (decl) == FIELD_DECL;
477
478 if (nsdmi)
479 {
480 tree ctx = DECL_CONTEXT (decl);
481 decl = (CLASSTYPE_TEMPLATE_INFO (ctx)
482 /* Disregard full specializations (c++/60999). */
483 && uses_template_parms (ctx)
484 ? CLASSTYPE_TI_TEMPLATE (ctx) : NULL_TREE);
485 }
486
487 if (inline_needs_template_parms (decl, nsdmi))
488 {
489 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
490 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
491
492 if (DECL_TEMPLATE_SPECIALIZATION (decl))
493 {
494 --levels;
495 parms = TREE_CHAIN (parms);
496 }
497
498 push_inline_template_parms_recursive (parms, levels);
499 }
500
501 /* Remember how many levels of template parameters we pushed so that
502 we can pop them later. */
503 inline_parm_levels.safe_push (levels);
504 }
505
506 /* Undo the effects of maybe_begin_member_template_processing. */
507
508 void
509 maybe_end_member_template_processing (void)
510 {
511 int i;
512 int last;
513
514 if (inline_parm_levels.length () == 0)
515 return;
516
517 last = inline_parm_levels.pop ();
518 for (i = 0; i < last; ++i)
519 {
520 --processing_template_decl;
521 current_template_parms = TREE_CHAIN (current_template_parms);
522 poplevel (0, 0, 0);
523 }
524 }
525
526 /* Return a new template argument vector which contains all of ARGS,
527 but has as its innermost set of arguments the EXTRA_ARGS. */
528
529 static tree
530 add_to_template_args (tree args, tree extra_args)
531 {
532 tree new_args;
533 int extra_depth;
534 int i;
535 int j;
536
537 if (args == NULL_TREE || extra_args == error_mark_node)
538 return extra_args;
539
540 extra_depth = TMPL_ARGS_DEPTH (extra_args);
541 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
542
543 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
544 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
545
546 for (j = 1; j <= extra_depth; ++j, ++i)
547 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
548
549 return new_args;
550 }
551
552 /* Like add_to_template_args, but only the outermost ARGS are added to
553 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
554 (EXTRA_ARGS) levels are added. This function is used to combine
555 the template arguments from a partial instantiation with the
556 template arguments used to attain the full instantiation from the
557 partial instantiation. */
558
559 static tree
560 add_outermost_template_args (tree args, tree extra_args)
561 {
562 tree new_args;
563
564 /* If there are more levels of EXTRA_ARGS than there are ARGS,
565 something very fishy is going on. */
566 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
567
568 /* If *all* the new arguments will be the EXTRA_ARGS, just return
569 them. */
570 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
571 return extra_args;
572
573 /* For the moment, we make ARGS look like it contains fewer levels. */
574 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
575
576 new_args = add_to_template_args (args, extra_args);
577
578 /* Now, we restore ARGS to its full dimensions. */
579 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
580
581 return new_args;
582 }
583
584 /* Return the N levels of innermost template arguments from the ARGS. */
585
586 tree
587 get_innermost_template_args (tree args, int n)
588 {
589 tree new_args;
590 int extra_levels;
591 int i;
592
593 gcc_assert (n >= 0);
594
595 /* If N is 1, just return the innermost set of template arguments. */
596 if (n == 1)
597 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
598
599 /* If we're not removing anything, just return the arguments we were
600 given. */
601 extra_levels = TMPL_ARGS_DEPTH (args) - n;
602 gcc_assert (extra_levels >= 0);
603 if (extra_levels == 0)
604 return args;
605
606 /* Make a new set of arguments, not containing the outer arguments. */
607 new_args = make_tree_vec (n);
608 for (i = 1; i <= n; ++i)
609 SET_TMPL_ARGS_LEVEL (new_args, i,
610 TMPL_ARGS_LEVEL (args, i + extra_levels));
611
612 return new_args;
613 }
614
615 /* The inverse of get_innermost_template_args: Return all but the innermost
616 EXTRA_LEVELS levels of template arguments from the ARGS. */
617
618 static tree
619 strip_innermost_template_args (tree args, int extra_levels)
620 {
621 tree new_args;
622 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
623 int i;
624
625 gcc_assert (n >= 0);
626
627 /* If N is 1, just return the outermost set of template arguments. */
628 if (n == 1)
629 return TMPL_ARGS_LEVEL (args, 1);
630
631 /* If we're not removing anything, just return the arguments we were
632 given. */
633 gcc_assert (extra_levels >= 0);
634 if (extra_levels == 0)
635 return args;
636
637 /* Make a new set of arguments, not containing the inner arguments. */
638 new_args = make_tree_vec (n);
639 for (i = 1; i <= n; ++i)
640 SET_TMPL_ARGS_LEVEL (new_args, i,
641 TMPL_ARGS_LEVEL (args, i));
642
643 return new_args;
644 }
645
646 /* We've got a template header coming up; push to a new level for storing
647 the parms. */
648
649 void
650 begin_template_parm_list (void)
651 {
652 /* We use a non-tag-transparent scope here, which causes pushtag to
653 put tags in this scope, rather than in the enclosing class or
654 namespace scope. This is the right thing, since we want
655 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
656 global template class, push_template_decl handles putting the
657 TEMPLATE_DECL into top-level scope. For a nested template class,
658 e.g.:
659
660 template <class T> struct S1 {
661 template <class T> struct S2 {};
662 };
663
664 pushtag contains special code to call pushdecl_with_scope on the
665 TEMPLATE_DECL for S2. */
666 begin_scope (sk_template_parms, NULL);
667 ++processing_template_decl;
668 ++processing_template_parmlist;
669 note_template_header (0);
670
671 /* Add a dummy parameter level while we process the parameter list. */
672 current_template_parms
673 = tree_cons (size_int (processing_template_decl),
674 make_tree_vec (0),
675 current_template_parms);
676 }
677
678 /* This routine is called when a specialization is declared. If it is
679 invalid to declare a specialization here, an error is reported and
680 false is returned, otherwise this routine will return true. */
681
682 static bool
683 check_specialization_scope (void)
684 {
685 tree scope = current_scope ();
686
687 /* [temp.expl.spec]
688
689 An explicit specialization shall be declared in the namespace of
690 which the template is a member, or, for member templates, in the
691 namespace of which the enclosing class or enclosing class
692 template is a member. An explicit specialization of a member
693 function, member class or static data member of a class template
694 shall be declared in the namespace of which the class template
695 is a member. */
696 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
697 {
698 error ("explicit specialization in non-namespace scope %qD", scope);
699 return false;
700 }
701
702 /* [temp.expl.spec]
703
704 In an explicit specialization declaration for a member of a class
705 template or a member template that appears in namespace scope,
706 the member template and some of its enclosing class templates may
707 remain unspecialized, except that the declaration shall not
708 explicitly specialize a class member template if its enclosing
709 class templates are not explicitly specialized as well. */
710 if (current_template_parms)
711 {
712 error ("enclosing class templates are not explicitly specialized");
713 return false;
714 }
715
716 return true;
717 }
718
719 /* We've just seen template <>. */
720
721 bool
722 begin_specialization (void)
723 {
724 begin_scope (sk_template_spec, NULL);
725 note_template_header (1);
726 return check_specialization_scope ();
727 }
728
729 /* Called at then end of processing a declaration preceded by
730 template<>. */
731
732 void
733 end_specialization (void)
734 {
735 finish_scope ();
736 reset_specialization ();
737 }
738
739 /* Any template <>'s that we have seen thus far are not referring to a
740 function specialization. */
741
742 void
743 reset_specialization (void)
744 {
745 processing_specialization = 0;
746 template_header_count = 0;
747 }
748
749 /* We've just seen a template header. If SPECIALIZATION is nonzero,
750 it was of the form template <>. */
751
752 static void
753 note_template_header (int specialization)
754 {
755 processing_specialization = specialization;
756 template_header_count++;
757 }
758
759 /* We're beginning an explicit instantiation. */
760
761 void
762 begin_explicit_instantiation (void)
763 {
764 gcc_assert (!processing_explicit_instantiation);
765 processing_explicit_instantiation = true;
766 }
767
768
769 void
770 end_explicit_instantiation (void)
771 {
772 gcc_assert (processing_explicit_instantiation);
773 processing_explicit_instantiation = false;
774 }
775
776 /* An explicit specialization or partial specialization of TMPL is being
777 declared. Check that the namespace in which the specialization is
778 occurring is permissible. Returns false iff it is invalid to
779 specialize TMPL in the current namespace. */
780
781 static bool
782 check_specialization_namespace (tree tmpl)
783 {
784 tree tpl_ns = decl_namespace_context (tmpl);
785
786 /* [tmpl.expl.spec]
787
788 An explicit specialization shall be declared in the namespace of
789 which the template is a member, or, for member templates, in the
790 namespace of which the enclosing class or enclosing class
791 template is a member. An explicit specialization of a member
792 function, member class or static data member of a class template
793 shall be declared in the namespace of which the class template is
794 a member. */
795 if (current_scope() != DECL_CONTEXT (tmpl)
796 && !at_namespace_scope_p ())
797 {
798 error ("specialization of %qD must appear at namespace scope", tmpl);
799 return false;
800 }
801 if (is_associated_namespace (current_namespace, tpl_ns))
802 /* Same or super-using namespace. */
803 return true;
804 else
805 {
806 permerror (input_location,
807 "specialization of %qD in different namespace", tmpl);
808 permerror (DECL_SOURCE_LOCATION (tmpl),
809 " from definition of %q#D", tmpl);
810 return false;
811 }
812 }
813
814 /* SPEC is an explicit instantiation. Check that it is valid to
815 perform this explicit instantiation in the current namespace. */
816
817 static void
818 check_explicit_instantiation_namespace (tree spec)
819 {
820 tree ns;
821
822 /* DR 275: An explicit instantiation shall appear in an enclosing
823 namespace of its template. */
824 ns = decl_namespace_context (spec);
825 if (!is_ancestor (current_namespace, ns))
826 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
827 "(which does not enclose namespace %qD)",
828 spec, current_namespace, ns);
829 }
830
831 // Returns the type of a template specialization only if that
832 // specialization needs to be defined. Otherwise (e.g., if the type has
833 // already been defined), the function returns NULL_TREE.
834 static tree
835 maybe_new_partial_specialization (tree type)
836 {
837 // An implicit instantiation of an incomplete type implies
838 // the definition of a new class template.
839 //
840 // template<typename T>
841 // struct S;
842 //
843 // template<typename T>
844 // struct S<T*>;
845 //
846 // Here, S<T*> is an implicit instantiation of S whose type
847 // is incomplete.
848 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type) && !COMPLETE_TYPE_P (type))
849 return type;
850
851 // It can also be the case that TYPE is a completed specialization.
852 // Continuing the previous example, suppose we also declare:
853 //
854 // template<typename T>
855 // requires Integral<T>
856 // struct S<T*>;
857 //
858 // Here, S<T*> refers to the specialization S<T*> defined
859 // above. However, we need to differentiate definitions because
860 // we intend to define a new partial specialization. In this case,
861 // we rely on the fact that the constraints are different for
862 // this declaration than that above.
863 //
864 // Note that we also get here for injected class names and
865 // late-parsed template definitions. We must ensure that we
866 // do not create new type declarations for those cases.
867 if (flag_concepts && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
868 {
869 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
870 tree args = CLASSTYPE_TI_ARGS (type);
871
872 // If there are no template parameters, this cannot be a new
873 // partial template specializtion?
874 if (!current_template_parms)
875 return NULL_TREE;
876
877 // If the constraints are not the same as those of the primary
878 // then, we can probably create a new specialization.
879 tree type_constr = current_template_constraints ();
880
881 if (type == TREE_TYPE (tmpl))
882 if (tree main_constr = get_constraints (tmpl))
883 if (equivalent_constraints (type_constr, main_constr))
884 return NULL_TREE;
885
886 // Also, if there's a pre-existing specialization with matching
887 // constraints, then this also isn't new.
888 tree specs = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
889 while (specs)
890 {
891 tree spec_tmpl = TREE_VALUE (specs);
892 tree spec_args = TREE_PURPOSE (specs);
893 tree spec_constr = get_constraints (spec_tmpl);
894 if (comp_template_args (args, spec_args)
895 && equivalent_constraints (type_constr, spec_constr))
896 return NULL_TREE;
897 specs = TREE_CHAIN (specs);
898 }
899
900 // Create a new type node (and corresponding type decl)
901 // for the newly declared specialization.
902 tree t = make_class_type (TREE_CODE (type));
903 CLASSTYPE_DECLARED_CLASS (t) = CLASSTYPE_DECLARED_CLASS (type);
904 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (type);
905 SET_TYPE_TEMPLATE_INFO (t, build_template_info (tmpl, args));
906
907 /* We only need a separate type node for storing the definition of this
908 partial specialization; uses of S<T*> are unconstrained, so all are
909 equivalent. So keep TYPE_CANONICAL the same. */
910 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
911
912 // Build the corresponding type decl.
913 tree d = create_implicit_typedef (DECL_NAME (tmpl), t);
914 DECL_CONTEXT (d) = TYPE_CONTEXT (t);
915 DECL_SOURCE_LOCATION (d) = input_location;
916
917 return t;
918 }
919
920 return NULL_TREE;
921 }
922
923 /* The TYPE is being declared. If it is a template type, that means it
924 is a partial specialization. Do appropriate error-checking. */
925
926 tree
927 maybe_process_partial_specialization (tree type)
928 {
929 tree context;
930
931 if (type == error_mark_node)
932 return error_mark_node;
933
934 /* A lambda that appears in specialization context is not itself a
935 specialization. */
936 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
937 return type;
938
939 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
940 {
941 error ("name of class shadows template template parameter %qD",
942 TYPE_NAME (type));
943 return error_mark_node;
944 }
945
946 context = TYPE_CONTEXT (type);
947
948 if (TYPE_ALIAS_P (type))
949 {
950 if (TYPE_TEMPLATE_INFO (type)
951 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
952 error ("specialization of alias template %qD",
953 TYPE_TI_TEMPLATE (type));
954 else
955 error ("explicit specialization of non-template %qT", type);
956 return error_mark_node;
957 }
958 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
959 {
960 /* This is for ordinary explicit specialization and partial
961 specialization of a template class such as:
962
963 template <> class C<int>;
964
965 or:
966
967 template <class T> class C<T*>;
968
969 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
970
971 if (tree t = maybe_new_partial_specialization (type))
972 {
973 if (!check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (t))
974 && !at_namespace_scope_p ())
975 return error_mark_node;
976 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
977 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (t)) = input_location;
978 if (processing_template_decl)
979 {
980 tree decl = push_template_decl (TYPE_MAIN_DECL (t));
981 if (decl == error_mark_node)
982 return error_mark_node;
983 return TREE_TYPE (decl);
984 }
985 }
986 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
987 error ("specialization of %qT after instantiation", type);
988 else if (errorcount && !processing_specialization
989 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
990 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
991 /* Trying to define a specialization either without a template<> header
992 or in an inappropriate place. We've already given an error, so just
993 bail now so we don't actually define the specialization. */
994 return error_mark_node;
995 }
996 else if (CLASS_TYPE_P (type)
997 && !CLASSTYPE_USE_TEMPLATE (type)
998 && CLASSTYPE_TEMPLATE_INFO (type)
999 && context && CLASS_TYPE_P (context)
1000 && CLASSTYPE_TEMPLATE_INFO (context))
1001 {
1002 /* This is for an explicit specialization of member class
1003 template according to [temp.expl.spec/18]:
1004
1005 template <> template <class U> class C<int>::D;
1006
1007 The context `C<int>' must be an implicit instantiation.
1008 Otherwise this is just a member class template declared
1009 earlier like:
1010
1011 template <> class C<int> { template <class U> class D; };
1012 template <> template <class U> class C<int>::D;
1013
1014 In the first case, `C<int>::D' is a specialization of `C<T>::D'
1015 while in the second case, `C<int>::D' is a primary template
1016 and `C<T>::D' may not exist. */
1017
1018 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
1019 && !COMPLETE_TYPE_P (type))
1020 {
1021 tree t;
1022 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
1023
1024 if (current_namespace
1025 != decl_namespace_context (tmpl))
1026 {
1027 permerror (input_location,
1028 "specializing %q#T in different namespace", type);
1029 permerror (DECL_SOURCE_LOCATION (tmpl),
1030 " from definition of %q#D", tmpl);
1031 }
1032
1033 /* Check for invalid specialization after instantiation:
1034
1035 template <> template <> class C<int>::D<int>;
1036 template <> template <class U> class C<int>::D; */
1037
1038 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
1039 t; t = TREE_CHAIN (t))
1040 {
1041 tree inst = TREE_VALUE (t);
1042 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst)
1043 || !COMPLETE_OR_OPEN_TYPE_P (inst))
1044 {
1045 /* We already have a full specialization of this partial
1046 instantiation, or a full specialization has been
1047 looked up but not instantiated. Reassign it to the
1048 new member specialization template. */
1049 spec_entry elt;
1050 spec_entry *entry;
1051
1052 elt.tmpl = most_general_template (tmpl);
1053 elt.args = CLASSTYPE_TI_ARGS (inst);
1054 elt.spec = inst;
1055
1056 type_specializations->remove_elt (&elt);
1057
1058 elt.tmpl = tmpl;
1059 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
1060
1061 spec_entry **slot
1062 = type_specializations->find_slot (&elt, INSERT);
1063 entry = ggc_alloc<spec_entry> ();
1064 *entry = elt;
1065 *slot = entry;
1066 }
1067 else
1068 /* But if we've had an implicit instantiation, that's a
1069 problem ([temp.expl.spec]/6). */
1070 error ("specialization %qT after instantiation %qT",
1071 type, inst);
1072 }
1073
1074 /* Mark TYPE as a specialization. And as a result, we only
1075 have one level of template argument for the innermost
1076 class template. */
1077 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
1078 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
1079 CLASSTYPE_TI_ARGS (type)
1080 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
1081 }
1082 }
1083 else if (processing_specialization)
1084 {
1085 /* Someday C++0x may allow for enum template specialization. */
1086 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
1087 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
1088 pedwarn (input_location, OPT_Wpedantic, "template specialization "
1089 "of %qD not allowed by ISO C++", type);
1090 else
1091 {
1092 error ("explicit specialization of non-template %qT", type);
1093 return error_mark_node;
1094 }
1095 }
1096
1097 return type;
1098 }
1099
1100 /* Returns nonzero if we can optimize the retrieval of specializations
1101 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
1102 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
1103
1104 static inline bool
1105 optimize_specialization_lookup_p (tree tmpl)
1106 {
1107 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
1108 && DECL_CLASS_SCOPE_P (tmpl)
1109 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
1110 parameter. */
1111 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
1112 /* The optimized lookup depends on the fact that the
1113 template arguments for the member function template apply
1114 purely to the containing class, which is not true if the
1115 containing class is an explicit or partial
1116 specialization. */
1117 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
1118 && !DECL_MEMBER_TEMPLATE_P (tmpl)
1119 && !DECL_CONV_FN_P (tmpl)
1120 /* It is possible to have a template that is not a member
1121 template and is not a member of a template class:
1122
1123 template <typename T>
1124 struct S { friend A::f(); };
1125
1126 Here, the friend function is a template, but the context does
1127 not have template information. The optimized lookup relies
1128 on having ARGS be the template arguments for both the class
1129 and the function template. */
1130 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
1131 }
1132
1133 /* Make sure ARGS doesn't use any inappropriate typedefs; we should have
1134 gone through coerce_template_parms by now. */
1135
1136 static void
1137 verify_unstripped_args (tree args)
1138 {
1139 ++processing_template_decl;
1140 if (!any_dependent_template_arguments_p (args))
1141 {
1142 tree inner = INNERMOST_TEMPLATE_ARGS (args);
1143 for (int i = 0; i < TREE_VEC_LENGTH (inner); ++i)
1144 {
1145 tree arg = TREE_VEC_ELT (inner, i);
1146 if (TREE_CODE (arg) == TEMPLATE_DECL)
1147 /* OK */;
1148 else if (TYPE_P (arg))
1149 gcc_assert (strip_typedefs (arg, NULL) == arg);
1150 else if (strip_typedefs (TREE_TYPE (arg), NULL) != TREE_TYPE (arg))
1151 /* Allow typedefs on the type of a non-type argument, since a
1152 parameter can have them. */;
1153 else
1154 gcc_assert (strip_typedefs_expr (arg, NULL) == arg);
1155 }
1156 }
1157 --processing_template_decl;
1158 }
1159
1160 /* Retrieve the specialization (in the sense of [temp.spec] - a
1161 specialization is either an instantiation or an explicit
1162 specialization) of TMPL for the given template ARGS. If there is
1163 no such specialization, return NULL_TREE. The ARGS are a vector of
1164 arguments, or a vector of vectors of arguments, in the case of
1165 templates with more than one level of parameters.
1166
1167 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1168 then we search for a partial specialization matching ARGS. This
1169 parameter is ignored if TMPL is not a class template.
1170
1171 We can also look up a FIELD_DECL, if it is a lambda capture pack; the
1172 result is a NONTYPE_ARGUMENT_PACK. */
1173
1174 static tree
1175 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1176 {
1177 if (tmpl == NULL_TREE)
1178 return NULL_TREE;
1179
1180 if (args == error_mark_node)
1181 return NULL_TREE;
1182
1183 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL
1184 || TREE_CODE (tmpl) == FIELD_DECL);
1185
1186 /* There should be as many levels of arguments as there are
1187 levels of parameters. */
1188 gcc_assert (TMPL_ARGS_DEPTH (args)
1189 == (TREE_CODE (tmpl) == TEMPLATE_DECL
1190 ? TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl))
1191 : template_class_depth (DECL_CONTEXT (tmpl))));
1192
1193 if (flag_checking)
1194 verify_unstripped_args (args);
1195
1196 if (optimize_specialization_lookup_p (tmpl))
1197 {
1198 tree class_template;
1199 tree class_specialization;
1200 vec<tree, va_gc> *methods;
1201 tree fns;
1202 int idx;
1203
1204 /* The template arguments actually apply to the containing
1205 class. Find the class specialization with those
1206 arguments. */
1207 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1208 class_specialization
1209 = retrieve_specialization (class_template, args, 0);
1210 if (!class_specialization)
1211 return NULL_TREE;
1212 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1213 for the specialization. */
1214 idx = class_method_index_for_fn (class_specialization, tmpl);
1215 if (idx == -1)
1216 return NULL_TREE;
1217 /* Iterate through the methods with the indicated name, looking
1218 for the one that has an instance of TMPL. */
1219 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1220 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1221 {
1222 tree fn = OVL_CURRENT (fns);
1223 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1224 /* using-declarations can add base methods to the method vec,
1225 and we don't want those here. */
1226 && DECL_CONTEXT (fn) == class_specialization)
1227 return fn;
1228 }
1229 return NULL_TREE;
1230 }
1231 else
1232 {
1233 spec_entry *found;
1234 spec_entry elt;
1235 hash_table<spec_hasher> *specializations;
1236
1237 elt.tmpl = tmpl;
1238 elt.args = args;
1239 elt.spec = NULL_TREE;
1240
1241 if (DECL_CLASS_TEMPLATE_P (tmpl))
1242 specializations = type_specializations;
1243 else
1244 specializations = decl_specializations;
1245
1246 if (hash == 0)
1247 hash = spec_hasher::hash (&elt);
1248 found = specializations->find_with_hash (&elt, hash);
1249 if (found)
1250 return found->spec;
1251 }
1252
1253 return NULL_TREE;
1254 }
1255
1256 /* Like retrieve_specialization, but for local declarations. */
1257
1258 tree
1259 retrieve_local_specialization (tree tmpl)
1260 {
1261 if (local_specializations == NULL)
1262 return NULL_TREE;
1263
1264 tree *slot = local_specializations->get (tmpl);
1265 return slot ? *slot : NULL_TREE;
1266 }
1267
1268 /* Returns nonzero iff DECL is a specialization of TMPL. */
1269
1270 int
1271 is_specialization_of (tree decl, tree tmpl)
1272 {
1273 tree t;
1274
1275 if (TREE_CODE (decl) == FUNCTION_DECL)
1276 {
1277 for (t = decl;
1278 t != NULL_TREE;
1279 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1280 if (t == tmpl)
1281 return 1;
1282 }
1283 else
1284 {
1285 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1286
1287 for (t = TREE_TYPE (decl);
1288 t != NULL_TREE;
1289 t = CLASSTYPE_USE_TEMPLATE (t)
1290 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1291 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1292 return 1;
1293 }
1294
1295 return 0;
1296 }
1297
1298 /* Returns nonzero iff DECL is a specialization of friend declaration
1299 FRIEND_DECL according to [temp.friend]. */
1300
1301 bool
1302 is_specialization_of_friend (tree decl, tree friend_decl)
1303 {
1304 bool need_template = true;
1305 int template_depth;
1306
1307 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1308 || TREE_CODE (decl) == TYPE_DECL);
1309
1310 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1311 of a template class, we want to check if DECL is a specialization
1312 if this. */
1313 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1314 && DECL_TEMPLATE_INFO (friend_decl)
1315 && !DECL_USE_TEMPLATE (friend_decl))
1316 {
1317 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1318 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1319 need_template = false;
1320 }
1321 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1322 && !PRIMARY_TEMPLATE_P (friend_decl))
1323 need_template = false;
1324
1325 /* There is nothing to do if this is not a template friend. */
1326 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1327 return false;
1328
1329 if (is_specialization_of (decl, friend_decl))
1330 return true;
1331
1332 /* [temp.friend/6]
1333 A member of a class template may be declared to be a friend of a
1334 non-template class. In this case, the corresponding member of
1335 every specialization of the class template is a friend of the
1336 class granting friendship.
1337
1338 For example, given a template friend declaration
1339
1340 template <class T> friend void A<T>::f();
1341
1342 the member function below is considered a friend
1343
1344 template <> struct A<int> {
1345 void f();
1346 };
1347
1348 For this type of template friend, TEMPLATE_DEPTH below will be
1349 nonzero. To determine if DECL is a friend of FRIEND, we first
1350 check if the enclosing class is a specialization of another. */
1351
1352 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1353 if (template_depth
1354 && DECL_CLASS_SCOPE_P (decl)
1355 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1356 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1357 {
1358 /* Next, we check the members themselves. In order to handle
1359 a few tricky cases, such as when FRIEND_DECL's are
1360
1361 template <class T> friend void A<T>::g(T t);
1362 template <class T> template <T t> friend void A<T>::h();
1363
1364 and DECL's are
1365
1366 void A<int>::g(int);
1367 template <int> void A<int>::h();
1368
1369 we need to figure out ARGS, the template arguments from
1370 the context of DECL. This is required for template substitution
1371 of `T' in the function parameter of `g' and template parameter
1372 of `h' in the above examples. Here ARGS corresponds to `int'. */
1373
1374 tree context = DECL_CONTEXT (decl);
1375 tree args = NULL_TREE;
1376 int current_depth = 0;
1377
1378 while (current_depth < template_depth)
1379 {
1380 if (CLASSTYPE_TEMPLATE_INFO (context))
1381 {
1382 if (current_depth == 0)
1383 args = TYPE_TI_ARGS (context);
1384 else
1385 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1386 current_depth++;
1387 }
1388 context = TYPE_CONTEXT (context);
1389 }
1390
1391 if (TREE_CODE (decl) == FUNCTION_DECL)
1392 {
1393 bool is_template;
1394 tree friend_type;
1395 tree decl_type;
1396 tree friend_args_type;
1397 tree decl_args_type;
1398
1399 /* Make sure that both DECL and FRIEND_DECL are templates or
1400 non-templates. */
1401 is_template = DECL_TEMPLATE_INFO (decl)
1402 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1403 if (need_template ^ is_template)
1404 return false;
1405 else if (is_template)
1406 {
1407 /* If both are templates, check template parameter list. */
1408 tree friend_parms
1409 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1410 args, tf_none);
1411 if (!comp_template_parms
1412 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1413 friend_parms))
1414 return false;
1415
1416 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1417 }
1418 else
1419 decl_type = TREE_TYPE (decl);
1420
1421 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1422 tf_none, NULL_TREE);
1423 if (friend_type == error_mark_node)
1424 return false;
1425
1426 /* Check if return types match. */
1427 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1428 return false;
1429
1430 /* Check if function parameter types match, ignoring the
1431 `this' parameter. */
1432 friend_args_type = TYPE_ARG_TYPES (friend_type);
1433 decl_args_type = TYPE_ARG_TYPES (decl_type);
1434 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1435 friend_args_type = TREE_CHAIN (friend_args_type);
1436 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1437 decl_args_type = TREE_CHAIN (decl_args_type);
1438
1439 return compparms (decl_args_type, friend_args_type);
1440 }
1441 else
1442 {
1443 /* DECL is a TYPE_DECL */
1444 bool is_template;
1445 tree decl_type = TREE_TYPE (decl);
1446
1447 /* Make sure that both DECL and FRIEND_DECL are templates or
1448 non-templates. */
1449 is_template
1450 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1451 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1452
1453 if (need_template ^ is_template)
1454 return false;
1455 else if (is_template)
1456 {
1457 tree friend_parms;
1458 /* If both are templates, check the name of the two
1459 TEMPLATE_DECL's first because is_friend didn't. */
1460 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1461 != DECL_NAME (friend_decl))
1462 return false;
1463
1464 /* Now check template parameter list. */
1465 friend_parms
1466 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1467 args, tf_none);
1468 return comp_template_parms
1469 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1470 friend_parms);
1471 }
1472 else
1473 return (DECL_NAME (decl)
1474 == DECL_NAME (friend_decl));
1475 }
1476 }
1477 return false;
1478 }
1479
1480 /* Register the specialization SPEC as a specialization of TMPL with
1481 the indicated ARGS. IS_FRIEND indicates whether the specialization
1482 is actually just a friend declaration. Returns SPEC, or an
1483 equivalent prior declaration, if available.
1484
1485 We also store instantiations of field packs in the hash table, even
1486 though they are not themselves templates, to make lookup easier. */
1487
1488 static tree
1489 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1490 hashval_t hash)
1491 {
1492 tree fn;
1493 spec_entry **slot = NULL;
1494 spec_entry elt;
1495
1496 gcc_assert ((TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec))
1497 || (TREE_CODE (tmpl) == FIELD_DECL
1498 && TREE_CODE (spec) == NONTYPE_ARGUMENT_PACK));
1499
1500 if (TREE_CODE (spec) == FUNCTION_DECL
1501 && uses_template_parms (DECL_TI_ARGS (spec)))
1502 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1503 register it; we want the corresponding TEMPLATE_DECL instead.
1504 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1505 the more obvious `uses_template_parms (spec)' to avoid problems
1506 with default function arguments. In particular, given
1507 something like this:
1508
1509 template <class T> void f(T t1, T t = T())
1510
1511 the default argument expression is not substituted for in an
1512 instantiation unless and until it is actually needed. */
1513 return spec;
1514
1515 if (optimize_specialization_lookup_p (tmpl))
1516 /* We don't put these specializations in the hash table, but we might
1517 want to give an error about a mismatch. */
1518 fn = retrieve_specialization (tmpl, args, 0);
1519 else
1520 {
1521 elt.tmpl = tmpl;
1522 elt.args = args;
1523 elt.spec = spec;
1524
1525 if (hash == 0)
1526 hash = spec_hasher::hash (&elt);
1527
1528 slot =
1529 decl_specializations->find_slot_with_hash (&elt, hash, INSERT);
1530 if (*slot)
1531 fn = ((spec_entry *) *slot)->spec;
1532 else
1533 fn = NULL_TREE;
1534 }
1535
1536 /* We can sometimes try to re-register a specialization that we've
1537 already got. In particular, regenerate_decl_from_template calls
1538 duplicate_decls which will update the specialization list. But,
1539 we'll still get called again here anyhow. It's more convenient
1540 to simply allow this than to try to prevent it. */
1541 if (fn == spec)
1542 return spec;
1543 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1544 {
1545 if (DECL_TEMPLATE_INSTANTIATION (fn))
1546 {
1547 if (DECL_ODR_USED (fn)
1548 || DECL_EXPLICIT_INSTANTIATION (fn))
1549 {
1550 error ("specialization of %qD after instantiation",
1551 fn);
1552 return error_mark_node;
1553 }
1554 else
1555 {
1556 tree clone;
1557 /* This situation should occur only if the first
1558 specialization is an implicit instantiation, the
1559 second is an explicit specialization, and the
1560 implicit instantiation has not yet been used. That
1561 situation can occur if we have implicitly
1562 instantiated a member function and then specialized
1563 it later.
1564
1565 We can also wind up here if a friend declaration that
1566 looked like an instantiation turns out to be a
1567 specialization:
1568
1569 template <class T> void foo(T);
1570 class S { friend void foo<>(int) };
1571 template <> void foo(int);
1572
1573 We transform the existing DECL in place so that any
1574 pointers to it become pointers to the updated
1575 declaration.
1576
1577 If there was a definition for the template, but not
1578 for the specialization, we want this to look as if
1579 there were no definition, and vice versa. */
1580 DECL_INITIAL (fn) = NULL_TREE;
1581 duplicate_decls (spec, fn, is_friend);
1582 /* The call to duplicate_decls will have applied
1583 [temp.expl.spec]:
1584
1585 An explicit specialization of a function template
1586 is inline only if it is explicitly declared to be,
1587 and independently of whether its function template
1588 is.
1589
1590 to the primary function; now copy the inline bits to
1591 the various clones. */
1592 FOR_EACH_CLONE (clone, fn)
1593 {
1594 DECL_DECLARED_INLINE_P (clone)
1595 = DECL_DECLARED_INLINE_P (fn);
1596 DECL_SOURCE_LOCATION (clone)
1597 = DECL_SOURCE_LOCATION (fn);
1598 DECL_DELETED_FN (clone)
1599 = DECL_DELETED_FN (fn);
1600 }
1601 check_specialization_namespace (tmpl);
1602
1603 return fn;
1604 }
1605 }
1606 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1607 {
1608 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1609 /* Dup decl failed, but this is a new definition. Set the
1610 line number so any errors match this new
1611 definition. */
1612 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1613
1614 return fn;
1615 }
1616 }
1617 else if (fn)
1618 return duplicate_decls (spec, fn, is_friend);
1619
1620 /* A specialization must be declared in the same namespace as the
1621 template it is specializing. */
1622 if (DECL_P (spec) && DECL_TEMPLATE_SPECIALIZATION (spec)
1623 && !check_specialization_namespace (tmpl))
1624 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1625
1626 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1627 {
1628 spec_entry *entry = ggc_alloc<spec_entry> ();
1629 gcc_assert (tmpl && args && spec);
1630 *entry = elt;
1631 *slot = entry;
1632 if ((TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1633 && PRIMARY_TEMPLATE_P (tmpl)
1634 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1635 || variable_template_p (tmpl))
1636 /* If TMPL is a forward declaration of a template function, keep a list
1637 of all specializations in case we need to reassign them to a friend
1638 template later in tsubst_friend_function.
1639
1640 Also keep a list of all variable template instantiations so that
1641 process_partial_specialization can check whether a later partial
1642 specialization would have used it. */
1643 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1644 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1645 }
1646
1647 return spec;
1648 }
1649
1650 /* Returns true iff two spec_entry nodes are equivalent. */
1651
1652 int comparing_specializations;
1653
1654 bool
1655 spec_hasher::equal (spec_entry *e1, spec_entry *e2)
1656 {
1657 int equal;
1658
1659 ++comparing_specializations;
1660 equal = (e1->tmpl == e2->tmpl
1661 && comp_template_args (e1->args, e2->args));
1662 if (equal && flag_concepts
1663 /* tmpl could be a FIELD_DECL for a capture pack. */
1664 && TREE_CODE (e1->tmpl) == TEMPLATE_DECL
1665 && VAR_P (DECL_TEMPLATE_RESULT (e1->tmpl))
1666 && uses_template_parms (e1->args))
1667 {
1668 /* Partial specializations of a variable template can be distinguished by
1669 constraints. */
1670 tree c1 = e1->spec ? get_constraints (e1->spec) : NULL_TREE;
1671 tree c2 = e2->spec ? get_constraints (e2->spec) : NULL_TREE;
1672 equal = equivalent_constraints (c1, c2);
1673 }
1674 --comparing_specializations;
1675
1676 return equal;
1677 }
1678
1679 /* Returns a hash for a template TMPL and template arguments ARGS. */
1680
1681 static hashval_t
1682 hash_tmpl_and_args (tree tmpl, tree args)
1683 {
1684 hashval_t val = iterative_hash_object (DECL_UID (tmpl), 0);
1685 return iterative_hash_template_arg (args, val);
1686 }
1687
1688 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1689 ignoring SPEC. */
1690
1691 hashval_t
1692 spec_hasher::hash (spec_entry *e)
1693 {
1694 return hash_tmpl_and_args (e->tmpl, e->args);
1695 }
1696
1697 /* Recursively calculate a hash value for a template argument ARG, for use
1698 in the hash tables of template specializations. */
1699
1700 hashval_t
1701 iterative_hash_template_arg (tree arg, hashval_t val)
1702 {
1703 unsigned HOST_WIDE_INT i;
1704 enum tree_code code;
1705 char tclass;
1706
1707 if (arg == NULL_TREE)
1708 return iterative_hash_object (arg, val);
1709
1710 if (!TYPE_P (arg))
1711 STRIP_NOPS (arg);
1712
1713 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1714 /* We can get one of these when re-hashing a previous entry in the middle
1715 of substituting into a pack expansion. Just look through it. */
1716 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1717
1718 code = TREE_CODE (arg);
1719 tclass = TREE_CODE_CLASS (code);
1720
1721 val = iterative_hash_object (code, val);
1722
1723 switch (code)
1724 {
1725 case ERROR_MARK:
1726 return val;
1727
1728 case IDENTIFIER_NODE:
1729 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1730
1731 case TREE_VEC:
1732 {
1733 int i, len = TREE_VEC_LENGTH (arg);
1734 for (i = 0; i < len; ++i)
1735 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1736 return val;
1737 }
1738
1739 case TYPE_PACK_EXPANSION:
1740 case EXPR_PACK_EXPANSION:
1741 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1742 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1743
1744 case TYPE_ARGUMENT_PACK:
1745 case NONTYPE_ARGUMENT_PACK:
1746 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1747
1748 case TREE_LIST:
1749 for (; arg; arg = TREE_CHAIN (arg))
1750 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1751 return val;
1752
1753 case OVERLOAD:
1754 for (; arg; arg = OVL_NEXT (arg))
1755 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1756 return val;
1757
1758 case CONSTRUCTOR:
1759 {
1760 tree field, value;
1761 iterative_hash_template_arg (TREE_TYPE (arg), val);
1762 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1763 {
1764 val = iterative_hash_template_arg (field, val);
1765 val = iterative_hash_template_arg (value, val);
1766 }
1767 return val;
1768 }
1769
1770 case PARM_DECL:
1771 if (!DECL_ARTIFICIAL (arg))
1772 {
1773 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1774 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1775 }
1776 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1777
1778 case TARGET_EXPR:
1779 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1780
1781 case PTRMEM_CST:
1782 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1783 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1784
1785 case TEMPLATE_PARM_INDEX:
1786 val = iterative_hash_template_arg
1787 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1788 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1789 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1790
1791 case TRAIT_EXPR:
1792 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1793 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1794 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1795
1796 case BASELINK:
1797 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1798 val);
1799 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1800 val);
1801
1802 case MODOP_EXPR:
1803 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1804 code = TREE_CODE (TREE_OPERAND (arg, 1));
1805 val = iterative_hash_object (code, val);
1806 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1807
1808 case LAMBDA_EXPR:
1809 /* A lambda can't appear in a template arg, but don't crash on
1810 erroneous input. */
1811 gcc_assert (seen_error ());
1812 return val;
1813
1814 case CAST_EXPR:
1815 case IMPLICIT_CONV_EXPR:
1816 case STATIC_CAST_EXPR:
1817 case REINTERPRET_CAST_EXPR:
1818 case CONST_CAST_EXPR:
1819 case DYNAMIC_CAST_EXPR:
1820 case NEW_EXPR:
1821 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1822 /* Now hash operands as usual. */
1823 break;
1824
1825 default:
1826 break;
1827 }
1828
1829 switch (tclass)
1830 {
1831 case tcc_type:
1832 if (alias_template_specialization_p (arg))
1833 {
1834 // We want an alias specialization that survived strip_typedefs
1835 // to hash differently from its TYPE_CANONICAL, to avoid hash
1836 // collisions that compare as different in template_args_equal.
1837 // These could be dependent specializations that strip_typedefs
1838 // left alone, or untouched specializations because
1839 // coerce_template_parms returns the unconverted template
1840 // arguments if it sees incomplete argument packs.
1841 tree ti = TYPE_TEMPLATE_INFO (arg);
1842 return hash_tmpl_and_args (TI_TEMPLATE (ti), TI_ARGS (ti));
1843 }
1844 if (TYPE_CANONICAL (arg))
1845 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1846 val);
1847 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1848 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1849 /* Otherwise just compare the types during lookup. */
1850 return val;
1851
1852 case tcc_declaration:
1853 case tcc_constant:
1854 return iterative_hash_expr (arg, val);
1855
1856 default:
1857 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1858 {
1859 unsigned n = cp_tree_operand_length (arg);
1860 for (i = 0; i < n; ++i)
1861 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1862 return val;
1863 }
1864 }
1865 gcc_unreachable ();
1866 return 0;
1867 }
1868
1869 /* Unregister the specialization SPEC as a specialization of TMPL.
1870 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1871 if the SPEC was listed as a specialization of TMPL.
1872
1873 Note that SPEC has been ggc_freed, so we can't look inside it. */
1874
1875 bool
1876 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1877 {
1878 spec_entry *entry;
1879 spec_entry elt;
1880
1881 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1882 elt.args = TI_ARGS (tinfo);
1883 elt.spec = NULL_TREE;
1884
1885 entry = decl_specializations->find (&elt);
1886 if (entry != NULL)
1887 {
1888 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1889 gcc_assert (new_spec != NULL_TREE);
1890 entry->spec = new_spec;
1891 return 1;
1892 }
1893
1894 return 0;
1895 }
1896
1897 /* Like register_specialization, but for local declarations. We are
1898 registering SPEC, an instantiation of TMPL. */
1899
1900 void
1901 register_local_specialization (tree spec, tree tmpl)
1902 {
1903 local_specializations->put (tmpl, spec);
1904 }
1905
1906 /* TYPE is a class type. Returns true if TYPE is an explicitly
1907 specialized class. */
1908
1909 bool
1910 explicit_class_specialization_p (tree type)
1911 {
1912 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1913 return false;
1914 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1915 }
1916
1917 /* Print the list of functions at FNS, going through all the overloads
1918 for each element of the list. Alternatively, FNS can not be a
1919 TREE_LIST, in which case it will be printed together with all the
1920 overloads.
1921
1922 MORE and *STR should respectively be FALSE and NULL when the function
1923 is called from the outside. They are used internally on recursive
1924 calls. print_candidates manages the two parameters and leaves NULL
1925 in *STR when it ends. */
1926
1927 static void
1928 print_candidates_1 (tree fns, bool more, const char **str)
1929 {
1930 tree fn, fn2;
1931 char *spaces = NULL;
1932
1933 for (fn = fns; fn; fn = OVL_NEXT (fn))
1934 if (TREE_CODE (fn) == TREE_LIST)
1935 {
1936 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1937 print_candidates_1 (TREE_VALUE (fn2),
1938 TREE_CHAIN (fn2) || more, str);
1939 }
1940 else
1941 {
1942 tree cand = OVL_CURRENT (fn);
1943 if (!*str)
1944 {
1945 /* Pick the prefix string. */
1946 if (!more && !OVL_NEXT (fns))
1947 {
1948 inform (DECL_SOURCE_LOCATION (cand),
1949 "candidate is: %#D", cand);
1950 continue;
1951 }
1952
1953 *str = _("candidates are:");
1954 spaces = get_spaces (*str);
1955 }
1956 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1957 *str = spaces ? spaces : *str;
1958 }
1959
1960 if (!more)
1961 {
1962 free (spaces);
1963 *str = NULL;
1964 }
1965 }
1966
1967 /* Print the list of candidate FNS in an error message. FNS can also
1968 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1969
1970 void
1971 print_candidates (tree fns)
1972 {
1973 const char *str = NULL;
1974 print_candidates_1 (fns, false, &str);
1975 gcc_assert (str == NULL);
1976 }
1977
1978 /* Get a (possibly) constrained template declaration for the
1979 purpose of ordering candidates. */
1980 static tree
1981 get_template_for_ordering (tree list)
1982 {
1983 gcc_assert (TREE_CODE (list) == TREE_LIST);
1984 tree f = TREE_VALUE (list);
1985 if (tree ti = DECL_TEMPLATE_INFO (f))
1986 return TI_TEMPLATE (ti);
1987 return f;
1988 }
1989
1990 /* Among candidates having the same signature, return the
1991 most constrained or NULL_TREE if there is no best candidate.
1992 If the signatures of candidates vary (e.g., template
1993 specialization vs. member function), then there can be no
1994 most constrained.
1995
1996 Note that we don't compare constraints on the functions
1997 themselves, but rather those of their templates. */
1998 static tree
1999 most_constrained_function (tree candidates)
2000 {
2001 // Try to find the best candidate in a first pass.
2002 tree champ = candidates;
2003 for (tree c = TREE_CHAIN (champ); c; c = TREE_CHAIN (c))
2004 {
2005 int winner = more_constrained (get_template_for_ordering (champ),
2006 get_template_for_ordering (c));
2007 if (winner == -1)
2008 champ = c; // The candidate is more constrained
2009 else if (winner == 0)
2010 return NULL_TREE; // Neither is more constrained
2011 }
2012
2013 // Verify that the champ is better than previous candidates.
2014 for (tree c = candidates; c != champ; c = TREE_CHAIN (c)) {
2015 if (!more_constrained (get_template_for_ordering (champ),
2016 get_template_for_ordering (c)))
2017 return NULL_TREE;
2018 }
2019
2020 return champ;
2021 }
2022
2023
2024 /* Returns the template (one of the functions given by TEMPLATE_ID)
2025 which can be specialized to match the indicated DECL with the
2026 explicit template args given in TEMPLATE_ID. The DECL may be
2027 NULL_TREE if none is available. In that case, the functions in
2028 TEMPLATE_ID are non-members.
2029
2030 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
2031 specialization of a member template.
2032
2033 The TEMPLATE_COUNT is the number of references to qualifying
2034 template classes that appeared in the name of the function. See
2035 check_explicit_specialization for a more accurate description.
2036
2037 TSK indicates what kind of template declaration (if any) is being
2038 declared. TSK_TEMPLATE indicates that the declaration given by
2039 DECL, though a FUNCTION_DECL, has template parameters, and is
2040 therefore a template function.
2041
2042 The template args (those explicitly specified and those deduced)
2043 are output in a newly created vector *TARGS_OUT.
2044
2045 If it is impossible to determine the result, an error message is
2046 issued. The error_mark_node is returned to indicate failure. */
2047
2048 static tree
2049 determine_specialization (tree template_id,
2050 tree decl,
2051 tree* targs_out,
2052 int need_member_template,
2053 int template_count,
2054 tmpl_spec_kind tsk)
2055 {
2056 tree fns;
2057 tree targs;
2058 tree explicit_targs;
2059 tree candidates = NULL_TREE;
2060
2061 /* A TREE_LIST of templates of which DECL may be a specialization.
2062 The TREE_VALUE of each node is a TEMPLATE_DECL. The
2063 corresponding TREE_PURPOSE is the set of template arguments that,
2064 when used to instantiate the template, would produce a function
2065 with the signature of DECL. */
2066 tree templates = NULL_TREE;
2067 int header_count;
2068 cp_binding_level *b;
2069
2070 *targs_out = NULL_TREE;
2071
2072 if (template_id == error_mark_node || decl == error_mark_node)
2073 return error_mark_node;
2074
2075 /* We shouldn't be specializing a member template of an
2076 unspecialized class template; we already gave an error in
2077 check_specialization_scope, now avoid crashing. */
2078 if (template_count && DECL_CLASS_SCOPE_P (decl)
2079 && template_class_depth (DECL_CONTEXT (decl)) > 0)
2080 {
2081 gcc_assert (errorcount);
2082 return error_mark_node;
2083 }
2084
2085 fns = TREE_OPERAND (template_id, 0);
2086 explicit_targs = TREE_OPERAND (template_id, 1);
2087
2088 if (fns == error_mark_node)
2089 return error_mark_node;
2090
2091 /* Check for baselinks. */
2092 if (BASELINK_P (fns))
2093 fns = BASELINK_FUNCTIONS (fns);
2094
2095 if (TREE_CODE (decl) == FUNCTION_DECL && !is_overloaded_fn (fns))
2096 {
2097 error ("%qD is not a function template", fns);
2098 return error_mark_node;
2099 }
2100 else if (VAR_P (decl) && !variable_template_p (fns))
2101 {
2102 error ("%qD is not a variable template", fns);
2103 return error_mark_node;
2104 }
2105
2106 /* Count the number of template headers specified for this
2107 specialization. */
2108 header_count = 0;
2109 for (b = current_binding_level;
2110 b->kind == sk_template_parms;
2111 b = b->level_chain)
2112 ++header_count;
2113
2114 tree orig_fns = fns;
2115
2116 if (variable_template_p (fns))
2117 {
2118 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (fns));
2119 targs = coerce_template_parms (parms, explicit_targs, fns,
2120 tf_warning_or_error,
2121 /*req_all*/true, /*use_defarg*/true);
2122 if (targs != error_mark_node)
2123 templates = tree_cons (targs, fns, templates);
2124 }
2125 else for (; fns; fns = OVL_NEXT (fns))
2126 {
2127 tree fn = OVL_CURRENT (fns);
2128
2129 if (TREE_CODE (fn) == TEMPLATE_DECL)
2130 {
2131 tree decl_arg_types;
2132 tree fn_arg_types;
2133 tree insttype;
2134
2135 /* In case of explicit specialization, we need to check if
2136 the number of template headers appearing in the specialization
2137 is correct. This is usually done in check_explicit_specialization,
2138 but the check done there cannot be exhaustive when specializing
2139 member functions. Consider the following code:
2140
2141 template <> void A<int>::f(int);
2142 template <> template <> void A<int>::f(int);
2143
2144 Assuming that A<int> is not itself an explicit specialization
2145 already, the first line specializes "f" which is a non-template
2146 member function, whilst the second line specializes "f" which
2147 is a template member function. So both lines are syntactically
2148 correct, and check_explicit_specialization does not reject
2149 them.
2150
2151 Here, we can do better, as we are matching the specialization
2152 against the declarations. We count the number of template
2153 headers, and we check if they match TEMPLATE_COUNT + 1
2154 (TEMPLATE_COUNT is the number of qualifying template classes,
2155 plus there must be another header for the member template
2156 itself).
2157
2158 Notice that if header_count is zero, this is not a
2159 specialization but rather a template instantiation, so there
2160 is no check we can perform here. */
2161 if (header_count && header_count != template_count + 1)
2162 continue;
2163
2164 /* Check that the number of template arguments at the
2165 innermost level for DECL is the same as for FN. */
2166 if (current_binding_level->kind == sk_template_parms
2167 && !current_binding_level->explicit_spec_p
2168 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
2169 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
2170 (current_template_parms))))
2171 continue;
2172
2173 /* DECL might be a specialization of FN. */
2174 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2175 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
2176
2177 /* For a non-static member function, we need to make sure
2178 that the const qualification is the same. Since
2179 get_bindings does not try to merge the "this" parameter,
2180 we must do the comparison explicitly. */
2181 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2182 && !same_type_p (TREE_VALUE (fn_arg_types),
2183 TREE_VALUE (decl_arg_types)))
2184 continue;
2185
2186 /* Skip the "this" parameter and, for constructors of
2187 classes with virtual bases, the VTT parameter. A
2188 full specialization of a constructor will have a VTT
2189 parameter, but a template never will. */
2190 decl_arg_types
2191 = skip_artificial_parms_for (decl, decl_arg_types);
2192 fn_arg_types
2193 = skip_artificial_parms_for (fn, fn_arg_types);
2194
2195 /* Function templates cannot be specializations; there are
2196 no partial specializations of functions. Therefore, if
2197 the type of DECL does not match FN, there is no
2198 match.
2199
2200 Note that it should never be the case that we have both
2201 candidates added here, and for regular member functions
2202 below. */
2203 if (tsk == tsk_template)
2204 {
2205 if (compparms (fn_arg_types, decl_arg_types))
2206 candidates = tree_cons (NULL_TREE, fn, candidates);
2207 continue;
2208 }
2209
2210 /* See whether this function might be a specialization of this
2211 template. Suppress access control because we might be trying
2212 to make this specialization a friend, and we have already done
2213 access control for the declaration of the specialization. */
2214 push_deferring_access_checks (dk_no_check);
2215 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
2216 pop_deferring_access_checks ();
2217
2218 if (!targs)
2219 /* We cannot deduce template arguments that when used to
2220 specialize TMPL will produce DECL. */
2221 continue;
2222
2223 /* Remove, from the set of candidates, all those functions
2224 whose constraints are not satisfied. */
2225 if (flag_concepts && !constraints_satisfied_p (fn, targs))
2226 continue;
2227
2228 // Then, try to form the new function type.
2229 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
2230 if (insttype == error_mark_node)
2231 continue;
2232 fn_arg_types
2233 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
2234 if (!compparms (fn_arg_types, decl_arg_types))
2235 continue;
2236
2237 /* Save this template, and the arguments deduced. */
2238 templates = tree_cons (targs, fn, templates);
2239 }
2240 else if (need_member_template)
2241 /* FN is an ordinary member function, and we need a
2242 specialization of a member template. */
2243 ;
2244 else if (TREE_CODE (fn) != FUNCTION_DECL)
2245 /* We can get IDENTIFIER_NODEs here in certain erroneous
2246 cases. */
2247 ;
2248 else if (!DECL_FUNCTION_MEMBER_P (fn))
2249 /* This is just an ordinary non-member function. Nothing can
2250 be a specialization of that. */
2251 ;
2252 else if (DECL_ARTIFICIAL (fn))
2253 /* Cannot specialize functions that are created implicitly. */
2254 ;
2255 else
2256 {
2257 tree decl_arg_types;
2258
2259 /* This is an ordinary member function. However, since
2260 we're here, we can assume its enclosing class is a
2261 template class. For example,
2262
2263 template <typename T> struct S { void f(); };
2264 template <> void S<int>::f() {}
2265
2266 Here, S<int>::f is a non-template, but S<int> is a
2267 template class. If FN has the same type as DECL, we
2268 might be in business. */
2269
2270 if (!DECL_TEMPLATE_INFO (fn))
2271 /* Its enclosing class is an explicit specialization
2272 of a template class. This is not a candidate. */
2273 continue;
2274
2275 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2276 TREE_TYPE (TREE_TYPE (fn))))
2277 /* The return types differ. */
2278 continue;
2279
2280 /* Adjust the type of DECL in case FN is a static member. */
2281 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2282 if (DECL_STATIC_FUNCTION_P (fn)
2283 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2284 decl_arg_types = TREE_CHAIN (decl_arg_types);
2285
2286 if (!compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2287 decl_arg_types))
2288 continue;
2289
2290 // If the deduced arguments do not satisfy the constraints,
2291 // this is not a candidate.
2292 if (flag_concepts && !constraints_satisfied_p (fn))
2293 continue;
2294
2295 // Add the candidate.
2296 candidates = tree_cons (NULL_TREE, fn, candidates);
2297 }
2298 }
2299
2300 if (templates && TREE_CHAIN (templates))
2301 {
2302 /* We have:
2303
2304 [temp.expl.spec]
2305
2306 It is possible for a specialization with a given function
2307 signature to be instantiated from more than one function
2308 template. In such cases, explicit specification of the
2309 template arguments must be used to uniquely identify the
2310 function template specialization being specialized.
2311
2312 Note that here, there's no suggestion that we're supposed to
2313 determine which of the candidate templates is most
2314 specialized. However, we, also have:
2315
2316 [temp.func.order]
2317
2318 Partial ordering of overloaded function template
2319 declarations is used in the following contexts to select
2320 the function template to which a function template
2321 specialization refers:
2322
2323 -- when an explicit specialization refers to a function
2324 template.
2325
2326 So, we do use the partial ordering rules, at least for now.
2327 This extension can only serve to make invalid programs valid,
2328 so it's safe. And, there is strong anecdotal evidence that
2329 the committee intended the partial ordering rules to apply;
2330 the EDG front end has that behavior, and John Spicer claims
2331 that the committee simply forgot to delete the wording in
2332 [temp.expl.spec]. */
2333 tree tmpl = most_specialized_instantiation (templates);
2334 if (tmpl != error_mark_node)
2335 {
2336 templates = tmpl;
2337 TREE_CHAIN (templates) = NULL_TREE;
2338 }
2339 }
2340
2341 // Concepts allows multiple declarations of member functions
2342 // with the same signature. Like above, we need to rely on
2343 // on the partial ordering of those candidates to determine which
2344 // is the best.
2345 if (flag_concepts && candidates && TREE_CHAIN (candidates))
2346 {
2347 if (tree cand = most_constrained_function (candidates))
2348 {
2349 candidates = cand;
2350 TREE_CHAIN (cand) = NULL_TREE;
2351 }
2352 }
2353
2354 if (templates == NULL_TREE && candidates == NULL_TREE)
2355 {
2356 error ("template-id %qD for %q+D does not match any template "
2357 "declaration", template_id, decl);
2358 if (header_count && header_count != template_count + 1)
2359 inform (input_location, "saw %d %<template<>%>, need %d for "
2360 "specializing a member function template",
2361 header_count, template_count + 1);
2362 else
2363 print_candidates (orig_fns);
2364 return error_mark_node;
2365 }
2366 else if ((templates && TREE_CHAIN (templates))
2367 || (candidates && TREE_CHAIN (candidates))
2368 || (templates && candidates))
2369 {
2370 error ("ambiguous template specialization %qD for %q+D",
2371 template_id, decl);
2372 candidates = chainon (candidates, templates);
2373 print_candidates (candidates);
2374 return error_mark_node;
2375 }
2376
2377 /* We have one, and exactly one, match. */
2378 if (candidates)
2379 {
2380 tree fn = TREE_VALUE (candidates);
2381 *targs_out = copy_node (DECL_TI_ARGS (fn));
2382
2383 // Propagate the candidate's constraints to the declaration.
2384 set_constraints (decl, get_constraints (fn));
2385
2386 /* DECL is a re-declaration or partial instantiation of a template
2387 function. */
2388 if (TREE_CODE (fn) == TEMPLATE_DECL)
2389 return fn;
2390 /* It was a specialization of an ordinary member function in a
2391 template class. */
2392 return DECL_TI_TEMPLATE (fn);
2393 }
2394
2395 /* It was a specialization of a template. */
2396 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2397 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2398 {
2399 *targs_out = copy_node (targs);
2400 SET_TMPL_ARGS_LEVEL (*targs_out,
2401 TMPL_ARGS_DEPTH (*targs_out),
2402 TREE_PURPOSE (templates));
2403 }
2404 else
2405 *targs_out = TREE_PURPOSE (templates);
2406 return TREE_VALUE (templates);
2407 }
2408
2409 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2410 but with the default argument values filled in from those in the
2411 TMPL_TYPES. */
2412
2413 static tree
2414 copy_default_args_to_explicit_spec_1 (tree spec_types,
2415 tree tmpl_types)
2416 {
2417 tree new_spec_types;
2418
2419 if (!spec_types)
2420 return NULL_TREE;
2421
2422 if (spec_types == void_list_node)
2423 return void_list_node;
2424
2425 /* Substitute into the rest of the list. */
2426 new_spec_types =
2427 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2428 TREE_CHAIN (tmpl_types));
2429
2430 /* Add the default argument for this parameter. */
2431 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2432 TREE_VALUE (spec_types),
2433 new_spec_types);
2434 }
2435
2436 /* DECL is an explicit specialization. Replicate default arguments
2437 from the template it specializes. (That way, code like:
2438
2439 template <class T> void f(T = 3);
2440 template <> void f(double);
2441 void g () { f (); }
2442
2443 works, as required.) An alternative approach would be to look up
2444 the correct default arguments at the call-site, but this approach
2445 is consistent with how implicit instantiations are handled. */
2446
2447 static void
2448 copy_default_args_to_explicit_spec (tree decl)
2449 {
2450 tree tmpl;
2451 tree spec_types;
2452 tree tmpl_types;
2453 tree new_spec_types;
2454 tree old_type;
2455 tree new_type;
2456 tree t;
2457 tree object_type = NULL_TREE;
2458 tree in_charge = NULL_TREE;
2459 tree vtt = NULL_TREE;
2460
2461 /* See if there's anything we need to do. */
2462 tmpl = DECL_TI_TEMPLATE (decl);
2463 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2464 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2465 if (TREE_PURPOSE (t))
2466 break;
2467 if (!t)
2468 return;
2469
2470 old_type = TREE_TYPE (decl);
2471 spec_types = TYPE_ARG_TYPES (old_type);
2472
2473 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2474 {
2475 /* Remove the this pointer, but remember the object's type for
2476 CV quals. */
2477 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2478 spec_types = TREE_CHAIN (spec_types);
2479 tmpl_types = TREE_CHAIN (tmpl_types);
2480
2481 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2482 {
2483 /* DECL may contain more parameters than TMPL due to the extra
2484 in-charge parameter in constructors and destructors. */
2485 in_charge = spec_types;
2486 spec_types = TREE_CHAIN (spec_types);
2487 }
2488 if (DECL_HAS_VTT_PARM_P (decl))
2489 {
2490 vtt = spec_types;
2491 spec_types = TREE_CHAIN (spec_types);
2492 }
2493 }
2494
2495 /* Compute the merged default arguments. */
2496 new_spec_types =
2497 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2498
2499 /* Compute the new FUNCTION_TYPE. */
2500 if (object_type)
2501 {
2502 if (vtt)
2503 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2504 TREE_VALUE (vtt),
2505 new_spec_types);
2506
2507 if (in_charge)
2508 /* Put the in-charge parameter back. */
2509 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2510 TREE_VALUE (in_charge),
2511 new_spec_types);
2512
2513 new_type = build_method_type_directly (object_type,
2514 TREE_TYPE (old_type),
2515 new_spec_types);
2516 }
2517 else
2518 new_type = build_function_type (TREE_TYPE (old_type),
2519 new_spec_types);
2520 new_type = cp_build_type_attribute_variant (new_type,
2521 TYPE_ATTRIBUTES (old_type));
2522 new_type = build_exception_variant (new_type,
2523 TYPE_RAISES_EXCEPTIONS (old_type));
2524
2525 if (TYPE_HAS_LATE_RETURN_TYPE (old_type))
2526 TYPE_HAS_LATE_RETURN_TYPE (new_type) = 1;
2527
2528 TREE_TYPE (decl) = new_type;
2529 }
2530
2531 /* Return the number of template headers we expect to see for a definition
2532 or specialization of CTYPE or one of its non-template members. */
2533
2534 int
2535 num_template_headers_for_class (tree ctype)
2536 {
2537 int num_templates = 0;
2538
2539 while (ctype && CLASS_TYPE_P (ctype))
2540 {
2541 /* You're supposed to have one `template <...>' for every
2542 template class, but you don't need one for a full
2543 specialization. For example:
2544
2545 template <class T> struct S{};
2546 template <> struct S<int> { void f(); };
2547 void S<int>::f () {}
2548
2549 is correct; there shouldn't be a `template <>' for the
2550 definition of `S<int>::f'. */
2551 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2552 /* If CTYPE does not have template information of any
2553 kind, then it is not a template, nor is it nested
2554 within a template. */
2555 break;
2556 if (explicit_class_specialization_p (ctype))
2557 break;
2558 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2559 ++num_templates;
2560
2561 ctype = TYPE_CONTEXT (ctype);
2562 }
2563
2564 return num_templates;
2565 }
2566
2567 /* Do a simple sanity check on the template headers that precede the
2568 variable declaration DECL. */
2569
2570 void
2571 check_template_variable (tree decl)
2572 {
2573 tree ctx = CP_DECL_CONTEXT (decl);
2574 int wanted = num_template_headers_for_class (ctx);
2575 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
2576 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2577 {
2578 if (cxx_dialect < cxx14)
2579 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2580 "variable templates only available with "
2581 "-std=c++14 or -std=gnu++14");
2582
2583 // Namespace-scope variable templates should have a template header.
2584 ++wanted;
2585 }
2586 if (template_header_count > wanted)
2587 {
2588 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2589 "too many template headers for %D (should be %d)",
2590 decl, wanted);
2591 if (warned && CLASS_TYPE_P (ctx)
2592 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2593 inform (DECL_SOURCE_LOCATION (decl),
2594 "members of an explicitly specialized class are defined "
2595 "without a template header");
2596 }
2597 }
2598
2599 /* Check to see if the function just declared, as indicated in
2600 DECLARATOR, and in DECL, is a specialization of a function
2601 template. We may also discover that the declaration is an explicit
2602 instantiation at this point.
2603
2604 Returns DECL, or an equivalent declaration that should be used
2605 instead if all goes well. Issues an error message if something is
2606 amiss. Returns error_mark_node if the error is not easily
2607 recoverable.
2608
2609 FLAGS is a bitmask consisting of the following flags:
2610
2611 2: The function has a definition.
2612 4: The function is a friend.
2613
2614 The TEMPLATE_COUNT is the number of references to qualifying
2615 template classes that appeared in the name of the function. For
2616 example, in
2617
2618 template <class T> struct S { void f(); };
2619 void S<int>::f();
2620
2621 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2622 classes are not counted in the TEMPLATE_COUNT, so that in
2623
2624 template <class T> struct S {};
2625 template <> struct S<int> { void f(); }
2626 template <> void S<int>::f();
2627
2628 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2629 invalid; there should be no template <>.)
2630
2631 If the function is a specialization, it is marked as such via
2632 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2633 is set up correctly, and it is added to the list of specializations
2634 for that template. */
2635
2636 tree
2637 check_explicit_specialization (tree declarator,
2638 tree decl,
2639 int template_count,
2640 int flags)
2641 {
2642 int have_def = flags & 2;
2643 int is_friend = flags & 4;
2644 bool is_concept = flags & 8;
2645 int specialization = 0;
2646 int explicit_instantiation = 0;
2647 int member_specialization = 0;
2648 tree ctype = DECL_CLASS_CONTEXT (decl);
2649 tree dname = DECL_NAME (decl);
2650 tmpl_spec_kind tsk;
2651
2652 if (is_friend)
2653 {
2654 if (!processing_specialization)
2655 tsk = tsk_none;
2656 else
2657 tsk = tsk_excessive_parms;
2658 }
2659 else
2660 tsk = current_tmpl_spec_kind (template_count);
2661
2662 switch (tsk)
2663 {
2664 case tsk_none:
2665 if (processing_specialization && !VAR_P (decl))
2666 {
2667 specialization = 1;
2668 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2669 }
2670 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2671 {
2672 if (is_friend)
2673 /* This could be something like:
2674
2675 template <class T> void f(T);
2676 class S { friend void f<>(int); } */
2677 specialization = 1;
2678 else
2679 {
2680 /* This case handles bogus declarations like template <>
2681 template <class T> void f<int>(); */
2682
2683 error ("template-id %qD in declaration of primary template",
2684 declarator);
2685 return decl;
2686 }
2687 }
2688 break;
2689
2690 case tsk_invalid_member_spec:
2691 /* The error has already been reported in
2692 check_specialization_scope. */
2693 return error_mark_node;
2694
2695 case tsk_invalid_expl_inst:
2696 error ("template parameter list used in explicit instantiation");
2697
2698 /* Fall through. */
2699
2700 case tsk_expl_inst:
2701 if (have_def)
2702 error ("definition provided for explicit instantiation");
2703
2704 explicit_instantiation = 1;
2705 break;
2706
2707 case tsk_excessive_parms:
2708 case tsk_insufficient_parms:
2709 if (tsk == tsk_excessive_parms)
2710 error ("too many template parameter lists in declaration of %qD",
2711 decl);
2712 else if (template_header_count)
2713 error("too few template parameter lists in declaration of %qD", decl);
2714 else
2715 error("explicit specialization of %qD must be introduced by "
2716 "%<template <>%>", decl);
2717
2718 /* Fall through. */
2719 case tsk_expl_spec:
2720 if (is_concept)
2721 error ("explicit specialization declared %<concept%>");
2722
2723 if (VAR_P (decl) && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2724 /* In cases like template<> constexpr bool v = true;
2725 We'll give an error in check_template_variable. */
2726 break;
2727
2728 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2729 if (ctype)
2730 member_specialization = 1;
2731 else
2732 specialization = 1;
2733 break;
2734
2735 case tsk_template:
2736 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2737 {
2738 /* This case handles bogus declarations like template <>
2739 template <class T> void f<int>(); */
2740
2741 if (!uses_template_parms (declarator))
2742 error ("template-id %qD in declaration of primary template",
2743 declarator);
2744 else if (variable_template_p (TREE_OPERAND (declarator, 0)))
2745 {
2746 /* Partial specialization of variable template. */
2747 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2748 specialization = 1;
2749 goto ok;
2750 }
2751 else if (cxx_dialect < cxx14)
2752 error ("non-type partial specialization %qD "
2753 "is not allowed", declarator);
2754 else
2755 error ("non-class, non-variable partial specialization %qD "
2756 "is not allowed", declarator);
2757 return decl;
2758 ok:;
2759 }
2760
2761 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2762 /* This is a specialization of a member template, without
2763 specialization the containing class. Something like:
2764
2765 template <class T> struct S {
2766 template <class U> void f (U);
2767 };
2768 template <> template <class U> void S<int>::f(U) {}
2769
2770 That's a specialization -- but of the entire template. */
2771 specialization = 1;
2772 break;
2773
2774 default:
2775 gcc_unreachable ();
2776 }
2777
2778 if ((specialization || member_specialization)
2779 /* This doesn't apply to variable templates. */
2780 && (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE
2781 || TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE))
2782 {
2783 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2784 for (; t; t = TREE_CHAIN (t))
2785 if (TREE_PURPOSE (t))
2786 {
2787 permerror (input_location,
2788 "default argument specified in explicit specialization");
2789 break;
2790 }
2791 }
2792
2793 if (specialization || member_specialization || explicit_instantiation)
2794 {
2795 tree tmpl = NULL_TREE;
2796 tree targs = NULL_TREE;
2797 bool was_template_id = (TREE_CODE (declarator) == TEMPLATE_ID_EXPR);
2798
2799 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2800 if (!was_template_id)
2801 {
2802 tree fns;
2803
2804 gcc_assert (identifier_p (declarator));
2805 if (ctype)
2806 fns = dname;
2807 else
2808 {
2809 /* If there is no class context, the explicit instantiation
2810 must be at namespace scope. */
2811 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2812
2813 /* Find the namespace binding, using the declaration
2814 context. */
2815 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2816 false, true);
2817 if (fns == error_mark_node || !is_overloaded_fn (fns))
2818 {
2819 error ("%qD is not a template function", dname);
2820 fns = error_mark_node;
2821 }
2822 else
2823 {
2824 tree fn = OVL_CURRENT (fns);
2825 if (!is_associated_namespace (CP_DECL_CONTEXT (decl),
2826 CP_DECL_CONTEXT (fn)))
2827 error ("%qD is not declared in %qD",
2828 decl, current_namespace);
2829 }
2830 }
2831
2832 declarator = lookup_template_function (fns, NULL_TREE);
2833 }
2834
2835 if (declarator == error_mark_node)
2836 return error_mark_node;
2837
2838 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2839 {
2840 if (!explicit_instantiation)
2841 /* A specialization in class scope. This is invalid,
2842 but the error will already have been flagged by
2843 check_specialization_scope. */
2844 return error_mark_node;
2845 else
2846 {
2847 /* It's not valid to write an explicit instantiation in
2848 class scope, e.g.:
2849
2850 class C { template void f(); }
2851
2852 This case is caught by the parser. However, on
2853 something like:
2854
2855 template class C { void f(); };
2856
2857 (which is invalid) we can get here. The error will be
2858 issued later. */
2859 ;
2860 }
2861
2862 return decl;
2863 }
2864 else if (ctype != NULL_TREE
2865 && (identifier_p (TREE_OPERAND (declarator, 0))))
2866 {
2867 // We'll match variable templates in start_decl.
2868 if (VAR_P (decl))
2869 return decl;
2870
2871 /* Find the list of functions in ctype that have the same
2872 name as the declared function. */
2873 tree name = TREE_OPERAND (declarator, 0);
2874 tree fns = NULL_TREE;
2875 int idx;
2876
2877 if (constructor_name_p (name, ctype))
2878 {
2879 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2880
2881 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2882 : !CLASSTYPE_DESTRUCTORS (ctype))
2883 {
2884 /* From [temp.expl.spec]:
2885
2886 If such an explicit specialization for the member
2887 of a class template names an implicitly-declared
2888 special member function (clause _special_), the
2889 program is ill-formed.
2890
2891 Similar language is found in [temp.explicit]. */
2892 error ("specialization of implicitly-declared special member function");
2893 return error_mark_node;
2894 }
2895
2896 name = is_constructor ? ctor_identifier : dtor_identifier;
2897 }
2898
2899 if (!DECL_CONV_FN_P (decl))
2900 {
2901 idx = lookup_fnfields_1 (ctype, name);
2902 if (idx >= 0)
2903 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2904 }
2905 else
2906 {
2907 vec<tree, va_gc> *methods;
2908 tree ovl;
2909
2910 /* For a type-conversion operator, we cannot do a
2911 name-based lookup. We might be looking for `operator
2912 int' which will be a specialization of `operator T'.
2913 So, we find *all* the conversion operators, and then
2914 select from them. */
2915 fns = NULL_TREE;
2916
2917 methods = CLASSTYPE_METHOD_VEC (ctype);
2918 if (methods)
2919 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2920 methods->iterate (idx, &ovl);
2921 ++idx)
2922 {
2923 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2924 /* There are no more conversion functions. */
2925 break;
2926
2927 /* Glue all these conversion functions together
2928 with those we already have. */
2929 for (; ovl; ovl = OVL_NEXT (ovl))
2930 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2931 }
2932 }
2933
2934 if (fns == NULL_TREE)
2935 {
2936 error ("no member function %qD declared in %qT", name, ctype);
2937 return error_mark_node;
2938 }
2939 else
2940 TREE_OPERAND (declarator, 0) = fns;
2941 }
2942
2943 /* Figure out what exactly is being specialized at this point.
2944 Note that for an explicit instantiation, even one for a
2945 member function, we cannot tell apriori whether the
2946 instantiation is for a member template, or just a member
2947 function of a template class. Even if a member template is
2948 being instantiated, the member template arguments may be
2949 elided if they can be deduced from the rest of the
2950 declaration. */
2951 tmpl = determine_specialization (declarator, decl,
2952 &targs,
2953 member_specialization,
2954 template_count,
2955 tsk);
2956
2957 if (!tmpl || tmpl == error_mark_node)
2958 /* We couldn't figure out what this declaration was
2959 specializing. */
2960 return error_mark_node;
2961 else
2962 {
2963 tree gen_tmpl = most_general_template (tmpl);
2964
2965 if (explicit_instantiation)
2966 {
2967 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2968 is done by do_decl_instantiation later. */
2969
2970 int arg_depth = TMPL_ARGS_DEPTH (targs);
2971 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2972
2973 if (arg_depth > parm_depth)
2974 {
2975 /* If TMPL is not the most general template (for
2976 example, if TMPL is a friend template that is
2977 injected into namespace scope), then there will
2978 be too many levels of TARGS. Remove some of them
2979 here. */
2980 int i;
2981 tree new_targs;
2982
2983 new_targs = make_tree_vec (parm_depth);
2984 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2985 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2986 = TREE_VEC_ELT (targs, i);
2987 targs = new_targs;
2988 }
2989
2990 return instantiate_template (tmpl, targs, tf_error);
2991 }
2992
2993 /* If we thought that the DECL was a member function, but it
2994 turns out to be specializing a static member function,
2995 make DECL a static member function as well. */
2996 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
2997 && DECL_STATIC_FUNCTION_P (tmpl)
2998 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2999 revert_static_member_fn (decl);
3000
3001 /* If this is a specialization of a member template of a
3002 template class, we want to return the TEMPLATE_DECL, not
3003 the specialization of it. */
3004 if (tsk == tsk_template && !was_template_id)
3005 {
3006 tree result = DECL_TEMPLATE_RESULT (tmpl);
3007 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
3008 DECL_INITIAL (result) = NULL_TREE;
3009 if (have_def)
3010 {
3011 tree parm;
3012 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
3013 DECL_SOURCE_LOCATION (result)
3014 = DECL_SOURCE_LOCATION (decl);
3015 /* We want to use the argument list specified in the
3016 definition, not in the original declaration. */
3017 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
3018 for (parm = DECL_ARGUMENTS (result); parm;
3019 parm = DECL_CHAIN (parm))
3020 DECL_CONTEXT (parm) = result;
3021 }
3022 return register_specialization (tmpl, gen_tmpl, targs,
3023 is_friend, 0);
3024 }
3025
3026 /* Set up the DECL_TEMPLATE_INFO for DECL. */
3027 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
3028
3029 if (was_template_id)
3030 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl)) = true;
3031
3032 /* Inherit default function arguments from the template
3033 DECL is specializing. */
3034 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
3035 copy_default_args_to_explicit_spec (decl);
3036
3037 /* This specialization has the same protection as the
3038 template it specializes. */
3039 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
3040 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
3041
3042 /* 7.1.1-1 [dcl.stc]
3043
3044 A storage-class-specifier shall not be specified in an
3045 explicit specialization...
3046
3047 The parser rejects these, so unless action is taken here,
3048 explicit function specializations will always appear with
3049 global linkage.
3050
3051 The action recommended by the C++ CWG in response to C++
3052 defect report 605 is to make the storage class and linkage
3053 of the explicit specialization match the templated function:
3054
3055 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
3056 */
3057 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
3058 {
3059 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
3060 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
3061
3062 /* A concept cannot be specialized. */
3063 if (DECL_DECLARED_CONCEPT_P (tmpl_func))
3064 {
3065 error ("explicit specialization of function concept %qD",
3066 gen_tmpl);
3067 return error_mark_node;
3068 }
3069
3070 /* This specialization has the same linkage and visibility as
3071 the function template it specializes. */
3072 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
3073 if (! TREE_PUBLIC (decl))
3074 {
3075 DECL_INTERFACE_KNOWN (decl) = 1;
3076 DECL_NOT_REALLY_EXTERN (decl) = 1;
3077 }
3078 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
3079 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
3080 {
3081 DECL_VISIBILITY_SPECIFIED (decl) = 1;
3082 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
3083 }
3084 }
3085
3086 /* If DECL is a friend declaration, declared using an
3087 unqualified name, the namespace associated with DECL may
3088 have been set incorrectly. For example, in:
3089
3090 template <typename T> void f(T);
3091 namespace N {
3092 struct S { friend void f<int>(int); }
3093 }
3094
3095 we will have set the DECL_CONTEXT for the friend
3096 declaration to N, rather than to the global namespace. */
3097 if (DECL_NAMESPACE_SCOPE_P (decl))
3098 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
3099
3100 if (is_friend && !have_def)
3101 /* This is not really a declaration of a specialization.
3102 It's just the name of an instantiation. But, it's not
3103 a request for an instantiation, either. */
3104 SET_DECL_IMPLICIT_INSTANTIATION (decl);
3105 else if (TREE_CODE (decl) == FUNCTION_DECL)
3106 /* A specialization is not necessarily COMDAT. */
3107 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
3108 && DECL_DECLARED_INLINE_P (decl));
3109 else if (VAR_P (decl))
3110 DECL_COMDAT (decl) = false;
3111
3112 /* If this is a full specialization, register it so that we can find
3113 it again. Partial specializations will be registered in
3114 process_partial_specialization. */
3115 if (!processing_template_decl)
3116 decl = register_specialization (decl, gen_tmpl, targs,
3117 is_friend, 0);
3118
3119 /* A 'structor should already have clones. */
3120 gcc_assert (decl == error_mark_node
3121 || variable_template_p (tmpl)
3122 || !(DECL_CONSTRUCTOR_P (decl)
3123 || DECL_DESTRUCTOR_P (decl))
3124 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
3125 }
3126 }
3127
3128 return decl;
3129 }
3130
3131 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
3132 parameters. These are represented in the same format used for
3133 DECL_TEMPLATE_PARMS. */
3134
3135 int
3136 comp_template_parms (const_tree parms1, const_tree parms2)
3137 {
3138 const_tree p1;
3139 const_tree p2;
3140
3141 if (parms1 == parms2)
3142 return 1;
3143
3144 for (p1 = parms1, p2 = parms2;
3145 p1 != NULL_TREE && p2 != NULL_TREE;
3146 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
3147 {
3148 tree t1 = TREE_VALUE (p1);
3149 tree t2 = TREE_VALUE (p2);
3150 int i;
3151
3152 gcc_assert (TREE_CODE (t1) == TREE_VEC);
3153 gcc_assert (TREE_CODE (t2) == TREE_VEC);
3154
3155 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
3156 return 0;
3157
3158 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
3159 {
3160 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
3161 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
3162
3163 /* If either of the template parameters are invalid, assume
3164 they match for the sake of error recovery. */
3165 if (error_operand_p (parm1) || error_operand_p (parm2))
3166 return 1;
3167
3168 if (TREE_CODE (parm1) != TREE_CODE (parm2))
3169 return 0;
3170
3171 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
3172 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
3173 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
3174 continue;
3175 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
3176 return 0;
3177 }
3178 }
3179
3180 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
3181 /* One set of parameters has more parameters lists than the
3182 other. */
3183 return 0;
3184
3185 return 1;
3186 }
3187
3188 /* Determine whether PARM is a parameter pack. */
3189
3190 bool
3191 template_parameter_pack_p (const_tree parm)
3192 {
3193 /* Determine if we have a non-type template parameter pack. */
3194 if (TREE_CODE (parm) == PARM_DECL)
3195 return (DECL_TEMPLATE_PARM_P (parm)
3196 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
3197 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
3198 return TEMPLATE_PARM_PARAMETER_PACK (parm);
3199
3200 /* If this is a list of template parameters, we could get a
3201 TYPE_DECL or a TEMPLATE_DECL. */
3202 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
3203 parm = TREE_TYPE (parm);
3204
3205 /* Otherwise it must be a type template parameter. */
3206 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
3207 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
3208 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
3209 }
3210
3211 /* Determine if T is a function parameter pack. */
3212
3213 bool
3214 function_parameter_pack_p (const_tree t)
3215 {
3216 if (t && TREE_CODE (t) == PARM_DECL)
3217 return DECL_PACK_P (t);
3218 return false;
3219 }
3220
3221 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
3222 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
3223
3224 tree
3225 get_function_template_decl (const_tree primary_func_tmpl_inst)
3226 {
3227 if (! primary_func_tmpl_inst
3228 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
3229 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
3230 return NULL;
3231
3232 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
3233 }
3234
3235 /* Return true iff the function parameter PARAM_DECL was expanded
3236 from the function parameter pack PACK. */
3237
3238 bool
3239 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
3240 {
3241 if (DECL_ARTIFICIAL (param_decl)
3242 || !function_parameter_pack_p (pack))
3243 return false;
3244
3245 /* The parameter pack and its pack arguments have the same
3246 DECL_PARM_INDEX. */
3247 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
3248 }
3249
3250 /* Determine whether ARGS describes a variadic template args list,
3251 i.e., one that is terminated by a template argument pack. */
3252
3253 static bool
3254 template_args_variadic_p (tree args)
3255 {
3256 int nargs;
3257 tree last_parm;
3258
3259 if (args == NULL_TREE)
3260 return false;
3261
3262 args = INNERMOST_TEMPLATE_ARGS (args);
3263 nargs = TREE_VEC_LENGTH (args);
3264
3265 if (nargs == 0)
3266 return false;
3267
3268 last_parm = TREE_VEC_ELT (args, nargs - 1);
3269
3270 return ARGUMENT_PACK_P (last_parm);
3271 }
3272
3273 /* Generate a new name for the parameter pack name NAME (an
3274 IDENTIFIER_NODE) that incorporates its */
3275
3276 static tree
3277 make_ith_pack_parameter_name (tree name, int i)
3278 {
3279 /* Munge the name to include the parameter index. */
3280 #define NUMBUF_LEN 128
3281 char numbuf[NUMBUF_LEN];
3282 char* newname;
3283 int newname_len;
3284
3285 if (name == NULL_TREE)
3286 return name;
3287 snprintf (numbuf, NUMBUF_LEN, "%i", i);
3288 newname_len = IDENTIFIER_LENGTH (name)
3289 + strlen (numbuf) + 2;
3290 newname = (char*)alloca (newname_len);
3291 snprintf (newname, newname_len,
3292 "%s#%i", IDENTIFIER_POINTER (name), i);
3293 return get_identifier (newname);
3294 }
3295
3296 /* Return true if T is a primary function, class or alias template
3297 instantiation. */
3298
3299 bool
3300 primary_template_instantiation_p (const_tree t)
3301 {
3302 if (!t)
3303 return false;
3304
3305 if (TREE_CODE (t) == FUNCTION_DECL)
3306 return DECL_LANG_SPECIFIC (t)
3307 && DECL_TEMPLATE_INSTANTIATION (t)
3308 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
3309 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3310 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
3311 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
3312 else if (alias_template_specialization_p (t))
3313 return true;
3314 return false;
3315 }
3316
3317 /* Return true if PARM is a template template parameter. */
3318
3319 bool
3320 template_template_parameter_p (const_tree parm)
3321 {
3322 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
3323 }
3324
3325 /* Return true iff PARM is a DECL representing a type template
3326 parameter. */
3327
3328 bool
3329 template_type_parameter_p (const_tree parm)
3330 {
3331 return (parm
3332 && (TREE_CODE (parm) == TYPE_DECL
3333 || TREE_CODE (parm) == TEMPLATE_DECL)
3334 && DECL_TEMPLATE_PARM_P (parm));
3335 }
3336
3337 /* Return the template parameters of T if T is a
3338 primary template instantiation, NULL otherwise. */
3339
3340 tree
3341 get_primary_template_innermost_parameters (const_tree t)
3342 {
3343 tree parms = NULL, template_info = NULL;
3344
3345 if ((template_info = get_template_info (t))
3346 && primary_template_instantiation_p (t))
3347 parms = INNERMOST_TEMPLATE_PARMS
3348 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3349
3350 return parms;
3351 }
3352
3353 /* Return the template parameters of the LEVELth level from the full list
3354 of template parameters PARMS. */
3355
3356 tree
3357 get_template_parms_at_level (tree parms, int level)
3358 {
3359 tree p;
3360 if (!parms
3361 || TREE_CODE (parms) != TREE_LIST
3362 || level > TMPL_PARMS_DEPTH (parms))
3363 return NULL_TREE;
3364
3365 for (p = parms; p; p = TREE_CHAIN (p))
3366 if (TMPL_PARMS_DEPTH (p) == level)
3367 return p;
3368
3369 return NULL_TREE;
3370 }
3371
3372 /* Returns the template arguments of T if T is a template instantiation,
3373 NULL otherwise. */
3374
3375 tree
3376 get_template_innermost_arguments (const_tree t)
3377 {
3378 tree args = NULL, template_info = NULL;
3379
3380 if ((template_info = get_template_info (t))
3381 && TI_ARGS (template_info))
3382 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3383
3384 return args;
3385 }
3386
3387 /* Return the argument pack elements of T if T is a template argument pack,
3388 NULL otherwise. */
3389
3390 tree
3391 get_template_argument_pack_elems (const_tree t)
3392 {
3393 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3394 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3395 return NULL;
3396
3397 return ARGUMENT_PACK_ARGS (t);
3398 }
3399
3400 /* Structure used to track the progress of find_parameter_packs_r. */
3401 struct find_parameter_pack_data
3402 {
3403 /* TREE_LIST that will contain all of the parameter packs found by
3404 the traversal. */
3405 tree* parameter_packs;
3406
3407 /* Set of AST nodes that have been visited by the traversal. */
3408 hash_set<tree> *visited;
3409
3410 /* True iff we're making a type pack expansion. */
3411 bool type_pack_expansion_p;
3412 };
3413
3414 /* Identifies all of the argument packs that occur in a template
3415 argument and appends them to the TREE_LIST inside DATA, which is a
3416 find_parameter_pack_data structure. This is a subroutine of
3417 make_pack_expansion and uses_parameter_packs. */
3418 static tree
3419 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3420 {
3421 tree t = *tp;
3422 struct find_parameter_pack_data* ppd =
3423 (struct find_parameter_pack_data*)data;
3424 bool parameter_pack_p = false;
3425
3426 /* Handle type aliases/typedefs. */
3427 if (TYPE_ALIAS_P (t))
3428 {
3429 if (TYPE_TEMPLATE_INFO (t))
3430 cp_walk_tree (&TYPE_TI_ARGS (t),
3431 &find_parameter_packs_r,
3432 ppd, ppd->visited);
3433 *walk_subtrees = 0;
3434 return NULL_TREE;
3435 }
3436
3437 /* Identify whether this is a parameter pack or not. */
3438 switch (TREE_CODE (t))
3439 {
3440 case TEMPLATE_PARM_INDEX:
3441 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3442 parameter_pack_p = true;
3443 break;
3444
3445 case TEMPLATE_TYPE_PARM:
3446 t = TYPE_MAIN_VARIANT (t);
3447 case TEMPLATE_TEMPLATE_PARM:
3448 /* If the placeholder appears in the decl-specifier-seq of a function
3449 parameter pack (14.6.3), or the type-specifier-seq of a type-id that
3450 is a pack expansion, the invented template parameter is a template
3451 parameter pack. */
3452 if (ppd->type_pack_expansion_p && is_auto_or_concept (t))
3453 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
3454 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3455 parameter_pack_p = true;
3456 break;
3457
3458 case FIELD_DECL:
3459 case PARM_DECL:
3460 if (DECL_PACK_P (t))
3461 {
3462 /* We don't want to walk into the type of a PARM_DECL,
3463 because we don't want to see the type parameter pack. */
3464 *walk_subtrees = 0;
3465 parameter_pack_p = true;
3466 }
3467 break;
3468
3469 /* Look through a lambda capture proxy to the field pack. */
3470 case VAR_DECL:
3471 if (DECL_HAS_VALUE_EXPR_P (t))
3472 {
3473 tree v = DECL_VALUE_EXPR (t);
3474 cp_walk_tree (&v,
3475 &find_parameter_packs_r,
3476 ppd, ppd->visited);
3477 *walk_subtrees = 0;
3478 }
3479 else if (variable_template_specialization_p (t))
3480 {
3481 cp_walk_tree (&DECL_TI_ARGS (t),
3482 find_parameter_packs_r,
3483 ppd, ppd->visited);
3484 *walk_subtrees = 0;
3485 }
3486 break;
3487
3488 case BASES:
3489 parameter_pack_p = true;
3490 break;
3491 default:
3492 /* Not a parameter pack. */
3493 break;
3494 }
3495
3496 if (parameter_pack_p)
3497 {
3498 /* Add this parameter pack to the list. */
3499 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3500 }
3501
3502 if (TYPE_P (t))
3503 cp_walk_tree (&TYPE_CONTEXT (t),
3504 &find_parameter_packs_r, ppd, ppd->visited);
3505
3506 /* This switch statement will return immediately if we don't find a
3507 parameter pack. */
3508 switch (TREE_CODE (t))
3509 {
3510 case TEMPLATE_PARM_INDEX:
3511 return NULL_TREE;
3512
3513 case BOUND_TEMPLATE_TEMPLATE_PARM:
3514 /* Check the template itself. */
3515 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3516 &find_parameter_packs_r, ppd, ppd->visited);
3517 /* Check the template arguments. */
3518 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3519 ppd->visited);
3520 *walk_subtrees = 0;
3521 return NULL_TREE;
3522
3523 case TEMPLATE_TYPE_PARM:
3524 case TEMPLATE_TEMPLATE_PARM:
3525 return NULL_TREE;
3526
3527 case PARM_DECL:
3528 return NULL_TREE;
3529
3530 case RECORD_TYPE:
3531 if (TYPE_PTRMEMFUNC_P (t))
3532 return NULL_TREE;
3533 /* Fall through. */
3534
3535 case UNION_TYPE:
3536 case ENUMERAL_TYPE:
3537 if (TYPE_TEMPLATE_INFO (t))
3538 cp_walk_tree (&TYPE_TI_ARGS (t),
3539 &find_parameter_packs_r, ppd, ppd->visited);
3540
3541 *walk_subtrees = 0;
3542 return NULL_TREE;
3543
3544 case CONSTRUCTOR:
3545 case TEMPLATE_DECL:
3546 cp_walk_tree (&TREE_TYPE (t),
3547 &find_parameter_packs_r, ppd, ppd->visited);
3548 return NULL_TREE;
3549
3550 case TYPENAME_TYPE:
3551 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3552 ppd, ppd->visited);
3553 *walk_subtrees = 0;
3554 return NULL_TREE;
3555
3556 case TYPE_PACK_EXPANSION:
3557 case EXPR_PACK_EXPANSION:
3558 *walk_subtrees = 0;
3559 return NULL_TREE;
3560
3561 case INTEGER_TYPE:
3562 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3563 ppd, ppd->visited);
3564 *walk_subtrees = 0;
3565 return NULL_TREE;
3566
3567 case IDENTIFIER_NODE:
3568 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3569 ppd->visited);
3570 *walk_subtrees = 0;
3571 return NULL_TREE;
3572
3573 default:
3574 return NULL_TREE;
3575 }
3576
3577 return NULL_TREE;
3578 }
3579
3580 /* Determines if the expression or type T uses any parameter packs. */
3581 bool
3582 uses_parameter_packs (tree t)
3583 {
3584 tree parameter_packs = NULL_TREE;
3585 struct find_parameter_pack_data ppd;
3586 ppd.parameter_packs = &parameter_packs;
3587 ppd.visited = new hash_set<tree>;
3588 ppd.type_pack_expansion_p = false;
3589 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3590 delete ppd.visited;
3591 return parameter_packs != NULL_TREE;
3592 }
3593
3594 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3595 representation a base-class initializer into a parameter pack
3596 expansion. If all goes well, the resulting node will be an
3597 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3598 respectively. */
3599 tree
3600 make_pack_expansion (tree arg)
3601 {
3602 tree result;
3603 tree parameter_packs = NULL_TREE;
3604 bool for_types = false;
3605 struct find_parameter_pack_data ppd;
3606
3607 if (!arg || arg == error_mark_node)
3608 return arg;
3609
3610 if (TREE_CODE (arg) == TREE_LIST && TREE_PURPOSE (arg))
3611 {
3612 /* A TREE_LIST with a non-null TREE_PURPOSE is for a base
3613 class initializer. In this case, the TREE_PURPOSE will be a
3614 _TYPE node (representing the base class expansion we're
3615 initializing) and the TREE_VALUE will be a TREE_LIST
3616 containing the initialization arguments.
3617
3618 The resulting expansion looks somewhat different from most
3619 expansions. Rather than returning just one _EXPANSION, we
3620 return a TREE_LIST whose TREE_PURPOSE is a
3621 TYPE_PACK_EXPANSION containing the bases that will be
3622 initialized. The TREE_VALUE will be identical to the
3623 original TREE_VALUE, which is a list of arguments that will
3624 be passed to each base. We do not introduce any new pack
3625 expansion nodes into the TREE_VALUE (although it is possible
3626 that some already exist), because the TREE_PURPOSE and
3627 TREE_VALUE all need to be expanded together with the same
3628 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3629 resulting TREE_PURPOSE will mention the parameter packs in
3630 both the bases and the arguments to the bases. */
3631 tree purpose;
3632 tree value;
3633 tree parameter_packs = NULL_TREE;
3634
3635 /* Determine which parameter packs will be used by the base
3636 class expansion. */
3637 ppd.visited = new hash_set<tree>;
3638 ppd.parameter_packs = &parameter_packs;
3639 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3640 &ppd, ppd.visited);
3641
3642 if (parameter_packs == NULL_TREE)
3643 {
3644 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3645 delete ppd.visited;
3646 return error_mark_node;
3647 }
3648
3649 if (TREE_VALUE (arg) != void_type_node)
3650 {
3651 /* Collect the sets of parameter packs used in each of the
3652 initialization arguments. */
3653 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3654 {
3655 /* Determine which parameter packs will be expanded in this
3656 argument. */
3657 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3658 &ppd, ppd.visited);
3659 }
3660 }
3661
3662 delete ppd.visited;
3663
3664 /* Create the pack expansion type for the base type. */
3665 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3666 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3667 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3668
3669 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3670 they will rarely be compared to anything. */
3671 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3672
3673 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3674 }
3675
3676 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3677 for_types = true;
3678
3679 /* Build the PACK_EXPANSION_* node. */
3680 result = for_types
3681 ? cxx_make_type (TYPE_PACK_EXPANSION)
3682 : make_node (EXPR_PACK_EXPANSION);
3683 SET_PACK_EXPANSION_PATTERN (result, arg);
3684 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3685 {
3686 /* Propagate type and const-expression information. */
3687 TREE_TYPE (result) = TREE_TYPE (arg);
3688 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3689 }
3690 else
3691 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3692 they will rarely be compared to anything. */
3693 SET_TYPE_STRUCTURAL_EQUALITY (result);
3694
3695 /* Determine which parameter packs will be expanded. */
3696 ppd.parameter_packs = &parameter_packs;
3697 ppd.visited = new hash_set<tree>;
3698 ppd.type_pack_expansion_p = TYPE_P (arg);
3699 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3700 delete ppd.visited;
3701
3702 /* Make sure we found some parameter packs. */
3703 if (parameter_packs == NULL_TREE)
3704 {
3705 if (TYPE_P (arg))
3706 error ("expansion pattern %<%T%> contains no argument packs", arg);
3707 else
3708 error ("expansion pattern %<%E%> contains no argument packs", arg);
3709 return error_mark_node;
3710 }
3711 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3712
3713 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3714
3715 return result;
3716 }
3717
3718 /* Checks T for any "bare" parameter packs, which have not yet been
3719 expanded, and issues an error if any are found. This operation can
3720 only be done on full expressions or types (e.g., an expression
3721 statement, "if" condition, etc.), because we could have expressions like:
3722
3723 foo(f(g(h(args)))...)
3724
3725 where "args" is a parameter pack. check_for_bare_parameter_packs
3726 should not be called for the subexpressions args, h(args),
3727 g(h(args)), or f(g(h(args))), because we would produce erroneous
3728 error messages.
3729
3730 Returns TRUE and emits an error if there were bare parameter packs,
3731 returns FALSE otherwise. */
3732 bool
3733 check_for_bare_parameter_packs (tree t)
3734 {
3735 tree parameter_packs = NULL_TREE;
3736 struct find_parameter_pack_data ppd;
3737
3738 if (!processing_template_decl || !t || t == error_mark_node)
3739 return false;
3740
3741 if (TREE_CODE (t) == TYPE_DECL)
3742 t = TREE_TYPE (t);
3743
3744 ppd.parameter_packs = &parameter_packs;
3745 ppd.visited = new hash_set<tree>;
3746 ppd.type_pack_expansion_p = false;
3747 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3748 delete ppd.visited;
3749
3750 if (parameter_packs)
3751 {
3752 error ("parameter packs not expanded with %<...%>:");
3753 while (parameter_packs)
3754 {
3755 tree pack = TREE_VALUE (parameter_packs);
3756 tree name = NULL_TREE;
3757
3758 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3759 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3760 name = TYPE_NAME (pack);
3761 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3762 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3763 else
3764 name = DECL_NAME (pack);
3765
3766 if (name)
3767 inform (input_location, " %qD", name);
3768 else
3769 inform (input_location, " <anonymous>");
3770
3771 parameter_packs = TREE_CHAIN (parameter_packs);
3772 }
3773
3774 return true;
3775 }
3776
3777 return false;
3778 }
3779
3780 /* Expand any parameter packs that occur in the template arguments in
3781 ARGS. */
3782 tree
3783 expand_template_argument_pack (tree args)
3784 {
3785 tree result_args = NULL_TREE;
3786 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3787 int num_result_args = -1;
3788 int non_default_args_count = -1;
3789
3790 /* First, determine if we need to expand anything, and the number of
3791 slots we'll need. */
3792 for (in_arg = 0; in_arg < nargs; ++in_arg)
3793 {
3794 tree arg = TREE_VEC_ELT (args, in_arg);
3795 if (arg == NULL_TREE)
3796 return args;
3797 if (ARGUMENT_PACK_P (arg))
3798 {
3799 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3800 if (num_result_args < 0)
3801 num_result_args = in_arg + num_packed;
3802 else
3803 num_result_args += num_packed;
3804 }
3805 else
3806 {
3807 if (num_result_args >= 0)
3808 num_result_args++;
3809 }
3810 }
3811
3812 /* If no expansion is necessary, we're done. */
3813 if (num_result_args < 0)
3814 return args;
3815
3816 /* Expand arguments. */
3817 result_args = make_tree_vec (num_result_args);
3818 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3819 non_default_args_count =
3820 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3821 for (in_arg = 0; in_arg < nargs; ++in_arg)
3822 {
3823 tree arg = TREE_VEC_ELT (args, in_arg);
3824 if (ARGUMENT_PACK_P (arg))
3825 {
3826 tree packed = ARGUMENT_PACK_ARGS (arg);
3827 int i, num_packed = TREE_VEC_LENGTH (packed);
3828 for (i = 0; i < num_packed; ++i, ++out_arg)
3829 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3830 if (non_default_args_count > 0)
3831 non_default_args_count += num_packed - 1;
3832 }
3833 else
3834 {
3835 TREE_VEC_ELT (result_args, out_arg) = arg;
3836 ++out_arg;
3837 }
3838 }
3839 if (non_default_args_count >= 0)
3840 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3841 return result_args;
3842 }
3843
3844 /* Checks if DECL shadows a template parameter.
3845
3846 [temp.local]: A template-parameter shall not be redeclared within its
3847 scope (including nested scopes).
3848
3849 Emits an error and returns TRUE if the DECL shadows a parameter,
3850 returns FALSE otherwise. */
3851
3852 bool
3853 check_template_shadow (tree decl)
3854 {
3855 tree olddecl;
3856
3857 /* If we're not in a template, we can't possibly shadow a template
3858 parameter. */
3859 if (!current_template_parms)
3860 return true;
3861
3862 /* Figure out what we're shadowing. */
3863 if (TREE_CODE (decl) == OVERLOAD)
3864 decl = OVL_CURRENT (decl);
3865 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3866
3867 /* If there's no previous binding for this name, we're not shadowing
3868 anything, let alone a template parameter. */
3869 if (!olddecl)
3870 return true;
3871
3872 /* If we're not shadowing a template parameter, we're done. Note
3873 that OLDDECL might be an OVERLOAD (or perhaps even an
3874 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3875 node. */
3876 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3877 return true;
3878
3879 /* We check for decl != olddecl to avoid bogus errors for using a
3880 name inside a class. We check TPFI to avoid duplicate errors for
3881 inline member templates. */
3882 if (decl == olddecl
3883 || (DECL_TEMPLATE_PARM_P (decl)
3884 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3885 return true;
3886
3887 /* Don't complain about the injected class name, as we've already
3888 complained about the class itself. */
3889 if (DECL_SELF_REFERENCE_P (decl))
3890 return false;
3891
3892 if (DECL_TEMPLATE_PARM_P (decl))
3893 error ("declaration of template parameter %q+D shadows "
3894 "template parameter", decl);
3895 else
3896 error ("declaration of %q+#D shadows template parameter", decl);
3897 inform (DECL_SOURCE_LOCATION (olddecl),
3898 "template parameter %qD declared here", olddecl);
3899 return false;
3900 }
3901
3902 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3903 ORIG_LEVEL, DECL, and TYPE. */
3904
3905 static tree
3906 build_template_parm_index (int index,
3907 int level,
3908 int orig_level,
3909 tree decl,
3910 tree type)
3911 {
3912 tree t = make_node (TEMPLATE_PARM_INDEX);
3913 TEMPLATE_PARM_IDX (t) = index;
3914 TEMPLATE_PARM_LEVEL (t) = level;
3915 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3916 TEMPLATE_PARM_DECL (t) = decl;
3917 TREE_TYPE (t) = type;
3918 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3919 TREE_READONLY (t) = TREE_READONLY (decl);
3920
3921 return t;
3922 }
3923
3924 /* Find the canonical type parameter for the given template type
3925 parameter. Returns the canonical type parameter, which may be TYPE
3926 if no such parameter existed. */
3927
3928 static tree
3929 canonical_type_parameter (tree type)
3930 {
3931 tree list;
3932 int idx = TEMPLATE_TYPE_IDX (type);
3933 if (!canonical_template_parms)
3934 vec_alloc (canonical_template_parms, idx+1);
3935
3936 while (canonical_template_parms->length () <= (unsigned)idx)
3937 vec_safe_push (canonical_template_parms, NULL_TREE);
3938
3939 list = (*canonical_template_parms)[idx];
3940 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3941 list = TREE_CHAIN (list);
3942
3943 if (list)
3944 return TREE_VALUE (list);
3945 else
3946 {
3947 (*canonical_template_parms)[idx]
3948 = tree_cons (NULL_TREE, type,
3949 (*canonical_template_parms)[idx]);
3950 return type;
3951 }
3952 }
3953
3954 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3955 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3956 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3957 new one is created. */
3958
3959 static tree
3960 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3961 tsubst_flags_t complain)
3962 {
3963 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3964 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3965 != TEMPLATE_PARM_LEVEL (index) - levels)
3966 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3967 {
3968 tree orig_decl = TEMPLATE_PARM_DECL (index);
3969 tree decl, t;
3970
3971 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3972 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3973 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3974 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3975 DECL_ARTIFICIAL (decl) = 1;
3976 SET_DECL_TEMPLATE_PARM_P (decl);
3977
3978 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3979 TEMPLATE_PARM_LEVEL (index) - levels,
3980 TEMPLATE_PARM_ORIG_LEVEL (index),
3981 decl, type);
3982 TEMPLATE_PARM_DESCENDANTS (index) = t;
3983 TEMPLATE_PARM_PARAMETER_PACK (t)
3984 = TEMPLATE_PARM_PARAMETER_PACK (index);
3985
3986 /* Template template parameters need this. */
3987 if (TREE_CODE (decl) == TEMPLATE_DECL)
3988 {
3989 DECL_TEMPLATE_RESULT (decl)
3990 = build_decl (DECL_SOURCE_LOCATION (decl),
3991 TYPE_DECL, DECL_NAME (decl), type);
3992 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (decl)) = true;
3993 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3994 (DECL_TEMPLATE_PARMS (orig_decl), args, complain);
3995 }
3996 }
3997
3998 return TEMPLATE_PARM_DESCENDANTS (index);
3999 }
4000
4001 /* Process information from new template parameter PARM and append it
4002 to the LIST being built. This new parameter is a non-type
4003 parameter iff IS_NON_TYPE is true. This new parameter is a
4004 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
4005 is in PARM_LOC. */
4006
4007 tree
4008 process_template_parm (tree list, location_t parm_loc, tree parm,
4009 bool is_non_type, bool is_parameter_pack)
4010 {
4011 tree decl = 0;
4012 int idx = 0;
4013
4014 gcc_assert (TREE_CODE (parm) == TREE_LIST);
4015 tree defval = TREE_PURPOSE (parm);
4016 tree constr = TREE_TYPE (parm);
4017
4018 if (list)
4019 {
4020 tree p = tree_last (list);
4021
4022 if (p && TREE_VALUE (p) != error_mark_node)
4023 {
4024 p = TREE_VALUE (p);
4025 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
4026 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
4027 else
4028 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
4029 }
4030
4031 ++idx;
4032 }
4033
4034 if (is_non_type)
4035 {
4036 parm = TREE_VALUE (parm);
4037
4038 SET_DECL_TEMPLATE_PARM_P (parm);
4039
4040 if (TREE_TYPE (parm) != error_mark_node)
4041 {
4042 /* [temp.param]
4043
4044 The top-level cv-qualifiers on the template-parameter are
4045 ignored when determining its type. */
4046 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
4047 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
4048 TREE_TYPE (parm) = error_mark_node;
4049 else if (uses_parameter_packs (TREE_TYPE (parm))
4050 && !is_parameter_pack
4051 /* If we're in a nested template parameter list, the template
4052 template parameter could be a parameter pack. */
4053 && processing_template_parmlist == 1)
4054 {
4055 /* This template parameter is not a parameter pack, but it
4056 should be. Complain about "bare" parameter packs. */
4057 check_for_bare_parameter_packs (TREE_TYPE (parm));
4058
4059 /* Recover by calling this a parameter pack. */
4060 is_parameter_pack = true;
4061 }
4062 }
4063
4064 /* A template parameter is not modifiable. */
4065 TREE_CONSTANT (parm) = 1;
4066 TREE_READONLY (parm) = 1;
4067 decl = build_decl (parm_loc,
4068 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
4069 TREE_CONSTANT (decl) = 1;
4070 TREE_READONLY (decl) = 1;
4071 DECL_INITIAL (parm) = DECL_INITIAL (decl)
4072 = build_template_parm_index (idx, processing_template_decl,
4073 processing_template_decl,
4074 decl, TREE_TYPE (parm));
4075
4076 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
4077 = is_parameter_pack;
4078 }
4079 else
4080 {
4081 tree t;
4082 parm = TREE_VALUE (TREE_VALUE (parm));
4083
4084 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
4085 {
4086 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
4087 /* This is for distinguishing between real templates and template
4088 template parameters */
4089 TREE_TYPE (parm) = t;
4090 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
4091 decl = parm;
4092 }
4093 else
4094 {
4095 t = cxx_make_type (TEMPLATE_TYPE_PARM);
4096 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
4097 decl = build_decl (parm_loc,
4098 TYPE_DECL, parm, t);
4099 }
4100
4101 TYPE_NAME (t) = decl;
4102 TYPE_STUB_DECL (t) = decl;
4103 parm = decl;
4104 TEMPLATE_TYPE_PARM_INDEX (t)
4105 = build_template_parm_index (idx, processing_template_decl,
4106 processing_template_decl,
4107 decl, TREE_TYPE (parm));
4108 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
4109 TYPE_CANONICAL (t) = canonical_type_parameter (t);
4110 }
4111 DECL_ARTIFICIAL (decl) = 1;
4112 SET_DECL_TEMPLATE_PARM_P (decl);
4113
4114 /* Build requirements for the type/template parameter.
4115 This must be done after SET_DECL_TEMPLATE_PARM_P or
4116 process_template_parm could fail. */
4117 tree reqs = finish_shorthand_constraint (parm, constr);
4118
4119 pushdecl (decl);
4120
4121 /* Build the parameter node linking the parameter declaration,
4122 its default argument (if any), and its constraints (if any). */
4123 parm = build_tree_list (defval, parm);
4124 TEMPLATE_PARM_CONSTRAINTS (parm) = reqs;
4125
4126 return chainon (list, parm);
4127 }
4128
4129 /* The end of a template parameter list has been reached. Process the
4130 tree list into a parameter vector, converting each parameter into a more
4131 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
4132 as PARM_DECLs. */
4133
4134 tree
4135 end_template_parm_list (tree parms)
4136 {
4137 int nparms;
4138 tree parm, next;
4139 tree saved_parmlist = make_tree_vec (list_length (parms));
4140
4141 /* Pop the dummy parameter level and add the real one. */
4142 current_template_parms = TREE_CHAIN (current_template_parms);
4143
4144 current_template_parms
4145 = tree_cons (size_int (processing_template_decl),
4146 saved_parmlist, current_template_parms);
4147
4148 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
4149 {
4150 next = TREE_CHAIN (parm);
4151 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
4152 TREE_CHAIN (parm) = NULL_TREE;
4153 }
4154
4155 --processing_template_parmlist;
4156
4157 return saved_parmlist;
4158 }
4159
4160 // Explicitly indicate the end of the template parameter list. We assume
4161 // that the current template parameters have been constructed and/or
4162 // managed explicitly, as when creating new template template parameters
4163 // from a shorthand constraint.
4164 void
4165 end_template_parm_list ()
4166 {
4167 --processing_template_parmlist;
4168 }
4169
4170 /* end_template_decl is called after a template declaration is seen. */
4171
4172 void
4173 end_template_decl (void)
4174 {
4175 reset_specialization ();
4176
4177 if (! processing_template_decl)
4178 return;
4179
4180 /* This matches the pushlevel in begin_template_parm_list. */
4181 finish_scope ();
4182
4183 --processing_template_decl;
4184 current_template_parms = TREE_CHAIN (current_template_parms);
4185 }
4186
4187 /* Takes a TREE_LIST representing a template parameter and convert it
4188 into an argument suitable to be passed to the type substitution
4189 functions. Note that If the TREE_LIST contains an error_mark
4190 node, the returned argument is error_mark_node. */
4191
4192 tree
4193 template_parm_to_arg (tree t)
4194 {
4195
4196 if (t == NULL_TREE
4197 || TREE_CODE (t) != TREE_LIST)
4198 return t;
4199
4200 if (error_operand_p (TREE_VALUE (t)))
4201 return error_mark_node;
4202
4203 t = TREE_VALUE (t);
4204
4205 if (TREE_CODE (t) == TYPE_DECL
4206 || TREE_CODE (t) == TEMPLATE_DECL)
4207 {
4208 t = TREE_TYPE (t);
4209
4210 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
4211 {
4212 /* Turn this argument into a TYPE_ARGUMENT_PACK
4213 with a single element, which expands T. */
4214 tree vec = make_tree_vec (1);
4215 if (CHECKING_P)
4216 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4217
4218 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4219
4220 t = cxx_make_type (TYPE_ARGUMENT_PACK);
4221 SET_ARGUMENT_PACK_ARGS (t, vec);
4222 }
4223 }
4224 else
4225 {
4226 t = DECL_INITIAL (t);
4227
4228 if (TEMPLATE_PARM_PARAMETER_PACK (t))
4229 {
4230 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
4231 with a single element, which expands T. */
4232 tree vec = make_tree_vec (1);
4233 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
4234 if (CHECKING_P)
4235 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4236
4237 t = convert_from_reference (t);
4238 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4239
4240 t = make_node (NONTYPE_ARGUMENT_PACK);
4241 SET_ARGUMENT_PACK_ARGS (t, vec);
4242 TREE_TYPE (t) = type;
4243 }
4244 else
4245 t = convert_from_reference (t);
4246 }
4247 return t;
4248 }
4249
4250 /* Given a set of template parameters, return them as a set of template
4251 arguments. The template parameters are represented as a TREE_VEC, in
4252 the form documented in cp-tree.h for template arguments. */
4253
4254 static tree
4255 template_parms_to_args (tree parms)
4256 {
4257 tree header;
4258 tree args = NULL_TREE;
4259 int length = TMPL_PARMS_DEPTH (parms);
4260 int l = length;
4261
4262 /* If there is only one level of template parameters, we do not
4263 create a TREE_VEC of TREE_VECs. Instead, we return a single
4264 TREE_VEC containing the arguments. */
4265 if (length > 1)
4266 args = make_tree_vec (length);
4267
4268 for (header = parms; header; header = TREE_CHAIN (header))
4269 {
4270 tree a = copy_node (TREE_VALUE (header));
4271 int i;
4272
4273 TREE_TYPE (a) = NULL_TREE;
4274 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
4275 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
4276
4277 if (CHECKING_P)
4278 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
4279
4280 if (length > 1)
4281 TREE_VEC_ELT (args, --l) = a;
4282 else
4283 args = a;
4284 }
4285
4286 return args;
4287 }
4288
4289 /* Within the declaration of a template, return the currently active
4290 template parameters as an argument TREE_VEC. */
4291
4292 static tree
4293 current_template_args (void)
4294 {
4295 return template_parms_to_args (current_template_parms);
4296 }
4297
4298 /* Update the declared TYPE by doing any lookups which were thought to be
4299 dependent, but are not now that we know the SCOPE of the declarator. */
4300
4301 tree
4302 maybe_update_decl_type (tree orig_type, tree scope)
4303 {
4304 tree type = orig_type;
4305
4306 if (type == NULL_TREE)
4307 return type;
4308
4309 if (TREE_CODE (orig_type) == TYPE_DECL)
4310 type = TREE_TYPE (type);
4311
4312 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4313 && dependent_type_p (type)
4314 /* Don't bother building up the args in this case. */
4315 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4316 {
4317 /* tsubst in the args corresponding to the template parameters,
4318 including auto if present. Most things will be unchanged, but
4319 make_typename_type and tsubst_qualified_id will resolve
4320 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4321 tree args = current_template_args ();
4322 tree auto_node = type_uses_auto (type);
4323 tree pushed;
4324 if (auto_node)
4325 {
4326 tree auto_vec = make_tree_vec (1);
4327 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4328 args = add_to_template_args (args, auto_vec);
4329 }
4330 pushed = push_scope (scope);
4331 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4332 if (pushed)
4333 pop_scope (scope);
4334 }
4335
4336 if (type == error_mark_node)
4337 return orig_type;
4338
4339 if (TREE_CODE (orig_type) == TYPE_DECL)
4340 {
4341 if (same_type_p (type, TREE_TYPE (orig_type)))
4342 type = orig_type;
4343 else
4344 type = TYPE_NAME (type);
4345 }
4346 return type;
4347 }
4348
4349 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4350 template PARMS and constraints, CONSTR. If MEMBER_TEMPLATE_P is true,
4351 the new template is a member template. */
4352
4353 tree
4354 build_template_decl (tree decl, tree parms, bool member_template_p)
4355 {
4356 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4357 DECL_TEMPLATE_PARMS (tmpl) = parms;
4358 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4359 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4360 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4361
4362 return tmpl;
4363 }
4364
4365 struct template_parm_data
4366 {
4367 /* The level of the template parameters we are currently
4368 processing. */
4369 int level;
4370
4371 /* The index of the specialization argument we are currently
4372 processing. */
4373 int current_arg;
4374
4375 /* An array whose size is the number of template parameters. The
4376 elements are nonzero if the parameter has been used in any one
4377 of the arguments processed so far. */
4378 int* parms;
4379
4380 /* An array whose size is the number of template arguments. The
4381 elements are nonzero if the argument makes use of template
4382 parameters of this level. */
4383 int* arg_uses_template_parms;
4384 };
4385
4386 /* Subroutine of push_template_decl used to see if each template
4387 parameter in a partial specialization is used in the explicit
4388 argument list. If T is of the LEVEL given in DATA (which is
4389 treated as a template_parm_data*), then DATA->PARMS is marked
4390 appropriately. */
4391
4392 static int
4393 mark_template_parm (tree t, void* data)
4394 {
4395 int level;
4396 int idx;
4397 struct template_parm_data* tpd = (struct template_parm_data*) data;
4398
4399 template_parm_level_and_index (t, &level, &idx);
4400
4401 if (level == tpd->level)
4402 {
4403 tpd->parms[idx] = 1;
4404 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4405 }
4406
4407 /* Return zero so that for_each_template_parm will continue the
4408 traversal of the tree; we want to mark *every* template parm. */
4409 return 0;
4410 }
4411
4412 /* Process the partial specialization DECL. */
4413
4414 static tree
4415 process_partial_specialization (tree decl)
4416 {
4417 tree type = TREE_TYPE (decl);
4418 tree tinfo = get_template_info (decl);
4419 tree maintmpl = TI_TEMPLATE (tinfo);
4420 tree specargs = TI_ARGS (tinfo);
4421 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4422 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4423 tree inner_parms;
4424 tree inst;
4425 int nargs = TREE_VEC_LENGTH (inner_args);
4426 int ntparms;
4427 int i;
4428 bool did_error_intro = false;
4429 struct template_parm_data tpd;
4430 struct template_parm_data tpd2;
4431
4432 gcc_assert (current_template_parms);
4433
4434 /* A concept cannot be specialized. */
4435 if (flag_concepts && variable_concept_p (maintmpl))
4436 {
4437 error ("specialization of variable concept %q#D", maintmpl);
4438 return error_mark_node;
4439 }
4440
4441 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4442 ntparms = TREE_VEC_LENGTH (inner_parms);
4443
4444 /* We check that each of the template parameters given in the
4445 partial specialization is used in the argument list to the
4446 specialization. For example:
4447
4448 template <class T> struct S;
4449 template <class T> struct S<T*>;
4450
4451 The second declaration is OK because `T*' uses the template
4452 parameter T, whereas
4453
4454 template <class T> struct S<int>;
4455
4456 is no good. Even trickier is:
4457
4458 template <class T>
4459 struct S1
4460 {
4461 template <class U>
4462 struct S2;
4463 template <class U>
4464 struct S2<T>;
4465 };
4466
4467 The S2<T> declaration is actually invalid; it is a
4468 full-specialization. Of course,
4469
4470 template <class U>
4471 struct S2<T (*)(U)>;
4472
4473 or some such would have been OK. */
4474 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4475 tpd.parms = XALLOCAVEC (int, ntparms);
4476 memset (tpd.parms, 0, sizeof (int) * ntparms);
4477
4478 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4479 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4480 for (i = 0; i < nargs; ++i)
4481 {
4482 tpd.current_arg = i;
4483 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4484 &mark_template_parm,
4485 &tpd,
4486 NULL,
4487 /*include_nondeduced_p=*/false);
4488 }
4489 for (i = 0; i < ntparms; ++i)
4490 if (tpd.parms[i] == 0)
4491 {
4492 /* One of the template parms was not used in a deduced context in the
4493 specialization. */
4494 if (!did_error_intro)
4495 {
4496 error ("template parameters not deducible in "
4497 "partial specialization:");
4498 did_error_intro = true;
4499 }
4500
4501 inform (input_location, " %qD",
4502 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4503 }
4504
4505 if (did_error_intro)
4506 return error_mark_node;
4507
4508 /* [temp.class.spec]
4509
4510 The argument list of the specialization shall not be identical to
4511 the implicit argument list of the primary template. */
4512 tree main_args
4513 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl)));
4514 if (comp_template_args (inner_args, INNERMOST_TEMPLATE_ARGS (main_args))
4515 && (!flag_concepts
4516 || !subsumes_constraints (current_template_constraints (),
4517 get_constraints (maintmpl))))
4518 {
4519 if (!flag_concepts)
4520 error ("partial specialization %q+D does not specialize "
4521 "any template arguments", decl);
4522 else
4523 error ("partial specialization %q+D does not specialize any "
4524 "template arguments and is not more constrained than", decl);
4525 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4526 }
4527
4528 /* A partial specialization that replaces multiple parameters of the
4529 primary template with a pack expansion is less specialized for those
4530 parameters. */
4531 if (nargs < DECL_NTPARMS (maintmpl))
4532 {
4533 error ("partial specialization is not more specialized than the "
4534 "primary template because it replaces multiple parameters "
4535 "with a pack expansion");
4536 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4537 return decl;
4538 }
4539
4540 /* [temp.class.spec]
4541
4542 A partially specialized non-type argument expression shall not
4543 involve template parameters of the partial specialization except
4544 when the argument expression is a simple identifier.
4545
4546 The type of a template parameter corresponding to a specialized
4547 non-type argument shall not be dependent on a parameter of the
4548 specialization.
4549
4550 Also, we verify that pack expansions only occur at the
4551 end of the argument list. */
4552 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4553 tpd2.parms = 0;
4554 for (i = 0; i < nargs; ++i)
4555 {
4556 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4557 tree arg = TREE_VEC_ELT (inner_args, i);
4558 tree packed_args = NULL_TREE;
4559 int j, len = 1;
4560
4561 if (ARGUMENT_PACK_P (arg))
4562 {
4563 /* Extract the arguments from the argument pack. We'll be
4564 iterating over these in the following loop. */
4565 packed_args = ARGUMENT_PACK_ARGS (arg);
4566 len = TREE_VEC_LENGTH (packed_args);
4567 }
4568
4569 for (j = 0; j < len; j++)
4570 {
4571 if (packed_args)
4572 /* Get the Jth argument in the parameter pack. */
4573 arg = TREE_VEC_ELT (packed_args, j);
4574
4575 if (PACK_EXPANSION_P (arg))
4576 {
4577 /* Pack expansions must come at the end of the
4578 argument list. */
4579 if ((packed_args && j < len - 1)
4580 || (!packed_args && i < nargs - 1))
4581 {
4582 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4583 error ("parameter pack argument %qE must be at the "
4584 "end of the template argument list", arg);
4585 else
4586 error ("parameter pack argument %qT must be at the "
4587 "end of the template argument list", arg);
4588 }
4589 }
4590
4591 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4592 /* We only care about the pattern. */
4593 arg = PACK_EXPANSION_PATTERN (arg);
4594
4595 if (/* These first two lines are the `non-type' bit. */
4596 !TYPE_P (arg)
4597 && TREE_CODE (arg) != TEMPLATE_DECL
4598 /* This next two lines are the `argument expression is not just a
4599 simple identifier' condition and also the `specialized
4600 non-type argument' bit. */
4601 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4602 && !(REFERENCE_REF_P (arg)
4603 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4604 {
4605 if ((!packed_args && tpd.arg_uses_template_parms[i])
4606 || (packed_args && uses_template_parms (arg)))
4607 error ("template argument %qE involves template parameter(s)",
4608 arg);
4609 else
4610 {
4611 /* Look at the corresponding template parameter,
4612 marking which template parameters its type depends
4613 upon. */
4614 tree type = TREE_TYPE (parm);
4615
4616 if (!tpd2.parms)
4617 {
4618 /* We haven't yet initialized TPD2. Do so now. */
4619 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4620 /* The number of parameters here is the number in the
4621 main template, which, as checked in the assertion
4622 above, is NARGS. */
4623 tpd2.parms = XALLOCAVEC (int, nargs);
4624 tpd2.level =
4625 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4626 }
4627
4628 /* Mark the template parameters. But this time, we're
4629 looking for the template parameters of the main
4630 template, not in the specialization. */
4631 tpd2.current_arg = i;
4632 tpd2.arg_uses_template_parms[i] = 0;
4633 memset (tpd2.parms, 0, sizeof (int) * nargs);
4634 for_each_template_parm (type,
4635 &mark_template_parm,
4636 &tpd2,
4637 NULL,
4638 /*include_nondeduced_p=*/false);
4639
4640 if (tpd2.arg_uses_template_parms [i])
4641 {
4642 /* The type depended on some template parameters.
4643 If they are fully specialized in the
4644 specialization, that's OK. */
4645 int j;
4646 int count = 0;
4647 for (j = 0; j < nargs; ++j)
4648 if (tpd2.parms[j] != 0
4649 && tpd.arg_uses_template_parms [j])
4650 ++count;
4651 if (count != 0)
4652 error_n (input_location, count,
4653 "type %qT of template argument %qE depends "
4654 "on a template parameter",
4655 "type %qT of template argument %qE depends "
4656 "on template parameters",
4657 type,
4658 arg);
4659 }
4660 }
4661 }
4662 }
4663 }
4664
4665 /* We should only get here once. */
4666 if (TREE_CODE (decl) == TYPE_DECL)
4667 gcc_assert (!COMPLETE_TYPE_P (type));
4668
4669 // Build the template decl.
4670 tree tmpl = build_template_decl (decl, current_template_parms,
4671 DECL_MEMBER_TEMPLATE_P (maintmpl));
4672 TREE_TYPE (tmpl) = type;
4673 DECL_TEMPLATE_RESULT (tmpl) = decl;
4674 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4675 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4676 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4677
4678 if (VAR_P (decl))
4679 /* We didn't register this in check_explicit_specialization so we could
4680 wait until the constraints were set. */
4681 decl = register_specialization (decl, maintmpl, specargs, false, 0);
4682 else
4683 associate_classtype_constraints (type);
4684
4685 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4686 = tree_cons (specargs, tmpl,
4687 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4688 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4689
4690 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4691 inst = TREE_CHAIN (inst))
4692 {
4693 tree instance = TREE_VALUE (inst);
4694 if (TYPE_P (instance)
4695 ? (COMPLETE_TYPE_P (instance)
4696 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance))
4697 : DECL_TEMPLATE_INSTANTIATION (instance))
4698 {
4699 tree spec = most_specialized_partial_spec (instance, tf_none);
4700 tree inst_decl = (DECL_P (instance)
4701 ? instance : TYPE_NAME (instance));
4702 if (!spec)
4703 /* OK */;
4704 else if (spec == error_mark_node)
4705 permerror (input_location,
4706 "declaration of %qD ambiguates earlier template "
4707 "instantiation for %qD", decl, inst_decl);
4708 else if (TREE_VALUE (spec) == tmpl)
4709 permerror (input_location,
4710 "partial specialization of %qD after instantiation "
4711 "of %qD", decl, inst_decl);
4712 }
4713 }
4714
4715 return decl;
4716 }
4717
4718 /* PARM is a template parameter of some form; return the corresponding
4719 TEMPLATE_PARM_INDEX. */
4720
4721 static tree
4722 get_template_parm_index (tree parm)
4723 {
4724 if (TREE_CODE (parm) == PARM_DECL
4725 || TREE_CODE (parm) == CONST_DECL)
4726 parm = DECL_INITIAL (parm);
4727 else if (TREE_CODE (parm) == TYPE_DECL
4728 || TREE_CODE (parm) == TEMPLATE_DECL)
4729 parm = TREE_TYPE (parm);
4730 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4731 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM
4732 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4733 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4734 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4735 return parm;
4736 }
4737
4738 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4739 parameter packs used by the template parameter PARM. */
4740
4741 static void
4742 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4743 {
4744 /* A type parm can't refer to another parm. */
4745 if (TREE_CODE (parm) == TYPE_DECL)
4746 return;
4747 else if (TREE_CODE (parm) == PARM_DECL)
4748 {
4749 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4750 ppd, ppd->visited);
4751 return;
4752 }
4753
4754 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4755
4756 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4757 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4758 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4759 }
4760
4761 /* PARM is a template parameter pack. Return any parameter packs used in
4762 its type or the type of any of its template parameters. If there are
4763 any such packs, it will be instantiated into a fixed template parameter
4764 list by partial instantiation rather than be fully deduced. */
4765
4766 tree
4767 fixed_parameter_pack_p (tree parm)
4768 {
4769 /* This can only be true in a member template. */
4770 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4771 return NULL_TREE;
4772 /* This can only be true for a parameter pack. */
4773 if (!template_parameter_pack_p (parm))
4774 return NULL_TREE;
4775 /* A type parm can't refer to another parm. */
4776 if (TREE_CODE (parm) == TYPE_DECL)
4777 return NULL_TREE;
4778
4779 tree parameter_packs = NULL_TREE;
4780 struct find_parameter_pack_data ppd;
4781 ppd.parameter_packs = &parameter_packs;
4782 ppd.visited = new hash_set<tree>;
4783 ppd.type_pack_expansion_p = false;
4784
4785 fixed_parameter_pack_p_1 (parm, &ppd);
4786
4787 delete ppd.visited;
4788 return parameter_packs;
4789 }
4790
4791 /* Check that a template declaration's use of default arguments and
4792 parameter packs is not invalid. Here, PARMS are the template
4793 parameters. IS_PRIMARY is true if DECL is the thing declared by
4794 a primary template. IS_PARTIAL is true if DECL is a partial
4795 specialization.
4796
4797 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4798 declaration (but not a definition); 1 indicates a declaration, 2
4799 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4800 emitted for extraneous default arguments.
4801
4802 Returns TRUE if there were no errors found, FALSE otherwise. */
4803
4804 bool
4805 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4806 bool is_partial, int is_friend_decl)
4807 {
4808 const char *msg;
4809 int last_level_to_check;
4810 tree parm_level;
4811 bool no_errors = true;
4812
4813 /* [temp.param]
4814
4815 A default template-argument shall not be specified in a
4816 function template declaration or a function template definition, nor
4817 in the template-parameter-list of the definition of a member of a
4818 class template. */
4819
4820 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
4821 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
4822 /* You can't have a function template declaration in a local
4823 scope, nor you can you define a member of a class template in a
4824 local scope. */
4825 return true;
4826
4827 if ((TREE_CODE (decl) == TYPE_DECL
4828 && TREE_TYPE (decl)
4829 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4830 || (TREE_CODE (decl) == FUNCTION_DECL
4831 && LAMBDA_FUNCTION_P (decl)))
4832 /* A lambda doesn't have an explicit declaration; don't complain
4833 about the parms of the enclosing class. */
4834 return true;
4835
4836 if (current_class_type
4837 && !TYPE_BEING_DEFINED (current_class_type)
4838 && DECL_LANG_SPECIFIC (decl)
4839 && DECL_DECLARES_FUNCTION_P (decl)
4840 /* If this is either a friend defined in the scope of the class
4841 or a member function. */
4842 && (DECL_FUNCTION_MEMBER_P (decl)
4843 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4844 : DECL_FRIEND_CONTEXT (decl)
4845 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4846 : false)
4847 /* And, if it was a member function, it really was defined in
4848 the scope of the class. */
4849 && (!DECL_FUNCTION_MEMBER_P (decl)
4850 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4851 /* We already checked these parameters when the template was
4852 declared, so there's no need to do it again now. This function
4853 was defined in class scope, but we're processing its body now
4854 that the class is complete. */
4855 return true;
4856
4857 /* Core issue 226 (C++0x only): the following only applies to class
4858 templates. */
4859 if (is_primary
4860 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4861 {
4862 /* [temp.param]
4863
4864 If a template-parameter has a default template-argument, all
4865 subsequent template-parameters shall have a default
4866 template-argument supplied. */
4867 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4868 {
4869 tree inner_parms = TREE_VALUE (parm_level);
4870 int ntparms = TREE_VEC_LENGTH (inner_parms);
4871 int seen_def_arg_p = 0;
4872 int i;
4873
4874 for (i = 0; i < ntparms; ++i)
4875 {
4876 tree parm = TREE_VEC_ELT (inner_parms, i);
4877
4878 if (parm == error_mark_node)
4879 continue;
4880
4881 if (TREE_PURPOSE (parm))
4882 seen_def_arg_p = 1;
4883 else if (seen_def_arg_p
4884 && !template_parameter_pack_p (TREE_VALUE (parm)))
4885 {
4886 error ("no default argument for %qD", TREE_VALUE (parm));
4887 /* For better subsequent error-recovery, we indicate that
4888 there should have been a default argument. */
4889 TREE_PURPOSE (parm) = error_mark_node;
4890 no_errors = false;
4891 }
4892 else if (!is_partial
4893 && !is_friend_decl
4894 /* Don't complain about an enclosing partial
4895 specialization. */
4896 && parm_level == parms
4897 && TREE_CODE (decl) == TYPE_DECL
4898 && i < ntparms - 1
4899 && template_parameter_pack_p (TREE_VALUE (parm))
4900 /* A fixed parameter pack will be partially
4901 instantiated into a fixed length list. */
4902 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
4903 {
4904 /* A primary class template can only have one
4905 parameter pack, at the end of the template
4906 parameter list. */
4907
4908 error ("parameter pack %q+D must be at the end of the"
4909 " template parameter list", TREE_VALUE (parm));
4910
4911 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4912 = error_mark_node;
4913 no_errors = false;
4914 }
4915 }
4916 }
4917 }
4918
4919 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4920 || is_partial
4921 || !is_primary
4922 || is_friend_decl)
4923 /* For an ordinary class template, default template arguments are
4924 allowed at the innermost level, e.g.:
4925 template <class T = int>
4926 struct S {};
4927 but, in a partial specialization, they're not allowed even
4928 there, as we have in [temp.class.spec]:
4929
4930 The template parameter list of a specialization shall not
4931 contain default template argument values.
4932
4933 So, for a partial specialization, or for a function template
4934 (in C++98/C++03), we look at all of them. */
4935 ;
4936 else
4937 /* But, for a primary class template that is not a partial
4938 specialization we look at all template parameters except the
4939 innermost ones. */
4940 parms = TREE_CHAIN (parms);
4941
4942 /* Figure out what error message to issue. */
4943 if (is_friend_decl == 2)
4944 msg = G_("default template arguments may not be used in function template "
4945 "friend re-declaration");
4946 else if (is_friend_decl)
4947 msg = G_("default template arguments may not be used in function template "
4948 "friend declarations");
4949 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4950 msg = G_("default template arguments may not be used in function templates "
4951 "without -std=c++11 or -std=gnu++11");
4952 else if (is_partial)
4953 msg = G_("default template arguments may not be used in "
4954 "partial specializations");
4955 else if (current_class_type && CLASSTYPE_IS_TEMPLATE (current_class_type))
4956 msg = G_("default argument for template parameter for class enclosing %qD");
4957 else
4958 /* Per [temp.param]/9, "A default template-argument shall not be
4959 specified in the template-parameter-lists of the definition of
4960 a member of a class template that appears outside of the member's
4961 class.", thus if we aren't handling a member of a class template
4962 there is no need to examine the parameters. */
4963 return true;
4964
4965 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4966 /* If we're inside a class definition, there's no need to
4967 examine the parameters to the class itself. On the one
4968 hand, they will be checked when the class is defined, and,
4969 on the other, default arguments are valid in things like:
4970 template <class T = double>
4971 struct S { template <class U> void f(U); };
4972 Here the default argument for `S' has no bearing on the
4973 declaration of `f'. */
4974 last_level_to_check = template_class_depth (current_class_type) + 1;
4975 else
4976 /* Check everything. */
4977 last_level_to_check = 0;
4978
4979 for (parm_level = parms;
4980 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4981 parm_level = TREE_CHAIN (parm_level))
4982 {
4983 tree inner_parms = TREE_VALUE (parm_level);
4984 int i;
4985 int ntparms;
4986
4987 ntparms = TREE_VEC_LENGTH (inner_parms);
4988 for (i = 0; i < ntparms; ++i)
4989 {
4990 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4991 continue;
4992
4993 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4994 {
4995 if (msg)
4996 {
4997 no_errors = false;
4998 if (is_friend_decl == 2)
4999 return no_errors;
5000
5001 error (msg, decl);
5002 msg = 0;
5003 }
5004
5005 /* Clear out the default argument so that we are not
5006 confused later. */
5007 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
5008 }
5009 }
5010
5011 /* At this point, if we're still interested in issuing messages,
5012 they must apply to classes surrounding the object declared. */
5013 if (msg)
5014 msg = G_("default argument for template parameter for class "
5015 "enclosing %qD");
5016 }
5017
5018 return no_errors;
5019 }
5020
5021 /* Worker for push_template_decl_real, called via
5022 for_each_template_parm. DATA is really an int, indicating the
5023 level of the parameters we are interested in. If T is a template
5024 parameter of that level, return nonzero. */
5025
5026 static int
5027 template_parm_this_level_p (tree t, void* data)
5028 {
5029 int this_level = *(int *)data;
5030 int level;
5031
5032 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
5033 level = TEMPLATE_PARM_LEVEL (t);
5034 else
5035 level = TEMPLATE_TYPE_LEVEL (t);
5036 return level == this_level;
5037 }
5038
5039 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
5040 parameters given by current_template_args, or reuses a
5041 previously existing one, if appropriate. Returns the DECL, or an
5042 equivalent one, if it is replaced via a call to duplicate_decls.
5043
5044 If IS_FRIEND is true, DECL is a friend declaration. */
5045
5046 tree
5047 push_template_decl_real (tree decl, bool is_friend)
5048 {
5049 tree tmpl;
5050 tree args;
5051 tree info;
5052 tree ctx;
5053 bool is_primary;
5054 bool is_partial;
5055 int new_template_p = 0;
5056 /* True if the template is a member template, in the sense of
5057 [temp.mem]. */
5058 bool member_template_p = false;
5059
5060 if (decl == error_mark_node || !current_template_parms)
5061 return error_mark_node;
5062
5063 /* See if this is a partial specialization. */
5064 is_partial = ((DECL_IMPLICIT_TYPEDEF_P (decl)
5065 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
5066 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
5067 || (VAR_P (decl)
5068 && DECL_LANG_SPECIFIC (decl)
5069 && DECL_TEMPLATE_SPECIALIZATION (decl)
5070 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl))));
5071
5072 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
5073 is_friend = true;
5074
5075 if (is_friend)
5076 /* For a friend, we want the context of the friend function, not
5077 the type of which it is a friend. */
5078 ctx = CP_DECL_CONTEXT (decl);
5079 else if (CP_DECL_CONTEXT (decl)
5080 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
5081 /* In the case of a virtual function, we want the class in which
5082 it is defined. */
5083 ctx = CP_DECL_CONTEXT (decl);
5084 else
5085 /* Otherwise, if we're currently defining some class, the DECL
5086 is assumed to be a member of the class. */
5087 ctx = current_scope ();
5088
5089 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
5090 ctx = NULL_TREE;
5091
5092 if (!DECL_CONTEXT (decl))
5093 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5094
5095 /* See if this is a primary template. */
5096 if (is_friend && ctx
5097 && uses_template_parms_level (ctx, processing_template_decl))
5098 /* A friend template that specifies a class context, i.e.
5099 template <typename T> friend void A<T>::f();
5100 is not primary. */
5101 is_primary = false;
5102 else if (TREE_CODE (decl) == TYPE_DECL
5103 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5104 is_primary = false;
5105 else
5106 is_primary = template_parm_scope_p ();
5107
5108 if (is_primary)
5109 {
5110 warning (OPT_Wtemplates, "template %qD declared", decl);
5111
5112 if (DECL_CLASS_SCOPE_P (decl))
5113 member_template_p = true;
5114 if (TREE_CODE (decl) == TYPE_DECL
5115 && anon_aggrname_p (DECL_NAME (decl)))
5116 {
5117 error ("template class without a name");
5118 return error_mark_node;
5119 }
5120 else if (TREE_CODE (decl) == FUNCTION_DECL)
5121 {
5122 if (member_template_p)
5123 {
5124 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
5125 error ("member template %qD may not have virt-specifiers", decl);
5126 }
5127 if (DECL_DESTRUCTOR_P (decl))
5128 {
5129 /* [temp.mem]
5130
5131 A destructor shall not be a member template. */
5132 error ("destructor %qD declared as member template", decl);
5133 return error_mark_node;
5134 }
5135 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
5136 && (!prototype_p (TREE_TYPE (decl))
5137 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
5138 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
5139 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
5140 == void_list_node)))
5141 {
5142 /* [basic.stc.dynamic.allocation]
5143
5144 An allocation function can be a function
5145 template. ... Template allocation functions shall
5146 have two or more parameters. */
5147 error ("invalid template declaration of %qD", decl);
5148 return error_mark_node;
5149 }
5150 }
5151 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5152 && CLASS_TYPE_P (TREE_TYPE (decl)))
5153 /* OK */;
5154 else if (TREE_CODE (decl) == TYPE_DECL
5155 && TYPE_DECL_ALIAS_P (decl))
5156 /* alias-declaration */
5157 gcc_assert (!DECL_ARTIFICIAL (decl));
5158 else if (VAR_P (decl))
5159 /* C++14 variable template. */;
5160 else
5161 {
5162 error ("template declaration of %q#D", decl);
5163 return error_mark_node;
5164 }
5165 }
5166
5167 /* Check to see that the rules regarding the use of default
5168 arguments are not being violated. */
5169 check_default_tmpl_args (decl, current_template_parms,
5170 is_primary, is_partial, /*is_friend_decl=*/0);
5171
5172 /* Ensure that there are no parameter packs in the type of this
5173 declaration that have not been expanded. */
5174 if (TREE_CODE (decl) == FUNCTION_DECL)
5175 {
5176 /* Check each of the arguments individually to see if there are
5177 any bare parameter packs. */
5178 tree type = TREE_TYPE (decl);
5179 tree arg = DECL_ARGUMENTS (decl);
5180 tree argtype = TYPE_ARG_TYPES (type);
5181
5182 while (arg && argtype)
5183 {
5184 if (!DECL_PACK_P (arg)
5185 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
5186 {
5187 /* This is a PARM_DECL that contains unexpanded parameter
5188 packs. We have already complained about this in the
5189 check_for_bare_parameter_packs call, so just replace
5190 these types with ERROR_MARK_NODE. */
5191 TREE_TYPE (arg) = error_mark_node;
5192 TREE_VALUE (argtype) = error_mark_node;
5193 }
5194
5195 arg = DECL_CHAIN (arg);
5196 argtype = TREE_CHAIN (argtype);
5197 }
5198
5199 /* Check for bare parameter packs in the return type and the
5200 exception specifiers. */
5201 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
5202 /* Errors were already issued, set return type to int
5203 as the frontend doesn't expect error_mark_node as
5204 the return type. */
5205 TREE_TYPE (type) = integer_type_node;
5206 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
5207 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
5208 }
5209 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
5210 && TYPE_DECL_ALIAS_P (decl))
5211 ? DECL_ORIGINAL_TYPE (decl)
5212 : TREE_TYPE (decl)))
5213 {
5214 TREE_TYPE (decl) = error_mark_node;
5215 return error_mark_node;
5216 }
5217
5218 if (is_partial)
5219 return process_partial_specialization (decl);
5220
5221 args = current_template_args ();
5222
5223 if (!ctx
5224 || TREE_CODE (ctx) == FUNCTION_DECL
5225 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
5226 || (TREE_CODE (decl) == TYPE_DECL
5227 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5228 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
5229 {
5230 if (DECL_LANG_SPECIFIC (decl)
5231 && DECL_TEMPLATE_INFO (decl)
5232 && DECL_TI_TEMPLATE (decl))
5233 tmpl = DECL_TI_TEMPLATE (decl);
5234 /* If DECL is a TYPE_DECL for a class-template, then there won't
5235 be DECL_LANG_SPECIFIC. The information equivalent to
5236 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
5237 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5238 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
5239 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
5240 {
5241 /* Since a template declaration already existed for this
5242 class-type, we must be redeclaring it here. Make sure
5243 that the redeclaration is valid. */
5244 redeclare_class_template (TREE_TYPE (decl),
5245 current_template_parms,
5246 current_template_constraints ());
5247 /* We don't need to create a new TEMPLATE_DECL; just use the
5248 one we already had. */
5249 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
5250 }
5251 else
5252 {
5253 tmpl = build_template_decl (decl, current_template_parms,
5254 member_template_p);
5255 new_template_p = 1;
5256
5257 if (DECL_LANG_SPECIFIC (decl)
5258 && DECL_TEMPLATE_SPECIALIZATION (decl))
5259 {
5260 /* A specialization of a member template of a template
5261 class. */
5262 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
5263 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
5264 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
5265 }
5266 }
5267 }
5268 else
5269 {
5270 tree a, t, current, parms;
5271 int i;
5272 tree tinfo = get_template_info (decl);
5273
5274 if (!tinfo)
5275 {
5276 error ("template definition of non-template %q#D", decl);
5277 return error_mark_node;
5278 }
5279
5280 tmpl = TI_TEMPLATE (tinfo);
5281
5282 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
5283 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
5284 && DECL_TEMPLATE_SPECIALIZATION (decl)
5285 && DECL_MEMBER_TEMPLATE_P (tmpl))
5286 {
5287 tree new_tmpl;
5288
5289 /* The declaration is a specialization of a member
5290 template, declared outside the class. Therefore, the
5291 innermost template arguments will be NULL, so we
5292 replace them with the arguments determined by the
5293 earlier call to check_explicit_specialization. */
5294 args = DECL_TI_ARGS (decl);
5295
5296 new_tmpl
5297 = build_template_decl (decl, current_template_parms,
5298 member_template_p);
5299 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
5300 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
5301 DECL_TI_TEMPLATE (decl) = new_tmpl;
5302 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
5303 DECL_TEMPLATE_INFO (new_tmpl)
5304 = build_template_info (tmpl, args);
5305
5306 register_specialization (new_tmpl,
5307 most_general_template (tmpl),
5308 args,
5309 is_friend, 0);
5310 return decl;
5311 }
5312
5313 /* Make sure the template headers we got make sense. */
5314
5315 parms = DECL_TEMPLATE_PARMS (tmpl);
5316 i = TMPL_PARMS_DEPTH (parms);
5317 if (TMPL_ARGS_DEPTH (args) != i)
5318 {
5319 error ("expected %d levels of template parms for %q#D, got %d",
5320 i, decl, TMPL_ARGS_DEPTH (args));
5321 DECL_INTERFACE_KNOWN (decl) = 1;
5322 return error_mark_node;
5323 }
5324 else
5325 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
5326 {
5327 a = TMPL_ARGS_LEVEL (args, i);
5328 t = INNERMOST_TEMPLATE_PARMS (parms);
5329
5330 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
5331 {
5332 if (current == decl)
5333 error ("got %d template parameters for %q#D",
5334 TREE_VEC_LENGTH (a), decl);
5335 else
5336 error ("got %d template parameters for %q#T",
5337 TREE_VEC_LENGTH (a), current);
5338 error (" but %d required", TREE_VEC_LENGTH (t));
5339 /* Avoid crash in import_export_decl. */
5340 DECL_INTERFACE_KNOWN (decl) = 1;
5341 return error_mark_node;
5342 }
5343
5344 if (current == decl)
5345 current = ctx;
5346 else if (current == NULL_TREE)
5347 /* Can happen in erroneous input. */
5348 break;
5349 else
5350 current = get_containing_scope (current);
5351 }
5352
5353 /* Check that the parms are used in the appropriate qualifying scopes
5354 in the declarator. */
5355 if (!comp_template_args
5356 (TI_ARGS (tinfo),
5357 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5358 {
5359 error ("\
5360 template arguments to %qD do not match original template %qD",
5361 decl, DECL_TEMPLATE_RESULT (tmpl));
5362 if (!uses_template_parms (TI_ARGS (tinfo)))
5363 inform (input_location, "use template<> for an explicit specialization");
5364 /* Avoid crash in import_export_decl. */
5365 DECL_INTERFACE_KNOWN (decl) = 1;
5366 return error_mark_node;
5367 }
5368 }
5369
5370 DECL_TEMPLATE_RESULT (tmpl) = decl;
5371 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5372
5373 /* Push template declarations for global functions and types. Note
5374 that we do not try to push a global template friend declared in a
5375 template class; such a thing may well depend on the template
5376 parameters of the class. */
5377 if (new_template_p && !ctx
5378 && !(is_friend && template_class_depth (current_class_type) > 0))
5379 {
5380 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5381 if (tmpl == error_mark_node)
5382 return error_mark_node;
5383
5384 /* Hide template friend classes that haven't been declared yet. */
5385 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5386 {
5387 DECL_ANTICIPATED (tmpl) = 1;
5388 DECL_FRIEND_P (tmpl) = 1;
5389 }
5390 }
5391
5392 if (is_primary)
5393 {
5394 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5395 int i;
5396
5397 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5398 if (DECL_CONV_FN_P (tmpl))
5399 {
5400 int depth = TMPL_PARMS_DEPTH (parms);
5401
5402 /* It is a conversion operator. See if the type converted to
5403 depends on innermost template operands. */
5404
5405 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5406 depth))
5407 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5408 }
5409
5410 /* Give template template parms a DECL_CONTEXT of the template
5411 for which they are a parameter. */
5412 parms = INNERMOST_TEMPLATE_PARMS (parms);
5413 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5414 {
5415 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5416 if (TREE_CODE (parm) == TEMPLATE_DECL)
5417 DECL_CONTEXT (parm) = tmpl;
5418 }
5419
5420 if (TREE_CODE (decl) == TYPE_DECL
5421 && TYPE_DECL_ALIAS_P (decl)
5422 && complex_alias_template_p (tmpl))
5423 TEMPLATE_DECL_COMPLEX_ALIAS_P (tmpl) = true;
5424 }
5425
5426 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5427 back to its most general template. If TMPL is a specialization,
5428 ARGS may only have the innermost set of arguments. Add the missing
5429 argument levels if necessary. */
5430 if (DECL_TEMPLATE_INFO (tmpl))
5431 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5432
5433 info = build_template_info (tmpl, args);
5434
5435 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5436 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5437 else
5438 {
5439 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5440 retrofit_lang_decl (decl);
5441 if (DECL_LANG_SPECIFIC (decl))
5442 DECL_TEMPLATE_INFO (decl) = info;
5443 }
5444
5445 if (flag_implicit_templates
5446 && !is_friend
5447 && TREE_PUBLIC (decl)
5448 && VAR_OR_FUNCTION_DECL_P (decl))
5449 /* Set DECL_COMDAT on template instantiations; if we force
5450 them to be emitted by explicit instantiation or -frepo,
5451 mark_needed will tell cgraph to do the right thing. */
5452 DECL_COMDAT (decl) = true;
5453
5454 return DECL_TEMPLATE_RESULT (tmpl);
5455 }
5456
5457 tree
5458 push_template_decl (tree decl)
5459 {
5460 return push_template_decl_real (decl, false);
5461 }
5462
5463 /* FN is an inheriting constructor that inherits from the constructor
5464 template INHERITED; turn FN into a constructor template with a matching
5465 template header. */
5466
5467 tree
5468 add_inherited_template_parms (tree fn, tree inherited)
5469 {
5470 tree inner_parms
5471 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5472 inner_parms = copy_node (inner_parms);
5473 tree parms
5474 = tree_cons (size_int (processing_template_decl + 1),
5475 inner_parms, current_template_parms);
5476 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5477 tree args = template_parms_to_args (parms);
5478 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5479 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5480 DECL_TEMPLATE_RESULT (tmpl) = fn;
5481 DECL_ARTIFICIAL (tmpl) = true;
5482 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5483 return tmpl;
5484 }
5485
5486 /* Called when a class template TYPE is redeclared with the indicated
5487 template PARMS, e.g.:
5488
5489 template <class T> struct S;
5490 template <class T> struct S {}; */
5491
5492 bool
5493 redeclare_class_template (tree type, tree parms, tree cons)
5494 {
5495 tree tmpl;
5496 tree tmpl_parms;
5497 int i;
5498
5499 if (!TYPE_TEMPLATE_INFO (type))
5500 {
5501 error ("%qT is not a template type", type);
5502 return false;
5503 }
5504
5505 tmpl = TYPE_TI_TEMPLATE (type);
5506 if (!PRIMARY_TEMPLATE_P (tmpl))
5507 /* The type is nested in some template class. Nothing to worry
5508 about here; there are no new template parameters for the nested
5509 type. */
5510 return true;
5511
5512 if (!parms)
5513 {
5514 error ("template specifiers not specified in declaration of %qD",
5515 tmpl);
5516 return false;
5517 }
5518
5519 parms = INNERMOST_TEMPLATE_PARMS (parms);
5520 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5521
5522 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5523 {
5524 error_n (input_location, TREE_VEC_LENGTH (parms),
5525 "redeclared with %d template parameter",
5526 "redeclared with %d template parameters",
5527 TREE_VEC_LENGTH (parms));
5528 inform_n (DECL_SOURCE_LOCATION (tmpl), TREE_VEC_LENGTH (tmpl_parms),
5529 "previous declaration %qD used %d template parameter",
5530 "previous declaration %qD used %d template parameters",
5531 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5532 return false;
5533 }
5534
5535 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5536 {
5537 tree tmpl_parm;
5538 tree parm;
5539 tree tmpl_default;
5540 tree parm_default;
5541
5542 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5543 || TREE_VEC_ELT (parms, i) == error_mark_node)
5544 continue;
5545
5546 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5547 if (error_operand_p (tmpl_parm))
5548 return false;
5549
5550 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5551 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5552 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5553
5554 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5555 TEMPLATE_DECL. */
5556 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5557 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5558 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5559 || (TREE_CODE (tmpl_parm) != PARM_DECL
5560 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5561 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5562 || (TREE_CODE (tmpl_parm) == PARM_DECL
5563 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5564 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5565 {
5566 error ("template parameter %q+#D", tmpl_parm);
5567 error ("redeclared here as %q#D", parm);
5568 return false;
5569 }
5570
5571 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5572 {
5573 /* We have in [temp.param]:
5574
5575 A template-parameter may not be given default arguments
5576 by two different declarations in the same scope. */
5577 error_at (input_location, "redefinition of default argument for %q#D", parm);
5578 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5579 "original definition appeared here");
5580 return false;
5581 }
5582
5583 if (parm_default != NULL_TREE)
5584 /* Update the previous template parameters (which are the ones
5585 that will really count) with the new default value. */
5586 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5587 else if (tmpl_default != NULL_TREE)
5588 /* Update the new parameters, too; they'll be used as the
5589 parameters for any members. */
5590 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5591
5592 /* Give each template template parm in this redeclaration a
5593 DECL_CONTEXT of the template for which they are a parameter. */
5594 if (TREE_CODE (parm) == TEMPLATE_DECL)
5595 {
5596 gcc_assert (DECL_CONTEXT (parm) == NULL_TREE);
5597 DECL_CONTEXT (parm) = tmpl;
5598 }
5599 }
5600
5601 // Cannot redeclare a class template with a different set of constraints.
5602 if (!equivalent_constraints (get_constraints (tmpl), cons))
5603 {
5604 error_at (input_location, "redeclaration %q#D with different "
5605 "constraints", tmpl);
5606 inform (DECL_SOURCE_LOCATION (tmpl),
5607 "original declaration appeared here");
5608 }
5609
5610 return true;
5611 }
5612
5613 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5614 to be used when the caller has already checked
5615 (processing_template_decl
5616 && !instantiation_dependent_expression_p (expr)
5617 && potential_constant_expression (expr))
5618 and cleared processing_template_decl. */
5619
5620 tree
5621 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
5622 {
5623 return tsubst_copy_and_build (expr,
5624 /*args=*/NULL_TREE,
5625 complain,
5626 /*in_decl=*/NULL_TREE,
5627 /*function_p=*/false,
5628 /*integral_constant_expression_p=*/true);
5629 }
5630
5631 /* Simplify EXPR if it is a non-dependent expression. Returns the
5632 (possibly simplified) expression. */
5633
5634 tree
5635 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5636 {
5637 if (expr == NULL_TREE)
5638 return NULL_TREE;
5639
5640 /* If we're in a template, but EXPR isn't value dependent, simplify
5641 it. We're supposed to treat:
5642
5643 template <typename T> void f(T[1 + 1]);
5644 template <typename T> void f(T[2]);
5645
5646 as two declarations of the same function, for example. */
5647 if (processing_template_decl
5648 && !instantiation_dependent_expression_p (expr)
5649 && potential_constant_expression (expr))
5650 {
5651 processing_template_decl_sentinel s;
5652 expr = instantiate_non_dependent_expr_internal (expr, complain);
5653 }
5654 return expr;
5655 }
5656
5657 tree
5658 instantiate_non_dependent_expr (tree expr)
5659 {
5660 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
5661 }
5662
5663 /* True iff T is a specialization of a variable template. */
5664
5665 bool
5666 variable_template_specialization_p (tree t)
5667 {
5668 if (!VAR_P (t) || !DECL_LANG_SPECIFIC (t) || !DECL_TEMPLATE_INFO (t))
5669 return false;
5670 tree tmpl = DECL_TI_TEMPLATE (t);
5671 return variable_template_p (tmpl);
5672 }
5673
5674 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5675 template declaration, or a TYPE_DECL for an alias declaration. */
5676
5677 bool
5678 alias_type_or_template_p (tree t)
5679 {
5680 if (t == NULL_TREE)
5681 return false;
5682 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5683 || (TYPE_P (t)
5684 && TYPE_NAME (t)
5685 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5686 || DECL_ALIAS_TEMPLATE_P (t));
5687 }
5688
5689 /* Return TRUE iff T is a specialization of an alias template. */
5690
5691 bool
5692 alias_template_specialization_p (const_tree t)
5693 {
5694 /* It's an alias template specialization if it's an alias and its
5695 TYPE_NAME is a specialization of a primary template. */
5696 if (TYPE_ALIAS_P (t))
5697 {
5698 tree name = TYPE_NAME (t);
5699 if (DECL_LANG_SPECIFIC (name))
5700 if (tree ti = DECL_TEMPLATE_INFO (name))
5701 {
5702 tree tmpl = TI_TEMPLATE (ti);
5703 return PRIMARY_TEMPLATE_P (tmpl);
5704 }
5705 }
5706 return false;
5707 }
5708
5709 /* An alias template is complex from a SFINAE perspective if a template-id
5710 using that alias can be ill-formed when the expansion is not, as with
5711 the void_t template. We determine this by checking whether the
5712 expansion for the alias template uses all its template parameters. */
5713
5714 struct uses_all_template_parms_data
5715 {
5716 int level;
5717 bool *seen;
5718 };
5719
5720 static int
5721 uses_all_template_parms_r (tree t, void *data_)
5722 {
5723 struct uses_all_template_parms_data &data
5724 = *(struct uses_all_template_parms_data*)data_;
5725 tree idx = get_template_parm_index (t);
5726
5727 if (TEMPLATE_PARM_LEVEL (idx) == data.level)
5728 data.seen[TEMPLATE_PARM_IDX (idx)] = true;
5729 return 0;
5730 }
5731
5732 static bool
5733 complex_alias_template_p (const_tree tmpl)
5734 {
5735 struct uses_all_template_parms_data data;
5736 tree pat = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5737 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5738 data.level = TMPL_PARMS_DEPTH (parms);
5739 int len = TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS (parms));
5740 data.seen = XALLOCAVEC (bool, len);
5741 for (int i = 0; i < len; ++i)
5742 data.seen[i] = false;
5743
5744 for_each_template_parm (pat, uses_all_template_parms_r, &data, NULL, true);
5745 for (int i = 0; i < len; ++i)
5746 if (!data.seen[i])
5747 return true;
5748 return false;
5749 }
5750
5751 /* Return TRUE iff T is a specialization of a complex alias template with
5752 dependent template-arguments. */
5753
5754 bool
5755 dependent_alias_template_spec_p (const_tree t)
5756 {
5757 return (alias_template_specialization_p (t)
5758 && TEMPLATE_DECL_COMPLEX_ALIAS_P (DECL_TI_TEMPLATE (TYPE_NAME (t)))
5759 && (any_dependent_template_arguments_p
5760 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (t)))));
5761 }
5762
5763 /* Return the number of innermost template parameters in TMPL. */
5764
5765 static int
5766 num_innermost_template_parms (tree tmpl)
5767 {
5768 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5769 return TREE_VEC_LENGTH (parms);
5770 }
5771
5772 /* Return either TMPL or another template that it is equivalent to under DR
5773 1286: An alias that just changes the name of a template is equivalent to
5774 the other template. */
5775
5776 static tree
5777 get_underlying_template (tree tmpl)
5778 {
5779 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5780 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5781 {
5782 tree result = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5783 if (TYPE_TEMPLATE_INFO (result))
5784 {
5785 tree sub = TYPE_TI_TEMPLATE (result);
5786 if (PRIMARY_TEMPLATE_P (sub)
5787 && (num_innermost_template_parms (tmpl)
5788 == num_innermost_template_parms (sub)))
5789 {
5790 tree alias_args = INNERMOST_TEMPLATE_ARGS
5791 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5792 if (!comp_template_args (TYPE_TI_ARGS (result), alias_args))
5793 break;
5794 /* The alias type is equivalent to the pattern of the
5795 underlying template, so strip the alias. */
5796 tmpl = sub;
5797 continue;
5798 }
5799 }
5800 break;
5801 }
5802 return tmpl;
5803 }
5804
5805 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5806 must be a function or a pointer-to-function type, as specified
5807 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5808 and check that the resulting function has external linkage. */
5809
5810 static tree
5811 convert_nontype_argument_function (tree type, tree expr,
5812 tsubst_flags_t complain)
5813 {
5814 tree fns = expr;
5815 tree fn, fn_no_ptr;
5816 linkage_kind linkage;
5817
5818 fn = instantiate_type (type, fns, tf_none);
5819 if (fn == error_mark_node)
5820 return error_mark_node;
5821
5822 fn_no_ptr = fn;
5823 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5824 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5825 if (BASELINK_P (fn_no_ptr))
5826 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5827
5828 /* [temp.arg.nontype]/1
5829
5830 A template-argument for a non-type, non-template template-parameter
5831 shall be one of:
5832 [...]
5833 -- the address of an object or function with external [C++11: or
5834 internal] linkage. */
5835
5836 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5837 {
5838 if (complain & tf_error)
5839 {
5840 error ("%qE is not a valid template argument for type %qT",
5841 expr, type);
5842 if (TYPE_PTR_P (type))
5843 error ("it must be the address of a function with "
5844 "external linkage");
5845 else
5846 error ("it must be the name of a function with "
5847 "external linkage");
5848 }
5849 return NULL_TREE;
5850 }
5851
5852 linkage = decl_linkage (fn_no_ptr);
5853 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
5854 {
5855 if (complain & tf_error)
5856 {
5857 if (cxx_dialect >= cxx11)
5858 error ("%qE is not a valid template argument for type %qT "
5859 "because %qD has no linkage",
5860 expr, type, fn_no_ptr);
5861 else
5862 error ("%qE is not a valid template argument for type %qT "
5863 "because %qD does not have external linkage",
5864 expr, type, fn_no_ptr);
5865 }
5866 return NULL_TREE;
5867 }
5868
5869 return fn;
5870 }
5871
5872 /* Subroutine of convert_nontype_argument.
5873 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5874 Emit an error otherwise. */
5875
5876 static bool
5877 check_valid_ptrmem_cst_expr (tree type, tree expr,
5878 tsubst_flags_t complain)
5879 {
5880 STRIP_NOPS (expr);
5881 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5882 return true;
5883 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
5884 return true;
5885 if (processing_template_decl
5886 && TREE_CODE (expr) == ADDR_EXPR
5887 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
5888 return true;
5889 if (complain & tf_error)
5890 {
5891 error ("%qE is not a valid template argument for type %qT",
5892 expr, type);
5893 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5894 }
5895 return false;
5896 }
5897
5898 /* Returns TRUE iff the address of OP is value-dependent.
5899
5900 14.6.2.4 [temp.dep.temp]:
5901 A non-integral non-type template-argument is dependent if its type is
5902 dependent or it has either of the following forms
5903 qualified-id
5904 & qualified-id
5905 and contains a nested-name-specifier which specifies a class-name that
5906 names a dependent type.
5907
5908 We generalize this to just say that the address of a member of a
5909 dependent class is value-dependent; the above doesn't cover the
5910 address of a static data member named with an unqualified-id. */
5911
5912 static bool
5913 has_value_dependent_address (tree op)
5914 {
5915 /* We could use get_inner_reference here, but there's no need;
5916 this is only relevant for template non-type arguments, which
5917 can only be expressed as &id-expression. */
5918 if (DECL_P (op))
5919 {
5920 tree ctx = CP_DECL_CONTEXT (op);
5921 if (TYPE_P (ctx) && dependent_type_p (ctx))
5922 return true;
5923 }
5924
5925 return false;
5926 }
5927
5928 /* The next set of functions are used for providing helpful explanatory
5929 diagnostics for failed overload resolution. Their messages should be
5930 indented by two spaces for consistency with the messages in
5931 call.c */
5932
5933 static int
5934 unify_success (bool /*explain_p*/)
5935 {
5936 return 0;
5937 }
5938
5939 static int
5940 unify_parameter_deduction_failure (bool explain_p, tree parm)
5941 {
5942 if (explain_p)
5943 inform (input_location,
5944 " couldn't deduce template parameter %qD", parm);
5945 return 1;
5946 }
5947
5948 static int
5949 unify_invalid (bool /*explain_p*/)
5950 {
5951 return 1;
5952 }
5953
5954 static int
5955 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5956 {
5957 if (explain_p)
5958 inform (input_location,
5959 " types %qT and %qT have incompatible cv-qualifiers",
5960 parm, arg);
5961 return 1;
5962 }
5963
5964 static int
5965 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5966 {
5967 if (explain_p)
5968 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5969 return 1;
5970 }
5971
5972 static int
5973 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
5974 {
5975 if (explain_p)
5976 inform (input_location,
5977 " template parameter %qD is not a parameter pack, but "
5978 "argument %qD is",
5979 parm, arg);
5980 return 1;
5981 }
5982
5983 static int
5984 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
5985 {
5986 if (explain_p)
5987 inform (input_location,
5988 " template argument %qE does not match "
5989 "pointer-to-member constant %qE",
5990 arg, parm);
5991 return 1;
5992 }
5993
5994 static int
5995 unify_expression_unequal (bool explain_p, tree parm, tree arg)
5996 {
5997 if (explain_p)
5998 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
5999 return 1;
6000 }
6001
6002 static int
6003 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
6004 {
6005 if (explain_p)
6006 inform (input_location,
6007 " inconsistent parameter pack deduction with %qT and %qT",
6008 old_arg, new_arg);
6009 return 1;
6010 }
6011
6012 static int
6013 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
6014 {
6015 if (explain_p)
6016 {
6017 if (TYPE_P (parm))
6018 inform (input_location,
6019 " deduced conflicting types for parameter %qT (%qT and %qT)",
6020 parm, first, second);
6021 else
6022 inform (input_location,
6023 " deduced conflicting values for non-type parameter "
6024 "%qE (%qE and %qE)", parm, first, second);
6025 }
6026 return 1;
6027 }
6028
6029 static int
6030 unify_vla_arg (bool explain_p, tree arg)
6031 {
6032 if (explain_p)
6033 inform (input_location,
6034 " variable-sized array type %qT is not "
6035 "a valid template argument",
6036 arg);
6037 return 1;
6038 }
6039
6040 static int
6041 unify_method_type_error (bool explain_p, tree arg)
6042 {
6043 if (explain_p)
6044 inform (input_location,
6045 " member function type %qT is not a valid template argument",
6046 arg);
6047 return 1;
6048 }
6049
6050 static int
6051 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
6052 {
6053 if (explain_p)
6054 {
6055 if (least_p)
6056 inform_n (input_location, wanted,
6057 " candidate expects at least %d argument, %d provided",
6058 " candidate expects at least %d arguments, %d provided",
6059 wanted, have);
6060 else
6061 inform_n (input_location, wanted,
6062 " candidate expects %d argument, %d provided",
6063 " candidate expects %d arguments, %d provided",
6064 wanted, have);
6065 }
6066 return 1;
6067 }
6068
6069 static int
6070 unify_too_many_arguments (bool explain_p, int have, int wanted)
6071 {
6072 return unify_arity (explain_p, have, wanted);
6073 }
6074
6075 static int
6076 unify_too_few_arguments (bool explain_p, int have, int wanted,
6077 bool least_p = false)
6078 {
6079 return unify_arity (explain_p, have, wanted, least_p);
6080 }
6081
6082 static int
6083 unify_arg_conversion (bool explain_p, tree to_type,
6084 tree from_type, tree arg)
6085 {
6086 if (explain_p)
6087 inform (EXPR_LOC_OR_LOC (arg, input_location),
6088 " cannot convert %qE (type %qT) to type %qT",
6089 arg, from_type, to_type);
6090 return 1;
6091 }
6092
6093 static int
6094 unify_no_common_base (bool explain_p, enum template_base_result r,
6095 tree parm, tree arg)
6096 {
6097 if (explain_p)
6098 switch (r)
6099 {
6100 case tbr_ambiguous_baseclass:
6101 inform (input_location, " %qT is an ambiguous base class of %qT",
6102 parm, arg);
6103 break;
6104 default:
6105 inform (input_location, " %qT is not derived from %qT", arg, parm);
6106 break;
6107 }
6108 return 1;
6109 }
6110
6111 static int
6112 unify_inconsistent_template_template_parameters (bool explain_p)
6113 {
6114 if (explain_p)
6115 inform (input_location,
6116 " template parameters of a template template argument are "
6117 "inconsistent with other deduced template arguments");
6118 return 1;
6119 }
6120
6121 static int
6122 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
6123 {
6124 if (explain_p)
6125 inform (input_location,
6126 " can't deduce a template for %qT from non-template type %qT",
6127 parm, arg);
6128 return 1;
6129 }
6130
6131 static int
6132 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
6133 {
6134 if (explain_p)
6135 inform (input_location,
6136 " template argument %qE does not match %qD", arg, parm);
6137 return 1;
6138 }
6139
6140 static int
6141 unify_overload_resolution_failure (bool explain_p, tree arg)
6142 {
6143 if (explain_p)
6144 inform (input_location,
6145 " could not resolve address from overloaded function %qE",
6146 arg);
6147 return 1;
6148 }
6149
6150 /* Attempt to convert the non-type template parameter EXPR to the
6151 indicated TYPE. If the conversion is successful, return the
6152 converted value. If the conversion is unsuccessful, return
6153 NULL_TREE if we issued an error message, or error_mark_node if we
6154 did not. We issue error messages for out-and-out bad template
6155 parameters, but not simply because the conversion failed, since we
6156 might be just trying to do argument deduction. Both TYPE and EXPR
6157 must be non-dependent.
6158
6159 The conversion follows the special rules described in
6160 [temp.arg.nontype], and it is much more strict than an implicit
6161 conversion.
6162
6163 This function is called twice for each template argument (see
6164 lookup_template_class for a more accurate description of this
6165 problem). This means that we need to handle expressions which
6166 are not valid in a C++ source, but can be created from the
6167 first call (for instance, casts to perform conversions). These
6168 hacks can go away after we fix the double coercion problem. */
6169
6170 static tree
6171 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
6172 {
6173 tree expr_type;
6174
6175 /* Detect immediately string literals as invalid non-type argument.
6176 This special-case is not needed for correctness (we would easily
6177 catch this later), but only to provide better diagnostic for this
6178 common user mistake. As suggested by DR 100, we do not mention
6179 linkage issues in the diagnostic as this is not the point. */
6180 /* FIXME we're making this OK. */
6181 if (TREE_CODE (expr) == STRING_CST)
6182 {
6183 if (complain & tf_error)
6184 error ("%qE is not a valid template argument for type %qT "
6185 "because string literals can never be used in this context",
6186 expr, type);
6187 return NULL_TREE;
6188 }
6189
6190 /* Add the ADDR_EXPR now for the benefit of
6191 value_dependent_expression_p. */
6192 if (TYPE_PTROBV_P (type)
6193 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
6194 {
6195 expr = decay_conversion (expr, complain);
6196 if (expr == error_mark_node)
6197 return error_mark_node;
6198 }
6199
6200 /* If we are in a template, EXPR may be non-dependent, but still
6201 have a syntactic, rather than semantic, form. For example, EXPR
6202 might be a SCOPE_REF, rather than the VAR_DECL to which the
6203 SCOPE_REF refers. Preserving the qualifying scope is necessary
6204 so that access checking can be performed when the template is
6205 instantiated -- but here we need the resolved form so that we can
6206 convert the argument. */
6207 bool non_dep = false;
6208 if (TYPE_REF_OBJ_P (type)
6209 && has_value_dependent_address (expr))
6210 /* If we want the address and it's value-dependent, don't fold. */;
6211 else if (!type_unknown_p (expr)
6212 && processing_template_decl
6213 && !instantiation_dependent_expression_p (expr)
6214 && potential_constant_expression (expr))
6215 non_dep = true;
6216 if (error_operand_p (expr))
6217 return error_mark_node;
6218 expr_type = TREE_TYPE (expr);
6219 if (TREE_CODE (type) == REFERENCE_TYPE)
6220 expr = mark_lvalue_use (expr);
6221 else
6222 expr = mark_rvalue_use (expr);
6223
6224 /* If the argument is non-dependent, perform any conversions in
6225 non-dependent context as well. */
6226 processing_template_decl_sentinel s (non_dep);
6227 if (non_dep)
6228 expr = instantiate_non_dependent_expr_internal (expr, complain);
6229
6230 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
6231 to a non-type argument of "nullptr". */
6232 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
6233 expr = convert (type, expr);
6234
6235 /* In C++11, integral or enumeration non-type template arguments can be
6236 arbitrary constant expressions. Pointer and pointer to
6237 member arguments can be general constant expressions that evaluate
6238 to a null value, but otherwise still need to be of a specific form. */
6239 if (cxx_dialect >= cxx11)
6240 {
6241 if (TREE_CODE (expr) == PTRMEM_CST)
6242 /* A PTRMEM_CST is already constant, and a valid template
6243 argument for a parameter of pointer to member type, we just want
6244 to leave it in that form rather than lower it to a
6245 CONSTRUCTOR. */;
6246 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6247 expr = maybe_constant_value (expr);
6248 else if (cxx_dialect >= cxx1z)
6249 {
6250 if (TREE_CODE (type) != REFERENCE_TYPE)
6251 expr = maybe_constant_value (expr);
6252 else if (REFERENCE_REF_P (expr))
6253 {
6254 expr = TREE_OPERAND (expr, 0);
6255 expr = maybe_constant_value (expr);
6256 expr = convert_from_reference (expr);
6257 }
6258 }
6259 else if (TYPE_PTR_OR_PTRMEM_P (type))
6260 {
6261 tree folded = maybe_constant_value (expr);
6262 if (TYPE_PTR_P (type) ? integer_zerop (folded)
6263 : null_member_pointer_value_p (folded))
6264 expr = folded;
6265 }
6266 }
6267
6268 /* HACK: Due to double coercion, we can get a
6269 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
6270 which is the tree that we built on the first call (see
6271 below when coercing to reference to object or to reference to
6272 function). We just strip everything and get to the arg.
6273 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
6274 for examples. */
6275 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
6276 {
6277 tree probe_type, probe = expr;
6278 if (REFERENCE_REF_P (probe))
6279 probe = TREE_OPERAND (probe, 0);
6280 probe_type = TREE_TYPE (probe);
6281 if (TREE_CODE (probe) == NOP_EXPR)
6282 {
6283 /* ??? Maybe we could use convert_from_reference here, but we
6284 would need to relax its constraints because the NOP_EXPR
6285 could actually change the type to something more cv-qualified,
6286 and this is not folded by convert_from_reference. */
6287 tree addr = TREE_OPERAND (probe, 0);
6288 if (TREE_CODE (probe_type) == REFERENCE_TYPE
6289 && TREE_CODE (addr) == ADDR_EXPR
6290 && TYPE_PTR_P (TREE_TYPE (addr))
6291 && (same_type_ignoring_top_level_qualifiers_p
6292 (TREE_TYPE (probe_type),
6293 TREE_TYPE (TREE_TYPE (addr)))))
6294 {
6295 expr = TREE_OPERAND (addr, 0);
6296 expr_type = TREE_TYPE (probe_type);
6297 }
6298 }
6299 }
6300
6301 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
6302 parameter is a pointer to object, through decay and
6303 qualification conversion. Let's strip everything. */
6304 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
6305 {
6306 tree probe = expr;
6307 STRIP_NOPS (probe);
6308 if (TREE_CODE (probe) == ADDR_EXPR
6309 && TYPE_PTR_P (TREE_TYPE (probe)))
6310 {
6311 /* Skip the ADDR_EXPR only if it is part of the decay for
6312 an array. Otherwise, it is part of the original argument
6313 in the source code. */
6314 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
6315 probe = TREE_OPERAND (probe, 0);
6316 expr = probe;
6317 expr_type = TREE_TYPE (expr);
6318 }
6319 }
6320
6321 /* [temp.arg.nontype]/5, bullet 1
6322
6323 For a non-type template-parameter of integral or enumeration type,
6324 integral promotions (_conv.prom_) and integral conversions
6325 (_conv.integral_) are applied. */
6326 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6327 {
6328 tree t = build_integral_nontype_arg_conv (type, expr, complain);
6329 t = maybe_constant_value (t);
6330 if (t != error_mark_node)
6331 expr = t;
6332
6333 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
6334 return error_mark_node;
6335
6336 /* Notice that there are constant expressions like '4 % 0' which
6337 do not fold into integer constants. */
6338 if (TREE_CODE (expr) != INTEGER_CST)
6339 {
6340 if (complain & tf_error)
6341 {
6342 int errs = errorcount, warns = warningcount + werrorcount;
6343 if (processing_template_decl
6344 && !require_potential_constant_expression (expr))
6345 return NULL_TREE;
6346 expr = cxx_constant_value (expr);
6347 if (errorcount > errs || warningcount + werrorcount > warns)
6348 inform (EXPR_LOC_OR_LOC (expr, input_location),
6349 "in template argument for type %qT ", type);
6350 if (expr == error_mark_node)
6351 return NULL_TREE;
6352 /* else cxx_constant_value complained but gave us
6353 a real constant, so go ahead. */
6354 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
6355 }
6356 else
6357 return NULL_TREE;
6358 }
6359
6360 /* Avoid typedef problems. */
6361 if (TREE_TYPE (expr) != type)
6362 expr = fold_convert (type, expr);
6363 }
6364 /* [temp.arg.nontype]/5, bullet 2
6365
6366 For a non-type template-parameter of type pointer to object,
6367 qualification conversions (_conv.qual_) and the array-to-pointer
6368 conversion (_conv.array_) are applied. */
6369 else if (TYPE_PTROBV_P (type))
6370 {
6371 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
6372
6373 A template-argument for a non-type, non-template template-parameter
6374 shall be one of: [...]
6375
6376 -- the name of a non-type template-parameter;
6377 -- the address of an object or function with external linkage, [...]
6378 expressed as "& id-expression" where the & is optional if the name
6379 refers to a function or array, or if the corresponding
6380 template-parameter is a reference.
6381
6382 Here, we do not care about functions, as they are invalid anyway
6383 for a parameter of type pointer-to-object. */
6384
6385 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
6386 /* Non-type template parameters are OK. */
6387 ;
6388 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
6389 /* Null pointer values are OK in C++11. */;
6390 else if (TREE_CODE (expr) != ADDR_EXPR
6391 && TREE_CODE (expr_type) != ARRAY_TYPE)
6392 {
6393 if (VAR_P (expr))
6394 {
6395 if (complain & tf_error)
6396 error ("%qD is not a valid template argument "
6397 "because %qD is a variable, not the address of "
6398 "a variable", expr, expr);
6399 return NULL_TREE;
6400 }
6401 if (POINTER_TYPE_P (expr_type))
6402 {
6403 if (complain & tf_error)
6404 error ("%qE is not a valid template argument for %qT "
6405 "because it is not the address of a variable",
6406 expr, type);
6407 return NULL_TREE;
6408 }
6409 /* Other values, like integer constants, might be valid
6410 non-type arguments of some other type. */
6411 return error_mark_node;
6412 }
6413 else
6414 {
6415 tree decl;
6416
6417 decl = ((TREE_CODE (expr) == ADDR_EXPR)
6418 ? TREE_OPERAND (expr, 0) : expr);
6419 if (!VAR_P (decl))
6420 {
6421 if (complain & tf_error)
6422 error ("%qE is not a valid template argument of type %qT "
6423 "because %qE is not a variable", expr, type, decl);
6424 return NULL_TREE;
6425 }
6426 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
6427 {
6428 if (complain & tf_error)
6429 error ("%qE is not a valid template argument of type %qT "
6430 "because %qD does not have external linkage",
6431 expr, type, decl);
6432 return NULL_TREE;
6433 }
6434 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
6435 {
6436 if (complain & tf_error)
6437 error ("%qE is not a valid template argument of type %qT "
6438 "because %qD has no linkage", expr, type, decl);
6439 return NULL_TREE;
6440 }
6441 }
6442
6443 expr = decay_conversion (expr, complain);
6444 if (expr == error_mark_node)
6445 return error_mark_node;
6446
6447 expr = perform_qualification_conversions (type, expr);
6448 if (expr == error_mark_node)
6449 return error_mark_node;
6450 }
6451 /* [temp.arg.nontype]/5, bullet 3
6452
6453 For a non-type template-parameter of type reference to object, no
6454 conversions apply. The type referred to by the reference may be more
6455 cv-qualified than the (otherwise identical) type of the
6456 template-argument. The template-parameter is bound directly to the
6457 template-argument, which must be an lvalue. */
6458 else if (TYPE_REF_OBJ_P (type))
6459 {
6460 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
6461 expr_type))
6462 return error_mark_node;
6463
6464 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
6465 {
6466 if (complain & tf_error)
6467 error ("%qE is not a valid template argument for type %qT "
6468 "because of conflicts in cv-qualification", expr, type);
6469 return NULL_TREE;
6470 }
6471
6472 if (!real_lvalue_p (expr))
6473 {
6474 if (complain & tf_error)
6475 error ("%qE is not a valid template argument for type %qT "
6476 "because it is not an lvalue", expr, type);
6477 return NULL_TREE;
6478 }
6479
6480 /* [temp.arg.nontype]/1
6481
6482 A template-argument for a non-type, non-template template-parameter
6483 shall be one of: [...]
6484
6485 -- the address of an object or function with external linkage. */
6486 if (INDIRECT_REF_P (expr)
6487 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
6488 {
6489 expr = TREE_OPERAND (expr, 0);
6490 if (DECL_P (expr))
6491 {
6492 if (complain & tf_error)
6493 error ("%q#D is not a valid template argument for type %qT "
6494 "because a reference variable does not have a constant "
6495 "address", expr, type);
6496 return NULL_TREE;
6497 }
6498 }
6499
6500 if (!DECL_P (expr))
6501 {
6502 if (complain & tf_error)
6503 error ("%qE is not a valid template argument for type %qT "
6504 "because it is not an object with linkage",
6505 expr, type);
6506 return NULL_TREE;
6507 }
6508
6509 /* DR 1155 allows internal linkage in C++11 and up. */
6510 linkage_kind linkage = decl_linkage (expr);
6511 if (linkage < (cxx_dialect >= cxx11 ? lk_internal : lk_external))
6512 {
6513 if (complain & tf_error)
6514 error ("%qE is not a valid template argument for type %qT "
6515 "because object %qD does not have linkage",
6516 expr, type, expr);
6517 return NULL_TREE;
6518 }
6519
6520 expr = build_nop (type, build_address (expr));
6521 }
6522 /* [temp.arg.nontype]/5, bullet 4
6523
6524 For a non-type template-parameter of type pointer to function, only
6525 the function-to-pointer conversion (_conv.func_) is applied. If the
6526 template-argument represents a set of overloaded functions (or a
6527 pointer to such), the matching function is selected from the set
6528 (_over.over_). */
6529 else if (TYPE_PTRFN_P (type))
6530 {
6531 /* If the argument is a template-id, we might not have enough
6532 context information to decay the pointer. */
6533 if (!type_unknown_p (expr_type))
6534 {
6535 expr = decay_conversion (expr, complain);
6536 if (expr == error_mark_node)
6537 return error_mark_node;
6538 }
6539
6540 if (cxx_dialect >= cxx11 && integer_zerop (expr))
6541 /* Null pointer values are OK in C++11. */
6542 return perform_qualification_conversions (type, expr);
6543
6544 expr = convert_nontype_argument_function (type, expr, complain);
6545 if (!expr || expr == error_mark_node)
6546 return expr;
6547 }
6548 /* [temp.arg.nontype]/5, bullet 5
6549
6550 For a non-type template-parameter of type reference to function, no
6551 conversions apply. If the template-argument represents a set of
6552 overloaded functions, the matching function is selected from the set
6553 (_over.over_). */
6554 else if (TYPE_REFFN_P (type))
6555 {
6556 if (TREE_CODE (expr) == ADDR_EXPR)
6557 {
6558 if (complain & tf_error)
6559 {
6560 error ("%qE is not a valid template argument for type %qT "
6561 "because it is a pointer", expr, type);
6562 inform (input_location, "try using %qE instead",
6563 TREE_OPERAND (expr, 0));
6564 }
6565 return NULL_TREE;
6566 }
6567
6568 expr = convert_nontype_argument_function (type, expr, complain);
6569 if (!expr || expr == error_mark_node)
6570 return expr;
6571
6572 expr = build_nop (type, build_address (expr));
6573 }
6574 /* [temp.arg.nontype]/5, bullet 6
6575
6576 For a non-type template-parameter of type pointer to member function,
6577 no conversions apply. If the template-argument represents a set of
6578 overloaded member functions, the matching member function is selected
6579 from the set (_over.over_). */
6580 else if (TYPE_PTRMEMFUNC_P (type))
6581 {
6582 expr = instantiate_type (type, expr, tf_none);
6583 if (expr == error_mark_node)
6584 return error_mark_node;
6585
6586 /* [temp.arg.nontype] bullet 1 says the pointer to member
6587 expression must be a pointer-to-member constant. */
6588 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6589 return error_mark_node;
6590
6591 /* There is no way to disable standard conversions in
6592 resolve_address_of_overloaded_function (called by
6593 instantiate_type). It is possible that the call succeeded by
6594 converting &B::I to &D::I (where B is a base of D), so we need
6595 to reject this conversion here.
6596
6597 Actually, even if there was a way to disable standard conversions,
6598 it would still be better to reject them here so that we can
6599 provide a superior diagnostic. */
6600 if (!same_type_p (TREE_TYPE (expr), type))
6601 {
6602 if (complain & tf_error)
6603 {
6604 error ("%qE is not a valid template argument for type %qT "
6605 "because it is of type %qT", expr, type,
6606 TREE_TYPE (expr));
6607 /* If we are just one standard conversion off, explain. */
6608 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6609 inform (input_location,
6610 "standard conversions are not allowed in this context");
6611 }
6612 return NULL_TREE;
6613 }
6614 }
6615 /* [temp.arg.nontype]/5, bullet 7
6616
6617 For a non-type template-parameter of type pointer to data member,
6618 qualification conversions (_conv.qual_) are applied. */
6619 else if (TYPE_PTRDATAMEM_P (type))
6620 {
6621 /* [temp.arg.nontype] bullet 1 says the pointer to member
6622 expression must be a pointer-to-member constant. */
6623 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6624 return error_mark_node;
6625
6626 expr = perform_qualification_conversions (type, expr);
6627 if (expr == error_mark_node)
6628 return expr;
6629 }
6630 else if (NULLPTR_TYPE_P (type))
6631 {
6632 if (expr != nullptr_node)
6633 {
6634 if (complain & tf_error)
6635 error ("%qE is not a valid template argument for type %qT "
6636 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6637 return NULL_TREE;
6638 }
6639 return expr;
6640 }
6641 /* A template non-type parameter must be one of the above. */
6642 else
6643 gcc_unreachable ();
6644
6645 /* Sanity check: did we actually convert the argument to the
6646 right type? */
6647 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6648 (type, TREE_TYPE (expr)));
6649 return convert_from_reference (expr);
6650 }
6651
6652 /* Subroutine of coerce_template_template_parms, which returns 1 if
6653 PARM_PARM and ARG_PARM match using the rule for the template
6654 parameters of template template parameters. Both PARM and ARG are
6655 template parameters; the rest of the arguments are the same as for
6656 coerce_template_template_parms.
6657 */
6658 static int
6659 coerce_template_template_parm (tree parm,
6660 tree arg,
6661 tsubst_flags_t complain,
6662 tree in_decl,
6663 tree outer_args)
6664 {
6665 if (arg == NULL_TREE || error_operand_p (arg)
6666 || parm == NULL_TREE || error_operand_p (parm))
6667 return 0;
6668
6669 if (TREE_CODE (arg) != TREE_CODE (parm))
6670 return 0;
6671
6672 switch (TREE_CODE (parm))
6673 {
6674 case TEMPLATE_DECL:
6675 /* We encounter instantiations of templates like
6676 template <template <template <class> class> class TT>
6677 class C; */
6678 {
6679 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6680 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6681
6682 if (!coerce_template_template_parms
6683 (parmparm, argparm, complain, in_decl, outer_args))
6684 return 0;
6685 }
6686 /* Fall through. */
6687
6688 case TYPE_DECL:
6689 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6690 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6691 /* Argument is a parameter pack but parameter is not. */
6692 return 0;
6693 break;
6694
6695 case PARM_DECL:
6696 /* The tsubst call is used to handle cases such as
6697
6698 template <int> class C {};
6699 template <class T, template <T> class TT> class D {};
6700 D<int, C> d;
6701
6702 i.e. the parameter list of TT depends on earlier parameters. */
6703 if (!uses_template_parms (TREE_TYPE (arg)))
6704 {
6705 tree t = tsubst (TREE_TYPE (parm), outer_args, complain, in_decl);
6706 if (!uses_template_parms (t)
6707 && !same_type_p (t, TREE_TYPE (arg)))
6708 return 0;
6709 }
6710
6711 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6712 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6713 /* Argument is a parameter pack but parameter is not. */
6714 return 0;
6715
6716 break;
6717
6718 default:
6719 gcc_unreachable ();
6720 }
6721
6722 return 1;
6723 }
6724
6725
6726 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6727 template template parameters. Both PARM_PARMS and ARG_PARMS are
6728 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6729 or PARM_DECL.
6730
6731 Consider the example:
6732 template <class T> class A;
6733 template<template <class U> class TT> class B;
6734
6735 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6736 the parameters to A, and OUTER_ARGS contains A. */
6737
6738 static int
6739 coerce_template_template_parms (tree parm_parms,
6740 tree arg_parms,
6741 tsubst_flags_t complain,
6742 tree in_decl,
6743 tree outer_args)
6744 {
6745 int nparms, nargs, i;
6746 tree parm, arg;
6747 int variadic_p = 0;
6748
6749 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
6750 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
6751
6752 nparms = TREE_VEC_LENGTH (parm_parms);
6753 nargs = TREE_VEC_LENGTH (arg_parms);
6754
6755 /* Determine whether we have a parameter pack at the end of the
6756 template template parameter's template parameter list. */
6757 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
6758 {
6759 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
6760
6761 if (error_operand_p (parm))
6762 return 0;
6763
6764 switch (TREE_CODE (parm))
6765 {
6766 case TEMPLATE_DECL:
6767 case TYPE_DECL:
6768 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6769 variadic_p = 1;
6770 break;
6771
6772 case PARM_DECL:
6773 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6774 variadic_p = 1;
6775 break;
6776
6777 default:
6778 gcc_unreachable ();
6779 }
6780 }
6781
6782 if (nargs != nparms
6783 && !(variadic_p && nargs >= nparms - 1))
6784 return 0;
6785
6786 /* Check all of the template parameters except the parameter pack at
6787 the end (if any). */
6788 for (i = 0; i < nparms - variadic_p; ++i)
6789 {
6790 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6791 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6792 continue;
6793
6794 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6795 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6796
6797 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6798 outer_args))
6799 return 0;
6800
6801 }
6802
6803 if (variadic_p)
6804 {
6805 /* Check each of the template parameters in the template
6806 argument against the template parameter pack at the end of
6807 the template template parameter. */
6808 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6809 return 0;
6810
6811 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6812
6813 for (; i < nargs; ++i)
6814 {
6815 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6816 continue;
6817
6818 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6819
6820 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6821 outer_args))
6822 return 0;
6823 }
6824 }
6825
6826 return 1;
6827 }
6828
6829 /* Verifies that the deduced template arguments (in TARGS) for the
6830 template template parameters (in TPARMS) represent valid bindings,
6831 by comparing the template parameter list of each template argument
6832 to the template parameter list of its corresponding template
6833 template parameter, in accordance with DR150. This
6834 routine can only be called after all template arguments have been
6835 deduced. It will return TRUE if all of the template template
6836 parameter bindings are okay, FALSE otherwise. */
6837 bool
6838 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6839 {
6840 int i, ntparms = TREE_VEC_LENGTH (tparms);
6841 bool ret = true;
6842
6843 /* We're dealing with template parms in this process. */
6844 ++processing_template_decl;
6845
6846 targs = INNERMOST_TEMPLATE_ARGS (targs);
6847
6848 for (i = 0; i < ntparms; ++i)
6849 {
6850 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6851 tree targ = TREE_VEC_ELT (targs, i);
6852
6853 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6854 {
6855 tree packed_args = NULL_TREE;
6856 int idx, len = 1;
6857
6858 if (ARGUMENT_PACK_P (targ))
6859 {
6860 /* Look inside the argument pack. */
6861 packed_args = ARGUMENT_PACK_ARGS (targ);
6862 len = TREE_VEC_LENGTH (packed_args);
6863 }
6864
6865 for (idx = 0; idx < len; ++idx)
6866 {
6867 tree targ_parms = NULL_TREE;
6868
6869 if (packed_args)
6870 /* Extract the next argument from the argument
6871 pack. */
6872 targ = TREE_VEC_ELT (packed_args, idx);
6873
6874 if (PACK_EXPANSION_P (targ))
6875 /* Look at the pattern of the pack expansion. */
6876 targ = PACK_EXPANSION_PATTERN (targ);
6877
6878 /* Extract the template parameters from the template
6879 argument. */
6880 if (TREE_CODE (targ) == TEMPLATE_DECL)
6881 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6882 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6883 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6884
6885 /* Verify that we can coerce the template template
6886 parameters from the template argument to the template
6887 parameter. This requires an exact match. */
6888 if (targ_parms
6889 && !coerce_template_template_parms
6890 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6891 targ_parms,
6892 tf_none,
6893 tparm,
6894 targs))
6895 {
6896 ret = false;
6897 goto out;
6898 }
6899 }
6900 }
6901 }
6902
6903 out:
6904
6905 --processing_template_decl;
6906 return ret;
6907 }
6908
6909 /* Since type attributes aren't mangled, we need to strip them from
6910 template type arguments. */
6911
6912 static tree
6913 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6914 {
6915 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6916 return arg;
6917 bool removed_attributes = false;
6918 tree canon = strip_typedefs (arg, &removed_attributes);
6919 if (removed_attributes
6920 && (complain & tf_warning))
6921 warning (0, "ignoring attributes on template argument %qT", arg);
6922 return canon;
6923 }
6924
6925 // A template declaration can be substituted for a constrained
6926 // template template parameter only when the argument is more
6927 // constrained than the parameter.
6928 static bool
6929 is_compatible_template_arg (tree parm, tree arg)
6930 {
6931 tree parm_cons = get_constraints (parm);
6932
6933 /* For now, allow constrained template template arguments
6934 and unconstrained template template parameters. */
6935 if (parm_cons == NULL_TREE)
6936 return true;
6937
6938 tree arg_cons = get_constraints (arg);
6939
6940 // If the template parameter is constrained, we need to rewrite its
6941 // constraints in terms of the ARG's template parameters. This ensures
6942 // that all of the template parameter types will have the same depth.
6943 //
6944 // Note that this is only valid when coerce_template_template_parm is
6945 // true for the innermost template parameters of PARM and ARG. In other
6946 // words, because coercion is successful, this conversion will be valid.
6947 if (parm_cons)
6948 {
6949 tree args = template_parms_to_args (DECL_TEMPLATE_PARMS (arg));
6950 parm_cons = tsubst_constraint_info (parm_cons,
6951 INNERMOST_TEMPLATE_ARGS (args),
6952 tf_none, NULL_TREE);
6953 if (parm_cons == error_mark_node)
6954 return false;
6955 }
6956
6957 return subsumes (parm_cons, arg_cons);
6958 }
6959
6960 // Convert a placeholder argument into a binding to the original
6961 // parameter. The original parameter is saved as the TREE_TYPE of
6962 // ARG.
6963 static inline tree
6964 convert_wildcard_argument (tree parm, tree arg)
6965 {
6966 TREE_TYPE (arg) = parm;
6967 return arg;
6968 }
6969
6970 /* Convert the indicated template ARG as necessary to match the
6971 indicated template PARM. Returns the converted ARG, or
6972 error_mark_node if the conversion was unsuccessful. Error and
6973 warning messages are issued under control of COMPLAIN. This
6974 conversion is for the Ith parameter in the parameter list. ARGS is
6975 the full set of template arguments deduced so far. */
6976
6977 static tree
6978 convert_template_argument (tree parm,
6979 tree arg,
6980 tree args,
6981 tsubst_flags_t complain,
6982 int i,
6983 tree in_decl)
6984 {
6985 tree orig_arg;
6986 tree val;
6987 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
6988
6989 if (parm == error_mark_node)
6990 return error_mark_node;
6991
6992 /* Trivially convert placeholders. */
6993 if (TREE_CODE (arg) == WILDCARD_DECL)
6994 return convert_wildcard_argument (parm, arg);
6995
6996 if (TREE_CODE (arg) == TREE_LIST
6997 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
6998 {
6999 /* The template argument was the name of some
7000 member function. That's usually
7001 invalid, but static members are OK. In any
7002 case, grab the underlying fields/functions
7003 and issue an error later if required. */
7004 orig_arg = TREE_VALUE (arg);
7005 TREE_TYPE (arg) = unknown_type_node;
7006 }
7007
7008 orig_arg = arg;
7009
7010 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
7011 requires_type = (TREE_CODE (parm) == TYPE_DECL
7012 || requires_tmpl_type);
7013
7014 /* When determining whether an argument pack expansion is a template,
7015 look at the pattern. */
7016 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
7017 arg = PACK_EXPANSION_PATTERN (arg);
7018
7019 /* Deal with an injected-class-name used as a template template arg. */
7020 if (requires_tmpl_type && CLASS_TYPE_P (arg))
7021 {
7022 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
7023 if (TREE_CODE (t) == TEMPLATE_DECL)
7024 {
7025 if (cxx_dialect >= cxx11)
7026 /* OK under DR 1004. */;
7027 else if (complain & tf_warning_or_error)
7028 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
7029 " used as template template argument", TYPE_NAME (arg));
7030 else if (flag_pedantic_errors)
7031 t = arg;
7032
7033 arg = t;
7034 }
7035 }
7036
7037 is_tmpl_type =
7038 ((TREE_CODE (arg) == TEMPLATE_DECL
7039 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
7040 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
7041 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7042 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
7043
7044 if (is_tmpl_type
7045 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7046 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
7047 arg = TYPE_STUB_DECL (arg);
7048
7049 is_type = TYPE_P (arg) || is_tmpl_type;
7050
7051 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
7052 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
7053 {
7054 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
7055 {
7056 if (complain & tf_error)
7057 error ("invalid use of destructor %qE as a type", orig_arg);
7058 return error_mark_node;
7059 }
7060
7061 permerror (input_location,
7062 "to refer to a type member of a template parameter, "
7063 "use %<typename %E%>", orig_arg);
7064
7065 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
7066 TREE_OPERAND (arg, 1),
7067 typename_type,
7068 complain);
7069 arg = orig_arg;
7070 is_type = 1;
7071 }
7072 if (is_type != requires_type)
7073 {
7074 if (in_decl)
7075 {
7076 if (complain & tf_error)
7077 {
7078 error ("type/value mismatch at argument %d in template "
7079 "parameter list for %qD",
7080 i + 1, in_decl);
7081 if (is_type)
7082 inform (input_location,
7083 " expected a constant of type %qT, got %qT",
7084 TREE_TYPE (parm),
7085 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
7086 else if (requires_tmpl_type)
7087 inform (input_location,
7088 " expected a class template, got %qE", orig_arg);
7089 else
7090 inform (input_location,
7091 " expected a type, got %qE", orig_arg);
7092 }
7093 }
7094 return error_mark_node;
7095 }
7096 if (is_tmpl_type ^ requires_tmpl_type)
7097 {
7098 if (in_decl && (complain & tf_error))
7099 {
7100 error ("type/value mismatch at argument %d in template "
7101 "parameter list for %qD",
7102 i + 1, in_decl);
7103 if (is_tmpl_type)
7104 inform (input_location,
7105 " expected a type, got %qT", DECL_NAME (arg));
7106 else
7107 inform (input_location,
7108 " expected a class template, got %qT", orig_arg);
7109 }
7110 return error_mark_node;
7111 }
7112
7113 if (is_type)
7114 {
7115 if (requires_tmpl_type)
7116 {
7117 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7118 val = orig_arg;
7119 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
7120 /* The number of argument required is not known yet.
7121 Just accept it for now. */
7122 val = TREE_TYPE (arg);
7123 else
7124 {
7125 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
7126 tree argparm;
7127
7128 /* Strip alias templates that are equivalent to another
7129 template. */
7130 arg = get_underlying_template (arg);
7131 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
7132
7133 if (coerce_template_template_parms (parmparm, argparm,
7134 complain, in_decl,
7135 args))
7136 {
7137 val = arg;
7138
7139 /* TEMPLATE_TEMPLATE_PARM node is preferred over
7140 TEMPLATE_DECL. */
7141 if (val != error_mark_node)
7142 {
7143 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
7144 val = TREE_TYPE (val);
7145 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
7146 val = make_pack_expansion (val);
7147 }
7148 }
7149 else
7150 {
7151 if (in_decl && (complain & tf_error))
7152 {
7153 error ("type/value mismatch at argument %d in "
7154 "template parameter list for %qD",
7155 i + 1, in_decl);
7156 inform (input_location,
7157 " expected a template of type %qD, got %qT",
7158 parm, orig_arg);
7159 }
7160
7161 val = error_mark_node;
7162 }
7163
7164 // Check that the constraints are compatible before allowing the
7165 // substitution.
7166 if (val != error_mark_node)
7167 if (!is_compatible_template_arg (parm, arg))
7168 {
7169 if (in_decl && (complain & tf_error))
7170 {
7171 error ("constraint mismatch at argument %d in "
7172 "template parameter list for %qD",
7173 i + 1, in_decl);
7174 inform (input_location, " expected %qD but got %qD",
7175 parm, arg);
7176 }
7177 val = error_mark_node;
7178 }
7179 }
7180 }
7181 else
7182 val = orig_arg;
7183 /* We only form one instance of each template specialization.
7184 Therefore, if we use a non-canonical variant (i.e., a
7185 typedef), any future messages referring to the type will use
7186 the typedef, which is confusing if those future uses do not
7187 themselves also use the typedef. */
7188 if (TYPE_P (val))
7189 val = canonicalize_type_argument (val, complain);
7190 }
7191 else
7192 {
7193 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
7194
7195 if (invalid_nontype_parm_type_p (t, complain))
7196 return error_mark_node;
7197
7198 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7199 {
7200 if (same_type_p (t, TREE_TYPE (orig_arg)))
7201 val = orig_arg;
7202 else
7203 {
7204 /* Not sure if this is reachable, but it doesn't hurt
7205 to be robust. */
7206 error ("type mismatch in nontype parameter pack");
7207 val = error_mark_node;
7208 }
7209 }
7210 else if (!dependent_template_arg_p (orig_arg)
7211 && !uses_template_parms (t))
7212 /* We used to call digest_init here. However, digest_init
7213 will report errors, which we don't want when complain
7214 is zero. More importantly, digest_init will try too
7215 hard to convert things: for example, `0' should not be
7216 converted to pointer type at this point according to
7217 the standard. Accepting this is not merely an
7218 extension, since deciding whether or not these
7219 conversions can occur is part of determining which
7220 function template to call, or whether a given explicit
7221 argument specification is valid. */
7222 val = convert_nontype_argument (t, orig_arg, complain);
7223 else
7224 {
7225 bool removed_attr = false;
7226 val = strip_typedefs_expr (orig_arg, &removed_attr);
7227 }
7228
7229 if (val == NULL_TREE)
7230 val = error_mark_node;
7231 else if (val == error_mark_node && (complain & tf_error))
7232 error ("could not convert template argument %qE to %qT", orig_arg, t);
7233
7234 if (INDIRECT_REF_P (val))
7235 {
7236 /* Reject template arguments that are references to built-in
7237 functions with no library fallbacks. */
7238 const_tree inner = TREE_OPERAND (val, 0);
7239 if (TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7240 && TREE_CODE (TREE_TYPE (TREE_TYPE (inner))) == FUNCTION_TYPE
7241 && TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7242 && reject_gcc_builtin (TREE_OPERAND (inner, 0)))
7243 return error_mark_node;
7244 }
7245
7246 if (TREE_CODE (val) == SCOPE_REF)
7247 {
7248 /* Strip typedefs from the SCOPE_REF. */
7249 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
7250 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
7251 complain);
7252 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
7253 QUALIFIED_NAME_IS_TEMPLATE (val));
7254 }
7255 }
7256
7257 return val;
7258 }
7259
7260 /* Coerces the remaining template arguments in INNER_ARGS (from
7261 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
7262 Returns the coerced argument pack. PARM_IDX is the position of this
7263 parameter in the template parameter list. ARGS is the original
7264 template argument list. */
7265 static tree
7266 coerce_template_parameter_pack (tree parms,
7267 int parm_idx,
7268 tree args,
7269 tree inner_args,
7270 int arg_idx,
7271 tree new_args,
7272 int* lost,
7273 tree in_decl,
7274 tsubst_flags_t complain)
7275 {
7276 tree parm = TREE_VEC_ELT (parms, parm_idx);
7277 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7278 tree packed_args;
7279 tree argument_pack;
7280 tree packed_parms = NULL_TREE;
7281
7282 if (arg_idx > nargs)
7283 arg_idx = nargs;
7284
7285 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
7286 {
7287 /* When the template parameter is a non-type template parameter pack
7288 or template template parameter pack whose type or template
7289 parameters use parameter packs, we know exactly how many arguments
7290 we are looking for. Build a vector of the instantiated decls for
7291 these template parameters in PACKED_PARMS. */
7292 /* We can't use make_pack_expansion here because it would interpret a
7293 _DECL as a use rather than a declaration. */
7294 tree decl = TREE_VALUE (parm);
7295 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
7296 SET_PACK_EXPANSION_PATTERN (exp, decl);
7297 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
7298 SET_TYPE_STRUCTURAL_EQUALITY (exp);
7299
7300 TREE_VEC_LENGTH (args)--;
7301 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
7302 TREE_VEC_LENGTH (args)++;
7303
7304 if (packed_parms == error_mark_node)
7305 return error_mark_node;
7306
7307 /* If we're doing a partial instantiation of a member template,
7308 verify that all of the types used for the non-type
7309 template parameter pack are, in fact, valid for non-type
7310 template parameters. */
7311 if (arg_idx < nargs
7312 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
7313 {
7314 int j, len = TREE_VEC_LENGTH (packed_parms);
7315 for (j = 0; j < len; ++j)
7316 {
7317 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
7318 if (invalid_nontype_parm_type_p (t, complain))
7319 return error_mark_node;
7320 }
7321 /* We don't know how many args we have yet, just
7322 use the unconverted ones for now. */
7323 return NULL_TREE;
7324 }
7325
7326 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
7327 }
7328 /* Check if we have a placeholder pack, which indicates we're
7329 in the context of a introduction list. In that case we want
7330 to match this pack to the single placeholder. */
7331 else if (arg_idx < nargs
7332 && TREE_CODE (TREE_VEC_ELT (inner_args, arg_idx)) == WILDCARD_DECL
7333 && WILDCARD_PACK_P (TREE_VEC_ELT (inner_args, arg_idx)))
7334 {
7335 nargs = arg_idx + 1;
7336 packed_args = make_tree_vec (1);
7337 }
7338 else
7339 packed_args = make_tree_vec (nargs - arg_idx);
7340
7341 /* Convert the remaining arguments, which will be a part of the
7342 parameter pack "parm". */
7343 for (; arg_idx < nargs; ++arg_idx)
7344 {
7345 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
7346 tree actual_parm = TREE_VALUE (parm);
7347 int pack_idx = arg_idx - parm_idx;
7348
7349 if (packed_parms)
7350 {
7351 /* Once we've packed as many args as we have types, stop. */
7352 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
7353 break;
7354 else if (PACK_EXPANSION_P (arg))
7355 /* We don't know how many args we have yet, just
7356 use the unconverted ones for now. */
7357 return NULL_TREE;
7358 else
7359 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
7360 }
7361
7362 if (arg == error_mark_node)
7363 {
7364 if (complain & tf_error)
7365 error ("template argument %d is invalid", arg_idx + 1);
7366 }
7367 else
7368 arg = convert_template_argument (actual_parm,
7369 arg, new_args, complain, parm_idx,
7370 in_decl);
7371 if (arg == error_mark_node)
7372 (*lost)++;
7373 TREE_VEC_ELT (packed_args, pack_idx) = arg;
7374 }
7375
7376 if (arg_idx - parm_idx < TREE_VEC_LENGTH (packed_args)
7377 && TREE_VEC_LENGTH (packed_args) > 0)
7378 {
7379 if (complain & tf_error)
7380 error ("wrong number of template arguments (%d, should be %d)",
7381 arg_idx - parm_idx, TREE_VEC_LENGTH (packed_args));
7382 return error_mark_node;
7383 }
7384
7385 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
7386 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
7387 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
7388 else
7389 {
7390 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
7391 TREE_TYPE (argument_pack)
7392 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
7393 TREE_CONSTANT (argument_pack) = 1;
7394 }
7395
7396 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
7397 if (CHECKING_P)
7398 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
7399 TREE_VEC_LENGTH (packed_args));
7400 return argument_pack;
7401 }
7402
7403 /* Returns the number of pack expansions in the template argument vector
7404 ARGS. */
7405
7406 static int
7407 pack_expansion_args_count (tree args)
7408 {
7409 int i;
7410 int count = 0;
7411 if (args)
7412 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
7413 {
7414 tree elt = TREE_VEC_ELT (args, i);
7415 if (elt && PACK_EXPANSION_P (elt))
7416 ++count;
7417 }
7418 return count;
7419 }
7420
7421 /* Convert all template arguments to their appropriate types, and
7422 return a vector containing the innermost resulting template
7423 arguments. If any error occurs, return error_mark_node. Error and
7424 warning messages are issued under control of COMPLAIN.
7425
7426 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
7427 for arguments not specified in ARGS. Otherwise, if
7428 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
7429 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
7430 USE_DEFAULT_ARGS is false, then all arguments must be specified in
7431 ARGS. */
7432
7433 static tree
7434 coerce_template_parms (tree parms,
7435 tree args,
7436 tree in_decl,
7437 tsubst_flags_t complain,
7438 bool require_all_args,
7439 bool use_default_args)
7440 {
7441 int nparms, nargs, parm_idx, arg_idx, lost = 0;
7442 tree orig_inner_args;
7443 tree inner_args;
7444 tree new_args;
7445 tree new_inner_args;
7446 int saved_unevaluated_operand;
7447 int saved_inhibit_evaluation_warnings;
7448
7449 /* When used as a boolean value, indicates whether this is a
7450 variadic template parameter list. Since it's an int, we can also
7451 subtract it from nparms to get the number of non-variadic
7452 parameters. */
7453 int variadic_p = 0;
7454 int variadic_args_p = 0;
7455 int post_variadic_parms = 0;
7456
7457 /* Likewise for parameters with default arguments. */
7458 int default_p = 0;
7459
7460 if (args == error_mark_node)
7461 return error_mark_node;
7462
7463 nparms = TREE_VEC_LENGTH (parms);
7464
7465 /* Determine if there are any parameter packs or default arguments. */
7466 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
7467 {
7468 tree parm = TREE_VEC_ELT (parms, parm_idx);
7469 if (variadic_p)
7470 ++post_variadic_parms;
7471 if (template_parameter_pack_p (TREE_VALUE (parm)))
7472 ++variadic_p;
7473 if (TREE_PURPOSE (parm))
7474 ++default_p;
7475 }
7476
7477 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
7478 /* If there are no parameters that follow a parameter pack, we need to
7479 expand any argument packs so that we can deduce a parameter pack from
7480 some non-packed args followed by an argument pack, as in variadic85.C.
7481 If there are such parameters, we need to leave argument packs intact
7482 so the arguments are assigned properly. This can happen when dealing
7483 with a nested class inside a partial specialization of a class
7484 template, as in variadic92.C, or when deducing a template parameter pack
7485 from a sub-declarator, as in variadic114.C. */
7486 if (!post_variadic_parms)
7487 inner_args = expand_template_argument_pack (inner_args);
7488
7489 /* Count any pack expansion args. */
7490 variadic_args_p = pack_expansion_args_count (inner_args);
7491
7492 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7493 if ((nargs > nparms && !variadic_p)
7494 || (nargs < nparms - variadic_p
7495 && require_all_args
7496 && !variadic_args_p
7497 && (!use_default_args
7498 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
7499 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
7500 {
7501 if (complain & tf_error)
7502 {
7503 if (variadic_p || default_p)
7504 {
7505 nparms -= variadic_p + default_p;
7506 error ("wrong number of template arguments "
7507 "(%d, should be at least %d)", nargs, nparms);
7508 }
7509 else
7510 error ("wrong number of template arguments "
7511 "(%d, should be %d)", nargs, nparms);
7512
7513 if (in_decl)
7514 inform (DECL_SOURCE_LOCATION (in_decl),
7515 "provided for %qD", in_decl);
7516 }
7517
7518 return error_mark_node;
7519 }
7520 /* We can't pass a pack expansion to a non-pack parameter of an alias
7521 template (DR 1430). */
7522 else if (in_decl
7523 && (DECL_ALIAS_TEMPLATE_P (in_decl)
7524 || concept_template_p (in_decl))
7525 && variadic_args_p
7526 && nargs - variadic_args_p < nparms - variadic_p)
7527 {
7528 if (complain & tf_error)
7529 {
7530 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
7531 {
7532 tree arg = TREE_VEC_ELT (inner_args, i);
7533 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
7534
7535 if (PACK_EXPANSION_P (arg)
7536 && !template_parameter_pack_p (parm))
7537 {
7538 if (DECL_ALIAS_TEMPLATE_P (in_decl))
7539 error_at (location_of (arg),
7540 "pack expansion argument for non-pack parameter "
7541 "%qD of alias template %qD", parm, in_decl);
7542 else
7543 error_at (location_of (arg),
7544 "pack expansion argument for non-pack parameter "
7545 "%qD of concept %qD", parm, in_decl);
7546 inform (DECL_SOURCE_LOCATION (parm), "declared here");
7547 goto found;
7548 }
7549 }
7550 gcc_unreachable ();
7551 found:;
7552 }
7553 return error_mark_node;
7554 }
7555
7556 /* We need to evaluate the template arguments, even though this
7557 template-id may be nested within a "sizeof". */
7558 saved_unevaluated_operand = cp_unevaluated_operand;
7559 cp_unevaluated_operand = 0;
7560 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
7561 c_inhibit_evaluation_warnings = 0;
7562 new_inner_args = make_tree_vec (nparms);
7563 new_args = add_outermost_template_args (args, new_inner_args);
7564 int pack_adjust = 0;
7565 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
7566 {
7567 tree arg;
7568 tree parm;
7569
7570 /* Get the Ith template parameter. */
7571 parm = TREE_VEC_ELT (parms, parm_idx);
7572
7573 if (parm == error_mark_node)
7574 {
7575 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
7576 continue;
7577 }
7578
7579 /* Calculate the next argument. */
7580 if (arg_idx < nargs)
7581 arg = TREE_VEC_ELT (inner_args, arg_idx);
7582 else
7583 arg = NULL_TREE;
7584
7585 if (template_parameter_pack_p (TREE_VALUE (parm))
7586 && !(arg && ARGUMENT_PACK_P (arg)))
7587 {
7588 /* Some arguments will be placed in the
7589 template parameter pack PARM. */
7590 arg = coerce_template_parameter_pack (parms, parm_idx, args,
7591 inner_args, arg_idx,
7592 new_args, &lost,
7593 in_decl, complain);
7594
7595 if (arg == NULL_TREE)
7596 {
7597 /* We don't know how many args we have yet, just use the
7598 unconverted (and still packed) ones for now. */
7599 new_inner_args = orig_inner_args;
7600 arg_idx = nargs;
7601 break;
7602 }
7603
7604 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
7605
7606 /* Store this argument. */
7607 if (arg == error_mark_node)
7608 {
7609 lost++;
7610 /* We are done with all of the arguments. */
7611 arg_idx = nargs;
7612 }
7613 else
7614 {
7615 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
7616 arg_idx += pack_adjust;
7617 }
7618
7619 continue;
7620 }
7621 else if (arg)
7622 {
7623 if (PACK_EXPANSION_P (arg))
7624 {
7625 /* "If every valid specialization of a variadic template
7626 requires an empty template parameter pack, the template is
7627 ill-formed, no diagnostic required." So check that the
7628 pattern works with this parameter. */
7629 tree pattern = PACK_EXPANSION_PATTERN (arg);
7630 tree conv = convert_template_argument (TREE_VALUE (parm),
7631 pattern, new_args,
7632 complain, parm_idx,
7633 in_decl);
7634 if (conv == error_mark_node)
7635 {
7636 inform (input_location, "so any instantiation with a "
7637 "non-empty parameter pack would be ill-formed");
7638 ++lost;
7639 }
7640 else if (TYPE_P (conv) && !TYPE_P (pattern))
7641 /* Recover from missing typename. */
7642 TREE_VEC_ELT (inner_args, arg_idx)
7643 = make_pack_expansion (conv);
7644
7645 /* We don't know how many args we have yet, just
7646 use the unconverted ones for now. */
7647 new_inner_args = inner_args;
7648 arg_idx = nargs;
7649 break;
7650 }
7651 }
7652 else if (require_all_args)
7653 {
7654 /* There must be a default arg in this case. */
7655 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
7656 complain, in_decl);
7657 /* The position of the first default template argument,
7658 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
7659 Record that. */
7660 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7661 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7662 arg_idx - pack_adjust);
7663 }
7664 else
7665 break;
7666
7667 if (arg == error_mark_node)
7668 {
7669 if (complain & tf_error)
7670 error ("template argument %d is invalid", arg_idx + 1);
7671 }
7672 else if (!arg)
7673 /* This only occurs if there was an error in the template
7674 parameter list itself (which we would already have
7675 reported) that we are trying to recover from, e.g., a class
7676 template with a parameter list such as
7677 template<typename..., typename>. */
7678 ++lost;
7679 else
7680 arg = convert_template_argument (TREE_VALUE (parm),
7681 arg, new_args, complain,
7682 parm_idx, in_decl);
7683
7684 if (arg == error_mark_node)
7685 lost++;
7686 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
7687 }
7688 cp_unevaluated_operand = saved_unevaluated_operand;
7689 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
7690
7691 if (variadic_p && arg_idx < nargs)
7692 {
7693 if (complain & tf_error)
7694 {
7695 error ("wrong number of template arguments "
7696 "(%d, should be %d)", nargs, arg_idx);
7697 if (in_decl)
7698 error ("provided for %q+D", in_decl);
7699 }
7700 return error_mark_node;
7701 }
7702
7703 if (lost)
7704 return error_mark_node;
7705
7706 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7707 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7708 TREE_VEC_LENGTH (new_inner_args));
7709
7710 return new_inner_args;
7711 }
7712
7713 /* Convert all template arguments to their appropriate types, and
7714 return a vector containing the innermost resulting template
7715 arguments. If any error occurs, return error_mark_node. Error and
7716 warning messages are not issued.
7717
7718 Note that no function argument deduction is performed, and default
7719 arguments are used to fill in unspecified arguments. */
7720 tree
7721 coerce_template_parms (tree parms, tree args, tree in_decl)
7722 {
7723 return coerce_template_parms (parms, args, in_decl, tf_none, true, true);
7724 }
7725
7726 /* Convert all template arguments to their appropriate type, and
7727 instantiate default arguments as needed. This returns a vector
7728 containing the innermost resulting template arguments, or
7729 error_mark_node if unsuccessful. */
7730 tree
7731 coerce_template_parms (tree parms, tree args, tree in_decl,
7732 tsubst_flags_t complain)
7733 {
7734 return coerce_template_parms (parms, args, in_decl, complain, true, true);
7735 }
7736
7737 /* Like coerce_template_parms. If PARMS represents all template
7738 parameters levels, this function returns a vector of vectors
7739 representing all the resulting argument levels. Note that in this
7740 case, only the innermost arguments are coerced because the
7741 outermost ones are supposed to have been coerced already.
7742
7743 Otherwise, if PARMS represents only (the innermost) vector of
7744 parameters, this function returns a vector containing just the
7745 innermost resulting arguments. */
7746
7747 static tree
7748 coerce_innermost_template_parms (tree parms,
7749 tree args,
7750 tree in_decl,
7751 tsubst_flags_t complain,
7752 bool require_all_args,
7753 bool use_default_args)
7754 {
7755 int parms_depth = TMPL_PARMS_DEPTH (parms);
7756 int args_depth = TMPL_ARGS_DEPTH (args);
7757 tree coerced_args;
7758
7759 if (parms_depth > 1)
7760 {
7761 coerced_args = make_tree_vec (parms_depth);
7762 tree level;
7763 int cur_depth;
7764
7765 for (level = parms, cur_depth = parms_depth;
7766 parms_depth > 0 && level != NULL_TREE;
7767 level = TREE_CHAIN (level), --cur_depth)
7768 {
7769 tree l;
7770 if (cur_depth == args_depth)
7771 l = coerce_template_parms (TREE_VALUE (level),
7772 args, in_decl, complain,
7773 require_all_args,
7774 use_default_args);
7775 else
7776 l = TMPL_ARGS_LEVEL (args, cur_depth);
7777
7778 if (l == error_mark_node)
7779 return error_mark_node;
7780
7781 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
7782 }
7783 }
7784 else
7785 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
7786 args, in_decl, complain,
7787 require_all_args,
7788 use_default_args);
7789 return coerced_args;
7790 }
7791
7792 /* Returns 1 if template args OT and NT are equivalent. */
7793
7794 static int
7795 template_args_equal (tree ot, tree nt)
7796 {
7797 if (nt == ot)
7798 return 1;
7799 if (nt == NULL_TREE || ot == NULL_TREE)
7800 return false;
7801
7802 if (TREE_CODE (nt) == TREE_VEC)
7803 /* For member templates */
7804 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
7805 else if (PACK_EXPANSION_P (ot))
7806 return (PACK_EXPANSION_P (nt)
7807 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
7808 PACK_EXPANSION_PATTERN (nt))
7809 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
7810 PACK_EXPANSION_EXTRA_ARGS (nt)));
7811 else if (ARGUMENT_PACK_P (ot))
7812 {
7813 int i, len;
7814 tree opack, npack;
7815
7816 if (!ARGUMENT_PACK_P (nt))
7817 return 0;
7818
7819 opack = ARGUMENT_PACK_ARGS (ot);
7820 npack = ARGUMENT_PACK_ARGS (nt);
7821 len = TREE_VEC_LENGTH (opack);
7822 if (TREE_VEC_LENGTH (npack) != len)
7823 return 0;
7824 for (i = 0; i < len; ++i)
7825 if (!template_args_equal (TREE_VEC_ELT (opack, i),
7826 TREE_VEC_ELT (npack, i)))
7827 return 0;
7828 return 1;
7829 }
7830 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
7831 {
7832 /* We get here probably because we are in the middle of substituting
7833 into the pattern of a pack expansion. In that case the
7834 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
7835 interested in. So we want to use the initial pack argument for
7836 the comparison. */
7837 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
7838 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
7839 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
7840 return template_args_equal (ot, nt);
7841 }
7842 else if (TYPE_P (nt))
7843 {
7844 if (!TYPE_P (ot))
7845 return false;
7846 /* Don't treat an alias template specialization with dependent
7847 arguments as equivalent to its underlying type when used as a
7848 template argument; we need them to be distinct so that we
7849 substitute into the specialization arguments at instantiation
7850 time. And aliases can't be equivalent without being ==, so
7851 we don't need to look any deeper. */
7852 if (TYPE_ALIAS_P (nt) || TYPE_ALIAS_P (ot))
7853 return false;
7854 else
7855 return same_type_p (ot, nt);
7856 }
7857 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
7858 return 0;
7859 else
7860 {
7861 /* Try to treat a template non-type argument that has been converted
7862 to the parameter type as equivalent to one that hasn't yet. */
7863 for (enum tree_code code1 = TREE_CODE (ot);
7864 CONVERT_EXPR_CODE_P (code1)
7865 || code1 == NON_LVALUE_EXPR;
7866 code1 = TREE_CODE (ot))
7867 ot = TREE_OPERAND (ot, 0);
7868 for (enum tree_code code2 = TREE_CODE (nt);
7869 CONVERT_EXPR_CODE_P (code2)
7870 || code2 == NON_LVALUE_EXPR;
7871 code2 = TREE_CODE (nt))
7872 nt = TREE_OPERAND (nt, 0);
7873
7874 return cp_tree_equal (ot, nt);
7875 }
7876 }
7877
7878 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
7879 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
7880 NEWARG_PTR with the offending arguments if they are non-NULL. */
7881
7882 static int
7883 comp_template_args_with_info (tree oldargs, tree newargs,
7884 tree *oldarg_ptr, tree *newarg_ptr)
7885 {
7886 int i;
7887
7888 if (oldargs == newargs)
7889 return 1;
7890
7891 if (!oldargs || !newargs)
7892 return 0;
7893
7894 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
7895 return 0;
7896
7897 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
7898 {
7899 tree nt = TREE_VEC_ELT (newargs, i);
7900 tree ot = TREE_VEC_ELT (oldargs, i);
7901
7902 if (! template_args_equal (ot, nt))
7903 {
7904 if (oldarg_ptr != NULL)
7905 *oldarg_ptr = ot;
7906 if (newarg_ptr != NULL)
7907 *newarg_ptr = nt;
7908 return 0;
7909 }
7910 }
7911 return 1;
7912 }
7913
7914 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
7915 of template arguments. Returns 0 otherwise. */
7916
7917 int
7918 comp_template_args (tree oldargs, tree newargs)
7919 {
7920 return comp_template_args_with_info (oldargs, newargs, NULL, NULL);
7921 }
7922
7923 static void
7924 add_pending_template (tree d)
7925 {
7926 tree ti = (TYPE_P (d)
7927 ? CLASSTYPE_TEMPLATE_INFO (d)
7928 : DECL_TEMPLATE_INFO (d));
7929 struct pending_template *pt;
7930 int level;
7931
7932 if (TI_PENDING_TEMPLATE_FLAG (ti))
7933 return;
7934
7935 /* We are called both from instantiate_decl, where we've already had a
7936 tinst_level pushed, and instantiate_template, where we haven't.
7937 Compensate. */
7938 level = !current_tinst_level || current_tinst_level->decl != d;
7939
7940 if (level)
7941 push_tinst_level (d);
7942
7943 pt = ggc_alloc<pending_template> ();
7944 pt->next = NULL;
7945 pt->tinst = current_tinst_level;
7946 if (last_pending_template)
7947 last_pending_template->next = pt;
7948 else
7949 pending_templates = pt;
7950
7951 last_pending_template = pt;
7952
7953 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
7954
7955 if (level)
7956 pop_tinst_level ();
7957 }
7958
7959
7960 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
7961 ARGLIST. Valid choices for FNS are given in the cp-tree.def
7962 documentation for TEMPLATE_ID_EXPR. */
7963
7964 tree
7965 lookup_template_function (tree fns, tree arglist)
7966 {
7967 tree type;
7968
7969 if (fns == error_mark_node || arglist == error_mark_node)
7970 return error_mark_node;
7971
7972 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
7973
7974 if (!is_overloaded_fn (fns) && !identifier_p (fns))
7975 {
7976 error ("%q#D is not a function template", fns);
7977 return error_mark_node;
7978 }
7979
7980 if (BASELINK_P (fns))
7981 {
7982 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
7983 unknown_type_node,
7984 BASELINK_FUNCTIONS (fns),
7985 arglist);
7986 return fns;
7987 }
7988
7989 type = TREE_TYPE (fns);
7990 if (TREE_CODE (fns) == OVERLOAD || !type)
7991 type = unknown_type_node;
7992
7993 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
7994 }
7995
7996 /* Within the scope of a template class S<T>, the name S gets bound
7997 (in build_self_reference) to a TYPE_DECL for the class, not a
7998 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
7999 or one of its enclosing classes, and that type is a template,
8000 return the associated TEMPLATE_DECL. Otherwise, the original
8001 DECL is returned.
8002
8003 Also handle the case when DECL is a TREE_LIST of ambiguous
8004 injected-class-names from different bases. */
8005
8006 tree
8007 maybe_get_template_decl_from_type_decl (tree decl)
8008 {
8009 if (decl == NULL_TREE)
8010 return decl;
8011
8012 /* DR 176: A lookup that finds an injected-class-name (10.2
8013 [class.member.lookup]) can result in an ambiguity in certain cases
8014 (for example, if it is found in more than one base class). If all of
8015 the injected-class-names that are found refer to specializations of
8016 the same class template, and if the name is followed by a
8017 template-argument-list, the reference refers to the class template
8018 itself and not a specialization thereof, and is not ambiguous. */
8019 if (TREE_CODE (decl) == TREE_LIST)
8020 {
8021 tree t, tmpl = NULL_TREE;
8022 for (t = decl; t; t = TREE_CHAIN (t))
8023 {
8024 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
8025 if (!tmpl)
8026 tmpl = elt;
8027 else if (tmpl != elt)
8028 break;
8029 }
8030 if (tmpl && t == NULL_TREE)
8031 return tmpl;
8032 else
8033 return decl;
8034 }
8035
8036 return (decl != NULL_TREE
8037 && DECL_SELF_REFERENCE_P (decl)
8038 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
8039 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
8040 }
8041
8042 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
8043 parameters, find the desired type.
8044
8045 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
8046
8047 IN_DECL, if non-NULL, is the template declaration we are trying to
8048 instantiate.
8049
8050 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
8051 the class we are looking up.
8052
8053 Issue error and warning messages under control of COMPLAIN.
8054
8055 If the template class is really a local class in a template
8056 function, then the FUNCTION_CONTEXT is the function in which it is
8057 being instantiated.
8058
8059 ??? Note that this function is currently called *twice* for each
8060 template-id: the first time from the parser, while creating the
8061 incomplete type (finish_template_type), and the second type during the
8062 real instantiation (instantiate_template_class). This is surely something
8063 that we want to avoid. It also causes some problems with argument
8064 coercion (see convert_nontype_argument for more information on this). */
8065
8066 static tree
8067 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
8068 int entering_scope, tsubst_flags_t complain)
8069 {
8070 tree templ = NULL_TREE, parmlist;
8071 tree t;
8072 spec_entry **slot;
8073 spec_entry *entry;
8074 spec_entry elt;
8075 hashval_t hash;
8076
8077 if (identifier_p (d1))
8078 {
8079 tree value = innermost_non_namespace_value (d1);
8080 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
8081 templ = value;
8082 else
8083 {
8084 if (context)
8085 push_decl_namespace (context);
8086 templ = lookup_name (d1);
8087 templ = maybe_get_template_decl_from_type_decl (templ);
8088 if (context)
8089 pop_decl_namespace ();
8090 }
8091 if (templ)
8092 context = DECL_CONTEXT (templ);
8093 }
8094 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
8095 {
8096 tree type = TREE_TYPE (d1);
8097
8098 /* If we are declaring a constructor, say A<T>::A<T>, we will get
8099 an implicit typename for the second A. Deal with it. */
8100 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
8101 type = TREE_TYPE (type);
8102
8103 if (CLASSTYPE_TEMPLATE_INFO (type))
8104 {
8105 templ = CLASSTYPE_TI_TEMPLATE (type);
8106 d1 = DECL_NAME (templ);
8107 }
8108 }
8109 else if (TREE_CODE (d1) == ENUMERAL_TYPE
8110 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
8111 {
8112 templ = TYPE_TI_TEMPLATE (d1);
8113 d1 = DECL_NAME (templ);
8114 }
8115 else if (DECL_TYPE_TEMPLATE_P (d1))
8116 {
8117 templ = d1;
8118 d1 = DECL_NAME (templ);
8119 context = DECL_CONTEXT (templ);
8120 }
8121 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
8122 {
8123 templ = d1;
8124 d1 = DECL_NAME (templ);
8125 }
8126
8127 /* Issue an error message if we didn't find a template. */
8128 if (! templ)
8129 {
8130 if (complain & tf_error)
8131 error ("%qT is not a template", d1);
8132 return error_mark_node;
8133 }
8134
8135 if (TREE_CODE (templ) != TEMPLATE_DECL
8136 /* Make sure it's a user visible template, if it was named by
8137 the user. */
8138 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
8139 && !PRIMARY_TEMPLATE_P (templ)))
8140 {
8141 if (complain & tf_error)
8142 {
8143 error ("non-template type %qT used as a template", d1);
8144 if (in_decl)
8145 error ("for template declaration %q+D", in_decl);
8146 }
8147 return error_mark_node;
8148 }
8149
8150 complain &= ~tf_user;
8151
8152 /* An alias that just changes the name of a template is equivalent to the
8153 other template, so if any of the arguments are pack expansions, strip
8154 the alias to avoid problems with a pack expansion passed to a non-pack
8155 alias template parameter (DR 1430). */
8156 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
8157 templ = get_underlying_template (templ);
8158
8159 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
8160 {
8161 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
8162 template arguments */
8163
8164 tree parm;
8165 tree arglist2;
8166 tree outer;
8167
8168 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
8169
8170 /* Consider an example where a template template parameter declared as
8171
8172 template <class T, class U = std::allocator<T> > class TT
8173
8174 The template parameter level of T and U are one level larger than
8175 of TT. To proper process the default argument of U, say when an
8176 instantiation `TT<int>' is seen, we need to build the full
8177 arguments containing {int} as the innermost level. Outer levels,
8178 available when not appearing as default template argument, can be
8179 obtained from the arguments of the enclosing template.
8180
8181 Suppose that TT is later substituted with std::vector. The above
8182 instantiation is `TT<int, std::allocator<T> >' with TT at
8183 level 1, and T at level 2, while the template arguments at level 1
8184 becomes {std::vector} and the inner level 2 is {int}. */
8185
8186 outer = DECL_CONTEXT (templ);
8187 if (outer)
8188 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
8189 else if (current_template_parms)
8190 {
8191 /* This is an argument of the current template, so we haven't set
8192 DECL_CONTEXT yet. */
8193 tree relevant_template_parms;
8194
8195 /* Parameter levels that are greater than the level of the given
8196 template template parm are irrelevant. */
8197 relevant_template_parms = current_template_parms;
8198 while (TMPL_PARMS_DEPTH (relevant_template_parms)
8199 != TEMPLATE_TYPE_LEVEL (TREE_TYPE (templ)))
8200 relevant_template_parms = TREE_CHAIN (relevant_template_parms);
8201
8202 outer = template_parms_to_args (relevant_template_parms);
8203 }
8204
8205 if (outer)
8206 arglist = add_to_template_args (outer, arglist);
8207
8208 arglist2 = coerce_template_parms (parmlist, arglist, templ,
8209 complain,
8210 /*require_all_args=*/true,
8211 /*use_default_args=*/true);
8212 if (arglist2 == error_mark_node
8213 || (!uses_template_parms (arglist2)
8214 && check_instantiated_args (templ, arglist2, complain)))
8215 return error_mark_node;
8216
8217 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
8218 return parm;
8219 }
8220 else
8221 {
8222 tree template_type = TREE_TYPE (templ);
8223 tree gen_tmpl;
8224 tree type_decl;
8225 tree found = NULL_TREE;
8226 int arg_depth;
8227 int parm_depth;
8228 int is_dependent_type;
8229 int use_partial_inst_tmpl = false;
8230
8231 if (template_type == error_mark_node)
8232 /* An error occurred while building the template TEMPL, and a
8233 diagnostic has most certainly been emitted for that
8234 already. Let's propagate that error. */
8235 return error_mark_node;
8236
8237 gen_tmpl = most_general_template (templ);
8238 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
8239 parm_depth = TMPL_PARMS_DEPTH (parmlist);
8240 arg_depth = TMPL_ARGS_DEPTH (arglist);
8241
8242 if (arg_depth == 1 && parm_depth > 1)
8243 {
8244 /* We've been given an incomplete set of template arguments.
8245 For example, given:
8246
8247 template <class T> struct S1 {
8248 template <class U> struct S2 {};
8249 template <class U> struct S2<U*> {};
8250 };
8251
8252 we will be called with an ARGLIST of `U*', but the
8253 TEMPLATE will be `template <class T> template
8254 <class U> struct S1<T>::S2'. We must fill in the missing
8255 arguments. */
8256 arglist
8257 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
8258 arglist);
8259 arg_depth = TMPL_ARGS_DEPTH (arglist);
8260 }
8261
8262 /* Now we should have enough arguments. */
8263 gcc_assert (parm_depth == arg_depth);
8264
8265 /* From here on, we're only interested in the most general
8266 template. */
8267
8268 /* Calculate the BOUND_ARGS. These will be the args that are
8269 actually tsubst'd into the definition to create the
8270 instantiation. */
8271 arglist = coerce_innermost_template_parms (parmlist, arglist, gen_tmpl,
8272 complain,
8273 /*require_all_args=*/true,
8274 /*use_default_args=*/true);
8275
8276 if (arglist == error_mark_node)
8277 /* We were unable to bind the arguments. */
8278 return error_mark_node;
8279
8280 /* In the scope of a template class, explicit references to the
8281 template class refer to the type of the template, not any
8282 instantiation of it. For example, in:
8283
8284 template <class T> class C { void f(C<T>); }
8285
8286 the `C<T>' is just the same as `C'. Outside of the
8287 class, however, such a reference is an instantiation. */
8288 if ((entering_scope
8289 || !PRIMARY_TEMPLATE_P (gen_tmpl)
8290 || currently_open_class (template_type))
8291 /* comp_template_args is expensive, check it last. */
8292 && comp_template_args (TYPE_TI_ARGS (template_type),
8293 arglist))
8294 return template_type;
8295
8296 /* If we already have this specialization, return it. */
8297 elt.tmpl = gen_tmpl;
8298 elt.args = arglist;
8299 elt.spec = NULL_TREE;
8300 hash = spec_hasher::hash (&elt);
8301 entry = type_specializations->find_with_hash (&elt, hash);
8302
8303 if (entry)
8304 return entry->spec;
8305
8306 /* If the the template's constraints are not satisfied,
8307 then we cannot form a valid type.
8308
8309 Note that the check is deferred until after the hash
8310 lookup. This prevents redundant checks on previously
8311 instantiated specializations. */
8312 if (flag_concepts && !constraints_satisfied_p (gen_tmpl, arglist))
8313 {
8314 if (complain & tf_error)
8315 {
8316 error ("template constraint failure");
8317 diagnose_constraints (input_location, gen_tmpl, arglist);
8318 }
8319 return error_mark_node;
8320 }
8321
8322 is_dependent_type = uses_template_parms (arglist);
8323
8324 /* If the deduced arguments are invalid, then the binding
8325 failed. */
8326 if (!is_dependent_type
8327 && check_instantiated_args (gen_tmpl,
8328 INNERMOST_TEMPLATE_ARGS (arglist),
8329 complain))
8330 return error_mark_node;
8331
8332 if (!is_dependent_type
8333 && !PRIMARY_TEMPLATE_P (gen_tmpl)
8334 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
8335 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
8336 {
8337 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
8338 DECL_NAME (gen_tmpl),
8339 /*tag_scope=*/ts_global);
8340 return found;
8341 }
8342
8343 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
8344 complain, in_decl);
8345 if (context == error_mark_node)
8346 return error_mark_node;
8347
8348 if (!context)
8349 context = global_namespace;
8350
8351 /* Create the type. */
8352 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8353 {
8354 /* The user referred to a specialization of an alias
8355 template represented by GEN_TMPL.
8356
8357 [temp.alias]/2 says:
8358
8359 When a template-id refers to the specialization of an
8360 alias template, it is equivalent to the associated
8361 type obtained by substitution of its
8362 template-arguments for the template-parameters in the
8363 type-id of the alias template. */
8364
8365 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
8366 /* Note that the call above (by indirectly calling
8367 register_specialization in tsubst_decl) registers the
8368 TYPE_DECL representing the specialization of the alias
8369 template. So next time someone substitutes ARGLIST for
8370 the template parms into the alias template (GEN_TMPL),
8371 she'll get that TYPE_DECL back. */
8372
8373 if (t == error_mark_node)
8374 return t;
8375 }
8376 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
8377 {
8378 if (!is_dependent_type)
8379 {
8380 set_current_access_from_decl (TYPE_NAME (template_type));
8381 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
8382 tsubst (ENUM_UNDERLYING_TYPE (template_type),
8383 arglist, complain, in_decl),
8384 SCOPED_ENUM_P (template_type), NULL);
8385
8386 if (t == error_mark_node)
8387 return t;
8388 }
8389 else
8390 {
8391 /* We don't want to call start_enum for this type, since
8392 the values for the enumeration constants may involve
8393 template parameters. And, no one should be interested
8394 in the enumeration constants for such a type. */
8395 t = cxx_make_type (ENUMERAL_TYPE);
8396 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
8397 }
8398 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
8399 ENUM_FIXED_UNDERLYING_TYPE_P (t)
8400 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
8401 }
8402 else if (CLASS_TYPE_P (template_type))
8403 {
8404 t = make_class_type (TREE_CODE (template_type));
8405 CLASSTYPE_DECLARED_CLASS (t)
8406 = CLASSTYPE_DECLARED_CLASS (template_type);
8407 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
8408 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
8409
8410 /* A local class. Make sure the decl gets registered properly. */
8411 if (context == current_function_decl)
8412 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
8413
8414 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
8415 /* This instantiation is another name for the primary
8416 template type. Set the TYPE_CANONICAL field
8417 appropriately. */
8418 TYPE_CANONICAL (t) = template_type;
8419 else if (any_template_arguments_need_structural_equality_p (arglist))
8420 /* Some of the template arguments require structural
8421 equality testing, so this template class requires
8422 structural equality testing. */
8423 SET_TYPE_STRUCTURAL_EQUALITY (t);
8424 }
8425 else
8426 gcc_unreachable ();
8427
8428 /* If we called start_enum or pushtag above, this information
8429 will already be set up. */
8430 if (!TYPE_NAME (t))
8431 {
8432 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
8433
8434 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
8435 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
8436 DECL_SOURCE_LOCATION (type_decl)
8437 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
8438 }
8439 else
8440 type_decl = TYPE_NAME (t);
8441
8442 if (CLASS_TYPE_P (template_type))
8443 {
8444 TREE_PRIVATE (type_decl)
8445 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
8446 TREE_PROTECTED (type_decl)
8447 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
8448 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
8449 {
8450 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
8451 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
8452 }
8453 }
8454
8455 if (OVERLOAD_TYPE_P (t)
8456 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8457 {
8458 static const char *tags[] = {"abi_tag", "may_alias"};
8459
8460 for (unsigned ix = 0; ix != 2; ix++)
8461 {
8462 tree attributes
8463 = lookup_attribute (tags[ix], TYPE_ATTRIBUTES (template_type));
8464
8465 if (!attributes)
8466 ;
8467 else if (!TREE_CHAIN (attributes) && !TYPE_ATTRIBUTES (t))
8468 TYPE_ATTRIBUTES (t) = attributes;
8469 else
8470 TYPE_ATTRIBUTES (t)
8471 = tree_cons (TREE_PURPOSE (attributes),
8472 TREE_VALUE (attributes),
8473 TYPE_ATTRIBUTES (t));
8474 }
8475 }
8476
8477 /* Let's consider the explicit specialization of a member
8478 of a class template specialization that is implicitly instantiated,
8479 e.g.:
8480 template<class T>
8481 struct S
8482 {
8483 template<class U> struct M {}; //#0
8484 };
8485
8486 template<>
8487 template<>
8488 struct S<int>::M<char> //#1
8489 {
8490 int i;
8491 };
8492 [temp.expl.spec]/4 says this is valid.
8493
8494 In this case, when we write:
8495 S<int>::M<char> m;
8496
8497 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
8498 the one of #0.
8499
8500 When we encounter #1, we want to store the partial instantiation
8501 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
8502
8503 For all cases other than this "explicit specialization of member of a
8504 class template", we just want to store the most general template into
8505 the CLASSTYPE_TI_TEMPLATE of M.
8506
8507 This case of "explicit specialization of member of a class template"
8508 only happens when:
8509 1/ the enclosing class is an instantiation of, and therefore not
8510 the same as, the context of the most general template, and
8511 2/ we aren't looking at the partial instantiation itself, i.e.
8512 the innermost arguments are not the same as the innermost parms of
8513 the most general template.
8514
8515 So it's only when 1/ and 2/ happens that we want to use the partial
8516 instantiation of the member template in lieu of its most general
8517 template. */
8518
8519 if (PRIMARY_TEMPLATE_P (gen_tmpl)
8520 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
8521 /* the enclosing class must be an instantiation... */
8522 && CLASS_TYPE_P (context)
8523 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
8524 {
8525 tree partial_inst_args;
8526 TREE_VEC_LENGTH (arglist)--;
8527 ++processing_template_decl;
8528 partial_inst_args =
8529 tsubst (INNERMOST_TEMPLATE_ARGS
8530 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
8531 arglist, complain, NULL_TREE);
8532 --processing_template_decl;
8533 TREE_VEC_LENGTH (arglist)++;
8534 use_partial_inst_tmpl =
8535 /*...and we must not be looking at the partial instantiation
8536 itself. */
8537 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
8538 partial_inst_args);
8539 }
8540
8541 if (!use_partial_inst_tmpl)
8542 /* This case is easy; there are no member templates involved. */
8543 found = gen_tmpl;
8544 else
8545 {
8546 /* This is a full instantiation of a member template. Find
8547 the partial instantiation of which this is an instance. */
8548
8549 /* Temporarily reduce by one the number of levels in the ARGLIST
8550 so as to avoid comparing the last set of arguments. */
8551 TREE_VEC_LENGTH (arglist)--;
8552 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
8553 TREE_VEC_LENGTH (arglist)++;
8554 /* FOUND is either a proper class type, or an alias
8555 template specialization. In the later case, it's a
8556 TYPE_DECL, resulting from the substituting of arguments
8557 for parameters in the TYPE_DECL of the alias template
8558 done earlier. So be careful while getting the template
8559 of FOUND. */
8560 found = TREE_CODE (found) == TYPE_DECL
8561 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
8562 : CLASSTYPE_TI_TEMPLATE (found);
8563 }
8564
8565 // Build template info for the new specialization.
8566 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
8567
8568 elt.spec = t;
8569 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
8570 entry = ggc_alloc<spec_entry> ();
8571 *entry = elt;
8572 *slot = entry;
8573
8574 /* Note this use of the partial instantiation so we can check it
8575 later in maybe_process_partial_specialization. */
8576 DECL_TEMPLATE_INSTANTIATIONS (found)
8577 = tree_cons (arglist, t,
8578 DECL_TEMPLATE_INSTANTIATIONS (found));
8579
8580 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
8581 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8582 /* Now that the type has been registered on the instantiations
8583 list, we set up the enumerators. Because the enumeration
8584 constants may involve the enumeration type itself, we make
8585 sure to register the type first, and then create the
8586 constants. That way, doing tsubst_expr for the enumeration
8587 constants won't result in recursive calls here; we'll find
8588 the instantiation and exit above. */
8589 tsubst_enum (template_type, t, arglist);
8590
8591 if (CLASS_TYPE_P (template_type) && is_dependent_type)
8592 /* If the type makes use of template parameters, the
8593 code that generates debugging information will crash. */
8594 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
8595
8596 /* Possibly limit visibility based on template args. */
8597 TREE_PUBLIC (type_decl) = 1;
8598 determine_visibility (type_decl);
8599
8600 inherit_targ_abi_tags (t);
8601
8602 return t;
8603 }
8604 }
8605
8606 /* Wrapper for lookup_template_class_1. */
8607
8608 tree
8609 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
8610 int entering_scope, tsubst_flags_t complain)
8611 {
8612 tree ret;
8613 timevar_push (TV_TEMPLATE_INST);
8614 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
8615 entering_scope, complain);
8616 timevar_pop (TV_TEMPLATE_INST);
8617 return ret;
8618 }
8619
8620 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST. */
8621
8622 tree
8623 lookup_template_variable (tree templ, tree arglist)
8624 {
8625 /* The type of the expression is NULL_TREE since the template-id could refer
8626 to an explicit or partial specialization. */
8627 tree type = NULL_TREE;
8628 if (flag_concepts && variable_concept_p (templ))
8629 /* Except that concepts are always bool. */
8630 type = boolean_type_node;
8631 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
8632 }
8633
8634 /* Instantiate a variable declaration from a TEMPLATE_ID_EXPR for use. */
8635
8636 tree
8637 finish_template_variable (tree var, tsubst_flags_t complain)
8638 {
8639 tree templ = TREE_OPERAND (var, 0);
8640 tree arglist = TREE_OPERAND (var, 1);
8641
8642 /* We never want to return a VAR_DECL for a variable concept, since they
8643 aren't instantiated. In a template, leave the TEMPLATE_ID_EXPR alone. */
8644 bool concept_p = flag_concepts && variable_concept_p (templ);
8645 if (concept_p && processing_template_decl)
8646 return var;
8647
8648 tree tmpl_args = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (templ));
8649 arglist = add_outermost_template_args (tmpl_args, arglist);
8650
8651 tree parms = DECL_TEMPLATE_PARMS (templ);
8652 arglist = coerce_innermost_template_parms (parms, arglist, templ, complain,
8653 /*req_all*/true,
8654 /*use_default*/true);
8655
8656 if (flag_concepts && !constraints_satisfied_p (templ, arglist))
8657 {
8658 if (complain & tf_error)
8659 {
8660 error ("constraints for %qD not satisfied", templ);
8661 diagnose_constraints (location_of (var), templ, arglist);
8662 }
8663 return error_mark_node;
8664 }
8665
8666 /* If a template-id refers to a specialization of a variable
8667 concept, then the expression is true if and only if the
8668 concept's constraints are satisfied by the given template
8669 arguments.
8670
8671 NOTE: This is an extension of Concepts Lite TS that
8672 allows constraints to be used in expressions. */
8673 if (concept_p)
8674 {
8675 tree decl = DECL_TEMPLATE_RESULT (templ);
8676 return evaluate_variable_concept (decl, arglist);
8677 }
8678
8679 return instantiate_template (templ, arglist, complain);
8680 }
8681 \f
8682 struct pair_fn_data
8683 {
8684 tree_fn_t fn;
8685 void *data;
8686 /* True when we should also visit template parameters that occur in
8687 non-deduced contexts. */
8688 bool include_nondeduced_p;
8689 hash_set<tree> *visited;
8690 };
8691
8692 /* Called from for_each_template_parm via walk_tree. */
8693
8694 static tree
8695 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
8696 {
8697 tree t = *tp;
8698 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
8699 tree_fn_t fn = pfd->fn;
8700 void *data = pfd->data;
8701 tree result = NULL_TREE;
8702
8703 #define WALK_SUBTREE(NODE) \
8704 do \
8705 { \
8706 result = for_each_template_parm (NODE, fn, data, pfd->visited, \
8707 pfd->include_nondeduced_p); \
8708 if (result) goto out; \
8709 } \
8710 while (0)
8711
8712 if (TYPE_P (t)
8713 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE))
8714 WALK_SUBTREE (TYPE_CONTEXT (t));
8715
8716 switch (TREE_CODE (t))
8717 {
8718 case RECORD_TYPE:
8719 if (TYPE_PTRMEMFUNC_P (t))
8720 break;
8721 /* Fall through. */
8722
8723 case UNION_TYPE:
8724 case ENUMERAL_TYPE:
8725 if (!TYPE_TEMPLATE_INFO (t))
8726 *walk_subtrees = 0;
8727 else
8728 WALK_SUBTREE (TYPE_TI_ARGS (t));
8729 break;
8730
8731 case INTEGER_TYPE:
8732 WALK_SUBTREE (TYPE_MIN_VALUE (t));
8733 WALK_SUBTREE (TYPE_MAX_VALUE (t));
8734 break;
8735
8736 case METHOD_TYPE:
8737 /* Since we're not going to walk subtrees, we have to do this
8738 explicitly here. */
8739 WALK_SUBTREE (TYPE_METHOD_BASETYPE (t));
8740 /* Fall through. */
8741
8742 case FUNCTION_TYPE:
8743 /* Check the return type. */
8744 WALK_SUBTREE (TREE_TYPE (t));
8745
8746 /* Check the parameter types. Since default arguments are not
8747 instantiated until they are needed, the TYPE_ARG_TYPES may
8748 contain expressions that involve template parameters. But,
8749 no-one should be looking at them yet. And, once they're
8750 instantiated, they don't contain template parameters, so
8751 there's no point in looking at them then, either. */
8752 {
8753 tree parm;
8754
8755 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
8756 WALK_SUBTREE (TREE_VALUE (parm));
8757
8758 /* Since we've already handled the TYPE_ARG_TYPES, we don't
8759 want walk_tree walking into them itself. */
8760 *walk_subtrees = 0;
8761 }
8762 break;
8763
8764 case TYPEOF_TYPE:
8765 case UNDERLYING_TYPE:
8766 if (pfd->include_nondeduced_p
8767 && for_each_template_parm (TYPE_VALUES_RAW (t), fn, data,
8768 pfd->visited,
8769 pfd->include_nondeduced_p))
8770 return error_mark_node;
8771 break;
8772
8773 case FUNCTION_DECL:
8774 case VAR_DECL:
8775 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
8776 WALK_SUBTREE (DECL_TI_ARGS (t));
8777 /* Fall through. */
8778
8779 case PARM_DECL:
8780 case CONST_DECL:
8781 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t))
8782 WALK_SUBTREE (DECL_INITIAL (t));
8783 if (DECL_CONTEXT (t)
8784 && pfd->include_nondeduced_p)
8785 WALK_SUBTREE (DECL_CONTEXT (t));
8786 break;
8787
8788 case BOUND_TEMPLATE_TEMPLATE_PARM:
8789 /* Record template parameters such as `T' inside `TT<T>'. */
8790 WALK_SUBTREE (TYPE_TI_ARGS (t));
8791 /* Fall through. */
8792
8793 case TEMPLATE_TEMPLATE_PARM:
8794 case TEMPLATE_TYPE_PARM:
8795 case TEMPLATE_PARM_INDEX:
8796 if (fn && (*fn)(t, data))
8797 return t;
8798 else if (!fn)
8799 return t;
8800 break;
8801
8802 case TEMPLATE_DECL:
8803 /* A template template parameter is encountered. */
8804 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
8805 WALK_SUBTREE (TREE_TYPE (t));
8806
8807 /* Already substituted template template parameter */
8808 *walk_subtrees = 0;
8809 break;
8810
8811 case TYPENAME_TYPE:
8812 if (!fn)
8813 WALK_SUBTREE (TYPENAME_TYPE_FULLNAME (t));
8814 break;
8815
8816 case CONSTRUCTOR:
8817 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
8818 && pfd->include_nondeduced_p)
8819 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (t)));
8820 break;
8821
8822 case INDIRECT_REF:
8823 case COMPONENT_REF:
8824 /* If there's no type, then this thing must be some expression
8825 involving template parameters. */
8826 if (!fn && !TREE_TYPE (t))
8827 return error_mark_node;
8828 break;
8829
8830 case MODOP_EXPR:
8831 case CAST_EXPR:
8832 case IMPLICIT_CONV_EXPR:
8833 case REINTERPRET_CAST_EXPR:
8834 case CONST_CAST_EXPR:
8835 case STATIC_CAST_EXPR:
8836 case DYNAMIC_CAST_EXPR:
8837 case ARROW_EXPR:
8838 case DOTSTAR_EXPR:
8839 case TYPEID_EXPR:
8840 case PSEUDO_DTOR_EXPR:
8841 if (!fn)
8842 return error_mark_node;
8843 break;
8844
8845 default:
8846 break;
8847 }
8848
8849 #undef WALK_SUBTREE
8850
8851 /* We didn't find any template parameters we liked. */
8852 out:
8853 return result;
8854 }
8855
8856 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
8857 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
8858 call FN with the parameter and the DATA.
8859 If FN returns nonzero, the iteration is terminated, and
8860 for_each_template_parm returns 1. Otherwise, the iteration
8861 continues. If FN never returns a nonzero value, the value
8862 returned by for_each_template_parm is 0. If FN is NULL, it is
8863 considered to be the function which always returns 1.
8864
8865 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
8866 parameters that occur in non-deduced contexts. When false, only
8867 visits those template parameters that can be deduced. */
8868
8869 static tree
8870 for_each_template_parm (tree t, tree_fn_t fn, void* data,
8871 hash_set<tree> *visited,
8872 bool include_nondeduced_p)
8873 {
8874 struct pair_fn_data pfd;
8875 tree result;
8876
8877 /* Set up. */
8878 pfd.fn = fn;
8879 pfd.data = data;
8880 pfd.include_nondeduced_p = include_nondeduced_p;
8881
8882 /* Walk the tree. (Conceptually, we would like to walk without
8883 duplicates, but for_each_template_parm_r recursively calls
8884 for_each_template_parm, so we would need to reorganize a fair
8885 bit to use walk_tree_without_duplicates, so we keep our own
8886 visited list.) */
8887 if (visited)
8888 pfd.visited = visited;
8889 else
8890 pfd.visited = new hash_set<tree>;
8891 result = cp_walk_tree (&t,
8892 for_each_template_parm_r,
8893 &pfd,
8894 pfd.visited);
8895
8896 /* Clean up. */
8897 if (!visited)
8898 {
8899 delete pfd.visited;
8900 pfd.visited = 0;
8901 }
8902
8903 return result;
8904 }
8905
8906 /* Returns true if T depends on any template parameter. */
8907
8908 int
8909 uses_template_parms (tree t)
8910 {
8911 if (t == NULL_TREE)
8912 return false;
8913
8914 bool dependent_p;
8915 int saved_processing_template_decl;
8916
8917 saved_processing_template_decl = processing_template_decl;
8918 if (!saved_processing_template_decl)
8919 processing_template_decl = 1;
8920 if (TYPE_P (t))
8921 dependent_p = dependent_type_p (t);
8922 else if (TREE_CODE (t) == TREE_VEC)
8923 dependent_p = any_dependent_template_arguments_p (t);
8924 else if (TREE_CODE (t) == TREE_LIST)
8925 dependent_p = (uses_template_parms (TREE_VALUE (t))
8926 || uses_template_parms (TREE_CHAIN (t)));
8927 else if (TREE_CODE (t) == TYPE_DECL)
8928 dependent_p = dependent_type_p (TREE_TYPE (t));
8929 else if (DECL_P (t)
8930 || EXPR_P (t)
8931 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
8932 || TREE_CODE (t) == OVERLOAD
8933 || BASELINK_P (t)
8934 || identifier_p (t)
8935 || TREE_CODE (t) == TRAIT_EXPR
8936 || TREE_CODE (t) == CONSTRUCTOR
8937 || CONSTANT_CLASS_P (t))
8938 dependent_p = (type_dependent_expression_p (t)
8939 || value_dependent_expression_p (t));
8940 else
8941 {
8942 gcc_assert (t == error_mark_node);
8943 dependent_p = false;
8944 }
8945
8946 processing_template_decl = saved_processing_template_decl;
8947
8948 return dependent_p;
8949 }
8950
8951 /* Returns true iff current_function_decl is an incompletely instantiated
8952 template. Useful instead of processing_template_decl because the latter
8953 is set to 0 during instantiate_non_dependent_expr. */
8954
8955 bool
8956 in_template_function (void)
8957 {
8958 tree fn = current_function_decl;
8959 bool ret;
8960 ++processing_template_decl;
8961 ret = (fn && DECL_LANG_SPECIFIC (fn)
8962 && DECL_TEMPLATE_INFO (fn)
8963 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
8964 --processing_template_decl;
8965 return ret;
8966 }
8967
8968 /* Returns true if T depends on any template parameter with level LEVEL. */
8969
8970 bool
8971 uses_template_parms_level (tree t, int level)
8972 {
8973 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
8974 /*include_nondeduced_p=*/true);
8975 }
8976
8977 /* Returns TRUE iff INST is an instantiation we don't need to do in an
8978 ill-formed translation unit, i.e. a variable or function that isn't
8979 usable in a constant expression. */
8980
8981 static inline bool
8982 neglectable_inst_p (tree d)
8983 {
8984 return (DECL_P (d)
8985 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
8986 : decl_maybe_constant_var_p (d)));
8987 }
8988
8989 /* Returns TRUE iff we should refuse to instantiate DECL because it's
8990 neglectable and instantiated from within an erroneous instantiation. */
8991
8992 static bool
8993 limit_bad_template_recursion (tree decl)
8994 {
8995 struct tinst_level *lev = current_tinst_level;
8996 int errs = errorcount + sorrycount;
8997 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
8998 return false;
8999
9000 for (; lev; lev = lev->next)
9001 if (neglectable_inst_p (lev->decl))
9002 break;
9003
9004 return (lev && errs > lev->errors);
9005 }
9006
9007 static int tinst_depth;
9008 extern int max_tinst_depth;
9009 int depth_reached;
9010
9011 static GTY(()) struct tinst_level *last_error_tinst_level;
9012
9013 /* We're starting to instantiate D; record the template instantiation context
9014 for diagnostics and to restore it later. */
9015
9016 bool
9017 push_tinst_level (tree d)
9018 {
9019 return push_tinst_level_loc (d, input_location);
9020 }
9021
9022 /* We're starting to instantiate D; record the template instantiation context
9023 at LOC for diagnostics and to restore it later. */
9024
9025 bool
9026 push_tinst_level_loc (tree d, location_t loc)
9027 {
9028 struct tinst_level *new_level;
9029
9030 if (tinst_depth >= max_tinst_depth)
9031 {
9032 fatal_error (input_location,
9033 "template instantiation depth exceeds maximum of %d"
9034 " (use -ftemplate-depth= to increase the maximum)",
9035 max_tinst_depth);
9036 return false;
9037 }
9038
9039 /* If the current instantiation caused problems, don't let it instantiate
9040 anything else. Do allow deduction substitution and decls usable in
9041 constant expressions. */
9042 if (limit_bad_template_recursion (d))
9043 return false;
9044
9045 new_level = ggc_alloc<tinst_level> ();
9046 new_level->decl = d;
9047 new_level->locus = loc;
9048 new_level->errors = errorcount+sorrycount;
9049 new_level->in_system_header_p = in_system_header_at (input_location);
9050 new_level->next = current_tinst_level;
9051 current_tinst_level = new_level;
9052
9053 ++tinst_depth;
9054 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
9055 depth_reached = tinst_depth;
9056
9057 return true;
9058 }
9059
9060 /* We're done instantiating this template; return to the instantiation
9061 context. */
9062
9063 void
9064 pop_tinst_level (void)
9065 {
9066 /* Restore the filename and line number stashed away when we started
9067 this instantiation. */
9068 input_location = current_tinst_level->locus;
9069 current_tinst_level = current_tinst_level->next;
9070 --tinst_depth;
9071 }
9072
9073 /* We're instantiating a deferred template; restore the template
9074 instantiation context in which the instantiation was requested, which
9075 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
9076
9077 static tree
9078 reopen_tinst_level (struct tinst_level *level)
9079 {
9080 struct tinst_level *t;
9081
9082 tinst_depth = 0;
9083 for (t = level; t; t = t->next)
9084 ++tinst_depth;
9085
9086 current_tinst_level = level;
9087 pop_tinst_level ();
9088 if (current_tinst_level)
9089 current_tinst_level->errors = errorcount+sorrycount;
9090 return level->decl;
9091 }
9092
9093 /* Returns the TINST_LEVEL which gives the original instantiation
9094 context. */
9095
9096 struct tinst_level *
9097 outermost_tinst_level (void)
9098 {
9099 struct tinst_level *level = current_tinst_level;
9100 if (level)
9101 while (level->next)
9102 level = level->next;
9103 return level;
9104 }
9105
9106 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
9107 vector of template arguments, as for tsubst.
9108
9109 Returns an appropriate tsubst'd friend declaration. */
9110
9111 static tree
9112 tsubst_friend_function (tree decl, tree args)
9113 {
9114 tree new_friend;
9115
9116 if (TREE_CODE (decl) == FUNCTION_DECL
9117 && DECL_TEMPLATE_INSTANTIATION (decl)
9118 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
9119 /* This was a friend declared with an explicit template
9120 argument list, e.g.:
9121
9122 friend void f<>(T);
9123
9124 to indicate that f was a template instantiation, not a new
9125 function declaration. Now, we have to figure out what
9126 instantiation of what template. */
9127 {
9128 tree template_id, arglist, fns;
9129 tree new_args;
9130 tree tmpl;
9131 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
9132
9133 /* Friend functions are looked up in the containing namespace scope.
9134 We must enter that scope, to avoid finding member functions of the
9135 current class with same name. */
9136 push_nested_namespace (ns);
9137 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
9138 tf_warning_or_error, NULL_TREE,
9139 /*integral_constant_expression_p=*/false);
9140 pop_nested_namespace (ns);
9141 arglist = tsubst (DECL_TI_ARGS (decl), args,
9142 tf_warning_or_error, NULL_TREE);
9143 template_id = lookup_template_function (fns, arglist);
9144
9145 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9146 tmpl = determine_specialization (template_id, new_friend,
9147 &new_args,
9148 /*need_member_template=*/0,
9149 TREE_VEC_LENGTH (args),
9150 tsk_none);
9151 return instantiate_template (tmpl, new_args, tf_error);
9152 }
9153
9154 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9155
9156 /* The NEW_FRIEND will look like an instantiation, to the
9157 compiler, but is not an instantiation from the point of view of
9158 the language. For example, we might have had:
9159
9160 template <class T> struct S {
9161 template <class U> friend void f(T, U);
9162 };
9163
9164 Then, in S<int>, template <class U> void f(int, U) is not an
9165 instantiation of anything. */
9166 if (new_friend == error_mark_node)
9167 return error_mark_node;
9168
9169 DECL_USE_TEMPLATE (new_friend) = 0;
9170 if (TREE_CODE (decl) == TEMPLATE_DECL)
9171 {
9172 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
9173 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
9174 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
9175 }
9176
9177 /* The mangled name for the NEW_FRIEND is incorrect. The function
9178 is not a template instantiation and should not be mangled like
9179 one. Therefore, we forget the mangling here; we'll recompute it
9180 later if we need it. */
9181 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
9182 {
9183 SET_DECL_RTL (new_friend, NULL);
9184 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
9185 }
9186
9187 if (DECL_NAMESPACE_SCOPE_P (new_friend))
9188 {
9189 tree old_decl;
9190 tree new_friend_template_info;
9191 tree new_friend_result_template_info;
9192 tree ns;
9193 int new_friend_is_defn;
9194
9195 /* We must save some information from NEW_FRIEND before calling
9196 duplicate decls since that function will free NEW_FRIEND if
9197 possible. */
9198 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
9199 new_friend_is_defn =
9200 (DECL_INITIAL (DECL_TEMPLATE_RESULT
9201 (template_for_substitution (new_friend)))
9202 != NULL_TREE);
9203 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
9204 {
9205 /* This declaration is a `primary' template. */
9206 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
9207
9208 new_friend_result_template_info
9209 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
9210 }
9211 else
9212 new_friend_result_template_info = NULL_TREE;
9213
9214 /* Make the init_value nonzero so pushdecl knows this is a defn. */
9215 if (new_friend_is_defn)
9216 DECL_INITIAL (new_friend) = error_mark_node;
9217
9218 /* Inside pushdecl_namespace_level, we will push into the
9219 current namespace. However, the friend function should go
9220 into the namespace of the template. */
9221 ns = decl_namespace_context (new_friend);
9222 push_nested_namespace (ns);
9223 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
9224 pop_nested_namespace (ns);
9225
9226 if (old_decl == error_mark_node)
9227 return error_mark_node;
9228
9229 if (old_decl != new_friend)
9230 {
9231 /* This new friend declaration matched an existing
9232 declaration. For example, given:
9233
9234 template <class T> void f(T);
9235 template <class U> class C {
9236 template <class T> friend void f(T) {}
9237 };
9238
9239 the friend declaration actually provides the definition
9240 of `f', once C has been instantiated for some type. So,
9241 old_decl will be the out-of-class template declaration,
9242 while new_friend is the in-class definition.
9243
9244 But, if `f' was called before this point, the
9245 instantiation of `f' will have DECL_TI_ARGS corresponding
9246 to `T' but not to `U', references to which might appear
9247 in the definition of `f'. Previously, the most general
9248 template for an instantiation of `f' was the out-of-class
9249 version; now it is the in-class version. Therefore, we
9250 run through all specialization of `f', adding to their
9251 DECL_TI_ARGS appropriately. In particular, they need a
9252 new set of outer arguments, corresponding to the
9253 arguments for this class instantiation.
9254
9255 The same situation can arise with something like this:
9256
9257 friend void f(int);
9258 template <class T> class C {
9259 friend void f(T) {}
9260 };
9261
9262 when `C<int>' is instantiated. Now, `f(int)' is defined
9263 in the class. */
9264
9265 if (!new_friend_is_defn)
9266 /* On the other hand, if the in-class declaration does
9267 *not* provide a definition, then we don't want to alter
9268 existing definitions. We can just leave everything
9269 alone. */
9270 ;
9271 else
9272 {
9273 tree new_template = TI_TEMPLATE (new_friend_template_info);
9274 tree new_args = TI_ARGS (new_friend_template_info);
9275
9276 /* Overwrite whatever template info was there before, if
9277 any, with the new template information pertaining to
9278 the declaration. */
9279 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
9280
9281 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
9282 {
9283 /* We should have called reregister_specialization in
9284 duplicate_decls. */
9285 gcc_assert (retrieve_specialization (new_template,
9286 new_args, 0)
9287 == old_decl);
9288
9289 /* Instantiate it if the global has already been used. */
9290 if (DECL_ODR_USED (old_decl))
9291 instantiate_decl (old_decl, /*defer_ok=*/true,
9292 /*expl_inst_class_mem_p=*/false);
9293 }
9294 else
9295 {
9296 tree t;
9297
9298 /* Indicate that the old function template is a partial
9299 instantiation. */
9300 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
9301 = new_friend_result_template_info;
9302
9303 gcc_assert (new_template
9304 == most_general_template (new_template));
9305 gcc_assert (new_template != old_decl);
9306
9307 /* Reassign any specializations already in the hash table
9308 to the new more general template, and add the
9309 additional template args. */
9310 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
9311 t != NULL_TREE;
9312 t = TREE_CHAIN (t))
9313 {
9314 tree spec = TREE_VALUE (t);
9315 spec_entry elt;
9316
9317 elt.tmpl = old_decl;
9318 elt.args = DECL_TI_ARGS (spec);
9319 elt.spec = NULL_TREE;
9320
9321 decl_specializations->remove_elt (&elt);
9322
9323 DECL_TI_ARGS (spec)
9324 = add_outermost_template_args (new_args,
9325 DECL_TI_ARGS (spec));
9326
9327 register_specialization
9328 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
9329
9330 }
9331 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
9332 }
9333 }
9334
9335 /* The information from NEW_FRIEND has been merged into OLD_DECL
9336 by duplicate_decls. */
9337 new_friend = old_decl;
9338 }
9339 }
9340 else
9341 {
9342 tree context = DECL_CONTEXT (new_friend);
9343 bool dependent_p;
9344
9345 /* In the code
9346 template <class T> class C {
9347 template <class U> friend void C1<U>::f (); // case 1
9348 friend void C2<T>::f (); // case 2
9349 };
9350 we only need to make sure CONTEXT is a complete type for
9351 case 2. To distinguish between the two cases, we note that
9352 CONTEXT of case 1 remains dependent type after tsubst while
9353 this isn't true for case 2. */
9354 ++processing_template_decl;
9355 dependent_p = dependent_type_p (context);
9356 --processing_template_decl;
9357
9358 if (!dependent_p
9359 && !complete_type_or_else (context, NULL_TREE))
9360 return error_mark_node;
9361
9362 if (COMPLETE_TYPE_P (context))
9363 {
9364 tree fn = new_friend;
9365 /* do_friend adds the TEMPLATE_DECL for any member friend
9366 template even if it isn't a member template, i.e.
9367 template <class T> friend A<T>::f();
9368 Look through it in that case. */
9369 if (TREE_CODE (fn) == TEMPLATE_DECL
9370 && !PRIMARY_TEMPLATE_P (fn))
9371 fn = DECL_TEMPLATE_RESULT (fn);
9372 /* Check to see that the declaration is really present, and,
9373 possibly obtain an improved declaration. */
9374 fn = check_classfn (context, fn, NULL_TREE);
9375
9376 if (fn)
9377 new_friend = fn;
9378 }
9379 }
9380
9381 return new_friend;
9382 }
9383
9384 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
9385 template arguments, as for tsubst.
9386
9387 Returns an appropriate tsubst'd friend type or error_mark_node on
9388 failure. */
9389
9390 static tree
9391 tsubst_friend_class (tree friend_tmpl, tree args)
9392 {
9393 tree friend_type;
9394 tree tmpl;
9395 tree context;
9396
9397 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
9398 {
9399 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
9400 return TREE_TYPE (t);
9401 }
9402
9403 context = CP_DECL_CONTEXT (friend_tmpl);
9404
9405 if (context != global_namespace)
9406 {
9407 if (TREE_CODE (context) == NAMESPACE_DECL)
9408 push_nested_namespace (context);
9409 else
9410 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
9411 }
9412
9413 /* Look for a class template declaration. We look for hidden names
9414 because two friend declarations of the same template are the
9415 same. For example, in:
9416
9417 struct A {
9418 template <typename> friend class F;
9419 };
9420 template <typename> struct B {
9421 template <typename> friend class F;
9422 };
9423
9424 both F templates are the same. */
9425 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
9426 /*block_p=*/true, 0, LOOKUP_HIDDEN);
9427
9428 /* But, if we don't find one, it might be because we're in a
9429 situation like this:
9430
9431 template <class T>
9432 struct S {
9433 template <class U>
9434 friend struct S;
9435 };
9436
9437 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
9438 for `S<int>', not the TEMPLATE_DECL. */
9439 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
9440 {
9441 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
9442 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
9443 }
9444
9445 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
9446 {
9447 /* The friend template has already been declared. Just
9448 check to see that the declarations match, and install any new
9449 default parameters. We must tsubst the default parameters,
9450 of course. We only need the innermost template parameters
9451 because that is all that redeclare_class_template will look
9452 at. */
9453 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
9454 > TMPL_ARGS_DEPTH (args))
9455 {
9456 tree parms;
9457 location_t saved_input_location;
9458 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
9459 args, tf_warning_or_error);
9460
9461 saved_input_location = input_location;
9462 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
9463 tree cons = get_constraints (tmpl);
9464 redeclare_class_template (TREE_TYPE (tmpl), parms, cons);
9465 input_location = saved_input_location;
9466
9467 }
9468
9469 friend_type = TREE_TYPE (tmpl);
9470 }
9471 else
9472 {
9473 /* The friend template has not already been declared. In this
9474 case, the instantiation of the template class will cause the
9475 injection of this template into the global scope. */
9476 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
9477 if (tmpl == error_mark_node)
9478 return error_mark_node;
9479
9480 /* The new TMPL is not an instantiation of anything, so we
9481 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
9482 the new type because that is supposed to be the corresponding
9483 template decl, i.e., TMPL. */
9484 DECL_USE_TEMPLATE (tmpl) = 0;
9485 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
9486 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
9487 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
9488 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
9489
9490 /* Inject this template into the global scope. */
9491 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
9492 }
9493
9494 if (context != global_namespace)
9495 {
9496 if (TREE_CODE (context) == NAMESPACE_DECL)
9497 pop_nested_namespace (context);
9498 else
9499 pop_nested_class ();
9500 }
9501
9502 return friend_type;
9503 }
9504
9505 /* Returns zero if TYPE cannot be completed later due to circularity.
9506 Otherwise returns one. */
9507
9508 static int
9509 can_complete_type_without_circularity (tree type)
9510 {
9511 if (type == NULL_TREE || type == error_mark_node)
9512 return 0;
9513 else if (COMPLETE_TYPE_P (type))
9514 return 1;
9515 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
9516 return can_complete_type_without_circularity (TREE_TYPE (type));
9517 else if (CLASS_TYPE_P (type)
9518 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
9519 return 0;
9520 else
9521 return 1;
9522 }
9523
9524 static tree tsubst_omp_clauses (tree, bool, bool, tree, tsubst_flags_t, tree);
9525
9526 /* Apply any attributes which had to be deferred until instantiation
9527 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
9528 ARGS, COMPLAIN, IN_DECL are as tsubst. */
9529
9530 static void
9531 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
9532 tree args, tsubst_flags_t complain, tree in_decl)
9533 {
9534 tree last_dep = NULL_TREE;
9535 tree t;
9536 tree *p;
9537
9538 for (t = attributes; t; t = TREE_CHAIN (t))
9539 if (ATTR_IS_DEPENDENT (t))
9540 {
9541 last_dep = t;
9542 attributes = copy_list (attributes);
9543 break;
9544 }
9545
9546 if (DECL_P (*decl_p))
9547 {
9548 if (TREE_TYPE (*decl_p) == error_mark_node)
9549 return;
9550 p = &DECL_ATTRIBUTES (*decl_p);
9551 }
9552 else
9553 p = &TYPE_ATTRIBUTES (*decl_p);
9554
9555 if (last_dep)
9556 {
9557 tree late_attrs = NULL_TREE;
9558 tree *q = &late_attrs;
9559
9560 for (*p = attributes; *p; )
9561 {
9562 t = *p;
9563 if (ATTR_IS_DEPENDENT (t))
9564 {
9565 *p = TREE_CHAIN (t);
9566 TREE_CHAIN (t) = NULL_TREE;
9567 if ((flag_openmp || flag_openmp_simd || flag_cilkplus)
9568 && is_attribute_p ("omp declare simd",
9569 get_attribute_name (t))
9570 && TREE_VALUE (t))
9571 {
9572 tree clauses = TREE_VALUE (TREE_VALUE (t));
9573 clauses = tsubst_omp_clauses (clauses, true, false, args,
9574 complain, in_decl);
9575 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
9576 clauses = finish_omp_clauses (clauses, false, true);
9577 tree parms = DECL_ARGUMENTS (*decl_p);
9578 clauses
9579 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
9580 if (clauses)
9581 TREE_VALUE (TREE_VALUE (t)) = clauses;
9582 else
9583 TREE_VALUE (t) = NULL_TREE;
9584 }
9585 /* If the first attribute argument is an identifier, don't
9586 pass it through tsubst. Attributes like mode, format,
9587 cleanup and several target specific attributes expect it
9588 unmodified. */
9589 else if (attribute_takes_identifier_p (get_attribute_name (t))
9590 && TREE_VALUE (t))
9591 {
9592 tree chain
9593 = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain,
9594 in_decl,
9595 /*integral_constant_expression_p=*/false);
9596 if (chain != TREE_CHAIN (TREE_VALUE (t)))
9597 TREE_VALUE (t)
9598 = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)),
9599 chain);
9600 }
9601 else if (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t)))
9602 {
9603 /* An attribute pack expansion. */
9604 tree purp = TREE_PURPOSE (t);
9605 tree pack = (tsubst_pack_expansion
9606 (TREE_VALUE (t), args, complain, in_decl));
9607 int len = TREE_VEC_LENGTH (pack);
9608 for (int i = 0; i < len; ++i)
9609 {
9610 tree elt = TREE_VEC_ELT (pack, i);
9611 *q = build_tree_list (purp, elt);
9612 q = &TREE_CHAIN (*q);
9613 }
9614 continue;
9615 }
9616 else
9617 TREE_VALUE (t)
9618 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
9619 /*integral_constant_expression_p=*/false);
9620 *q = t;
9621 q = &TREE_CHAIN (t);
9622 }
9623 else
9624 p = &TREE_CHAIN (t);
9625 }
9626
9627 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
9628 }
9629 }
9630
9631 /* Perform (or defer) access check for typedefs that were referenced
9632 from within the template TMPL code.
9633 This is a subroutine of instantiate_decl and instantiate_class_template.
9634 TMPL is the template to consider and TARGS is the list of arguments of
9635 that template. */
9636
9637 static void
9638 perform_typedefs_access_check (tree tmpl, tree targs)
9639 {
9640 location_t saved_location;
9641 unsigned i;
9642 qualified_typedef_usage_t *iter;
9643
9644 if (!tmpl
9645 || (!CLASS_TYPE_P (tmpl)
9646 && TREE_CODE (tmpl) != FUNCTION_DECL))
9647 return;
9648
9649 saved_location = input_location;
9650 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
9651 {
9652 tree type_decl = iter->typedef_decl;
9653 tree type_scope = iter->context;
9654
9655 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
9656 continue;
9657
9658 if (uses_template_parms (type_decl))
9659 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
9660 if (uses_template_parms (type_scope))
9661 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
9662
9663 /* Make access check error messages point to the location
9664 of the use of the typedef. */
9665 input_location = iter->locus;
9666 perform_or_defer_access_check (TYPE_BINFO (type_scope),
9667 type_decl, type_decl,
9668 tf_warning_or_error);
9669 }
9670 input_location = saved_location;
9671 }
9672
9673 static tree
9674 instantiate_class_template_1 (tree type)
9675 {
9676 tree templ, args, pattern, t, member;
9677 tree typedecl;
9678 tree pbinfo;
9679 tree base_list;
9680 unsigned int saved_maximum_field_alignment;
9681 tree fn_context;
9682
9683 if (type == error_mark_node)
9684 return error_mark_node;
9685
9686 if (COMPLETE_OR_OPEN_TYPE_P (type)
9687 || uses_template_parms (type))
9688 return type;
9689
9690 /* Figure out which template is being instantiated. */
9691 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
9692 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
9693
9694 /* Determine what specialization of the original template to
9695 instantiate. */
9696 t = most_specialized_partial_spec (type, tf_warning_or_error);
9697 if (t == error_mark_node)
9698 {
9699 TYPE_BEING_DEFINED (type) = 1;
9700 return error_mark_node;
9701 }
9702 else if (t)
9703 {
9704 /* This TYPE is actually an instantiation of a partial
9705 specialization. We replace the innermost set of ARGS with
9706 the arguments appropriate for substitution. For example,
9707 given:
9708
9709 template <class T> struct S {};
9710 template <class T> struct S<T*> {};
9711
9712 and supposing that we are instantiating S<int*>, ARGS will
9713 presently be {int*} -- but we need {int}. */
9714 pattern = TREE_TYPE (t);
9715 args = TREE_PURPOSE (t);
9716 }
9717 else
9718 {
9719 pattern = TREE_TYPE (templ);
9720 args = CLASSTYPE_TI_ARGS (type);
9721 }
9722
9723 /* If the template we're instantiating is incomplete, then clearly
9724 there's nothing we can do. */
9725 if (!COMPLETE_TYPE_P (pattern))
9726 return type;
9727
9728 /* If we've recursively instantiated too many templates, stop. */
9729 if (! push_tinst_level (type))
9730 return type;
9731
9732 /* Now we're really doing the instantiation. Mark the type as in
9733 the process of being defined. */
9734 TYPE_BEING_DEFINED (type) = 1;
9735
9736 /* We may be in the middle of deferred access check. Disable
9737 it now. */
9738 push_deferring_access_checks (dk_no_deferred);
9739
9740 int saved_unevaluated_operand = cp_unevaluated_operand;
9741 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
9742
9743 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
9744 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
9745 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
9746 fn_context = error_mark_node;
9747 if (!fn_context)
9748 push_to_top_level ();
9749 else
9750 {
9751 cp_unevaluated_operand = 0;
9752 c_inhibit_evaluation_warnings = 0;
9753 }
9754 /* Use #pragma pack from the template context. */
9755 saved_maximum_field_alignment = maximum_field_alignment;
9756 maximum_field_alignment = TYPE_PRECISION (pattern);
9757
9758 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
9759
9760 /* Set the input location to the most specialized template definition.
9761 This is needed if tsubsting causes an error. */
9762 typedecl = TYPE_MAIN_DECL (pattern);
9763 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
9764 DECL_SOURCE_LOCATION (typedecl);
9765
9766 TYPE_PACKED (type) = TYPE_PACKED (pattern);
9767 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
9768 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
9769 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
9770 if (ANON_AGGR_TYPE_P (pattern))
9771 SET_ANON_AGGR_TYPE_P (type);
9772 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
9773 {
9774 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
9775 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
9776 /* Adjust visibility for template arguments. */
9777 determine_visibility (TYPE_MAIN_DECL (type));
9778 }
9779 if (CLASS_TYPE_P (type))
9780 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
9781
9782 pbinfo = TYPE_BINFO (pattern);
9783
9784 /* We should never instantiate a nested class before its enclosing
9785 class; we need to look up the nested class by name before we can
9786 instantiate it, and that lookup should instantiate the enclosing
9787 class. */
9788 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
9789 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
9790
9791 base_list = NULL_TREE;
9792 if (BINFO_N_BASE_BINFOS (pbinfo))
9793 {
9794 tree pbase_binfo;
9795 tree pushed_scope;
9796 int i;
9797
9798 /* We must enter the scope containing the type, as that is where
9799 the accessibility of types named in dependent bases are
9800 looked up from. */
9801 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
9802
9803 /* Substitute into each of the bases to determine the actual
9804 basetypes. */
9805 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
9806 {
9807 tree base;
9808 tree access = BINFO_BASE_ACCESS (pbinfo, i);
9809 tree expanded_bases = NULL_TREE;
9810 int idx, len = 1;
9811
9812 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
9813 {
9814 expanded_bases =
9815 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
9816 args, tf_error, NULL_TREE);
9817 if (expanded_bases == error_mark_node)
9818 continue;
9819
9820 len = TREE_VEC_LENGTH (expanded_bases);
9821 }
9822
9823 for (idx = 0; idx < len; idx++)
9824 {
9825 if (expanded_bases)
9826 /* Extract the already-expanded base class. */
9827 base = TREE_VEC_ELT (expanded_bases, idx);
9828 else
9829 /* Substitute to figure out the base class. */
9830 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
9831 NULL_TREE);
9832
9833 if (base == error_mark_node)
9834 continue;
9835
9836 base_list = tree_cons (access, base, base_list);
9837 if (BINFO_VIRTUAL_P (pbase_binfo))
9838 TREE_TYPE (base_list) = integer_type_node;
9839 }
9840 }
9841
9842 /* The list is now in reverse order; correct that. */
9843 base_list = nreverse (base_list);
9844
9845 if (pushed_scope)
9846 pop_scope (pushed_scope);
9847 }
9848 /* Now call xref_basetypes to set up all the base-class
9849 information. */
9850 xref_basetypes (type, base_list);
9851
9852 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
9853 (int) ATTR_FLAG_TYPE_IN_PLACE,
9854 args, tf_error, NULL_TREE);
9855 fixup_attribute_variants (type);
9856
9857 /* Now that our base classes are set up, enter the scope of the
9858 class, so that name lookups into base classes, etc. will work
9859 correctly. This is precisely analogous to what we do in
9860 begin_class_definition when defining an ordinary non-template
9861 class, except we also need to push the enclosing classes. */
9862 push_nested_class (type);
9863
9864 /* Now members are processed in the order of declaration. */
9865 for (member = CLASSTYPE_DECL_LIST (pattern);
9866 member; member = TREE_CHAIN (member))
9867 {
9868 tree t = TREE_VALUE (member);
9869
9870 if (TREE_PURPOSE (member))
9871 {
9872 if (TYPE_P (t))
9873 {
9874 /* Build new CLASSTYPE_NESTED_UTDS. */
9875
9876 tree newtag;
9877 bool class_template_p;
9878
9879 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
9880 && TYPE_LANG_SPECIFIC (t)
9881 && CLASSTYPE_IS_TEMPLATE (t));
9882 /* If the member is a class template, then -- even after
9883 substitution -- there may be dependent types in the
9884 template argument list for the class. We increment
9885 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
9886 that function will assume that no types are dependent
9887 when outside of a template. */
9888 if (class_template_p)
9889 ++processing_template_decl;
9890 newtag = tsubst (t, args, tf_error, NULL_TREE);
9891 if (class_template_p)
9892 --processing_template_decl;
9893 if (newtag == error_mark_node)
9894 continue;
9895
9896 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
9897 {
9898 tree name = TYPE_IDENTIFIER (t);
9899
9900 if (class_template_p)
9901 /* Unfortunately, lookup_template_class sets
9902 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
9903 instantiation (i.e., for the type of a member
9904 template class nested within a template class.)
9905 This behavior is required for
9906 maybe_process_partial_specialization to work
9907 correctly, but is not accurate in this case;
9908 the TAG is not an instantiation of anything.
9909 (The corresponding TEMPLATE_DECL is an
9910 instantiation, but the TYPE is not.) */
9911 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
9912
9913 /* Now, we call pushtag to put this NEWTAG into the scope of
9914 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
9915 pushtag calling push_template_decl. We don't have to do
9916 this for enums because it will already have been done in
9917 tsubst_enum. */
9918 if (name)
9919 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
9920 pushtag (name, newtag, /*tag_scope=*/ts_current);
9921 }
9922 }
9923 else if (DECL_DECLARES_FUNCTION_P (t))
9924 {
9925 /* Build new TYPE_METHODS. */
9926 tree r;
9927
9928 if (TREE_CODE (t) == TEMPLATE_DECL)
9929 ++processing_template_decl;
9930 r = tsubst (t, args, tf_error, NULL_TREE);
9931 if (TREE_CODE (t) == TEMPLATE_DECL)
9932 --processing_template_decl;
9933 set_current_access_from_decl (r);
9934 finish_member_declaration (r);
9935 /* Instantiate members marked with attribute used. */
9936 if (r != error_mark_node && DECL_PRESERVE_P (r))
9937 mark_used (r);
9938 if (TREE_CODE (r) == FUNCTION_DECL
9939 && DECL_OMP_DECLARE_REDUCTION_P (r))
9940 cp_check_omp_declare_reduction (r);
9941 }
9942 else if (DECL_CLASS_TEMPLATE_P (t)
9943 && LAMBDA_TYPE_P (TREE_TYPE (t)))
9944 /* A closure type for a lambda in a default argument for a
9945 member template. Ignore it; it will be instantiated with
9946 the default argument. */;
9947 else
9948 {
9949 /* Build new TYPE_FIELDS. */
9950 if (TREE_CODE (t) == STATIC_ASSERT)
9951 {
9952 tree condition;
9953
9954 ++c_inhibit_evaluation_warnings;
9955 condition =
9956 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
9957 tf_warning_or_error, NULL_TREE,
9958 /*integral_constant_expression_p=*/true);
9959 --c_inhibit_evaluation_warnings;
9960
9961 finish_static_assert (condition,
9962 STATIC_ASSERT_MESSAGE (t),
9963 STATIC_ASSERT_SOURCE_LOCATION (t),
9964 /*member_p=*/true);
9965 }
9966 else if (TREE_CODE (t) != CONST_DECL)
9967 {
9968 tree r;
9969 tree vec = NULL_TREE;
9970 int len = 1;
9971
9972 /* The file and line for this declaration, to
9973 assist in error message reporting. Since we
9974 called push_tinst_level above, we don't need to
9975 restore these. */
9976 input_location = DECL_SOURCE_LOCATION (t);
9977
9978 if (TREE_CODE (t) == TEMPLATE_DECL)
9979 ++processing_template_decl;
9980 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
9981 if (TREE_CODE (t) == TEMPLATE_DECL)
9982 --processing_template_decl;
9983
9984 if (TREE_CODE (r) == TREE_VEC)
9985 {
9986 /* A capture pack became multiple fields. */
9987 vec = r;
9988 len = TREE_VEC_LENGTH (vec);
9989 }
9990
9991 for (int i = 0; i < len; ++i)
9992 {
9993 if (vec)
9994 r = TREE_VEC_ELT (vec, i);
9995 if (VAR_P (r))
9996 {
9997 /* In [temp.inst]:
9998
9999 [t]he initialization (and any associated
10000 side-effects) of a static data member does
10001 not occur unless the static data member is
10002 itself used in a way that requires the
10003 definition of the static data member to
10004 exist.
10005
10006 Therefore, we do not substitute into the
10007 initialized for the static data member here. */
10008 finish_static_data_member_decl
10009 (r,
10010 /*init=*/NULL_TREE,
10011 /*init_const_expr_p=*/false,
10012 /*asmspec_tree=*/NULL_TREE,
10013 /*flags=*/0);
10014 /* Instantiate members marked with attribute used. */
10015 if (r != error_mark_node && DECL_PRESERVE_P (r))
10016 mark_used (r);
10017 }
10018 else if (TREE_CODE (r) == FIELD_DECL)
10019 {
10020 /* Determine whether R has a valid type and can be
10021 completed later. If R is invalid, then its type
10022 is replaced by error_mark_node. */
10023 tree rtype = TREE_TYPE (r);
10024 if (can_complete_type_without_circularity (rtype))
10025 complete_type (rtype);
10026
10027 if (!COMPLETE_TYPE_P (rtype))
10028 {
10029 cxx_incomplete_type_error (r, rtype);
10030 TREE_TYPE (r) = error_mark_node;
10031 }
10032 }
10033
10034 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
10035 such a thing will already have been added to the field
10036 list by tsubst_enum in finish_member_declaration in the
10037 CLASSTYPE_NESTED_UTDS case above. */
10038 if (!(TREE_CODE (r) == TYPE_DECL
10039 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
10040 && DECL_ARTIFICIAL (r)))
10041 {
10042 set_current_access_from_decl (r);
10043 finish_member_declaration (r);
10044 }
10045 }
10046 }
10047 }
10048 }
10049 else
10050 {
10051 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
10052 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10053 {
10054 /* Build new CLASSTYPE_FRIEND_CLASSES. */
10055
10056 tree friend_type = t;
10057 bool adjust_processing_template_decl = false;
10058
10059 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10060 {
10061 /* template <class T> friend class C; */
10062 friend_type = tsubst_friend_class (friend_type, args);
10063 adjust_processing_template_decl = true;
10064 }
10065 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
10066 {
10067 /* template <class T> friend class C::D; */
10068 friend_type = tsubst (friend_type, args,
10069 tf_warning_or_error, NULL_TREE);
10070 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10071 friend_type = TREE_TYPE (friend_type);
10072 adjust_processing_template_decl = true;
10073 }
10074 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
10075 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
10076 {
10077 /* This could be either
10078
10079 friend class T::C;
10080
10081 when dependent_type_p is false or
10082
10083 template <class U> friend class T::C;
10084
10085 otherwise. */
10086 friend_type = tsubst (friend_type, args,
10087 tf_warning_or_error, NULL_TREE);
10088 /* Bump processing_template_decl for correct
10089 dependent_type_p calculation. */
10090 ++processing_template_decl;
10091 if (dependent_type_p (friend_type))
10092 adjust_processing_template_decl = true;
10093 --processing_template_decl;
10094 }
10095 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
10096 && hidden_name_p (TYPE_NAME (friend_type)))
10097 {
10098 /* friend class C;
10099
10100 where C hasn't been declared yet. Let's lookup name
10101 from namespace scope directly, bypassing any name that
10102 come from dependent base class. */
10103 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
10104
10105 /* The call to xref_tag_from_type does injection for friend
10106 classes. */
10107 push_nested_namespace (ns);
10108 friend_type =
10109 xref_tag_from_type (friend_type, NULL_TREE,
10110 /*tag_scope=*/ts_current);
10111 pop_nested_namespace (ns);
10112 }
10113 else if (uses_template_parms (friend_type))
10114 /* friend class C<T>; */
10115 friend_type = tsubst (friend_type, args,
10116 tf_warning_or_error, NULL_TREE);
10117 /* Otherwise it's
10118
10119 friend class C;
10120
10121 where C is already declared or
10122
10123 friend class C<int>;
10124
10125 We don't have to do anything in these cases. */
10126
10127 if (adjust_processing_template_decl)
10128 /* Trick make_friend_class into realizing that the friend
10129 we're adding is a template, not an ordinary class. It's
10130 important that we use make_friend_class since it will
10131 perform some error-checking and output cross-reference
10132 information. */
10133 ++processing_template_decl;
10134
10135 if (friend_type != error_mark_node)
10136 make_friend_class (type, friend_type, /*complain=*/false);
10137
10138 if (adjust_processing_template_decl)
10139 --processing_template_decl;
10140 }
10141 else
10142 {
10143 /* Build new DECL_FRIENDLIST. */
10144 tree r;
10145
10146 /* The file and line for this declaration, to
10147 assist in error message reporting. Since we
10148 called push_tinst_level above, we don't need to
10149 restore these. */
10150 input_location = DECL_SOURCE_LOCATION (t);
10151
10152 if (TREE_CODE (t) == TEMPLATE_DECL)
10153 {
10154 ++processing_template_decl;
10155 push_deferring_access_checks (dk_no_check);
10156 }
10157
10158 r = tsubst_friend_function (t, args);
10159 add_friend (type, r, /*complain=*/false);
10160 if (TREE_CODE (t) == TEMPLATE_DECL)
10161 {
10162 pop_deferring_access_checks ();
10163 --processing_template_decl;
10164 }
10165 }
10166 }
10167 }
10168
10169 if (fn_context)
10170 {
10171 /* Restore these before substituting into the lambda capture
10172 initializers. */
10173 cp_unevaluated_operand = saved_unevaluated_operand;
10174 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10175 }
10176
10177 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
10178 {
10179 tree decl = lambda_function (type);
10180 if (decl)
10181 {
10182 if (!DECL_TEMPLATE_INFO (decl)
10183 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
10184 instantiate_decl (decl, false, false);
10185
10186 /* We need to instantiate the capture list from the template
10187 after we've instantiated the closure members, but before we
10188 consider adding the conversion op. Also keep any captures
10189 that may have been added during instantiation of the op(). */
10190 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
10191 tree tmpl_cap
10192 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
10193 args, tf_warning_or_error, NULL_TREE,
10194 false, false);
10195
10196 LAMBDA_EXPR_CAPTURE_LIST (expr)
10197 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
10198
10199 maybe_add_lambda_conv_op (type);
10200 }
10201 else
10202 gcc_assert (errorcount);
10203 }
10204
10205 /* Set the file and line number information to whatever is given for
10206 the class itself. This puts error messages involving generated
10207 implicit functions at a predictable point, and the same point
10208 that would be used for non-template classes. */
10209 input_location = DECL_SOURCE_LOCATION (typedecl);
10210
10211 unreverse_member_declarations (type);
10212 finish_struct_1 (type);
10213 TYPE_BEING_DEFINED (type) = 0;
10214
10215 /* We don't instantiate default arguments for member functions. 14.7.1:
10216
10217 The implicit instantiation of a class template specialization causes
10218 the implicit instantiation of the declarations, but not of the
10219 definitions or default arguments, of the class member functions,
10220 member classes, static data members and member templates.... */
10221
10222 /* Some typedefs referenced from within the template code need to be access
10223 checked at template instantiation time, i.e now. These types were
10224 added to the template at parsing time. Let's get those and perform
10225 the access checks then. */
10226 perform_typedefs_access_check (pattern, args);
10227 perform_deferred_access_checks (tf_warning_or_error);
10228 pop_nested_class ();
10229 maximum_field_alignment = saved_maximum_field_alignment;
10230 if (!fn_context)
10231 pop_from_top_level ();
10232 pop_deferring_access_checks ();
10233 pop_tinst_level ();
10234
10235 /* The vtable for a template class can be emitted in any translation
10236 unit in which the class is instantiated. When there is no key
10237 method, however, finish_struct_1 will already have added TYPE to
10238 the keyed_classes list. */
10239 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
10240 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
10241
10242 return type;
10243 }
10244
10245 /* Wrapper for instantiate_class_template_1. */
10246
10247 tree
10248 instantiate_class_template (tree type)
10249 {
10250 tree ret;
10251 timevar_push (TV_TEMPLATE_INST);
10252 ret = instantiate_class_template_1 (type);
10253 timevar_pop (TV_TEMPLATE_INST);
10254 return ret;
10255 }
10256
10257 static tree
10258 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10259 {
10260 tree r;
10261
10262 if (!t)
10263 r = t;
10264 else if (TYPE_P (t))
10265 r = tsubst (t, args, complain, in_decl);
10266 else
10267 {
10268 if (!(complain & tf_warning))
10269 ++c_inhibit_evaluation_warnings;
10270 r = tsubst_expr (t, args, complain, in_decl,
10271 /*integral_constant_expression_p=*/true);
10272 if (!(complain & tf_warning))
10273 --c_inhibit_evaluation_warnings;
10274 }
10275 return r;
10276 }
10277
10278 /* Given a function parameter pack TMPL_PARM and some function parameters
10279 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
10280 and set *SPEC_P to point at the next point in the list. */
10281
10282 tree
10283 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
10284 {
10285 /* Collect all of the extra "packed" parameters into an
10286 argument pack. */
10287 tree parmvec;
10288 tree parmtypevec;
10289 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
10290 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
10291 tree spec_parm = *spec_p;
10292 int i, len;
10293
10294 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
10295 if (tmpl_parm
10296 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
10297 break;
10298
10299 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
10300 parmvec = make_tree_vec (len);
10301 parmtypevec = make_tree_vec (len);
10302 spec_parm = *spec_p;
10303 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
10304 {
10305 TREE_VEC_ELT (parmvec, i) = spec_parm;
10306 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
10307 }
10308
10309 /* Build the argument packs. */
10310 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
10311 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
10312 TREE_TYPE (argpack) = argtypepack;
10313 *spec_p = spec_parm;
10314
10315 return argpack;
10316 }
10317
10318 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
10319 NONTYPE_ARGUMENT_PACK. */
10320
10321 static tree
10322 make_fnparm_pack (tree spec_parm)
10323 {
10324 return extract_fnparm_pack (NULL_TREE, &spec_parm);
10325 }
10326
10327 /* Return 1 if the Ith element of the argument pack ARG_PACK is a
10328 pack expansion with no extra args, 2 if it has extra args, or 0
10329 if it is not a pack expansion. */
10330
10331 static int
10332 argument_pack_element_is_expansion_p (tree arg_pack, int i)
10333 {
10334 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
10335 if (i >= TREE_VEC_LENGTH (vec))
10336 return 0;
10337 tree elt = TREE_VEC_ELT (vec, i);
10338 if (DECL_P (elt))
10339 /* A decl pack is itself an expansion. */
10340 elt = TREE_TYPE (elt);
10341 if (!PACK_EXPANSION_P (elt))
10342 return 0;
10343 if (PACK_EXPANSION_EXTRA_ARGS (elt))
10344 return 2;
10345 return 1;
10346 }
10347
10348
10349 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
10350
10351 static tree
10352 make_argument_pack_select (tree arg_pack, unsigned index)
10353 {
10354 tree aps = make_node (ARGUMENT_PACK_SELECT);
10355
10356 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
10357 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10358
10359 return aps;
10360 }
10361
10362 /* This is a subroutine of tsubst_pack_expansion.
10363
10364 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
10365 mechanism to store the (non complete list of) arguments of the
10366 substitution and return a non substituted pack expansion, in order
10367 to wait for when we have enough arguments to really perform the
10368 substitution. */
10369
10370 static bool
10371 use_pack_expansion_extra_args_p (tree parm_packs,
10372 int arg_pack_len,
10373 bool has_empty_arg)
10374 {
10375 /* If one pack has an expansion and another pack has a normal
10376 argument or if one pack has an empty argument and an another
10377 one hasn't then tsubst_pack_expansion cannot perform the
10378 substitution and need to fall back on the
10379 PACK_EXPANSION_EXTRA mechanism. */
10380 if (parm_packs == NULL_TREE)
10381 return false;
10382 else if (has_empty_arg)
10383 return true;
10384
10385 bool has_expansion_arg = false;
10386 for (int i = 0 ; i < arg_pack_len; ++i)
10387 {
10388 bool has_non_expansion_arg = false;
10389 for (tree parm_pack = parm_packs;
10390 parm_pack;
10391 parm_pack = TREE_CHAIN (parm_pack))
10392 {
10393 tree arg = TREE_VALUE (parm_pack);
10394
10395 int exp = argument_pack_element_is_expansion_p (arg, i);
10396 if (exp == 2)
10397 /* We can't substitute a pack expansion with extra args into
10398 our pattern. */
10399 return true;
10400 else if (exp)
10401 has_expansion_arg = true;
10402 else
10403 has_non_expansion_arg = true;
10404 }
10405
10406 if (has_expansion_arg && has_non_expansion_arg)
10407 return true;
10408 }
10409 return false;
10410 }
10411
10412 /* [temp.variadic]/6 says that:
10413
10414 The instantiation of a pack expansion [...]
10415 produces a list E1,E2, ..., En, where N is the number of elements
10416 in the pack expansion parameters.
10417
10418 This subroutine of tsubst_pack_expansion produces one of these Ei.
10419
10420 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
10421 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
10422 PATTERN, and each TREE_VALUE is its corresponding argument pack.
10423 INDEX is the index 'i' of the element Ei to produce. ARGS,
10424 COMPLAIN, and IN_DECL are the same parameters as for the
10425 tsubst_pack_expansion function.
10426
10427 The function returns the resulting Ei upon successful completion,
10428 or error_mark_node.
10429
10430 Note that this function possibly modifies the ARGS parameter, so
10431 it's the responsibility of the caller to restore it. */
10432
10433 static tree
10434 gen_elem_of_pack_expansion_instantiation (tree pattern,
10435 tree parm_packs,
10436 unsigned index,
10437 tree args /* This parm gets
10438 modified. */,
10439 tsubst_flags_t complain,
10440 tree in_decl)
10441 {
10442 tree t;
10443 bool ith_elem_is_expansion = false;
10444
10445 /* For each parameter pack, change the substitution of the parameter
10446 pack to the ith argument in its argument pack, then expand the
10447 pattern. */
10448 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
10449 {
10450 tree parm = TREE_PURPOSE (pack);
10451 tree arg_pack = TREE_VALUE (pack);
10452 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
10453
10454 ith_elem_is_expansion |=
10455 argument_pack_element_is_expansion_p (arg_pack, index);
10456
10457 /* Select the Ith argument from the pack. */
10458 if (TREE_CODE (parm) == PARM_DECL
10459 || TREE_CODE (parm) == FIELD_DECL)
10460 {
10461 if (index == 0)
10462 {
10463 aps = make_argument_pack_select (arg_pack, index);
10464 if (!mark_used (parm, complain) && !(complain & tf_error))
10465 return error_mark_node;
10466 register_local_specialization (aps, parm);
10467 }
10468 else
10469 aps = retrieve_local_specialization (parm);
10470 }
10471 else
10472 {
10473 int idx, level;
10474 template_parm_level_and_index (parm, &level, &idx);
10475
10476 if (index == 0)
10477 {
10478 aps = make_argument_pack_select (arg_pack, index);
10479 /* Update the corresponding argument. */
10480 TMPL_ARG (args, level, idx) = aps;
10481 }
10482 else
10483 /* Re-use the ARGUMENT_PACK_SELECT. */
10484 aps = TMPL_ARG (args, level, idx);
10485 }
10486 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10487 }
10488
10489 /* Substitute into the PATTERN with the (possibly altered)
10490 arguments. */
10491 if (pattern == in_decl)
10492 /* Expanding a fixed parameter pack from
10493 coerce_template_parameter_pack. */
10494 t = tsubst_decl (pattern, args, complain);
10495 else if (pattern == error_mark_node)
10496 t = error_mark_node;
10497 else if (constraint_p (pattern))
10498 {
10499 if (processing_template_decl)
10500 t = tsubst_constraint (pattern, args, complain, in_decl);
10501 else
10502 t = (constraints_satisfied_p (pattern, args)
10503 ? boolean_true_node : boolean_false_node);
10504 }
10505 else if (!TYPE_P (pattern))
10506 t = tsubst_expr (pattern, args, complain, in_decl,
10507 /*integral_constant_expression_p=*/false);
10508 else
10509 t = tsubst (pattern, args, complain, in_decl);
10510
10511 /* If the Ith argument pack element is a pack expansion, then
10512 the Ith element resulting from the substituting is going to
10513 be a pack expansion as well. */
10514 if (ith_elem_is_expansion)
10515 t = make_pack_expansion (t);
10516
10517 return t;
10518 }
10519
10520 /* When the unexpanded parameter pack in a fold expression expands to an empty
10521 sequence, the value of the expression is as follows; the program is
10522 ill-formed if the operator is not listed in this table.
10523
10524 * 1
10525 + 0
10526 & -1
10527 | 0
10528 && true
10529 || false
10530 , void() */
10531
10532 tree
10533 expand_empty_fold (tree t, tsubst_flags_t complain)
10534 {
10535 tree_code code = (tree_code)TREE_INT_CST_LOW (TREE_OPERAND (t, 0));
10536 if (!FOLD_EXPR_MODIFY_P (t))
10537 switch (code)
10538 {
10539 case MULT_EXPR:
10540 return integer_one_node;
10541 case PLUS_EXPR:
10542 return integer_zero_node;
10543 case BIT_AND_EXPR:
10544 return integer_minus_one_node;
10545 case BIT_IOR_EXPR:
10546 return integer_zero_node;
10547 case TRUTH_ANDIF_EXPR:
10548 return boolean_true_node;
10549 case TRUTH_ORIF_EXPR:
10550 return boolean_false_node;
10551 case COMPOUND_EXPR:
10552 return void_node;
10553 default:
10554 break;
10555 }
10556
10557 if (complain & tf_error)
10558 error_at (location_of (t),
10559 "fold of empty expansion over %O", code);
10560 return error_mark_node;
10561 }
10562
10563 /* Given a fold-expression T and a current LEFT and RIGHT operand,
10564 form an expression that combines the two terms using the
10565 operator of T. */
10566
10567 static tree
10568 fold_expression (tree t, tree left, tree right, tsubst_flags_t complain)
10569 {
10570 tree op = FOLD_EXPR_OP (t);
10571 tree_code code = (tree_code)TREE_INT_CST_LOW (op);
10572
10573 // Handle compound assignment operators.
10574 if (FOLD_EXPR_MODIFY_P (t))
10575 return build_x_modify_expr (input_location, left, code, right, complain);
10576
10577 switch (code)
10578 {
10579 case COMPOUND_EXPR:
10580 return build_x_compound_expr (input_location, left, right, complain);
10581 case DOTSTAR_EXPR:
10582 return build_m_component_ref (left, right, complain);
10583 default:
10584 return build_x_binary_op (input_location, code,
10585 left, TREE_CODE (left),
10586 right, TREE_CODE (right),
10587 /*overload=*/NULL,
10588 complain);
10589 }
10590 }
10591
10592 /* Substitute ARGS into the pack of a fold expression T. */
10593
10594 static inline tree
10595 tsubst_fold_expr_pack (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10596 {
10597 return tsubst_pack_expansion (FOLD_EXPR_PACK (t), args, complain, in_decl);
10598 }
10599
10600 /* Substitute ARGS into the pack of a fold expression T. */
10601
10602 static inline tree
10603 tsubst_fold_expr_init (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10604 {
10605 return tsubst_expr (FOLD_EXPR_INIT (t), args, complain, in_decl, false);
10606 }
10607
10608 /* Expand a PACK of arguments into a grouped as left fold.
10609 Given a pack containing elements A0, A1, ..., An and an
10610 operator @, this builds the expression:
10611
10612 ((A0 @ A1) @ A2) ... @ An
10613
10614 Note that PACK must not be empty.
10615
10616 The operator is defined by the original fold expression T. */
10617
10618 static tree
10619 expand_left_fold (tree t, tree pack, tsubst_flags_t complain)
10620 {
10621 tree left = TREE_VEC_ELT (pack, 0);
10622 for (int i = 1; i < TREE_VEC_LENGTH (pack); ++i)
10623 {
10624 tree right = TREE_VEC_ELT (pack, i);
10625 left = fold_expression (t, left, right, complain);
10626 }
10627 return left;
10628 }
10629
10630 /* Substitute into a unary left fold expression. */
10631
10632 static tree
10633 tsubst_unary_left_fold (tree t, tree args, tsubst_flags_t complain,
10634 tree in_decl)
10635 {
10636 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10637 if (pack == error_mark_node)
10638 return error_mark_node;
10639 if (TREE_VEC_LENGTH (pack) == 0)
10640 return expand_empty_fold (t, complain);
10641 else
10642 return expand_left_fold (t, pack, complain);
10643 }
10644
10645 /* Substitute into a binary left fold expression.
10646
10647 Do ths by building a single (non-empty) vector of argumnts and
10648 building the expression from those elements. */
10649
10650 static tree
10651 tsubst_binary_left_fold (tree t, tree args, tsubst_flags_t complain,
10652 tree in_decl)
10653 {
10654 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10655 if (pack == error_mark_node)
10656 return error_mark_node;
10657 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10658 if (init == error_mark_node)
10659 return error_mark_node;
10660
10661 tree vec = make_tree_vec (TREE_VEC_LENGTH (pack) + 1);
10662 TREE_VEC_ELT (vec, 0) = init;
10663 for (int i = 0; i < TREE_VEC_LENGTH (pack); ++i)
10664 TREE_VEC_ELT (vec, i + 1) = TREE_VEC_ELT (pack, i);
10665
10666 return expand_left_fold (t, vec, complain);
10667 }
10668
10669 /* Expand a PACK of arguments into a grouped as right fold.
10670 Given a pack containing elementns A0, A1, ..., and an
10671 operator @, this builds the expression:
10672
10673 A0@ ... (An-2 @ (An-1 @ An))
10674
10675 Note that PACK must not be empty.
10676
10677 The operator is defined by the original fold expression T. */
10678
10679 tree
10680 expand_right_fold (tree t, tree pack, tsubst_flags_t complain)
10681 {
10682 // Build the expression.
10683 int n = TREE_VEC_LENGTH (pack);
10684 tree right = TREE_VEC_ELT (pack, n - 1);
10685 for (--n; n != 0; --n)
10686 {
10687 tree left = TREE_VEC_ELT (pack, n - 1);
10688 right = fold_expression (t, left, right, complain);
10689 }
10690 return right;
10691 }
10692
10693 /* Substitute into a unary right fold expression. */
10694
10695 static tree
10696 tsubst_unary_right_fold (tree t, tree args, tsubst_flags_t complain,
10697 tree in_decl)
10698 {
10699 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10700 if (pack == error_mark_node)
10701 return error_mark_node;
10702 if (TREE_VEC_LENGTH (pack) == 0)
10703 return expand_empty_fold (t, complain);
10704 else
10705 return expand_right_fold (t, pack, complain);
10706 }
10707
10708 /* Substitute into a binary right fold expression.
10709
10710 Do ths by building a single (non-empty) vector of arguments and
10711 building the expression from those elements. */
10712
10713 static tree
10714 tsubst_binary_right_fold (tree t, tree args, tsubst_flags_t complain,
10715 tree in_decl)
10716 {
10717 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10718 if (pack == error_mark_node)
10719 return error_mark_node;
10720 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10721 if (init == error_mark_node)
10722 return error_mark_node;
10723
10724 int n = TREE_VEC_LENGTH (pack);
10725 tree vec = make_tree_vec (n + 1);
10726 for (int i = 0; i < n; ++i)
10727 TREE_VEC_ELT (vec, i) = TREE_VEC_ELT (pack, i);
10728 TREE_VEC_ELT (vec, n) = init;
10729
10730 return expand_right_fold (t, vec, complain);
10731 }
10732
10733
10734 /* Substitute ARGS into T, which is an pack expansion
10735 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
10736 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
10737 (if only a partial substitution could be performed) or
10738 ERROR_MARK_NODE if there was an error. */
10739 tree
10740 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
10741 tree in_decl)
10742 {
10743 tree pattern;
10744 tree pack, packs = NULL_TREE;
10745 bool unsubstituted_packs = false;
10746 int i, len = -1;
10747 tree result;
10748 hash_map<tree, tree> *saved_local_specializations = NULL;
10749 bool need_local_specializations = false;
10750 int levels;
10751
10752 gcc_assert (PACK_EXPANSION_P (t));
10753 pattern = PACK_EXPANSION_PATTERN (t);
10754
10755 /* Add in any args remembered from an earlier partial instantiation. */
10756 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
10757
10758 levels = TMPL_ARGS_DEPTH (args);
10759
10760 /* Determine the argument packs that will instantiate the parameter
10761 packs used in the expansion expression. While we're at it,
10762 compute the number of arguments to be expanded and make sure it
10763 is consistent. */
10764 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
10765 pack = TREE_CHAIN (pack))
10766 {
10767 tree parm_pack = TREE_VALUE (pack);
10768 tree arg_pack = NULL_TREE;
10769 tree orig_arg = NULL_TREE;
10770 int level = 0;
10771
10772 if (TREE_CODE (parm_pack) == BASES)
10773 {
10774 if (BASES_DIRECT (parm_pack))
10775 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
10776 args, complain, in_decl, false));
10777 else
10778 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
10779 args, complain, in_decl, false));
10780 }
10781 if (TREE_CODE (parm_pack) == PARM_DECL)
10782 {
10783 /* We know we have correct local_specializations if this
10784 expansion is at function scope, or if we're dealing with a
10785 local parameter in a requires expression; for the latter,
10786 tsubst_requires_expr set it up appropriately. */
10787 if (PACK_EXPANSION_LOCAL_P (t) || CONSTRAINT_VAR_P (parm_pack))
10788 arg_pack = retrieve_local_specialization (parm_pack);
10789 else
10790 {
10791 /* We can't rely on local_specializations for a parameter
10792 name used later in a function declaration (such as in a
10793 late-specified return type). Even if it exists, it might
10794 have the wrong value for a recursive call. Just make a
10795 dummy decl, since it's only used for its type. */
10796 arg_pack = tsubst_decl (parm_pack, args, complain);
10797 if (arg_pack && DECL_PACK_P (arg_pack))
10798 /* Partial instantiation of the parm_pack, we can't build
10799 up an argument pack yet. */
10800 arg_pack = NULL_TREE;
10801 else
10802 arg_pack = make_fnparm_pack (arg_pack);
10803 need_local_specializations = true;
10804 }
10805 }
10806 else if (TREE_CODE (parm_pack) == FIELD_DECL)
10807 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
10808 else
10809 {
10810 int idx;
10811 template_parm_level_and_index (parm_pack, &level, &idx);
10812
10813 if (level <= levels)
10814 arg_pack = TMPL_ARG (args, level, idx);
10815 }
10816
10817 orig_arg = arg_pack;
10818 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
10819 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
10820
10821 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
10822 /* This can only happen if we forget to expand an argument
10823 pack somewhere else. Just return an error, silently. */
10824 {
10825 result = make_tree_vec (1);
10826 TREE_VEC_ELT (result, 0) = error_mark_node;
10827 return result;
10828 }
10829
10830 if (arg_pack)
10831 {
10832 int my_len =
10833 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
10834
10835 /* Don't bother trying to do a partial substitution with
10836 incomplete packs; we'll try again after deduction. */
10837 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
10838 return t;
10839
10840 if (len < 0)
10841 len = my_len;
10842 else if (len != my_len)
10843 {
10844 if (!(complain & tf_error))
10845 /* Fail quietly. */;
10846 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
10847 error ("mismatched argument pack lengths while expanding "
10848 "%<%T%>",
10849 pattern);
10850 else
10851 error ("mismatched argument pack lengths while expanding "
10852 "%<%E%>",
10853 pattern);
10854 return error_mark_node;
10855 }
10856
10857 /* Keep track of the parameter packs and their corresponding
10858 argument packs. */
10859 packs = tree_cons (parm_pack, arg_pack, packs);
10860 TREE_TYPE (packs) = orig_arg;
10861 }
10862 else
10863 {
10864 /* We can't substitute for this parameter pack. We use a flag as
10865 well as the missing_level counter because function parameter
10866 packs don't have a level. */
10867 unsubstituted_packs = true;
10868 }
10869 }
10870
10871 /* If the expansion is just T..., return the matching argument pack. */
10872 if (!unsubstituted_packs
10873 && TREE_PURPOSE (packs) == pattern)
10874 {
10875 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
10876 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
10877 || pack_expansion_args_count (args))
10878 return args;
10879 /* Otherwise use the normal path so we get convert_from_reference. */
10880 }
10881
10882 /* We cannot expand this expansion expression, because we don't have
10883 all of the argument packs we need. */
10884 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
10885 {
10886 /* We got some full packs, but we can't substitute them in until we
10887 have values for all the packs. So remember these until then. */
10888
10889 t = make_pack_expansion (pattern);
10890 PACK_EXPANSION_EXTRA_ARGS (t) = args;
10891 return t;
10892 }
10893 else if (unsubstituted_packs)
10894 {
10895 /* There were no real arguments, we're just replacing a parameter
10896 pack with another version of itself. Substitute into the
10897 pattern and return a PACK_EXPANSION_*. The caller will need to
10898 deal with that. */
10899 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
10900 t = tsubst_expr (pattern, args, complain, in_decl,
10901 /*integral_constant_expression_p=*/false);
10902 else
10903 t = tsubst (pattern, args, complain, in_decl);
10904 t = make_pack_expansion (t);
10905 return t;
10906 }
10907
10908 gcc_assert (len >= 0);
10909
10910 if (need_local_specializations)
10911 {
10912 /* We're in a late-specified return type, so create our own local
10913 specializations map; the current map is either NULL or (in the
10914 case of recursive unification) might have bindings that we don't
10915 want to use or alter. */
10916 saved_local_specializations = local_specializations;
10917 local_specializations = new hash_map<tree, tree>;
10918 }
10919
10920 /* For each argument in each argument pack, substitute into the
10921 pattern. */
10922 result = make_tree_vec (len);
10923 for (i = 0; i < len; ++i)
10924 {
10925 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
10926 i,
10927 args, complain,
10928 in_decl);
10929 TREE_VEC_ELT (result, i) = t;
10930 if (t == error_mark_node)
10931 {
10932 result = error_mark_node;
10933 break;
10934 }
10935 }
10936
10937 /* Update ARGS to restore the substitution from parameter packs to
10938 their argument packs. */
10939 for (pack = packs; pack; pack = TREE_CHAIN (pack))
10940 {
10941 tree parm = TREE_PURPOSE (pack);
10942
10943 if (TREE_CODE (parm) == PARM_DECL
10944 || TREE_CODE (parm) == FIELD_DECL)
10945 register_local_specialization (TREE_TYPE (pack), parm);
10946 else
10947 {
10948 int idx, level;
10949
10950 if (TREE_VALUE (pack) == NULL_TREE)
10951 continue;
10952
10953 template_parm_level_and_index (parm, &level, &idx);
10954
10955 /* Update the corresponding argument. */
10956 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
10957 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
10958 TREE_TYPE (pack);
10959 else
10960 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
10961 }
10962 }
10963
10964 if (need_local_specializations)
10965 {
10966 delete local_specializations;
10967 local_specializations = saved_local_specializations;
10968 }
10969
10970 return result;
10971 }
10972
10973 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
10974 TMPL. We do this using DECL_PARM_INDEX, which should work even with
10975 parameter packs; all parms generated from a function parameter pack will
10976 have the same DECL_PARM_INDEX. */
10977
10978 tree
10979 get_pattern_parm (tree parm, tree tmpl)
10980 {
10981 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
10982 tree patparm;
10983
10984 if (DECL_ARTIFICIAL (parm))
10985 {
10986 for (patparm = DECL_ARGUMENTS (pattern);
10987 patparm; patparm = DECL_CHAIN (patparm))
10988 if (DECL_ARTIFICIAL (patparm)
10989 && DECL_NAME (parm) == DECL_NAME (patparm))
10990 break;
10991 }
10992 else
10993 {
10994 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
10995 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
10996 gcc_assert (DECL_PARM_INDEX (patparm)
10997 == DECL_PARM_INDEX (parm));
10998 }
10999
11000 return patparm;
11001 }
11002
11003 /* Substitute ARGS into the vector or list of template arguments T. */
11004
11005 static tree
11006 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11007 {
11008 tree orig_t = t;
11009 int len, need_new = 0, i, expanded_len_adjust = 0, out;
11010 tree *elts;
11011
11012 if (t == error_mark_node)
11013 return error_mark_node;
11014
11015 len = TREE_VEC_LENGTH (t);
11016 elts = XALLOCAVEC (tree, len);
11017
11018 for (i = 0; i < len; i++)
11019 {
11020 tree orig_arg = TREE_VEC_ELT (t, i);
11021 tree new_arg;
11022
11023 if (TREE_CODE (orig_arg) == TREE_VEC)
11024 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
11025 else if (PACK_EXPANSION_P (orig_arg))
11026 {
11027 /* Substitute into an expansion expression. */
11028 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
11029
11030 if (TREE_CODE (new_arg) == TREE_VEC)
11031 /* Add to the expanded length adjustment the number of
11032 expanded arguments. We subtract one from this
11033 measurement, because the argument pack expression
11034 itself is already counted as 1 in
11035 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
11036 the argument pack is empty. */
11037 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
11038 }
11039 else if (ARGUMENT_PACK_P (orig_arg))
11040 {
11041 /* Substitute into each of the arguments. */
11042 new_arg = TYPE_P (orig_arg)
11043 ? cxx_make_type (TREE_CODE (orig_arg))
11044 : make_node (TREE_CODE (orig_arg));
11045
11046 SET_ARGUMENT_PACK_ARGS (
11047 new_arg,
11048 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
11049 args, complain, in_decl));
11050
11051 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
11052 new_arg = error_mark_node;
11053
11054 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
11055 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
11056 complain, in_decl);
11057 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
11058
11059 if (TREE_TYPE (new_arg) == error_mark_node)
11060 new_arg = error_mark_node;
11061 }
11062 }
11063 else
11064 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
11065
11066 if (new_arg == error_mark_node)
11067 return error_mark_node;
11068
11069 elts[i] = new_arg;
11070 if (new_arg != orig_arg)
11071 need_new = 1;
11072 }
11073
11074 if (!need_new)
11075 return t;
11076
11077 /* Make space for the expanded arguments coming from template
11078 argument packs. */
11079 t = make_tree_vec (len + expanded_len_adjust);
11080 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
11081 arguments for a member template.
11082 In that case each TREE_VEC in ORIG_T represents a level of template
11083 arguments, and ORIG_T won't carry any non defaulted argument count.
11084 It will rather be the nested TREE_VECs that will carry one.
11085 In other words, ORIG_T carries a non defaulted argument count only
11086 if it doesn't contain any nested TREE_VEC. */
11087 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
11088 {
11089 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
11090 count += expanded_len_adjust;
11091 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
11092 }
11093 for (i = 0, out = 0; i < len; i++)
11094 {
11095 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
11096 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
11097 && TREE_CODE (elts[i]) == TREE_VEC)
11098 {
11099 int idx;
11100
11101 /* Now expand the template argument pack "in place". */
11102 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
11103 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
11104 }
11105 else
11106 {
11107 TREE_VEC_ELT (t, out) = elts[i];
11108 out++;
11109 }
11110 }
11111
11112 return t;
11113 }
11114
11115 /* Return the result of substituting ARGS into the template parameters
11116 given by PARMS. If there are m levels of ARGS and m + n levels of
11117 PARMS, then the result will contain n levels of PARMS. For
11118 example, if PARMS is `template <class T> template <class U>
11119 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
11120 result will be `template <int*, double, class V>'. */
11121
11122 static tree
11123 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
11124 {
11125 tree r = NULL_TREE;
11126 tree* new_parms;
11127
11128 /* When substituting into a template, we must set
11129 PROCESSING_TEMPLATE_DECL as the template parameters may be
11130 dependent if they are based on one-another, and the dependency
11131 predicates are short-circuit outside of templates. */
11132 ++processing_template_decl;
11133
11134 for (new_parms = &r;
11135 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
11136 new_parms = &(TREE_CHAIN (*new_parms)),
11137 parms = TREE_CHAIN (parms))
11138 {
11139 tree new_vec =
11140 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
11141 int i;
11142
11143 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
11144 {
11145 tree tuple;
11146
11147 if (parms == error_mark_node)
11148 continue;
11149
11150 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
11151
11152 if (tuple == error_mark_node)
11153 continue;
11154
11155 TREE_VEC_ELT (new_vec, i) =
11156 tsubst_template_parm (tuple, args, complain);
11157 }
11158
11159 *new_parms =
11160 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
11161 - TMPL_ARGS_DEPTH (args)),
11162 new_vec, NULL_TREE);
11163 }
11164
11165 --processing_template_decl;
11166
11167 return r;
11168 }
11169
11170 /* Return the result of substituting ARGS into one template parameter
11171 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
11172 parameter and which TREE_PURPOSE is the default argument of the
11173 template parameter. */
11174
11175 static tree
11176 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
11177 {
11178 tree default_value, parm_decl;
11179
11180 if (args == NULL_TREE
11181 || t == NULL_TREE
11182 || t == error_mark_node)
11183 return t;
11184
11185 gcc_assert (TREE_CODE (t) == TREE_LIST);
11186
11187 default_value = TREE_PURPOSE (t);
11188 parm_decl = TREE_VALUE (t);
11189
11190 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
11191 if (TREE_CODE (parm_decl) == PARM_DECL
11192 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
11193 parm_decl = error_mark_node;
11194 default_value = tsubst_template_arg (default_value, args,
11195 complain, NULL_TREE);
11196
11197 return build_tree_list (default_value, parm_decl);
11198 }
11199
11200 /* Substitute the ARGS into the indicated aggregate (or enumeration)
11201 type T. If T is not an aggregate or enumeration type, it is
11202 handled as if by tsubst. IN_DECL is as for tsubst. If
11203 ENTERING_SCOPE is nonzero, T is the context for a template which
11204 we are presently tsubst'ing. Return the substituted value. */
11205
11206 static tree
11207 tsubst_aggr_type (tree t,
11208 tree args,
11209 tsubst_flags_t complain,
11210 tree in_decl,
11211 int entering_scope)
11212 {
11213 if (t == NULL_TREE)
11214 return NULL_TREE;
11215
11216 switch (TREE_CODE (t))
11217 {
11218 case RECORD_TYPE:
11219 if (TYPE_PTRMEMFUNC_P (t))
11220 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
11221
11222 /* Else fall through. */
11223 case ENUMERAL_TYPE:
11224 case UNION_TYPE:
11225 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
11226 {
11227 tree argvec;
11228 tree context;
11229 tree r;
11230 int saved_unevaluated_operand;
11231 int saved_inhibit_evaluation_warnings;
11232
11233 /* In "sizeof(X<I>)" we need to evaluate "I". */
11234 saved_unevaluated_operand = cp_unevaluated_operand;
11235 cp_unevaluated_operand = 0;
11236 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
11237 c_inhibit_evaluation_warnings = 0;
11238
11239 /* First, determine the context for the type we are looking
11240 up. */
11241 context = TYPE_CONTEXT (t);
11242 if (context && TYPE_P (context))
11243 {
11244 context = tsubst_aggr_type (context, args, complain,
11245 in_decl, /*entering_scope=*/1);
11246 /* If context is a nested class inside a class template,
11247 it may still need to be instantiated (c++/33959). */
11248 context = complete_type (context);
11249 }
11250
11251 /* Then, figure out what arguments are appropriate for the
11252 type we are trying to find. For example, given:
11253
11254 template <class T> struct S;
11255 template <class T, class U> void f(T, U) { S<U> su; }
11256
11257 and supposing that we are instantiating f<int, double>,
11258 then our ARGS will be {int, double}, but, when looking up
11259 S we only want {double}. */
11260 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
11261 complain, in_decl);
11262 if (argvec == error_mark_node)
11263 r = error_mark_node;
11264 else
11265 {
11266 r = lookup_template_class (t, argvec, in_decl, context,
11267 entering_scope, complain);
11268 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11269 }
11270
11271 cp_unevaluated_operand = saved_unevaluated_operand;
11272 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
11273
11274 return r;
11275 }
11276 else
11277 /* This is not a template type, so there's nothing to do. */
11278 return t;
11279
11280 default:
11281 return tsubst (t, args, complain, in_decl);
11282 }
11283 }
11284
11285 /* Substitute into the default argument ARG (a default argument for
11286 FN), which has the indicated TYPE. */
11287
11288 tree
11289 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
11290 {
11291 tree saved_class_ptr = NULL_TREE;
11292 tree saved_class_ref = NULL_TREE;
11293 int errs = errorcount + sorrycount;
11294
11295 /* This can happen in invalid code. */
11296 if (TREE_CODE (arg) == DEFAULT_ARG)
11297 return arg;
11298
11299 /* This default argument came from a template. Instantiate the
11300 default argument here, not in tsubst. In the case of
11301 something like:
11302
11303 template <class T>
11304 struct S {
11305 static T t();
11306 void f(T = t());
11307 };
11308
11309 we must be careful to do name lookup in the scope of S<T>,
11310 rather than in the current class. */
11311 push_access_scope (fn);
11312 /* The "this" pointer is not valid in a default argument. */
11313 if (cfun)
11314 {
11315 saved_class_ptr = current_class_ptr;
11316 cp_function_chain->x_current_class_ptr = NULL_TREE;
11317 saved_class_ref = current_class_ref;
11318 cp_function_chain->x_current_class_ref = NULL_TREE;
11319 }
11320
11321 push_deferring_access_checks(dk_no_deferred);
11322 /* The default argument expression may cause implicitly defined
11323 member functions to be synthesized, which will result in garbage
11324 collection. We must treat this situation as if we were within
11325 the body of function so as to avoid collecting live data on the
11326 stack. */
11327 ++function_depth;
11328 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
11329 complain, NULL_TREE,
11330 /*integral_constant_expression_p=*/false);
11331 --function_depth;
11332 pop_deferring_access_checks();
11333
11334 /* Restore the "this" pointer. */
11335 if (cfun)
11336 {
11337 cp_function_chain->x_current_class_ptr = saved_class_ptr;
11338 cp_function_chain->x_current_class_ref = saved_class_ref;
11339 }
11340
11341 if (errorcount+sorrycount > errs
11342 && (complain & tf_warning_or_error))
11343 inform (input_location,
11344 " when instantiating default argument for call to %D", fn);
11345
11346 /* Make sure the default argument is reasonable. */
11347 arg = check_default_argument (type, arg, complain);
11348
11349 pop_access_scope (fn);
11350
11351 return arg;
11352 }
11353
11354 /* Substitute into all the default arguments for FN. */
11355
11356 static void
11357 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
11358 {
11359 tree arg;
11360 tree tmpl_args;
11361
11362 tmpl_args = DECL_TI_ARGS (fn);
11363
11364 /* If this function is not yet instantiated, we certainly don't need
11365 its default arguments. */
11366 if (uses_template_parms (tmpl_args))
11367 return;
11368 /* Don't do this again for clones. */
11369 if (DECL_CLONED_FUNCTION_P (fn))
11370 return;
11371
11372 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
11373 arg;
11374 arg = TREE_CHAIN (arg))
11375 if (TREE_PURPOSE (arg))
11376 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
11377 TREE_VALUE (arg),
11378 TREE_PURPOSE (arg),
11379 complain);
11380 }
11381
11382 /* Substitute the ARGS into the T, which is a _DECL. Return the
11383 result of the substitution. Issue error and warning messages under
11384 control of COMPLAIN. */
11385
11386 static tree
11387 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
11388 {
11389 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
11390 location_t saved_loc;
11391 tree r = NULL_TREE;
11392 tree in_decl = t;
11393 hashval_t hash = 0;
11394
11395 /* Set the filename and linenumber to improve error-reporting. */
11396 saved_loc = input_location;
11397 input_location = DECL_SOURCE_LOCATION (t);
11398
11399 switch (TREE_CODE (t))
11400 {
11401 case TEMPLATE_DECL:
11402 {
11403 /* We can get here when processing a member function template,
11404 member class template, or template template parameter. */
11405 tree decl = DECL_TEMPLATE_RESULT (t);
11406 tree spec;
11407 tree tmpl_args;
11408 tree full_args;
11409
11410 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
11411 {
11412 /* Template template parameter is treated here. */
11413 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11414 if (new_type == error_mark_node)
11415 r = error_mark_node;
11416 /* If we get a real template back, return it. This can happen in
11417 the context of most_specialized_partial_spec. */
11418 else if (TREE_CODE (new_type) == TEMPLATE_DECL)
11419 r = new_type;
11420 else
11421 /* The new TEMPLATE_DECL was built in
11422 reduce_template_parm_level. */
11423 r = TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (new_type);
11424 break;
11425 }
11426
11427 /* We might already have an instance of this template.
11428 The ARGS are for the surrounding class type, so the
11429 full args contain the tsubst'd args for the context,
11430 plus the innermost args from the template decl. */
11431 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
11432 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
11433 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
11434 /* Because this is a template, the arguments will still be
11435 dependent, even after substitution. If
11436 PROCESSING_TEMPLATE_DECL is not set, the dependency
11437 predicates will short-circuit. */
11438 ++processing_template_decl;
11439 full_args = tsubst_template_args (tmpl_args, args,
11440 complain, in_decl);
11441 --processing_template_decl;
11442 if (full_args == error_mark_node)
11443 RETURN (error_mark_node);
11444
11445 /* If this is a default template template argument,
11446 tsubst might not have changed anything. */
11447 if (full_args == tmpl_args)
11448 RETURN (t);
11449
11450 hash = hash_tmpl_and_args (t, full_args);
11451 spec = retrieve_specialization (t, full_args, hash);
11452 if (spec != NULL_TREE)
11453 {
11454 r = spec;
11455 break;
11456 }
11457
11458 /* Make a new template decl. It will be similar to the
11459 original, but will record the current template arguments.
11460 We also create a new function declaration, which is just
11461 like the old one, but points to this new template, rather
11462 than the old one. */
11463 r = copy_decl (t);
11464 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
11465 DECL_CHAIN (r) = NULL_TREE;
11466
11467 // Build new template info linking to the original template decl.
11468 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11469
11470 if (TREE_CODE (decl) == TYPE_DECL
11471 && !TYPE_DECL_ALIAS_P (decl))
11472 {
11473 tree new_type;
11474 ++processing_template_decl;
11475 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11476 --processing_template_decl;
11477 if (new_type == error_mark_node)
11478 RETURN (error_mark_node);
11479
11480 TREE_TYPE (r) = new_type;
11481 /* For a partial specialization, we need to keep pointing to
11482 the primary template. */
11483 if (!DECL_TEMPLATE_SPECIALIZATION (t))
11484 CLASSTYPE_TI_TEMPLATE (new_type) = r;
11485 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
11486 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
11487 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
11488 }
11489 else
11490 {
11491 tree new_decl;
11492 ++processing_template_decl;
11493 new_decl = tsubst (decl, args, complain, in_decl);
11494 --processing_template_decl;
11495 if (new_decl == error_mark_node)
11496 RETURN (error_mark_node);
11497
11498 DECL_TEMPLATE_RESULT (r) = new_decl;
11499 DECL_TI_TEMPLATE (new_decl) = r;
11500 TREE_TYPE (r) = TREE_TYPE (new_decl);
11501 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
11502 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
11503 }
11504
11505 SET_DECL_IMPLICIT_INSTANTIATION (r);
11506 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
11507 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
11508
11509 /* The template parameters for this new template are all the
11510 template parameters for the old template, except the
11511 outermost level of parameters. */
11512 DECL_TEMPLATE_PARMS (r)
11513 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
11514 complain);
11515
11516 if (PRIMARY_TEMPLATE_P (t))
11517 DECL_PRIMARY_TEMPLATE (r) = r;
11518
11519 if (TREE_CODE (decl) != TYPE_DECL && !VAR_P (decl))
11520 /* Record this non-type partial instantiation. */
11521 register_specialization (r, t,
11522 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
11523 false, hash);
11524 }
11525 break;
11526
11527 case FUNCTION_DECL:
11528 {
11529 tree ctx;
11530 tree argvec = NULL_TREE;
11531 tree *friends;
11532 tree gen_tmpl;
11533 tree type;
11534 int member;
11535 int args_depth;
11536 int parms_depth;
11537
11538 /* Nobody should be tsubst'ing into non-template functions. */
11539 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
11540
11541 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
11542 {
11543 tree spec;
11544 bool dependent_p;
11545
11546 /* If T is not dependent, just return it. We have to
11547 increment PROCESSING_TEMPLATE_DECL because
11548 value_dependent_expression_p assumes that nothing is
11549 dependent when PROCESSING_TEMPLATE_DECL is zero. */
11550 ++processing_template_decl;
11551 dependent_p = value_dependent_expression_p (t);
11552 --processing_template_decl;
11553 if (!dependent_p)
11554 RETURN (t);
11555
11556 /* Calculate the most general template of which R is a
11557 specialization, and the complete set of arguments used to
11558 specialize R. */
11559 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
11560 argvec = tsubst_template_args (DECL_TI_ARGS
11561 (DECL_TEMPLATE_RESULT
11562 (DECL_TI_TEMPLATE (t))),
11563 args, complain, in_decl);
11564 if (argvec == error_mark_node)
11565 RETURN (error_mark_node);
11566
11567 /* Check to see if we already have this specialization. */
11568 hash = hash_tmpl_and_args (gen_tmpl, argvec);
11569 spec = retrieve_specialization (gen_tmpl, argvec, hash);
11570
11571 if (spec)
11572 {
11573 r = spec;
11574 break;
11575 }
11576
11577 /* We can see more levels of arguments than parameters if
11578 there was a specialization of a member template, like
11579 this:
11580
11581 template <class T> struct S { template <class U> void f(); }
11582 template <> template <class U> void S<int>::f(U);
11583
11584 Here, we'll be substituting into the specialization,
11585 because that's where we can find the code we actually
11586 want to generate, but we'll have enough arguments for
11587 the most general template.
11588
11589 We also deal with the peculiar case:
11590
11591 template <class T> struct S {
11592 template <class U> friend void f();
11593 };
11594 template <class U> void f() {}
11595 template S<int>;
11596 template void f<double>();
11597
11598 Here, the ARGS for the instantiation of will be {int,
11599 double}. But, we only need as many ARGS as there are
11600 levels of template parameters in CODE_PATTERN. We are
11601 careful not to get fooled into reducing the ARGS in
11602 situations like:
11603
11604 template <class T> struct S { template <class U> void f(U); }
11605 template <class T> template <> void S<T>::f(int) {}
11606
11607 which we can spot because the pattern will be a
11608 specialization in this case. */
11609 args_depth = TMPL_ARGS_DEPTH (args);
11610 parms_depth =
11611 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
11612 if (args_depth > parms_depth
11613 && !DECL_TEMPLATE_SPECIALIZATION (t))
11614 args = get_innermost_template_args (args, parms_depth);
11615 }
11616 else
11617 {
11618 /* This special case arises when we have something like this:
11619
11620 template <class T> struct S {
11621 friend void f<int>(int, double);
11622 };
11623
11624 Here, the DECL_TI_TEMPLATE for the friend declaration
11625 will be an IDENTIFIER_NODE. We are being called from
11626 tsubst_friend_function, and we want only to create a
11627 new decl (R) with appropriate types so that we can call
11628 determine_specialization. */
11629 gen_tmpl = NULL_TREE;
11630 }
11631
11632 if (DECL_CLASS_SCOPE_P (t))
11633 {
11634 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
11635 member = 2;
11636 else
11637 member = 1;
11638 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
11639 complain, t, /*entering_scope=*/1);
11640 }
11641 else
11642 {
11643 member = 0;
11644 ctx = DECL_CONTEXT (t);
11645 }
11646 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11647 if (type == error_mark_node)
11648 RETURN (error_mark_node);
11649
11650 /* If we hit excessive deduction depth, the type is bogus even if
11651 it isn't error_mark_node, so don't build a decl. */
11652 if (excessive_deduction_depth)
11653 RETURN (error_mark_node);
11654
11655 /* We do NOT check for matching decls pushed separately at this
11656 point, as they may not represent instantiations of this
11657 template, and in any case are considered separate under the
11658 discrete model. */
11659 r = copy_decl (t);
11660 DECL_USE_TEMPLATE (r) = 0;
11661 TREE_TYPE (r) = type;
11662 /* Clear out the mangled name and RTL for the instantiation. */
11663 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
11664 SET_DECL_RTL (r, NULL);
11665 /* Leave DECL_INITIAL set on deleted instantiations. */
11666 if (!DECL_DELETED_FN (r))
11667 DECL_INITIAL (r) = NULL_TREE;
11668 DECL_CONTEXT (r) = ctx;
11669
11670 /* OpenMP UDRs have the only argument a reference to the declared
11671 type. We want to diagnose if the declared type is a reference,
11672 which is invalid, but as references to references are usually
11673 quietly merged, diagnose it here. */
11674 if (DECL_OMP_DECLARE_REDUCTION_P (t))
11675 {
11676 tree argtype
11677 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
11678 argtype = tsubst (argtype, args, complain, in_decl);
11679 if (TREE_CODE (argtype) == REFERENCE_TYPE)
11680 error_at (DECL_SOURCE_LOCATION (t),
11681 "reference type %qT in "
11682 "%<#pragma omp declare reduction%>", argtype);
11683 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
11684 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
11685 argtype);
11686 }
11687
11688 if (member && DECL_CONV_FN_P (r))
11689 /* Type-conversion operator. Reconstruct the name, in
11690 case it's the name of one of the template's parameters. */
11691 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
11692
11693 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
11694 complain, t);
11695 DECL_RESULT (r) = NULL_TREE;
11696
11697 TREE_STATIC (r) = 0;
11698 TREE_PUBLIC (r) = TREE_PUBLIC (t);
11699 DECL_EXTERNAL (r) = 1;
11700 /* If this is an instantiation of a function with internal
11701 linkage, we already know what object file linkage will be
11702 assigned to the instantiation. */
11703 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
11704 DECL_DEFER_OUTPUT (r) = 0;
11705 DECL_CHAIN (r) = NULL_TREE;
11706 DECL_PENDING_INLINE_INFO (r) = 0;
11707 DECL_PENDING_INLINE_P (r) = 0;
11708 DECL_SAVED_TREE (r) = NULL_TREE;
11709 DECL_STRUCT_FUNCTION (r) = NULL;
11710 TREE_USED (r) = 0;
11711 /* We'll re-clone as appropriate in instantiate_template. */
11712 DECL_CLONED_FUNCTION (r) = NULL_TREE;
11713
11714 /* If we aren't complaining now, return on error before we register
11715 the specialization so that we'll complain eventually. */
11716 if ((complain & tf_error) == 0
11717 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11718 && !grok_op_properties (r, /*complain=*/false))
11719 RETURN (error_mark_node);
11720
11721 /* When instantiating a constrained member, substitute
11722 into the constraints to create a new constraint. */
11723 if (tree ci = get_constraints (t))
11724 if (member)
11725 {
11726 ci = tsubst_constraint_info (ci, argvec, complain, NULL_TREE);
11727 set_constraints (r, ci);
11728 }
11729
11730 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
11731 this in the special friend case mentioned above where
11732 GEN_TMPL is NULL. */
11733 if (gen_tmpl)
11734 {
11735 DECL_TEMPLATE_INFO (r)
11736 = build_template_info (gen_tmpl, argvec);
11737 SET_DECL_IMPLICIT_INSTANTIATION (r);
11738
11739 tree new_r
11740 = register_specialization (r, gen_tmpl, argvec, false, hash);
11741 if (new_r != r)
11742 /* We instantiated this while substituting into
11743 the type earlier (template/friend54.C). */
11744 RETURN (new_r);
11745
11746 /* We're not supposed to instantiate default arguments
11747 until they are called, for a template. But, for a
11748 declaration like:
11749
11750 template <class T> void f ()
11751 { extern void g(int i = T()); }
11752
11753 we should do the substitution when the template is
11754 instantiated. We handle the member function case in
11755 instantiate_class_template since the default arguments
11756 might refer to other members of the class. */
11757 if (!member
11758 && !PRIMARY_TEMPLATE_P (gen_tmpl)
11759 && !uses_template_parms (argvec))
11760 tsubst_default_arguments (r, complain);
11761 }
11762 else
11763 DECL_TEMPLATE_INFO (r) = NULL_TREE;
11764
11765 /* Copy the list of befriending classes. */
11766 for (friends = &DECL_BEFRIENDING_CLASSES (r);
11767 *friends;
11768 friends = &TREE_CHAIN (*friends))
11769 {
11770 *friends = copy_node (*friends);
11771 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
11772 args, complain,
11773 in_decl);
11774 }
11775
11776 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
11777 {
11778 maybe_retrofit_in_chrg (r);
11779 if (DECL_CONSTRUCTOR_P (r))
11780 grok_ctor_properties (ctx, r);
11781 if (DECL_INHERITED_CTOR_BASE (r))
11782 deduce_inheriting_ctor (r);
11783 /* If this is an instantiation of a member template, clone it.
11784 If it isn't, that'll be handled by
11785 clone_constructors_and_destructors. */
11786 if (PRIMARY_TEMPLATE_P (gen_tmpl))
11787 clone_function_decl (r, /*update_method_vec_p=*/0);
11788 }
11789 else if ((complain & tf_error) != 0
11790 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11791 && !grok_op_properties (r, /*complain=*/true))
11792 RETURN (error_mark_node);
11793
11794 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
11795 SET_DECL_FRIEND_CONTEXT (r,
11796 tsubst (DECL_FRIEND_CONTEXT (t),
11797 args, complain, in_decl));
11798
11799 /* Possibly limit visibility based on template args. */
11800 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
11801 if (DECL_VISIBILITY_SPECIFIED (t))
11802 {
11803 DECL_VISIBILITY_SPECIFIED (r) = 0;
11804 DECL_ATTRIBUTES (r)
11805 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
11806 }
11807 determine_visibility (r);
11808 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
11809 && !processing_template_decl)
11810 defaulted_late_check (r);
11811
11812 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11813 args, complain, in_decl);
11814 }
11815 break;
11816
11817 case PARM_DECL:
11818 {
11819 tree type = NULL_TREE;
11820 int i, len = 1;
11821 tree expanded_types = NULL_TREE;
11822 tree prev_r = NULL_TREE;
11823 tree first_r = NULL_TREE;
11824
11825 if (DECL_PACK_P (t))
11826 {
11827 /* If there is a local specialization that isn't a
11828 parameter pack, it means that we're doing a "simple"
11829 substitution from inside tsubst_pack_expansion. Just
11830 return the local specialization (which will be a single
11831 parm). */
11832 tree spec = retrieve_local_specialization (t);
11833 if (spec
11834 && TREE_CODE (spec) == PARM_DECL
11835 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
11836 RETURN (spec);
11837
11838 /* Expand the TYPE_PACK_EXPANSION that provides the types for
11839 the parameters in this function parameter pack. */
11840 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11841 complain, in_decl);
11842 if (TREE_CODE (expanded_types) == TREE_VEC)
11843 {
11844 len = TREE_VEC_LENGTH (expanded_types);
11845
11846 /* Zero-length parameter packs are boring. Just substitute
11847 into the chain. */
11848 if (len == 0)
11849 RETURN (tsubst (TREE_CHAIN (t), args, complain,
11850 TREE_CHAIN (t)));
11851 }
11852 else
11853 {
11854 /* All we did was update the type. Make a note of that. */
11855 type = expanded_types;
11856 expanded_types = NULL_TREE;
11857 }
11858 }
11859
11860 /* Loop through all of the parameters we'll build. When T is
11861 a function parameter pack, LEN is the number of expanded
11862 types in EXPANDED_TYPES; otherwise, LEN is 1. */
11863 r = NULL_TREE;
11864 for (i = 0; i < len; ++i)
11865 {
11866 prev_r = r;
11867 r = copy_node (t);
11868 if (DECL_TEMPLATE_PARM_P (t))
11869 SET_DECL_TEMPLATE_PARM_P (r);
11870
11871 if (expanded_types)
11872 /* We're on the Ith parameter of the function parameter
11873 pack. */
11874 {
11875 /* Get the Ith type. */
11876 type = TREE_VEC_ELT (expanded_types, i);
11877
11878 /* Rename the parameter to include the index. */
11879 DECL_NAME (r)
11880 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11881 }
11882 else if (!type)
11883 /* We're dealing with a normal parameter. */
11884 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11885
11886 type = type_decays_to (type);
11887 TREE_TYPE (r) = type;
11888 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11889
11890 if (DECL_INITIAL (r))
11891 {
11892 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
11893 DECL_INITIAL (r) = TREE_TYPE (r);
11894 else
11895 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
11896 complain, in_decl);
11897 }
11898
11899 DECL_CONTEXT (r) = NULL_TREE;
11900
11901 if (!DECL_TEMPLATE_PARM_P (r))
11902 DECL_ARG_TYPE (r) = type_passed_as (type);
11903
11904 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11905 args, complain, in_decl);
11906
11907 /* Keep track of the first new parameter we
11908 generate. That's what will be returned to the
11909 caller. */
11910 if (!first_r)
11911 first_r = r;
11912
11913 /* Build a proper chain of parameters when substituting
11914 into a function parameter pack. */
11915 if (prev_r)
11916 DECL_CHAIN (prev_r) = r;
11917 }
11918
11919 /* If cp_unevaluated_operand is set, we're just looking for a
11920 single dummy parameter, so don't keep going. */
11921 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
11922 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
11923 complain, DECL_CHAIN (t));
11924
11925 /* FIRST_R contains the start of the chain we've built. */
11926 r = first_r;
11927 }
11928 break;
11929
11930 case FIELD_DECL:
11931 {
11932 tree type = NULL_TREE;
11933 tree vec = NULL_TREE;
11934 tree expanded_types = NULL_TREE;
11935 int len = 1;
11936
11937 if (PACK_EXPANSION_P (TREE_TYPE (t)))
11938 {
11939 /* This field is a lambda capture pack. Return a TREE_VEC of
11940 the expanded fields to instantiate_class_template_1 and
11941 store them in the specializations hash table as a
11942 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
11943 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11944 complain, in_decl);
11945 if (TREE_CODE (expanded_types) == TREE_VEC)
11946 {
11947 len = TREE_VEC_LENGTH (expanded_types);
11948 vec = make_tree_vec (len);
11949 }
11950 else
11951 {
11952 /* All we did was update the type. Make a note of that. */
11953 type = expanded_types;
11954 expanded_types = NULL_TREE;
11955 }
11956 }
11957
11958 for (int i = 0; i < len; ++i)
11959 {
11960 r = copy_decl (t);
11961 if (expanded_types)
11962 {
11963 type = TREE_VEC_ELT (expanded_types, i);
11964 DECL_NAME (r)
11965 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11966 }
11967 else if (!type)
11968 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11969
11970 if (type == error_mark_node)
11971 RETURN (error_mark_node);
11972 TREE_TYPE (r) = type;
11973 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11974
11975 if (DECL_C_BIT_FIELD (r))
11976 /* For bit-fields, DECL_INITIAL gives the number of bits. For
11977 non-bit-fields DECL_INITIAL is a non-static data member
11978 initializer, which gets deferred instantiation. */
11979 DECL_INITIAL (r)
11980 = tsubst_expr (DECL_INITIAL (t), args,
11981 complain, in_decl,
11982 /*integral_constant_expression_p=*/true);
11983 else if (DECL_INITIAL (t))
11984 {
11985 /* Set up DECL_TEMPLATE_INFO so that we can get at the
11986 NSDMI in perform_member_init. Still set DECL_INITIAL
11987 so that we know there is one. */
11988 DECL_INITIAL (r) = void_node;
11989 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
11990 retrofit_lang_decl (r);
11991 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11992 }
11993 /* We don't have to set DECL_CONTEXT here; it is set by
11994 finish_member_declaration. */
11995 DECL_CHAIN (r) = NULL_TREE;
11996
11997 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11998 args, complain, in_decl);
11999
12000 if (vec)
12001 TREE_VEC_ELT (vec, i) = r;
12002 }
12003
12004 if (vec)
12005 {
12006 r = vec;
12007 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
12008 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
12009 SET_ARGUMENT_PACK_ARGS (pack, vec);
12010 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
12011 TREE_TYPE (pack) = tpack;
12012 register_specialization (pack, t, args, false, 0);
12013 }
12014 }
12015 break;
12016
12017 case USING_DECL:
12018 /* We reach here only for member using decls. We also need to check
12019 uses_template_parms because DECL_DEPENDENT_P is not set for a
12020 using-declaration that designates a member of the current
12021 instantiation (c++/53549). */
12022 if (DECL_DEPENDENT_P (t)
12023 || uses_template_parms (USING_DECL_SCOPE (t)))
12024 {
12025 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
12026 complain, in_decl);
12027 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
12028 r = do_class_using_decl (inst_scope, name);
12029 if (!r)
12030 r = error_mark_node;
12031 else
12032 {
12033 TREE_PROTECTED (r) = TREE_PROTECTED (t);
12034 TREE_PRIVATE (r) = TREE_PRIVATE (t);
12035 }
12036 }
12037 else
12038 {
12039 r = copy_node (t);
12040 DECL_CHAIN (r) = NULL_TREE;
12041 }
12042 break;
12043
12044 case TYPE_DECL:
12045 case VAR_DECL:
12046 {
12047 tree argvec = NULL_TREE;
12048 tree gen_tmpl = NULL_TREE;
12049 tree spec;
12050 tree tmpl = NULL_TREE;
12051 tree ctx;
12052 tree type = NULL_TREE;
12053 bool local_p;
12054
12055 if (TREE_TYPE (t) == error_mark_node)
12056 RETURN (error_mark_node);
12057
12058 if (TREE_CODE (t) == TYPE_DECL
12059 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
12060 {
12061 /* If this is the canonical decl, we don't have to
12062 mess with instantiations, and often we can't (for
12063 typename, template type parms and such). Note that
12064 TYPE_NAME is not correct for the above test if
12065 we've copied the type for a typedef. */
12066 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12067 if (type == error_mark_node)
12068 RETURN (error_mark_node);
12069 r = TYPE_NAME (type);
12070 break;
12071 }
12072
12073 /* Check to see if we already have the specialization we
12074 need. */
12075 spec = NULL_TREE;
12076 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
12077 {
12078 /* T is a static data member or namespace-scope entity.
12079 We have to substitute into namespace-scope variables
12080 (not just variable templates) because of cases like:
12081
12082 template <class T> void f() { extern T t; }
12083
12084 where the entity referenced is not known until
12085 instantiation time. */
12086 local_p = false;
12087 ctx = DECL_CONTEXT (t);
12088 if (DECL_CLASS_SCOPE_P (t))
12089 {
12090 ctx = tsubst_aggr_type (ctx, args,
12091 complain,
12092 in_decl, /*entering_scope=*/1);
12093 /* If CTX is unchanged, then T is in fact the
12094 specialization we want. That situation occurs when
12095 referencing a static data member within in its own
12096 class. We can use pointer equality, rather than
12097 same_type_p, because DECL_CONTEXT is always
12098 canonical... */
12099 if (ctx == DECL_CONTEXT (t)
12100 /* ... unless T is a member template; in which
12101 case our caller can be willing to create a
12102 specialization of that template represented
12103 by T. */
12104 && !(DECL_TI_TEMPLATE (t)
12105 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
12106 spec = t;
12107 }
12108
12109 if (!spec)
12110 {
12111 tmpl = DECL_TI_TEMPLATE (t);
12112 gen_tmpl = most_general_template (tmpl);
12113 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
12114 if (argvec != error_mark_node)
12115 argvec = (coerce_innermost_template_parms
12116 (DECL_TEMPLATE_PARMS (gen_tmpl),
12117 argvec, t, complain,
12118 /*all*/true, /*defarg*/true));
12119 if (argvec == error_mark_node)
12120 RETURN (error_mark_node);
12121 hash = hash_tmpl_and_args (gen_tmpl, argvec);
12122 spec = retrieve_specialization (gen_tmpl, argvec, hash);
12123 }
12124 }
12125 else
12126 {
12127 /* A local variable. */
12128 local_p = true;
12129 /* Subsequent calls to pushdecl will fill this in. */
12130 ctx = NULL_TREE;
12131 spec = retrieve_local_specialization (t);
12132 }
12133 /* If we already have the specialization we need, there is
12134 nothing more to do. */
12135 if (spec)
12136 {
12137 r = spec;
12138 break;
12139 }
12140
12141 /* Create a new node for the specialization we need. */
12142 r = copy_decl (t);
12143 if (type == NULL_TREE)
12144 {
12145 if (is_typedef_decl (t))
12146 type = DECL_ORIGINAL_TYPE (t);
12147 else
12148 type = TREE_TYPE (t);
12149 if (VAR_P (t)
12150 && VAR_HAD_UNKNOWN_BOUND (t)
12151 && type != error_mark_node)
12152 type = strip_array_domain (type);
12153 type = tsubst (type, args, complain, in_decl);
12154 }
12155 if (VAR_P (r))
12156 {
12157 /* Even if the original location is out of scope, the
12158 newly substituted one is not. */
12159 DECL_DEAD_FOR_LOCAL (r) = 0;
12160 DECL_INITIALIZED_P (r) = 0;
12161 DECL_TEMPLATE_INSTANTIATED (r) = 0;
12162 if (type == error_mark_node)
12163 RETURN (error_mark_node);
12164 if (TREE_CODE (type) == FUNCTION_TYPE)
12165 {
12166 /* It may seem that this case cannot occur, since:
12167
12168 typedef void f();
12169 void g() { f x; }
12170
12171 declares a function, not a variable. However:
12172
12173 typedef void f();
12174 template <typename T> void g() { T t; }
12175 template void g<f>();
12176
12177 is an attempt to declare a variable with function
12178 type. */
12179 error ("variable %qD has function type",
12180 /* R is not yet sufficiently initialized, so we
12181 just use its name. */
12182 DECL_NAME (r));
12183 RETURN (error_mark_node);
12184 }
12185 type = complete_type (type);
12186 /* Wait until cp_finish_decl to set this again, to handle
12187 circular dependency (template/instantiate6.C). */
12188 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
12189 type = check_var_type (DECL_NAME (r), type);
12190
12191 if (DECL_HAS_VALUE_EXPR_P (t))
12192 {
12193 tree ve = DECL_VALUE_EXPR (t);
12194 ve = tsubst_expr (ve, args, complain, in_decl,
12195 /*constant_expression_p=*/false);
12196 if (REFERENCE_REF_P (ve))
12197 {
12198 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
12199 ve = TREE_OPERAND (ve, 0);
12200 }
12201 SET_DECL_VALUE_EXPR (r, ve);
12202 }
12203 if (CP_DECL_THREAD_LOCAL_P (r)
12204 && !processing_template_decl)
12205 set_decl_tls_model (r, decl_default_tls_model (r));
12206 }
12207 else if (DECL_SELF_REFERENCE_P (t))
12208 SET_DECL_SELF_REFERENCE_P (r);
12209 TREE_TYPE (r) = type;
12210 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12211 DECL_CONTEXT (r) = ctx;
12212 /* Clear out the mangled name and RTL for the instantiation. */
12213 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
12214 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12215 SET_DECL_RTL (r, NULL);
12216 /* The initializer must not be expanded until it is required;
12217 see [temp.inst]. */
12218 DECL_INITIAL (r) = NULL_TREE;
12219 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12220 SET_DECL_RTL (r, NULL);
12221 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
12222 if (VAR_P (r))
12223 {
12224 /* Possibly limit visibility based on template args. */
12225 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
12226 if (DECL_VISIBILITY_SPECIFIED (t))
12227 {
12228 DECL_VISIBILITY_SPECIFIED (r) = 0;
12229 DECL_ATTRIBUTES (r)
12230 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
12231 }
12232 determine_visibility (r);
12233 }
12234
12235 if (!local_p)
12236 {
12237 /* A static data member declaration is always marked
12238 external when it is declared in-class, even if an
12239 initializer is present. We mimic the non-template
12240 processing here. */
12241 DECL_EXTERNAL (r) = 1;
12242 if (DECL_NAMESPACE_SCOPE_P (t))
12243 DECL_NOT_REALLY_EXTERN (r) = 1;
12244
12245 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
12246 SET_DECL_IMPLICIT_INSTANTIATION (r);
12247 register_specialization (r, gen_tmpl, argvec, false, hash);
12248 }
12249 else if (!cp_unevaluated_operand)
12250 register_local_specialization (r, t);
12251
12252 DECL_CHAIN (r) = NULL_TREE;
12253
12254 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
12255 /*flags=*/0,
12256 args, complain, in_decl);
12257
12258 /* Preserve a typedef that names a type. */
12259 if (is_typedef_decl (r))
12260 {
12261 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
12262 set_underlying_type (r);
12263 if (TYPE_DECL_ALIAS_P (r) && type != error_mark_node)
12264 /* An alias template specialization can be dependent
12265 even if its underlying type is not. */
12266 TYPE_DEPENDENT_P_VALID (TREE_TYPE (r)) = false;
12267 }
12268
12269 layout_decl (r, 0);
12270 }
12271 break;
12272
12273 default:
12274 gcc_unreachable ();
12275 }
12276 #undef RETURN
12277
12278 out:
12279 /* Restore the file and line information. */
12280 input_location = saved_loc;
12281
12282 return r;
12283 }
12284
12285 /* Substitute into the ARG_TYPES of a function type.
12286 If END is a TREE_CHAIN, leave it and any following types
12287 un-substituted. */
12288
12289 static tree
12290 tsubst_arg_types (tree arg_types,
12291 tree args,
12292 tree end,
12293 tsubst_flags_t complain,
12294 tree in_decl)
12295 {
12296 tree remaining_arg_types;
12297 tree type = NULL_TREE;
12298 int i = 1;
12299 tree expanded_args = NULL_TREE;
12300 tree default_arg;
12301
12302 if (!arg_types || arg_types == void_list_node || arg_types == end)
12303 return arg_types;
12304
12305 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
12306 args, end, complain, in_decl);
12307 if (remaining_arg_types == error_mark_node)
12308 return error_mark_node;
12309
12310 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
12311 {
12312 /* For a pack expansion, perform substitution on the
12313 entire expression. Later on, we'll handle the arguments
12314 one-by-one. */
12315 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
12316 args, complain, in_decl);
12317
12318 if (TREE_CODE (expanded_args) == TREE_VEC)
12319 /* So that we'll spin through the parameters, one by one. */
12320 i = TREE_VEC_LENGTH (expanded_args);
12321 else
12322 {
12323 /* We only partially substituted into the parameter
12324 pack. Our type is TYPE_PACK_EXPANSION. */
12325 type = expanded_args;
12326 expanded_args = NULL_TREE;
12327 }
12328 }
12329
12330 while (i > 0) {
12331 --i;
12332
12333 if (expanded_args)
12334 type = TREE_VEC_ELT (expanded_args, i);
12335 else if (!type)
12336 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
12337
12338 if (type == error_mark_node)
12339 return error_mark_node;
12340 if (VOID_TYPE_P (type))
12341 {
12342 if (complain & tf_error)
12343 {
12344 error ("invalid parameter type %qT", type);
12345 if (in_decl)
12346 error ("in declaration %q+D", in_decl);
12347 }
12348 return error_mark_node;
12349 }
12350 /* DR 657. */
12351 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
12352 return error_mark_node;
12353
12354 /* Do array-to-pointer, function-to-pointer conversion, and ignore
12355 top-level qualifiers as required. */
12356 type = cv_unqualified (type_decays_to (type));
12357
12358 /* We do not substitute into default arguments here. The standard
12359 mandates that they be instantiated only when needed, which is
12360 done in build_over_call. */
12361 default_arg = TREE_PURPOSE (arg_types);
12362
12363 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
12364 {
12365 /* We've instantiated a template before its default arguments
12366 have been parsed. This can happen for a nested template
12367 class, and is not an error unless we require the default
12368 argument in a call of this function. */
12369 remaining_arg_types =
12370 tree_cons (default_arg, type, remaining_arg_types);
12371 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
12372 }
12373 else
12374 remaining_arg_types =
12375 hash_tree_cons (default_arg, type, remaining_arg_types);
12376 }
12377
12378 return remaining_arg_types;
12379 }
12380
12381 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
12382 *not* handle the exception-specification for FNTYPE, because the
12383 initial substitution of explicitly provided template parameters
12384 during argument deduction forbids substitution into the
12385 exception-specification:
12386
12387 [temp.deduct]
12388
12389 All references in the function type of the function template to the
12390 corresponding template parameters are replaced by the specified tem-
12391 plate argument values. If a substitution in a template parameter or
12392 in the function type of the function template results in an invalid
12393 type, type deduction fails. [Note: The equivalent substitution in
12394 exception specifications is done only when the function is instanti-
12395 ated, at which point a program is ill-formed if the substitution
12396 results in an invalid type.] */
12397
12398 static tree
12399 tsubst_function_type (tree t,
12400 tree args,
12401 tsubst_flags_t complain,
12402 tree in_decl)
12403 {
12404 tree return_type;
12405 tree arg_types = NULL_TREE;
12406 tree fntype;
12407
12408 /* The TYPE_CONTEXT is not used for function/method types. */
12409 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
12410
12411 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
12412 failure. */
12413 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
12414
12415 if (late_return_type_p)
12416 {
12417 /* Substitute the argument types. */
12418 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12419 complain, in_decl);
12420 if (arg_types == error_mark_node)
12421 return error_mark_node;
12422
12423 tree save_ccp = current_class_ptr;
12424 tree save_ccr = current_class_ref;
12425 tree this_type = (TREE_CODE (t) == METHOD_TYPE
12426 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
12427 bool do_inject = this_type && CLASS_TYPE_P (this_type);
12428 if (do_inject)
12429 {
12430 /* DR 1207: 'this' is in scope in the trailing return type. */
12431 inject_this_parameter (this_type, cp_type_quals (this_type));
12432 }
12433
12434 /* Substitute the return type. */
12435 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12436
12437 if (do_inject)
12438 {
12439 current_class_ptr = save_ccp;
12440 current_class_ref = save_ccr;
12441 }
12442 }
12443 else
12444 /* Substitute the return type. */
12445 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12446
12447 if (return_type == error_mark_node)
12448 return error_mark_node;
12449 /* DR 486 clarifies that creation of a function type with an
12450 invalid return type is a deduction failure. */
12451 if (TREE_CODE (return_type) == ARRAY_TYPE
12452 || TREE_CODE (return_type) == FUNCTION_TYPE)
12453 {
12454 if (complain & tf_error)
12455 {
12456 if (TREE_CODE (return_type) == ARRAY_TYPE)
12457 error ("function returning an array");
12458 else
12459 error ("function returning a function");
12460 }
12461 return error_mark_node;
12462 }
12463 /* And DR 657. */
12464 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
12465 return error_mark_node;
12466
12467 if (!late_return_type_p)
12468 {
12469 /* Substitute the argument types. */
12470 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12471 complain, in_decl);
12472 if (arg_types == error_mark_node)
12473 return error_mark_node;
12474 }
12475
12476 /* Construct a new type node and return it. */
12477 if (TREE_CODE (t) == FUNCTION_TYPE)
12478 {
12479 fntype = build_function_type (return_type, arg_types);
12480 fntype = apply_memfn_quals (fntype,
12481 type_memfn_quals (t),
12482 type_memfn_rqual (t));
12483 }
12484 else
12485 {
12486 tree r = TREE_TYPE (TREE_VALUE (arg_types));
12487 /* Don't pick up extra function qualifiers from the basetype. */
12488 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
12489 if (! MAYBE_CLASS_TYPE_P (r))
12490 {
12491 /* [temp.deduct]
12492
12493 Type deduction may fail for any of the following
12494 reasons:
12495
12496 -- Attempting to create "pointer to member of T" when T
12497 is not a class type. */
12498 if (complain & tf_error)
12499 error ("creating pointer to member function of non-class type %qT",
12500 r);
12501 return error_mark_node;
12502 }
12503
12504 fntype = build_method_type_directly (r, return_type,
12505 TREE_CHAIN (arg_types));
12506 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
12507 }
12508 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
12509
12510 if (late_return_type_p)
12511 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
12512
12513 return fntype;
12514 }
12515
12516 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
12517 ARGS into that specification, and return the substituted
12518 specification. If there is no specification, return NULL_TREE. */
12519
12520 static tree
12521 tsubst_exception_specification (tree fntype,
12522 tree args,
12523 tsubst_flags_t complain,
12524 tree in_decl,
12525 bool defer_ok)
12526 {
12527 tree specs;
12528 tree new_specs;
12529
12530 specs = TYPE_RAISES_EXCEPTIONS (fntype);
12531 new_specs = NULL_TREE;
12532 if (specs && TREE_PURPOSE (specs))
12533 {
12534 /* A noexcept-specifier. */
12535 tree expr = TREE_PURPOSE (specs);
12536 if (TREE_CODE (expr) == INTEGER_CST)
12537 new_specs = expr;
12538 else if (defer_ok)
12539 {
12540 /* Defer instantiation of noexcept-specifiers to avoid
12541 excessive instantiations (c++/49107). */
12542 new_specs = make_node (DEFERRED_NOEXCEPT);
12543 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
12544 {
12545 /* We already partially instantiated this member template,
12546 so combine the new args with the old. */
12547 DEFERRED_NOEXCEPT_PATTERN (new_specs)
12548 = DEFERRED_NOEXCEPT_PATTERN (expr);
12549 DEFERRED_NOEXCEPT_ARGS (new_specs)
12550 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
12551 }
12552 else
12553 {
12554 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
12555 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
12556 }
12557 }
12558 else
12559 new_specs = tsubst_copy_and_build
12560 (expr, args, complain, in_decl, /*function_p=*/false,
12561 /*integral_constant_expression_p=*/true);
12562 new_specs = build_noexcept_spec (new_specs, complain);
12563 }
12564 else if (specs)
12565 {
12566 if (! TREE_VALUE (specs))
12567 new_specs = specs;
12568 else
12569 while (specs)
12570 {
12571 tree spec;
12572 int i, len = 1;
12573 tree expanded_specs = NULL_TREE;
12574
12575 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
12576 {
12577 /* Expand the pack expansion type. */
12578 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
12579 args, complain,
12580 in_decl);
12581
12582 if (expanded_specs == error_mark_node)
12583 return error_mark_node;
12584 else if (TREE_CODE (expanded_specs) == TREE_VEC)
12585 len = TREE_VEC_LENGTH (expanded_specs);
12586 else
12587 {
12588 /* We're substituting into a member template, so
12589 we got a TYPE_PACK_EXPANSION back. Add that
12590 expansion and move on. */
12591 gcc_assert (TREE_CODE (expanded_specs)
12592 == TYPE_PACK_EXPANSION);
12593 new_specs = add_exception_specifier (new_specs,
12594 expanded_specs,
12595 complain);
12596 specs = TREE_CHAIN (specs);
12597 continue;
12598 }
12599 }
12600
12601 for (i = 0; i < len; ++i)
12602 {
12603 if (expanded_specs)
12604 spec = TREE_VEC_ELT (expanded_specs, i);
12605 else
12606 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
12607 if (spec == error_mark_node)
12608 return spec;
12609 new_specs = add_exception_specifier (new_specs, spec,
12610 complain);
12611 }
12612
12613 specs = TREE_CHAIN (specs);
12614 }
12615 }
12616 return new_specs;
12617 }
12618
12619 /* Take the tree structure T and replace template parameters used
12620 therein with the argument vector ARGS. IN_DECL is an associated
12621 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
12622 Issue error and warning messages under control of COMPLAIN. Note
12623 that we must be relatively non-tolerant of extensions here, in
12624 order to preserve conformance; if we allow substitutions that
12625 should not be allowed, we may allow argument deductions that should
12626 not succeed, and therefore report ambiguous overload situations
12627 where there are none. In theory, we could allow the substitution,
12628 but indicate that it should have failed, and allow our caller to
12629 make sure that the right thing happens, but we don't try to do this
12630 yet.
12631
12632 This function is used for dealing with types, decls and the like;
12633 for expressions, use tsubst_expr or tsubst_copy. */
12634
12635 tree
12636 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12637 {
12638 enum tree_code code;
12639 tree type, r = NULL_TREE;
12640
12641 if (t == NULL_TREE || t == error_mark_node
12642 || t == integer_type_node
12643 || t == void_type_node
12644 || t == char_type_node
12645 || t == unknown_type_node
12646 || TREE_CODE (t) == NAMESPACE_DECL
12647 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
12648 return t;
12649
12650 if (DECL_P (t))
12651 return tsubst_decl (t, args, complain);
12652
12653 if (args == NULL_TREE)
12654 return t;
12655
12656 code = TREE_CODE (t);
12657
12658 if (code == IDENTIFIER_NODE)
12659 type = IDENTIFIER_TYPE_VALUE (t);
12660 else
12661 type = TREE_TYPE (t);
12662
12663 gcc_assert (type != unknown_type_node);
12664
12665 /* Reuse typedefs. We need to do this to handle dependent attributes,
12666 such as attribute aligned. */
12667 if (TYPE_P (t)
12668 && typedef_variant_p (t))
12669 {
12670 tree decl = TYPE_NAME (t);
12671
12672 if (alias_template_specialization_p (t))
12673 {
12674 /* DECL represents an alias template and we want to
12675 instantiate it. */
12676 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12677 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12678 r = instantiate_alias_template (tmpl, gen_args, complain);
12679 }
12680 else if (DECL_CLASS_SCOPE_P (decl)
12681 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
12682 && uses_template_parms (DECL_CONTEXT (decl)))
12683 {
12684 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12685 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12686 r = retrieve_specialization (tmpl, gen_args, 0);
12687 }
12688 else if (DECL_FUNCTION_SCOPE_P (decl)
12689 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
12690 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
12691 r = retrieve_local_specialization (decl);
12692 else
12693 /* The typedef is from a non-template context. */
12694 return t;
12695
12696 if (r)
12697 {
12698 r = TREE_TYPE (r);
12699 r = cp_build_qualified_type_real
12700 (r, cp_type_quals (t) | cp_type_quals (r),
12701 complain | tf_ignore_bad_quals);
12702 return r;
12703 }
12704 else
12705 {
12706 /* We don't have an instantiation yet, so drop the typedef. */
12707 int quals = cp_type_quals (t);
12708 t = DECL_ORIGINAL_TYPE (decl);
12709 t = cp_build_qualified_type_real (t, quals,
12710 complain | tf_ignore_bad_quals);
12711 }
12712 }
12713
12714 if (type
12715 && code != TYPENAME_TYPE
12716 && code != TEMPLATE_TYPE_PARM
12717 && code != IDENTIFIER_NODE
12718 && code != FUNCTION_TYPE
12719 && code != METHOD_TYPE)
12720 type = tsubst (type, args, complain, in_decl);
12721 if (type == error_mark_node)
12722 return error_mark_node;
12723
12724 switch (code)
12725 {
12726 case RECORD_TYPE:
12727 case UNION_TYPE:
12728 case ENUMERAL_TYPE:
12729 return tsubst_aggr_type (t, args, complain, in_decl,
12730 /*entering_scope=*/0);
12731
12732 case ERROR_MARK:
12733 case IDENTIFIER_NODE:
12734 case VOID_TYPE:
12735 case REAL_TYPE:
12736 case COMPLEX_TYPE:
12737 case VECTOR_TYPE:
12738 case BOOLEAN_TYPE:
12739 case NULLPTR_TYPE:
12740 case LANG_TYPE:
12741 return t;
12742
12743 case INTEGER_TYPE:
12744 if (t == integer_type_node)
12745 return t;
12746
12747 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
12748 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
12749 return t;
12750
12751 {
12752 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
12753
12754 max = tsubst_expr (omax, args, complain, in_decl,
12755 /*integral_constant_expression_p=*/false);
12756
12757 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
12758 needed. */
12759 if (TREE_CODE (max) == NOP_EXPR
12760 && TREE_SIDE_EFFECTS (omax)
12761 && !TREE_TYPE (max))
12762 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
12763
12764 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
12765 with TREE_SIDE_EFFECTS that indicates this is not an integral
12766 constant expression. */
12767 if (processing_template_decl
12768 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
12769 {
12770 gcc_assert (TREE_CODE (max) == NOP_EXPR);
12771 TREE_SIDE_EFFECTS (max) = 1;
12772 }
12773
12774 return compute_array_index_type (NULL_TREE, max, complain);
12775 }
12776
12777 case TEMPLATE_TYPE_PARM:
12778 case TEMPLATE_TEMPLATE_PARM:
12779 case BOUND_TEMPLATE_TEMPLATE_PARM:
12780 case TEMPLATE_PARM_INDEX:
12781 {
12782 int idx;
12783 int level;
12784 int levels;
12785 tree arg = NULL_TREE;
12786
12787 /* Early in template argument deduction substitution, we don't
12788 want to reduce the level of 'auto', or it will be confused
12789 with a normal template parm in subsequent deduction. */
12790 if (is_auto (t) && (complain & tf_partial))
12791 return t;
12792
12793 r = NULL_TREE;
12794
12795 gcc_assert (TREE_VEC_LENGTH (args) > 0);
12796 template_parm_level_and_index (t, &level, &idx);
12797
12798 levels = TMPL_ARGS_DEPTH (args);
12799 if (level <= levels
12800 && TREE_VEC_LENGTH (TMPL_ARGS_LEVEL (args, level)) > 0)
12801 {
12802 arg = TMPL_ARG (args, level, idx);
12803
12804 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
12805 {
12806 /* See through ARGUMENT_PACK_SELECT arguments. */
12807 arg = ARGUMENT_PACK_SELECT_ARG (arg);
12808 /* If the selected argument is an expansion E, that most
12809 likely means we were called from
12810 gen_elem_of_pack_expansion_instantiation during the
12811 substituting of pack an argument pack (which Ith
12812 element is a pack expansion, where I is
12813 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
12814 In this case, the Ith element resulting from this
12815 substituting is going to be a pack expansion, which
12816 pattern is the pattern of E. Let's return the
12817 pattern of E, and
12818 gen_elem_of_pack_expansion_instantiation will
12819 build the resulting pack expansion from it. */
12820 if (PACK_EXPANSION_P (arg))
12821 {
12822 /* Make sure we aren't throwing away arg info. */
12823 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
12824 arg = PACK_EXPANSION_PATTERN (arg);
12825 }
12826 }
12827 }
12828
12829 if (arg == error_mark_node)
12830 return error_mark_node;
12831 else if (arg != NULL_TREE)
12832 {
12833 if (ARGUMENT_PACK_P (arg))
12834 /* If ARG is an argument pack, we don't actually want to
12835 perform a substitution here, because substitutions
12836 for argument packs are only done
12837 element-by-element. We can get to this point when
12838 substituting the type of a non-type template
12839 parameter pack, when that type actually contains
12840 template parameter packs from an outer template, e.g.,
12841
12842 template<typename... Types> struct A {
12843 template<Types... Values> struct B { };
12844 }; */
12845 return t;
12846
12847 if (code == TEMPLATE_TYPE_PARM)
12848 {
12849 int quals;
12850 gcc_assert (TYPE_P (arg));
12851
12852 quals = cp_type_quals (arg) | cp_type_quals (t);
12853
12854 return cp_build_qualified_type_real
12855 (arg, quals, complain | tf_ignore_bad_quals);
12856 }
12857 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
12858 {
12859 /* We are processing a type constructed from a
12860 template template parameter. */
12861 tree argvec = tsubst (TYPE_TI_ARGS (t),
12862 args, complain, in_decl);
12863 if (argvec == error_mark_node)
12864 return error_mark_node;
12865
12866 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
12867 || TREE_CODE (arg) == TEMPLATE_DECL
12868 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
12869
12870 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
12871 /* Consider this code:
12872
12873 template <template <class> class Template>
12874 struct Internal {
12875 template <class Arg> using Bind = Template<Arg>;
12876 };
12877
12878 template <template <class> class Template, class Arg>
12879 using Instantiate = Template<Arg>; //#0
12880
12881 template <template <class> class Template,
12882 class Argument>
12883 using Bind =
12884 Instantiate<Internal<Template>::template Bind,
12885 Argument>; //#1
12886
12887 When #1 is parsed, the
12888 BOUND_TEMPLATE_TEMPLATE_PARM representing the
12889 parameter `Template' in #0 matches the
12890 UNBOUND_CLASS_TEMPLATE representing the argument
12891 `Internal<Template>::template Bind'; We then want
12892 to assemble the type `Bind<Argument>' that can't
12893 be fully created right now, because
12894 `Internal<Template>' not being complete, the Bind
12895 template cannot be looked up in that context. So
12896 we need to "store" `Bind<Argument>' for later
12897 when the context of Bind becomes complete. Let's
12898 store that in a TYPENAME_TYPE. */
12899 return make_typename_type (TYPE_CONTEXT (arg),
12900 build_nt (TEMPLATE_ID_EXPR,
12901 TYPE_IDENTIFIER (arg),
12902 argvec),
12903 typename_type,
12904 complain);
12905
12906 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
12907 are resolving nested-types in the signature of a
12908 member function templates. Otherwise ARG is a
12909 TEMPLATE_DECL and is the real template to be
12910 instantiated. */
12911 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
12912 arg = TYPE_NAME (arg);
12913
12914 r = lookup_template_class (arg,
12915 argvec, in_decl,
12916 DECL_CONTEXT (arg),
12917 /*entering_scope=*/0,
12918 complain);
12919 return cp_build_qualified_type_real
12920 (r, cp_type_quals (t) | cp_type_quals (r), complain);
12921 }
12922 else
12923 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
12924 return convert_from_reference (unshare_expr (arg));
12925 }
12926
12927 if (level == 1)
12928 /* This can happen during the attempted tsubst'ing in
12929 unify. This means that we don't yet have any information
12930 about the template parameter in question. */
12931 return t;
12932
12933 /* If we get here, we must have been looking at a parm for a
12934 more deeply nested template. Make a new version of this
12935 template parameter, but with a lower level. */
12936 switch (code)
12937 {
12938 case TEMPLATE_TYPE_PARM:
12939 case TEMPLATE_TEMPLATE_PARM:
12940 case BOUND_TEMPLATE_TEMPLATE_PARM:
12941 if (cp_type_quals (t))
12942 {
12943 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
12944 r = cp_build_qualified_type_real
12945 (r, cp_type_quals (t),
12946 complain | (code == TEMPLATE_TYPE_PARM
12947 ? tf_ignore_bad_quals : 0));
12948 }
12949 else if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
12950 && PLACEHOLDER_TYPE_CONSTRAINTS (t)
12951 && (r = (TEMPLATE_PARM_DESCENDANTS
12952 (TEMPLATE_TYPE_PARM_INDEX (t))))
12953 && (r = TREE_TYPE (r))
12954 && !PLACEHOLDER_TYPE_CONSTRAINTS (r))
12955 /* Break infinite recursion when substituting the constraints
12956 of a constrained placeholder. */;
12957 else
12958 {
12959 r = copy_type (t);
12960 TEMPLATE_TYPE_PARM_INDEX (r)
12961 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
12962 r, levels, args, complain);
12963 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
12964 TYPE_MAIN_VARIANT (r) = r;
12965 TYPE_POINTER_TO (r) = NULL_TREE;
12966 TYPE_REFERENCE_TO (r) = NULL_TREE;
12967
12968 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
12969 /* We have reduced the level of the template
12970 template parameter, but not the levels of its
12971 template parameters, so canonical_type_parameter
12972 will not be able to find the canonical template
12973 template parameter for this level. Thus, we
12974 require structural equality checking to compare
12975 TEMPLATE_TEMPLATE_PARMs. */
12976 SET_TYPE_STRUCTURAL_EQUALITY (r);
12977 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
12978 SET_TYPE_STRUCTURAL_EQUALITY (r);
12979 else
12980 TYPE_CANONICAL (r) = canonical_type_parameter (r);
12981
12982 /* Propagate constraints on placeholders. */
12983 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
12984 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (t))
12985 PLACEHOLDER_TYPE_CONSTRAINTS (r)
12986 = tsubst_constraint (constr, args, complain, in_decl);
12987
12988 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
12989 {
12990 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
12991 complain, in_decl);
12992 if (argvec == error_mark_node)
12993 return error_mark_node;
12994
12995 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
12996 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
12997 }
12998 }
12999 break;
13000
13001 case TEMPLATE_PARM_INDEX:
13002 r = reduce_template_parm_level (t, type, levels, args, complain);
13003 break;
13004
13005 default:
13006 gcc_unreachable ();
13007 }
13008
13009 return r;
13010 }
13011
13012 case TREE_LIST:
13013 {
13014 tree purpose, value, chain;
13015
13016 if (t == void_list_node)
13017 return t;
13018
13019 purpose = TREE_PURPOSE (t);
13020 if (purpose)
13021 {
13022 purpose = tsubst (purpose, args, complain, in_decl);
13023 if (purpose == error_mark_node)
13024 return error_mark_node;
13025 }
13026 value = TREE_VALUE (t);
13027 if (value)
13028 {
13029 value = tsubst (value, args, complain, in_decl);
13030 if (value == error_mark_node)
13031 return error_mark_node;
13032 }
13033 chain = TREE_CHAIN (t);
13034 if (chain && chain != void_type_node)
13035 {
13036 chain = tsubst (chain, args, complain, in_decl);
13037 if (chain == error_mark_node)
13038 return error_mark_node;
13039 }
13040 if (purpose == TREE_PURPOSE (t)
13041 && value == TREE_VALUE (t)
13042 && chain == TREE_CHAIN (t))
13043 return t;
13044 return hash_tree_cons (purpose, value, chain);
13045 }
13046
13047 case TREE_BINFO:
13048 /* We should never be tsubsting a binfo. */
13049 gcc_unreachable ();
13050
13051 case TREE_VEC:
13052 /* A vector of template arguments. */
13053 gcc_assert (!type);
13054 return tsubst_template_args (t, args, complain, in_decl);
13055
13056 case POINTER_TYPE:
13057 case REFERENCE_TYPE:
13058 {
13059 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
13060 return t;
13061
13062 /* [temp.deduct]
13063
13064 Type deduction may fail for any of the following
13065 reasons:
13066
13067 -- Attempting to create a pointer to reference type.
13068 -- Attempting to create a reference to a reference type or
13069 a reference to void.
13070
13071 Core issue 106 says that creating a reference to a reference
13072 during instantiation is no longer a cause for failure. We
13073 only enforce this check in strict C++98 mode. */
13074 if ((TREE_CODE (type) == REFERENCE_TYPE
13075 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
13076 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
13077 {
13078 static location_t last_loc;
13079
13080 /* We keep track of the last time we issued this error
13081 message to avoid spewing a ton of messages during a
13082 single bad template instantiation. */
13083 if (complain & tf_error
13084 && last_loc != input_location)
13085 {
13086 if (VOID_TYPE_P (type))
13087 error ("forming reference to void");
13088 else if (code == POINTER_TYPE)
13089 error ("forming pointer to reference type %qT", type);
13090 else
13091 error ("forming reference to reference type %qT", type);
13092 last_loc = input_location;
13093 }
13094
13095 return error_mark_node;
13096 }
13097 else if (TREE_CODE (type) == FUNCTION_TYPE
13098 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
13099 || type_memfn_rqual (type) != REF_QUAL_NONE))
13100 {
13101 if (complain & tf_error)
13102 {
13103 if (code == POINTER_TYPE)
13104 error ("forming pointer to qualified function type %qT",
13105 type);
13106 else
13107 error ("forming reference to qualified function type %qT",
13108 type);
13109 }
13110 return error_mark_node;
13111 }
13112 else if (code == POINTER_TYPE)
13113 {
13114 r = build_pointer_type (type);
13115 if (TREE_CODE (type) == METHOD_TYPE)
13116 r = build_ptrmemfunc_type (r);
13117 }
13118 else if (TREE_CODE (type) == REFERENCE_TYPE)
13119 /* In C++0x, during template argument substitution, when there is an
13120 attempt to create a reference to a reference type, reference
13121 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
13122
13123 "If a template-argument for a template-parameter T names a type
13124 that is a reference to a type A, an attempt to create the type
13125 'lvalue reference to cv T' creates the type 'lvalue reference to
13126 A,' while an attempt to create the type type rvalue reference to
13127 cv T' creates the type T"
13128 */
13129 r = cp_build_reference_type
13130 (TREE_TYPE (type),
13131 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
13132 else
13133 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
13134 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
13135
13136 if (r != error_mark_node)
13137 /* Will this ever be needed for TYPE_..._TO values? */
13138 layout_type (r);
13139
13140 return r;
13141 }
13142 case OFFSET_TYPE:
13143 {
13144 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
13145 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
13146 {
13147 /* [temp.deduct]
13148
13149 Type deduction may fail for any of the following
13150 reasons:
13151
13152 -- Attempting to create "pointer to member of T" when T
13153 is not a class type. */
13154 if (complain & tf_error)
13155 error ("creating pointer to member of non-class type %qT", r);
13156 return error_mark_node;
13157 }
13158 if (TREE_CODE (type) == REFERENCE_TYPE)
13159 {
13160 if (complain & tf_error)
13161 error ("creating pointer to member reference type %qT", type);
13162 return error_mark_node;
13163 }
13164 if (VOID_TYPE_P (type))
13165 {
13166 if (complain & tf_error)
13167 error ("creating pointer to member of type void");
13168 return error_mark_node;
13169 }
13170 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
13171 if (TREE_CODE (type) == FUNCTION_TYPE)
13172 {
13173 /* The type of the implicit object parameter gets its
13174 cv-qualifiers from the FUNCTION_TYPE. */
13175 tree memptr;
13176 tree method_type
13177 = build_memfn_type (type, r, type_memfn_quals (type),
13178 type_memfn_rqual (type));
13179 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
13180 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
13181 complain);
13182 }
13183 else
13184 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
13185 cp_type_quals (t),
13186 complain);
13187 }
13188 case FUNCTION_TYPE:
13189 case METHOD_TYPE:
13190 {
13191 tree fntype;
13192 tree specs;
13193 fntype = tsubst_function_type (t, args, complain, in_decl);
13194 if (fntype == error_mark_node)
13195 return error_mark_node;
13196
13197 /* Substitute the exception specification. */
13198 specs = tsubst_exception_specification (t, args, complain,
13199 in_decl, /*defer_ok*/true);
13200 if (specs == error_mark_node)
13201 return error_mark_node;
13202 if (specs)
13203 fntype = build_exception_variant (fntype, specs);
13204 return fntype;
13205 }
13206 case ARRAY_TYPE:
13207 {
13208 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
13209 if (domain == error_mark_node)
13210 return error_mark_node;
13211
13212 /* As an optimization, we avoid regenerating the array type if
13213 it will obviously be the same as T. */
13214 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
13215 return t;
13216
13217 /* These checks should match the ones in create_array_type_for_decl.
13218
13219 [temp.deduct]
13220
13221 The deduction may fail for any of the following reasons:
13222
13223 -- Attempting to create an array with an element type that
13224 is void, a function type, or a reference type, or [DR337]
13225 an abstract class type. */
13226 if (VOID_TYPE_P (type)
13227 || TREE_CODE (type) == FUNCTION_TYPE
13228 || (TREE_CODE (type) == ARRAY_TYPE
13229 && TYPE_DOMAIN (type) == NULL_TREE)
13230 || TREE_CODE (type) == REFERENCE_TYPE)
13231 {
13232 if (complain & tf_error)
13233 error ("creating array of %qT", type);
13234 return error_mark_node;
13235 }
13236
13237 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
13238 return error_mark_node;
13239
13240 r = build_cplus_array_type (type, domain);
13241
13242 if (TYPE_USER_ALIGN (t))
13243 {
13244 TYPE_ALIGN (r) = TYPE_ALIGN (t);
13245 TYPE_USER_ALIGN (r) = 1;
13246 }
13247
13248 return r;
13249 }
13250
13251 case TYPENAME_TYPE:
13252 {
13253 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13254 in_decl, /*entering_scope=*/1);
13255 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
13256 complain, in_decl);
13257
13258 if (ctx == error_mark_node || f == error_mark_node)
13259 return error_mark_node;
13260
13261 if (!MAYBE_CLASS_TYPE_P (ctx))
13262 {
13263 if (complain & tf_error)
13264 error ("%qT is not a class, struct, or union type", ctx);
13265 return error_mark_node;
13266 }
13267 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
13268 {
13269 /* Normally, make_typename_type does not require that the CTX
13270 have complete type in order to allow things like:
13271
13272 template <class T> struct S { typename S<T>::X Y; };
13273
13274 But, such constructs have already been resolved by this
13275 point, so here CTX really should have complete type, unless
13276 it's a partial instantiation. */
13277 ctx = complete_type (ctx);
13278 if (!COMPLETE_TYPE_P (ctx))
13279 {
13280 if (complain & tf_error)
13281 cxx_incomplete_type_error (NULL_TREE, ctx);
13282 return error_mark_node;
13283 }
13284 }
13285
13286 f = make_typename_type (ctx, f, typename_type,
13287 complain | tf_keep_type_decl);
13288 if (f == error_mark_node)
13289 return f;
13290 if (TREE_CODE (f) == TYPE_DECL)
13291 {
13292 complain |= tf_ignore_bad_quals;
13293 f = TREE_TYPE (f);
13294 }
13295
13296 if (TREE_CODE (f) != TYPENAME_TYPE)
13297 {
13298 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
13299 {
13300 if (complain & tf_error)
13301 error ("%qT resolves to %qT, which is not an enumeration type",
13302 t, f);
13303 else
13304 return error_mark_node;
13305 }
13306 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
13307 {
13308 if (complain & tf_error)
13309 error ("%qT resolves to %qT, which is is not a class type",
13310 t, f);
13311 else
13312 return error_mark_node;
13313 }
13314 }
13315
13316 return cp_build_qualified_type_real
13317 (f, cp_type_quals (f) | cp_type_quals (t), complain);
13318 }
13319
13320 case UNBOUND_CLASS_TEMPLATE:
13321 {
13322 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13323 in_decl, /*entering_scope=*/1);
13324 tree name = TYPE_IDENTIFIER (t);
13325 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
13326
13327 if (ctx == error_mark_node || name == error_mark_node)
13328 return error_mark_node;
13329
13330 if (parm_list)
13331 parm_list = tsubst_template_parms (parm_list, args, complain);
13332 return make_unbound_class_template (ctx, name, parm_list, complain);
13333 }
13334
13335 case TYPEOF_TYPE:
13336 {
13337 tree type;
13338
13339 ++cp_unevaluated_operand;
13340 ++c_inhibit_evaluation_warnings;
13341
13342 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
13343 complain, in_decl,
13344 /*integral_constant_expression_p=*/false);
13345
13346 --cp_unevaluated_operand;
13347 --c_inhibit_evaluation_warnings;
13348
13349 type = finish_typeof (type);
13350 return cp_build_qualified_type_real (type,
13351 cp_type_quals (t)
13352 | cp_type_quals (type),
13353 complain);
13354 }
13355
13356 case DECLTYPE_TYPE:
13357 {
13358 tree type;
13359
13360 ++cp_unevaluated_operand;
13361 ++c_inhibit_evaluation_warnings;
13362
13363 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
13364 complain|tf_decltype, in_decl,
13365 /*function_p*/false,
13366 /*integral_constant_expression*/false);
13367
13368 --cp_unevaluated_operand;
13369 --c_inhibit_evaluation_warnings;
13370
13371 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
13372 type = lambda_capture_field_type (type,
13373 DECLTYPE_FOR_INIT_CAPTURE (t));
13374 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
13375 type = lambda_proxy_type (type);
13376 else
13377 {
13378 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
13379 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
13380 && EXPR_P (type))
13381 /* In a template ~id could be either a complement expression
13382 or an unqualified-id naming a destructor; if instantiating
13383 it produces an expression, it's not an id-expression or
13384 member access. */
13385 id = false;
13386 type = finish_decltype_type (type, id, complain);
13387 }
13388 return cp_build_qualified_type_real (type,
13389 cp_type_quals (t)
13390 | cp_type_quals (type),
13391 complain | tf_ignore_bad_quals);
13392 }
13393
13394 case UNDERLYING_TYPE:
13395 {
13396 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
13397 complain, in_decl);
13398 return finish_underlying_type (type);
13399 }
13400
13401 case TYPE_ARGUMENT_PACK:
13402 case NONTYPE_ARGUMENT_PACK:
13403 {
13404 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
13405 tree packed_out =
13406 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
13407 args,
13408 complain,
13409 in_decl);
13410 SET_ARGUMENT_PACK_ARGS (r, packed_out);
13411
13412 /* For template nontype argument packs, also substitute into
13413 the type. */
13414 if (code == NONTYPE_ARGUMENT_PACK)
13415 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
13416
13417 return r;
13418 }
13419 break;
13420
13421 case VOID_CST:
13422 case INTEGER_CST:
13423 case REAL_CST:
13424 case STRING_CST:
13425 case PLUS_EXPR:
13426 case MINUS_EXPR:
13427 case NEGATE_EXPR:
13428 case NOP_EXPR:
13429 case INDIRECT_REF:
13430 case ADDR_EXPR:
13431 case CALL_EXPR:
13432 case ARRAY_REF:
13433 case SCOPE_REF:
13434 /* We should use one of the expression tsubsts for these codes. */
13435 gcc_unreachable ();
13436
13437 default:
13438 sorry ("use of %qs in template", get_tree_code_name (code));
13439 return error_mark_node;
13440 }
13441 }
13442
13443 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
13444 type of the expression on the left-hand side of the "." or "->"
13445 operator. */
13446
13447 static tree
13448 tsubst_baselink (tree baselink, tree object_type,
13449 tree args, tsubst_flags_t complain, tree in_decl)
13450 {
13451 tree name;
13452 tree qualifying_scope;
13453 tree fns;
13454 tree optype;
13455 tree template_args = 0;
13456 bool template_id_p = false;
13457 bool qualified = BASELINK_QUALIFIED_P (baselink);
13458
13459 /* A baselink indicates a function from a base class. Both the
13460 BASELINK_ACCESS_BINFO and the base class referenced may
13461 indicate bases of the template class, rather than the
13462 instantiated class. In addition, lookups that were not
13463 ambiguous before may be ambiguous now. Therefore, we perform
13464 the lookup again. */
13465 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
13466 qualifying_scope = tsubst (qualifying_scope, args,
13467 complain, in_decl);
13468 fns = BASELINK_FUNCTIONS (baselink);
13469 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
13470 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
13471 {
13472 template_id_p = true;
13473 template_args = TREE_OPERAND (fns, 1);
13474 fns = TREE_OPERAND (fns, 0);
13475 if (template_args)
13476 template_args = tsubst_template_args (template_args, args,
13477 complain, in_decl);
13478 }
13479 name = DECL_NAME (get_first_fn (fns));
13480 if (IDENTIFIER_TYPENAME_P (name))
13481 name = mangle_conv_op_name_for_type (optype);
13482 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
13483 if (!baselink)
13484 return error_mark_node;
13485
13486 /* If lookup found a single function, mark it as used at this
13487 point. (If it lookup found multiple functions the one selected
13488 later by overload resolution will be marked as used at that
13489 point.) */
13490 if (BASELINK_P (baselink))
13491 fns = BASELINK_FUNCTIONS (baselink);
13492 if (!template_id_p && !really_overloaded_fn (fns)
13493 && !mark_used (OVL_CURRENT (fns), complain) && !(complain & tf_error))
13494 return error_mark_node;
13495
13496 /* Add back the template arguments, if present. */
13497 if (BASELINK_P (baselink) && template_id_p)
13498 BASELINK_FUNCTIONS (baselink)
13499 = build_nt (TEMPLATE_ID_EXPR,
13500 BASELINK_FUNCTIONS (baselink),
13501 template_args);
13502 /* Update the conversion operator type. */
13503 BASELINK_OPTYPE (baselink) = optype;
13504
13505 if (!object_type)
13506 object_type = current_class_type;
13507
13508 if (qualified)
13509 baselink = adjust_result_of_qualified_name_lookup (baselink,
13510 qualifying_scope,
13511 object_type);
13512 return baselink;
13513 }
13514
13515 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
13516 true if the qualified-id will be a postfix-expression in-and-of
13517 itself; false if more of the postfix-expression follows the
13518 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
13519 of "&". */
13520
13521 static tree
13522 tsubst_qualified_id (tree qualified_id, tree args,
13523 tsubst_flags_t complain, tree in_decl,
13524 bool done, bool address_p)
13525 {
13526 tree expr;
13527 tree scope;
13528 tree name;
13529 bool is_template;
13530 tree template_args;
13531 location_t loc = UNKNOWN_LOCATION;
13532
13533 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
13534
13535 /* Figure out what name to look up. */
13536 name = TREE_OPERAND (qualified_id, 1);
13537 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
13538 {
13539 is_template = true;
13540 loc = EXPR_LOCATION (name);
13541 template_args = TREE_OPERAND (name, 1);
13542 if (template_args)
13543 template_args = tsubst_template_args (template_args, args,
13544 complain, in_decl);
13545 name = TREE_OPERAND (name, 0);
13546 }
13547 else
13548 {
13549 is_template = false;
13550 template_args = NULL_TREE;
13551 }
13552
13553 /* Substitute into the qualifying scope. When there are no ARGS, we
13554 are just trying to simplify a non-dependent expression. In that
13555 case the qualifying scope may be dependent, and, in any case,
13556 substituting will not help. */
13557 scope = TREE_OPERAND (qualified_id, 0);
13558 if (args)
13559 {
13560 scope = tsubst (scope, args, complain, in_decl);
13561 expr = tsubst_copy (name, args, complain, in_decl);
13562 }
13563 else
13564 expr = name;
13565
13566 if (dependent_scope_p (scope))
13567 {
13568 if (is_template)
13569 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
13570 return build_qualified_name (NULL_TREE, scope, expr,
13571 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
13572 }
13573
13574 if (!BASELINK_P (name) && !DECL_P (expr))
13575 {
13576 if (TREE_CODE (expr) == BIT_NOT_EXPR)
13577 {
13578 /* A BIT_NOT_EXPR is used to represent a destructor. */
13579 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
13580 {
13581 error ("qualifying type %qT does not match destructor name ~%qT",
13582 scope, TREE_OPERAND (expr, 0));
13583 expr = error_mark_node;
13584 }
13585 else
13586 expr = lookup_qualified_name (scope, complete_dtor_identifier,
13587 /*is_type_p=*/0, false);
13588 }
13589 else
13590 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
13591 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
13592 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
13593 {
13594 if (complain & tf_error)
13595 {
13596 error ("dependent-name %qE is parsed as a non-type, but "
13597 "instantiation yields a type", qualified_id);
13598 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
13599 }
13600 return error_mark_node;
13601 }
13602 }
13603
13604 if (DECL_P (expr))
13605 {
13606 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
13607 scope);
13608 /* Remember that there was a reference to this entity. */
13609 if (!mark_used (expr, complain) && !(complain & tf_error))
13610 return error_mark_node;
13611 }
13612
13613 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
13614 {
13615 if (complain & tf_error)
13616 qualified_name_lookup_error (scope,
13617 TREE_OPERAND (qualified_id, 1),
13618 expr, input_location);
13619 return error_mark_node;
13620 }
13621
13622 if (is_template)
13623 expr = lookup_template_function (expr, template_args);
13624
13625 if (expr == error_mark_node && complain & tf_error)
13626 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
13627 expr, input_location);
13628 else if (TYPE_P (scope))
13629 {
13630 expr = (adjust_result_of_qualified_name_lookup
13631 (expr, scope, current_nonlambda_class_type ()));
13632 expr = (finish_qualified_id_expr
13633 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
13634 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
13635 /*template_arg_p=*/false, complain));
13636 }
13637
13638 /* Expressions do not generally have reference type. */
13639 if (TREE_CODE (expr) != SCOPE_REF
13640 /* However, if we're about to form a pointer-to-member, we just
13641 want the referenced member referenced. */
13642 && TREE_CODE (expr) != OFFSET_REF)
13643 expr = convert_from_reference (expr);
13644
13645 return expr;
13646 }
13647
13648 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
13649 initializer, DECL is the substituted VAR_DECL. Other arguments are as
13650 for tsubst. */
13651
13652 static tree
13653 tsubst_init (tree init, tree decl, tree args,
13654 tsubst_flags_t complain, tree in_decl)
13655 {
13656 if (!init)
13657 return NULL_TREE;
13658
13659 init = tsubst_expr (init, args, complain, in_decl, false);
13660
13661 if (!init)
13662 {
13663 /* If we had an initializer but it
13664 instantiated to nothing,
13665 value-initialize the object. This will
13666 only occur when the initializer was a
13667 pack expansion where the parameter packs
13668 used in that expansion were of length
13669 zero. */
13670 init = build_value_init (TREE_TYPE (decl),
13671 complain);
13672 if (TREE_CODE (init) == AGGR_INIT_EXPR)
13673 init = get_target_expr_sfinae (init, complain);
13674 }
13675
13676 return init;
13677 }
13678
13679 /* Like tsubst, but deals with expressions. This function just replaces
13680 template parms; to finish processing the resultant expression, use
13681 tsubst_copy_and_build or tsubst_expr. */
13682
13683 static tree
13684 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
13685 {
13686 enum tree_code code;
13687 tree r;
13688
13689 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
13690 return t;
13691
13692 code = TREE_CODE (t);
13693
13694 switch (code)
13695 {
13696 case PARM_DECL:
13697 r = retrieve_local_specialization (t);
13698
13699 if (r == NULL_TREE)
13700 {
13701 /* We get here for a use of 'this' in an NSDMI. */
13702 if (DECL_NAME (t) == this_identifier
13703 && current_function_decl
13704 && DECL_CONSTRUCTOR_P (current_function_decl))
13705 return current_class_ptr;
13706
13707 /* This can happen for a parameter name used later in a function
13708 declaration (such as in a late-specified return type). Just
13709 make a dummy decl, since it's only used for its type. */
13710 gcc_assert (cp_unevaluated_operand != 0);
13711 r = tsubst_decl (t, args, complain);
13712 /* Give it the template pattern as its context; its true context
13713 hasn't been instantiated yet and this is good enough for
13714 mangling. */
13715 DECL_CONTEXT (r) = DECL_CONTEXT (t);
13716 }
13717
13718 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13719 r = ARGUMENT_PACK_SELECT_ARG (r);
13720 if (!mark_used (r, complain) && !(complain & tf_error))
13721 return error_mark_node;
13722 return r;
13723
13724 case CONST_DECL:
13725 {
13726 tree enum_type;
13727 tree v;
13728
13729 if (DECL_TEMPLATE_PARM_P (t))
13730 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
13731 /* There is no need to substitute into namespace-scope
13732 enumerators. */
13733 if (DECL_NAMESPACE_SCOPE_P (t))
13734 return t;
13735 /* If ARGS is NULL, then T is known to be non-dependent. */
13736 if (args == NULL_TREE)
13737 return scalar_constant_value (t);
13738
13739 /* Unfortunately, we cannot just call lookup_name here.
13740 Consider:
13741
13742 template <int I> int f() {
13743 enum E { a = I };
13744 struct S { void g() { E e = a; } };
13745 };
13746
13747 When we instantiate f<7>::S::g(), say, lookup_name is not
13748 clever enough to find f<7>::a. */
13749 enum_type
13750 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13751 /*entering_scope=*/0);
13752
13753 for (v = TYPE_VALUES (enum_type);
13754 v != NULL_TREE;
13755 v = TREE_CHAIN (v))
13756 if (TREE_PURPOSE (v) == DECL_NAME (t))
13757 return TREE_VALUE (v);
13758
13759 /* We didn't find the name. That should never happen; if
13760 name-lookup found it during preliminary parsing, we
13761 should find it again here during instantiation. */
13762 gcc_unreachable ();
13763 }
13764 return t;
13765
13766 case FIELD_DECL:
13767 if (PACK_EXPANSION_P (TREE_TYPE (t)))
13768 {
13769 /* Check for a local specialization set up by
13770 tsubst_pack_expansion. */
13771 if (tree r = retrieve_local_specialization (t))
13772 {
13773 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13774 r = ARGUMENT_PACK_SELECT_ARG (r);
13775 return r;
13776 }
13777
13778 /* When retrieving a capture pack from a generic lambda, remove the
13779 lambda call op's own template argument list from ARGS. Only the
13780 template arguments active for the closure type should be used to
13781 retrieve the pack specialization. */
13782 if (LAMBDA_FUNCTION_P (current_function_decl)
13783 && (template_class_depth (DECL_CONTEXT (t))
13784 != TMPL_ARGS_DEPTH (args)))
13785 args = strip_innermost_template_args (args, 1);
13786
13787 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
13788 tsubst_decl put in the hash table. */
13789 return retrieve_specialization (t, args, 0);
13790 }
13791
13792 if (DECL_CONTEXT (t))
13793 {
13794 tree ctx;
13795
13796 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13797 /*entering_scope=*/1);
13798 if (ctx != DECL_CONTEXT (t))
13799 {
13800 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
13801 if (!r)
13802 {
13803 if (complain & tf_error)
13804 error ("using invalid field %qD", t);
13805 return error_mark_node;
13806 }
13807 return r;
13808 }
13809 }
13810
13811 return t;
13812
13813 case VAR_DECL:
13814 case FUNCTION_DECL:
13815 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
13816 r = tsubst (t, args, complain, in_decl);
13817 else if (local_variable_p (t))
13818 {
13819 r = retrieve_local_specialization (t);
13820 if (r == NULL_TREE)
13821 {
13822 /* First try name lookup to find the instantiation. */
13823 r = lookup_name (DECL_NAME (t));
13824 if (r)
13825 {
13826 /* Make sure that the one we found is the one we want. */
13827 tree ctx = DECL_CONTEXT (t);
13828 if (DECL_LANG_SPECIFIC (ctx) && DECL_TEMPLATE_INFO (ctx))
13829 ctx = tsubst (ctx, args, complain, in_decl);
13830 if (ctx != DECL_CONTEXT (r))
13831 r = NULL_TREE;
13832 }
13833
13834 if (r)
13835 /* OK */;
13836 else
13837 {
13838 /* This can happen for a variable used in a
13839 late-specified return type of a local lambda, or for a
13840 local static or constant. Building a new VAR_DECL
13841 should be OK in all those cases. */
13842 r = tsubst_decl (t, args, complain);
13843 if (decl_maybe_constant_var_p (r))
13844 {
13845 /* We can't call cp_finish_decl, so handle the
13846 initializer by hand. */
13847 tree init = tsubst_init (DECL_INITIAL (t), r, args,
13848 complain, in_decl);
13849 if (!processing_template_decl)
13850 init = maybe_constant_init (init);
13851 if (processing_template_decl
13852 ? potential_constant_expression (init)
13853 : reduced_constant_expression_p (init))
13854 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
13855 = TREE_CONSTANT (r) = true;
13856 DECL_INITIAL (r) = init;
13857 }
13858 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
13859 || decl_constant_var_p (r)
13860 || errorcount || sorrycount);
13861 if (!processing_template_decl)
13862 {
13863 if (TREE_STATIC (r))
13864 rest_of_decl_compilation (r, toplevel_bindings_p (),
13865 at_eof);
13866 else
13867 r = process_outer_var_ref (r, complain);
13868 }
13869 }
13870 /* Remember this for subsequent uses. */
13871 if (local_specializations)
13872 register_local_specialization (r, t);
13873 }
13874 }
13875 else
13876 r = t;
13877 if (!mark_used (r, complain) && !(complain & tf_error))
13878 return error_mark_node;
13879 return r;
13880
13881 case NAMESPACE_DECL:
13882 return t;
13883
13884 case OVERLOAD:
13885 /* An OVERLOAD will always be a non-dependent overload set; an
13886 overload set from function scope will just be represented with an
13887 IDENTIFIER_NODE, and from class scope with a BASELINK. */
13888 gcc_assert (!uses_template_parms (t));
13889 return t;
13890
13891 case BASELINK:
13892 return tsubst_baselink (t, current_nonlambda_class_type (),
13893 args, complain, in_decl);
13894
13895 case TEMPLATE_DECL:
13896 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
13897 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
13898 args, complain, in_decl);
13899 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
13900 return tsubst (t, args, complain, in_decl);
13901 else if (DECL_CLASS_SCOPE_P (t)
13902 && uses_template_parms (DECL_CONTEXT (t)))
13903 {
13904 /* Template template argument like the following example need
13905 special treatment:
13906
13907 template <template <class> class TT> struct C {};
13908 template <class T> struct D {
13909 template <class U> struct E {};
13910 C<E> c; // #1
13911 };
13912 D<int> d; // #2
13913
13914 We are processing the template argument `E' in #1 for
13915 the template instantiation #2. Originally, `E' is a
13916 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
13917 have to substitute this with one having context `D<int>'. */
13918
13919 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
13920 return lookup_field (context, DECL_NAME(t), 0, false);
13921 }
13922 else
13923 /* Ordinary template template argument. */
13924 return t;
13925
13926 case CAST_EXPR:
13927 case REINTERPRET_CAST_EXPR:
13928 case CONST_CAST_EXPR:
13929 case STATIC_CAST_EXPR:
13930 case DYNAMIC_CAST_EXPR:
13931 case IMPLICIT_CONV_EXPR:
13932 case CONVERT_EXPR:
13933 case NOP_EXPR:
13934 {
13935 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13936 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13937 return build1 (code, type, op0);
13938 }
13939
13940 case SIZEOF_EXPR:
13941 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
13942 {
13943
13944 tree expanded, op = TREE_OPERAND (t, 0);
13945 int len = 0;
13946
13947 if (SIZEOF_EXPR_TYPE_P (t))
13948 op = TREE_TYPE (op);
13949
13950 ++cp_unevaluated_operand;
13951 ++c_inhibit_evaluation_warnings;
13952 /* We only want to compute the number of arguments. */
13953 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
13954 --cp_unevaluated_operand;
13955 --c_inhibit_evaluation_warnings;
13956
13957 if (TREE_CODE (expanded) == TREE_VEC)
13958 len = TREE_VEC_LENGTH (expanded);
13959
13960 if (expanded == error_mark_node)
13961 return error_mark_node;
13962 else if (PACK_EXPANSION_P (expanded)
13963 || (TREE_CODE (expanded) == TREE_VEC
13964 && len > 0
13965 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
13966 {
13967 if (TREE_CODE (expanded) == TREE_VEC)
13968 expanded = TREE_VEC_ELT (expanded, len - 1);
13969
13970 if (TYPE_P (expanded))
13971 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
13972 complain & tf_error);
13973 else
13974 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
13975 complain & tf_error);
13976 }
13977 else
13978 return build_int_cst (size_type_node, len);
13979 }
13980 if (SIZEOF_EXPR_TYPE_P (t))
13981 {
13982 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
13983 args, complain, in_decl);
13984 r = build1 (NOP_EXPR, r, error_mark_node);
13985 r = build1 (SIZEOF_EXPR,
13986 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
13987 SIZEOF_EXPR_TYPE_P (r) = 1;
13988 return r;
13989 }
13990 /* Fall through */
13991
13992 case INDIRECT_REF:
13993 case NEGATE_EXPR:
13994 case TRUTH_NOT_EXPR:
13995 case BIT_NOT_EXPR:
13996 case ADDR_EXPR:
13997 case UNARY_PLUS_EXPR: /* Unary + */
13998 case ALIGNOF_EXPR:
13999 case AT_ENCODE_EXPR:
14000 case ARROW_EXPR:
14001 case THROW_EXPR:
14002 case TYPEID_EXPR:
14003 case REALPART_EXPR:
14004 case IMAGPART_EXPR:
14005 case PAREN_EXPR:
14006 {
14007 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14008 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14009 return build1 (code, type, op0);
14010 }
14011
14012 case COMPONENT_REF:
14013 {
14014 tree object;
14015 tree name;
14016
14017 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14018 name = TREE_OPERAND (t, 1);
14019 if (TREE_CODE (name) == BIT_NOT_EXPR)
14020 {
14021 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14022 complain, in_decl);
14023 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14024 }
14025 else if (TREE_CODE (name) == SCOPE_REF
14026 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
14027 {
14028 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
14029 complain, in_decl);
14030 name = TREE_OPERAND (name, 1);
14031 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14032 complain, in_decl);
14033 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14034 name = build_qualified_name (/*type=*/NULL_TREE,
14035 base, name,
14036 /*template_p=*/false);
14037 }
14038 else if (BASELINK_P (name))
14039 name = tsubst_baselink (name,
14040 non_reference (TREE_TYPE (object)),
14041 args, complain,
14042 in_decl);
14043 else
14044 name = tsubst_copy (name, args, complain, in_decl);
14045 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
14046 }
14047
14048 case PLUS_EXPR:
14049 case MINUS_EXPR:
14050 case MULT_EXPR:
14051 case TRUNC_DIV_EXPR:
14052 case CEIL_DIV_EXPR:
14053 case FLOOR_DIV_EXPR:
14054 case ROUND_DIV_EXPR:
14055 case EXACT_DIV_EXPR:
14056 case BIT_AND_EXPR:
14057 case BIT_IOR_EXPR:
14058 case BIT_XOR_EXPR:
14059 case TRUNC_MOD_EXPR:
14060 case FLOOR_MOD_EXPR:
14061 case TRUTH_ANDIF_EXPR:
14062 case TRUTH_ORIF_EXPR:
14063 case TRUTH_AND_EXPR:
14064 case TRUTH_OR_EXPR:
14065 case RSHIFT_EXPR:
14066 case LSHIFT_EXPR:
14067 case RROTATE_EXPR:
14068 case LROTATE_EXPR:
14069 case EQ_EXPR:
14070 case NE_EXPR:
14071 case MAX_EXPR:
14072 case MIN_EXPR:
14073 case LE_EXPR:
14074 case GE_EXPR:
14075 case LT_EXPR:
14076 case GT_EXPR:
14077 case COMPOUND_EXPR:
14078 case DOTSTAR_EXPR:
14079 case MEMBER_REF:
14080 case PREDECREMENT_EXPR:
14081 case PREINCREMENT_EXPR:
14082 case POSTDECREMENT_EXPR:
14083 case POSTINCREMENT_EXPR:
14084 {
14085 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14086 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14087 return build_nt (code, op0, op1);
14088 }
14089
14090 case SCOPE_REF:
14091 {
14092 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14093 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14094 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
14095 QUALIFIED_NAME_IS_TEMPLATE (t));
14096 }
14097
14098 case ARRAY_REF:
14099 {
14100 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14101 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14102 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
14103 }
14104
14105 case CALL_EXPR:
14106 {
14107 int n = VL_EXP_OPERAND_LENGTH (t);
14108 tree result = build_vl_exp (CALL_EXPR, n);
14109 int i;
14110 for (i = 0; i < n; i++)
14111 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
14112 complain, in_decl);
14113 return result;
14114 }
14115
14116 case COND_EXPR:
14117 case MODOP_EXPR:
14118 case PSEUDO_DTOR_EXPR:
14119 case VEC_PERM_EXPR:
14120 {
14121 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14122 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14123 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14124 r = build_nt (code, op0, op1, op2);
14125 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14126 return r;
14127 }
14128
14129 case NEW_EXPR:
14130 {
14131 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14132 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14133 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14134 r = build_nt (code, op0, op1, op2);
14135 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
14136 return r;
14137 }
14138
14139 case DELETE_EXPR:
14140 {
14141 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14142 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14143 r = build_nt (code, op0, op1);
14144 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
14145 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
14146 return r;
14147 }
14148
14149 case TEMPLATE_ID_EXPR:
14150 {
14151 /* Substituted template arguments */
14152 tree fn = TREE_OPERAND (t, 0);
14153 tree targs = TREE_OPERAND (t, 1);
14154
14155 fn = tsubst_copy (fn, args, complain, in_decl);
14156 if (targs)
14157 targs = tsubst_template_args (targs, args, complain, in_decl);
14158
14159 return lookup_template_function (fn, targs);
14160 }
14161
14162 case TREE_LIST:
14163 {
14164 tree purpose, value, chain;
14165
14166 if (t == void_list_node)
14167 return t;
14168
14169 purpose = TREE_PURPOSE (t);
14170 if (purpose)
14171 purpose = tsubst_copy (purpose, args, complain, in_decl);
14172 value = TREE_VALUE (t);
14173 if (value)
14174 value = tsubst_copy (value, args, complain, in_decl);
14175 chain = TREE_CHAIN (t);
14176 if (chain && chain != void_type_node)
14177 chain = tsubst_copy (chain, args, complain, in_decl);
14178 if (purpose == TREE_PURPOSE (t)
14179 && value == TREE_VALUE (t)
14180 && chain == TREE_CHAIN (t))
14181 return t;
14182 return tree_cons (purpose, value, chain);
14183 }
14184
14185 case RECORD_TYPE:
14186 case UNION_TYPE:
14187 case ENUMERAL_TYPE:
14188 case INTEGER_TYPE:
14189 case TEMPLATE_TYPE_PARM:
14190 case TEMPLATE_TEMPLATE_PARM:
14191 case BOUND_TEMPLATE_TEMPLATE_PARM:
14192 case TEMPLATE_PARM_INDEX:
14193 case POINTER_TYPE:
14194 case REFERENCE_TYPE:
14195 case OFFSET_TYPE:
14196 case FUNCTION_TYPE:
14197 case METHOD_TYPE:
14198 case ARRAY_TYPE:
14199 case TYPENAME_TYPE:
14200 case UNBOUND_CLASS_TEMPLATE:
14201 case TYPEOF_TYPE:
14202 case DECLTYPE_TYPE:
14203 case TYPE_DECL:
14204 return tsubst (t, args, complain, in_decl);
14205
14206 case USING_DECL:
14207 t = DECL_NAME (t);
14208 /* Fall through. */
14209 case IDENTIFIER_NODE:
14210 if (IDENTIFIER_TYPENAME_P (t))
14211 {
14212 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14213 return mangle_conv_op_name_for_type (new_type);
14214 }
14215 else
14216 return t;
14217
14218 case CONSTRUCTOR:
14219 /* This is handled by tsubst_copy_and_build. */
14220 gcc_unreachable ();
14221
14222 case VA_ARG_EXPR:
14223 {
14224 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14225 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14226 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
14227 }
14228
14229 case CLEANUP_POINT_EXPR:
14230 /* We shouldn't have built any of these during initial template
14231 generation. Instead, they should be built during instantiation
14232 in response to the saved STMT_IS_FULL_EXPR_P setting. */
14233 gcc_unreachable ();
14234
14235 case OFFSET_REF:
14236 {
14237 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14238 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14239 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14240 r = build2 (code, type, op0, op1);
14241 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
14242 if (!mark_used (TREE_OPERAND (r, 1), complain)
14243 && !(complain & tf_error))
14244 return error_mark_node;
14245 return r;
14246 }
14247
14248 case EXPR_PACK_EXPANSION:
14249 error ("invalid use of pack expansion expression");
14250 return error_mark_node;
14251
14252 case NONTYPE_ARGUMENT_PACK:
14253 error ("use %<...%> to expand argument pack");
14254 return error_mark_node;
14255
14256 case VOID_CST:
14257 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
14258 return t;
14259
14260 case INTEGER_CST:
14261 case REAL_CST:
14262 case STRING_CST:
14263 case COMPLEX_CST:
14264 {
14265 /* Instantiate any typedefs in the type. */
14266 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14267 r = fold_convert (type, t);
14268 gcc_assert (TREE_CODE (r) == code);
14269 return r;
14270 }
14271
14272 case PTRMEM_CST:
14273 /* These can sometimes show up in a partial instantiation, but never
14274 involve template parms. */
14275 gcc_assert (!uses_template_parms (t));
14276 return t;
14277
14278 case UNARY_LEFT_FOLD_EXPR:
14279 return tsubst_unary_left_fold (t, args, complain, in_decl);
14280 case UNARY_RIGHT_FOLD_EXPR:
14281 return tsubst_unary_right_fold (t, args, complain, in_decl);
14282 case BINARY_LEFT_FOLD_EXPR:
14283 return tsubst_binary_left_fold (t, args, complain, in_decl);
14284 case BINARY_RIGHT_FOLD_EXPR:
14285 return tsubst_binary_right_fold (t, args, complain, in_decl);
14286
14287 default:
14288 /* We shouldn't get here, but keep going if !flag_checking. */
14289 if (flag_checking)
14290 gcc_unreachable ();
14291 return t;
14292 }
14293 }
14294
14295 /* Helper function for tsubst_omp_clauses, used for instantiation of
14296 OMP_CLAUSE_DECL of clauses. */
14297
14298 static tree
14299 tsubst_omp_clause_decl (tree decl, tree args, tsubst_flags_t complain,
14300 tree in_decl)
14301 {
14302 if (decl == NULL_TREE)
14303 return NULL_TREE;
14304
14305 /* Handle an OpenMP array section represented as a TREE_LIST (or
14306 OMP_CLAUSE_DEPEND_KIND). An OMP_CLAUSE_DEPEND (with a depend
14307 kind of OMP_CLAUSE_DEPEND_SINK) can also be represented as a
14308 TREE_LIST. We can handle it exactly the same as an array section
14309 (purpose, value, and a chain), even though the nomenclature
14310 (low_bound, length, etc) is different. */
14311 if (TREE_CODE (decl) == TREE_LIST)
14312 {
14313 tree low_bound
14314 = tsubst_expr (TREE_PURPOSE (decl), args, complain, in_decl,
14315 /*integral_constant_expression_p=*/false);
14316 tree length = tsubst_expr (TREE_VALUE (decl), args, complain, in_decl,
14317 /*integral_constant_expression_p=*/false);
14318 tree chain = tsubst_omp_clause_decl (TREE_CHAIN (decl), args, complain,
14319 in_decl);
14320 if (TREE_PURPOSE (decl) == low_bound
14321 && TREE_VALUE (decl) == length
14322 && TREE_CHAIN (decl) == chain)
14323 return decl;
14324 tree ret = tree_cons (low_bound, length, chain);
14325 OMP_CLAUSE_DEPEND_SINK_NEGATIVE (ret)
14326 = OMP_CLAUSE_DEPEND_SINK_NEGATIVE (decl);
14327 return ret;
14328 }
14329 tree ret = tsubst_expr (decl, args, complain, in_decl,
14330 /*integral_constant_expression_p=*/false);
14331 /* Undo convert_from_reference tsubst_expr could have called. */
14332 if (decl
14333 && REFERENCE_REF_P (ret)
14334 && !REFERENCE_REF_P (decl))
14335 ret = TREE_OPERAND (ret, 0);
14336 return ret;
14337 }
14338
14339 /* Like tsubst_copy, but specifically for OpenMP clauses. */
14340
14341 static tree
14342 tsubst_omp_clauses (tree clauses, bool declare_simd, bool allow_fields,
14343 tree args, tsubst_flags_t complain, tree in_decl)
14344 {
14345 tree new_clauses = NULL_TREE, nc, oc;
14346 tree linear_no_step = NULL_TREE;
14347
14348 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
14349 {
14350 nc = copy_node (oc);
14351 OMP_CLAUSE_CHAIN (nc) = new_clauses;
14352 new_clauses = nc;
14353
14354 switch (OMP_CLAUSE_CODE (nc))
14355 {
14356 case OMP_CLAUSE_LASTPRIVATE:
14357 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
14358 {
14359 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
14360 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
14361 in_decl, /*integral_constant_expression_p=*/false);
14362 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
14363 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
14364 }
14365 /* FALLTHRU */
14366 case OMP_CLAUSE_PRIVATE:
14367 case OMP_CLAUSE_SHARED:
14368 case OMP_CLAUSE_FIRSTPRIVATE:
14369 case OMP_CLAUSE_COPYIN:
14370 case OMP_CLAUSE_COPYPRIVATE:
14371 case OMP_CLAUSE_UNIFORM:
14372 case OMP_CLAUSE_DEPEND:
14373 case OMP_CLAUSE_FROM:
14374 case OMP_CLAUSE_TO:
14375 case OMP_CLAUSE_MAP:
14376 case OMP_CLAUSE_USE_DEVICE_PTR:
14377 case OMP_CLAUSE_IS_DEVICE_PTR:
14378 OMP_CLAUSE_DECL (nc)
14379 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14380 in_decl);
14381 break;
14382 case OMP_CLAUSE_IF:
14383 case OMP_CLAUSE_NUM_THREADS:
14384 case OMP_CLAUSE_SCHEDULE:
14385 case OMP_CLAUSE_COLLAPSE:
14386 case OMP_CLAUSE_FINAL:
14387 case OMP_CLAUSE_DEVICE:
14388 case OMP_CLAUSE_DIST_SCHEDULE:
14389 case OMP_CLAUSE_NUM_TEAMS:
14390 case OMP_CLAUSE_THREAD_LIMIT:
14391 case OMP_CLAUSE_SAFELEN:
14392 case OMP_CLAUSE_SIMDLEN:
14393 case OMP_CLAUSE_NUM_TASKS:
14394 case OMP_CLAUSE_GRAINSIZE:
14395 case OMP_CLAUSE_PRIORITY:
14396 case OMP_CLAUSE_ORDERED:
14397 case OMP_CLAUSE_HINT:
14398 OMP_CLAUSE_OPERAND (nc, 0)
14399 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
14400 in_decl, /*integral_constant_expression_p=*/false);
14401 break;
14402 case OMP_CLAUSE_REDUCTION:
14403 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
14404 {
14405 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
14406 if (TREE_CODE (placeholder) == SCOPE_REF)
14407 {
14408 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
14409 complain, in_decl);
14410 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
14411 = build_qualified_name (NULL_TREE, scope,
14412 TREE_OPERAND (placeholder, 1),
14413 false);
14414 }
14415 else
14416 gcc_assert (identifier_p (placeholder));
14417 }
14418 OMP_CLAUSE_DECL (nc)
14419 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14420 in_decl);
14421 break;
14422 case OMP_CLAUSE_LINEAR:
14423 case OMP_CLAUSE_ALIGNED:
14424 OMP_CLAUSE_DECL (nc)
14425 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14426 in_decl);
14427 OMP_CLAUSE_OPERAND (nc, 1)
14428 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
14429 in_decl, /*integral_constant_expression_p=*/false);
14430 if (OMP_CLAUSE_CODE (oc) == OMP_CLAUSE_LINEAR
14431 && OMP_CLAUSE_LINEAR_STEP (oc) == NULL_TREE)
14432 {
14433 gcc_assert (!linear_no_step);
14434 linear_no_step = nc;
14435 }
14436 break;
14437 case OMP_CLAUSE_NOWAIT:
14438 case OMP_CLAUSE_DEFAULT:
14439 case OMP_CLAUSE_UNTIED:
14440 case OMP_CLAUSE_MERGEABLE:
14441 case OMP_CLAUSE_INBRANCH:
14442 case OMP_CLAUSE_NOTINBRANCH:
14443 case OMP_CLAUSE_PROC_BIND:
14444 case OMP_CLAUSE_FOR:
14445 case OMP_CLAUSE_PARALLEL:
14446 case OMP_CLAUSE_SECTIONS:
14447 case OMP_CLAUSE_TASKGROUP:
14448 case OMP_CLAUSE_NOGROUP:
14449 case OMP_CLAUSE_THREADS:
14450 case OMP_CLAUSE_SIMD:
14451 case OMP_CLAUSE_DEFAULTMAP:
14452 break;
14453 default:
14454 gcc_unreachable ();
14455 }
14456 if (allow_fields)
14457 switch (OMP_CLAUSE_CODE (nc))
14458 {
14459 case OMP_CLAUSE_PRIVATE:
14460 case OMP_CLAUSE_FIRSTPRIVATE:
14461 case OMP_CLAUSE_LASTPRIVATE:
14462 case OMP_CLAUSE_COPYPRIVATE:
14463 case OMP_CLAUSE_LINEAR:
14464 case OMP_CLAUSE_REDUCTION:
14465 case OMP_CLAUSE_USE_DEVICE_PTR:
14466 case OMP_CLAUSE_IS_DEVICE_PTR:
14467 /* tsubst_expr on SCOPE_REF results in returning
14468 finish_non_static_data_member result. Undo that here. */
14469 if (TREE_CODE (OMP_CLAUSE_DECL (oc)) == SCOPE_REF
14470 && (TREE_CODE (TREE_OPERAND (OMP_CLAUSE_DECL (oc), 1))
14471 == IDENTIFIER_NODE))
14472 {
14473 tree t = OMP_CLAUSE_DECL (nc);
14474 tree v = t;
14475 while (v)
14476 switch (TREE_CODE (v))
14477 {
14478 case COMPONENT_REF:
14479 case MEM_REF:
14480 case INDIRECT_REF:
14481 CASE_CONVERT:
14482 case POINTER_PLUS_EXPR:
14483 v = TREE_OPERAND (v, 0);
14484 continue;
14485 case PARM_DECL:
14486 if (DECL_CONTEXT (v) == current_function_decl
14487 && DECL_ARTIFICIAL (v)
14488 && DECL_NAME (v) == this_identifier)
14489 OMP_CLAUSE_DECL (nc) = TREE_OPERAND (t, 1);
14490 /* FALLTHRU */
14491 default:
14492 v = NULL_TREE;
14493 break;
14494 }
14495 }
14496 else if (VAR_P (OMP_CLAUSE_DECL (oc))
14497 && DECL_HAS_VALUE_EXPR_P (OMP_CLAUSE_DECL (oc))
14498 && DECL_ARTIFICIAL (OMP_CLAUSE_DECL (oc))
14499 && DECL_LANG_SPECIFIC (OMP_CLAUSE_DECL (oc))
14500 && DECL_OMP_PRIVATIZED_MEMBER (OMP_CLAUSE_DECL (oc)))
14501 {
14502 tree decl = OMP_CLAUSE_DECL (nc);
14503 if (VAR_P (decl))
14504 {
14505 if (!DECL_LANG_SPECIFIC (decl))
14506 retrofit_lang_decl (decl);
14507 DECL_OMP_PRIVATIZED_MEMBER (decl) = 1;
14508 }
14509 }
14510 break;
14511 default:
14512 break;
14513 }
14514 }
14515
14516 new_clauses = nreverse (new_clauses);
14517 if (!declare_simd)
14518 {
14519 new_clauses = finish_omp_clauses (new_clauses, allow_fields);
14520 if (linear_no_step)
14521 for (nc = new_clauses; nc; nc = OMP_CLAUSE_CHAIN (nc))
14522 if (nc == linear_no_step)
14523 {
14524 OMP_CLAUSE_LINEAR_STEP (nc) = NULL_TREE;
14525 break;
14526 }
14527 }
14528 return new_clauses;
14529 }
14530
14531 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
14532
14533 static tree
14534 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
14535 tree in_decl)
14536 {
14537 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
14538
14539 tree purpose, value, chain;
14540
14541 if (t == NULL)
14542 return t;
14543
14544 if (TREE_CODE (t) != TREE_LIST)
14545 return tsubst_copy_and_build (t, args, complain, in_decl,
14546 /*function_p=*/false,
14547 /*integral_constant_expression_p=*/false);
14548
14549 if (t == void_list_node)
14550 return t;
14551
14552 purpose = TREE_PURPOSE (t);
14553 if (purpose)
14554 purpose = RECUR (purpose);
14555 value = TREE_VALUE (t);
14556 if (value)
14557 {
14558 if (TREE_CODE (value) != LABEL_DECL)
14559 value = RECUR (value);
14560 else
14561 {
14562 value = lookup_label (DECL_NAME (value));
14563 gcc_assert (TREE_CODE (value) == LABEL_DECL);
14564 TREE_USED (value) = 1;
14565 }
14566 }
14567 chain = TREE_CHAIN (t);
14568 if (chain && chain != void_type_node)
14569 chain = RECUR (chain);
14570 return tree_cons (purpose, value, chain);
14571 #undef RECUR
14572 }
14573
14574 /* Used to temporarily communicate the list of #pragma omp parallel
14575 clauses to #pragma omp for instantiation if they are combined
14576 together. */
14577
14578 static tree *omp_parallel_combined_clauses;
14579
14580 /* Substitute one OMP_FOR iterator. */
14581
14582 static void
14583 tsubst_omp_for_iterator (tree t, int i, tree declv, tree orig_declv,
14584 tree initv, tree condv, tree incrv, tree *clauses,
14585 tree args, tsubst_flags_t complain, tree in_decl,
14586 bool integral_constant_expression_p)
14587 {
14588 #define RECUR(NODE) \
14589 tsubst_expr ((NODE), args, complain, in_decl, \
14590 integral_constant_expression_p)
14591 tree decl, init, cond, incr;
14592
14593 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
14594 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
14595
14596 if (orig_declv && OMP_FOR_ORIG_DECLS (t))
14597 {
14598 tree o = TREE_VEC_ELT (OMP_FOR_ORIG_DECLS (t), i);
14599 TREE_VEC_ELT (orig_declv, i) = RECUR (o);
14600 }
14601
14602 decl = TREE_OPERAND (init, 0);
14603 init = TREE_OPERAND (init, 1);
14604 tree decl_expr = NULL_TREE;
14605 if (init && TREE_CODE (init) == DECL_EXPR)
14606 {
14607 /* We need to jump through some hoops to handle declarations in the
14608 for-init-statement, since we might need to handle auto deduction,
14609 but we need to keep control of initialization. */
14610 decl_expr = init;
14611 init = DECL_INITIAL (DECL_EXPR_DECL (init));
14612 decl = tsubst_decl (decl, args, complain);
14613 }
14614 else
14615 {
14616 if (TREE_CODE (decl) == SCOPE_REF)
14617 {
14618 decl = RECUR (decl);
14619 if (TREE_CODE (decl) == COMPONENT_REF)
14620 {
14621 tree v = decl;
14622 while (v)
14623 switch (TREE_CODE (v))
14624 {
14625 case COMPONENT_REF:
14626 case MEM_REF:
14627 case INDIRECT_REF:
14628 CASE_CONVERT:
14629 case POINTER_PLUS_EXPR:
14630 v = TREE_OPERAND (v, 0);
14631 continue;
14632 case PARM_DECL:
14633 if (DECL_CONTEXT (v) == current_function_decl
14634 && DECL_ARTIFICIAL (v)
14635 && DECL_NAME (v) == this_identifier)
14636 {
14637 decl = TREE_OPERAND (decl, 1);
14638 decl = omp_privatize_field (decl);
14639 }
14640 /* FALLTHRU */
14641 default:
14642 v = NULL_TREE;
14643 break;
14644 }
14645 }
14646 }
14647 else
14648 decl = RECUR (decl);
14649 }
14650 init = RECUR (init);
14651
14652 tree auto_node = type_uses_auto (TREE_TYPE (decl));
14653 if (auto_node && init)
14654 TREE_TYPE (decl)
14655 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
14656
14657 gcc_assert (!type_dependent_expression_p (decl));
14658
14659 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
14660 {
14661 if (decl_expr)
14662 {
14663 /* Declare the variable, but don't let that initialize it. */
14664 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
14665 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
14666 RECUR (decl_expr);
14667 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
14668 }
14669
14670 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
14671 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14672 if (TREE_CODE (incr) == MODIFY_EXPR)
14673 {
14674 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14675 tree rhs = RECUR (TREE_OPERAND (incr, 1));
14676 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
14677 NOP_EXPR, rhs, complain);
14678 }
14679 else
14680 incr = RECUR (incr);
14681 TREE_VEC_ELT (declv, i) = decl;
14682 TREE_VEC_ELT (initv, i) = init;
14683 TREE_VEC_ELT (condv, i) = cond;
14684 TREE_VEC_ELT (incrv, i) = incr;
14685 return;
14686 }
14687
14688 if (decl_expr)
14689 {
14690 /* Declare and initialize the variable. */
14691 RECUR (decl_expr);
14692 init = NULL_TREE;
14693 }
14694 else if (init)
14695 {
14696 tree *pc;
14697 int j;
14698 for (j = (omp_parallel_combined_clauses == NULL ? 1 : 0); j < 2; j++)
14699 {
14700 for (pc = j ? clauses : omp_parallel_combined_clauses; *pc; )
14701 {
14702 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_PRIVATE
14703 && OMP_CLAUSE_DECL (*pc) == decl)
14704 break;
14705 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_LASTPRIVATE
14706 && OMP_CLAUSE_DECL (*pc) == decl)
14707 {
14708 if (j)
14709 break;
14710 /* Move lastprivate (decl) clause to OMP_FOR_CLAUSES. */
14711 tree c = *pc;
14712 *pc = OMP_CLAUSE_CHAIN (c);
14713 OMP_CLAUSE_CHAIN (c) = *clauses;
14714 *clauses = c;
14715 }
14716 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_FIRSTPRIVATE
14717 && OMP_CLAUSE_DECL (*pc) == decl)
14718 {
14719 error ("iteration variable %qD should not be firstprivate",
14720 decl);
14721 *pc = OMP_CLAUSE_CHAIN (*pc);
14722 }
14723 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_REDUCTION
14724 && OMP_CLAUSE_DECL (*pc) == decl)
14725 {
14726 error ("iteration variable %qD should not be reduction",
14727 decl);
14728 *pc = OMP_CLAUSE_CHAIN (*pc);
14729 }
14730 else
14731 pc = &OMP_CLAUSE_CHAIN (*pc);
14732 }
14733 if (*pc)
14734 break;
14735 }
14736 if (*pc == NULL_TREE)
14737 {
14738 tree c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
14739 OMP_CLAUSE_DECL (c) = decl;
14740 c = finish_omp_clauses (c, true);
14741 if (c)
14742 {
14743 OMP_CLAUSE_CHAIN (c) = *clauses;
14744 *clauses = c;
14745 }
14746 }
14747 }
14748 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
14749 if (COMPARISON_CLASS_P (cond))
14750 {
14751 tree op0 = RECUR (TREE_OPERAND (cond, 0));
14752 tree op1 = RECUR (TREE_OPERAND (cond, 1));
14753 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
14754 }
14755 else
14756 cond = RECUR (cond);
14757 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14758 switch (TREE_CODE (incr))
14759 {
14760 case PREINCREMENT_EXPR:
14761 case PREDECREMENT_EXPR:
14762 case POSTINCREMENT_EXPR:
14763 case POSTDECREMENT_EXPR:
14764 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
14765 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
14766 break;
14767 case MODIFY_EXPR:
14768 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
14769 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
14770 {
14771 tree rhs = TREE_OPERAND (incr, 1);
14772 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14773 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
14774 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
14775 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14776 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
14777 rhs0, rhs1));
14778 }
14779 else
14780 incr = RECUR (incr);
14781 break;
14782 case MODOP_EXPR:
14783 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
14784 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
14785 {
14786 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14787 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14788 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
14789 TREE_TYPE (decl), lhs,
14790 RECUR (TREE_OPERAND (incr, 2))));
14791 }
14792 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
14793 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
14794 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
14795 {
14796 tree rhs = TREE_OPERAND (incr, 2);
14797 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14798 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
14799 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
14800 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14801 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
14802 rhs0, rhs1));
14803 }
14804 else
14805 incr = RECUR (incr);
14806 break;
14807 default:
14808 incr = RECUR (incr);
14809 break;
14810 }
14811
14812 TREE_VEC_ELT (declv, i) = decl;
14813 TREE_VEC_ELT (initv, i) = init;
14814 TREE_VEC_ELT (condv, i) = cond;
14815 TREE_VEC_ELT (incrv, i) = incr;
14816 #undef RECUR
14817 }
14818
14819 /* Like tsubst_copy for expressions, etc. but also does semantic
14820 processing. */
14821
14822 tree
14823 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
14824 bool integral_constant_expression_p)
14825 {
14826 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
14827 #define RECUR(NODE) \
14828 tsubst_expr ((NODE), args, complain, in_decl, \
14829 integral_constant_expression_p)
14830
14831 tree stmt, tmp;
14832 tree r;
14833 location_t loc;
14834
14835 if (t == NULL_TREE || t == error_mark_node)
14836 return t;
14837
14838 loc = input_location;
14839 if (EXPR_HAS_LOCATION (t))
14840 input_location = EXPR_LOCATION (t);
14841 if (STATEMENT_CODE_P (TREE_CODE (t)))
14842 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
14843
14844 switch (TREE_CODE (t))
14845 {
14846 case STATEMENT_LIST:
14847 {
14848 tree_stmt_iterator i;
14849 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
14850 RECUR (tsi_stmt (i));
14851 break;
14852 }
14853
14854 case CTOR_INITIALIZER:
14855 finish_mem_initializers (tsubst_initializer_list
14856 (TREE_OPERAND (t, 0), args));
14857 break;
14858
14859 case RETURN_EXPR:
14860 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
14861 break;
14862
14863 case EXPR_STMT:
14864 tmp = RECUR (EXPR_STMT_EXPR (t));
14865 if (EXPR_STMT_STMT_EXPR_RESULT (t))
14866 finish_stmt_expr_expr (tmp, cur_stmt_expr);
14867 else
14868 finish_expr_stmt (tmp);
14869 break;
14870
14871 case USING_STMT:
14872 do_using_directive (USING_STMT_NAMESPACE (t));
14873 break;
14874
14875 case DECL_EXPR:
14876 {
14877 tree decl, pattern_decl;
14878 tree init;
14879
14880 pattern_decl = decl = DECL_EXPR_DECL (t);
14881 if (TREE_CODE (decl) == LABEL_DECL)
14882 finish_label_decl (DECL_NAME (decl));
14883 else if (TREE_CODE (decl) == USING_DECL)
14884 {
14885 tree scope = USING_DECL_SCOPE (decl);
14886 tree name = DECL_NAME (decl);
14887 tree decl;
14888
14889 scope = tsubst (scope, args, complain, in_decl);
14890 decl = lookup_qualified_name (scope, name,
14891 /*is_type_p=*/false,
14892 /*complain=*/false);
14893 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
14894 qualified_name_lookup_error (scope, name, decl, input_location);
14895 else
14896 do_local_using_decl (decl, scope, name);
14897 }
14898 else if (DECL_PACK_P (decl))
14899 {
14900 /* Don't build up decls for a variadic capture proxy, we'll
14901 instantiate the elements directly as needed. */
14902 break;
14903 }
14904 else
14905 {
14906 init = DECL_INITIAL (decl);
14907 decl = tsubst (decl, args, complain, in_decl);
14908 if (decl != error_mark_node)
14909 {
14910 /* By marking the declaration as instantiated, we avoid
14911 trying to instantiate it. Since instantiate_decl can't
14912 handle local variables, and since we've already done
14913 all that needs to be done, that's the right thing to
14914 do. */
14915 if (VAR_P (decl))
14916 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
14917 if (VAR_P (decl)
14918 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
14919 /* Anonymous aggregates are a special case. */
14920 finish_anon_union (decl);
14921 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
14922 {
14923 DECL_CONTEXT (decl) = current_function_decl;
14924 if (DECL_NAME (decl) == this_identifier)
14925 {
14926 tree lam = DECL_CONTEXT (current_function_decl);
14927 lam = CLASSTYPE_LAMBDA_EXPR (lam);
14928 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
14929 }
14930 insert_capture_proxy (decl);
14931 }
14932 else if (DECL_IMPLICIT_TYPEDEF_P (t))
14933 /* We already did a pushtag. */;
14934 else if (TREE_CODE (decl) == FUNCTION_DECL
14935 && DECL_OMP_DECLARE_REDUCTION_P (decl)
14936 && DECL_FUNCTION_SCOPE_P (pattern_decl))
14937 {
14938 DECL_CONTEXT (decl) = NULL_TREE;
14939 pushdecl (decl);
14940 DECL_CONTEXT (decl) = current_function_decl;
14941 cp_check_omp_declare_reduction (decl);
14942 }
14943 else
14944 {
14945 int const_init = false;
14946 maybe_push_decl (decl);
14947 if (VAR_P (decl)
14948 && DECL_PRETTY_FUNCTION_P (decl))
14949 {
14950 /* For __PRETTY_FUNCTION__ we have to adjust the
14951 initializer. */
14952 const char *const name
14953 = cxx_printable_name (current_function_decl, 2);
14954 init = cp_fname_init (name, &TREE_TYPE (decl));
14955 }
14956 else
14957 init = tsubst_init (init, decl, args, complain, in_decl);
14958
14959 if (VAR_P (decl))
14960 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
14961 (pattern_decl));
14962 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
14963 }
14964 }
14965 }
14966
14967 break;
14968 }
14969
14970 case FOR_STMT:
14971 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
14972 RECUR (FOR_INIT_STMT (t));
14973 finish_for_init_stmt (stmt);
14974 tmp = RECUR (FOR_COND (t));
14975 finish_for_cond (tmp, stmt, false);
14976 tmp = RECUR (FOR_EXPR (t));
14977 finish_for_expr (tmp, stmt);
14978 RECUR (FOR_BODY (t));
14979 finish_for_stmt (stmt);
14980 break;
14981
14982 case RANGE_FOR_STMT:
14983 {
14984 tree decl, expr;
14985 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
14986 decl = RANGE_FOR_DECL (t);
14987 decl = tsubst (decl, args, complain, in_decl);
14988 maybe_push_decl (decl);
14989 expr = RECUR (RANGE_FOR_EXPR (t));
14990 stmt = cp_convert_range_for (stmt, decl, expr, RANGE_FOR_IVDEP (t));
14991 RECUR (RANGE_FOR_BODY (t));
14992 finish_for_stmt (stmt);
14993 }
14994 break;
14995
14996 case WHILE_STMT:
14997 stmt = begin_while_stmt ();
14998 tmp = RECUR (WHILE_COND (t));
14999 finish_while_stmt_cond (tmp, stmt, false);
15000 RECUR (WHILE_BODY (t));
15001 finish_while_stmt (stmt);
15002 break;
15003
15004 case DO_STMT:
15005 stmt = begin_do_stmt ();
15006 RECUR (DO_BODY (t));
15007 finish_do_body (stmt);
15008 tmp = RECUR (DO_COND (t));
15009 finish_do_stmt (tmp, stmt, false);
15010 break;
15011
15012 case IF_STMT:
15013 stmt = begin_if_stmt ();
15014 tmp = RECUR (IF_COND (t));
15015 finish_if_stmt_cond (tmp, stmt);
15016 RECUR (THEN_CLAUSE (t));
15017 finish_then_clause (stmt);
15018
15019 if (ELSE_CLAUSE (t))
15020 {
15021 begin_else_clause (stmt);
15022 RECUR (ELSE_CLAUSE (t));
15023 finish_else_clause (stmt);
15024 }
15025
15026 finish_if_stmt (stmt);
15027 break;
15028
15029 case BIND_EXPR:
15030 if (BIND_EXPR_BODY_BLOCK (t))
15031 stmt = begin_function_body ();
15032 else
15033 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
15034 ? BCS_TRY_BLOCK : 0);
15035
15036 RECUR (BIND_EXPR_BODY (t));
15037
15038 if (BIND_EXPR_BODY_BLOCK (t))
15039 finish_function_body (stmt);
15040 else
15041 finish_compound_stmt (stmt);
15042 break;
15043
15044 case BREAK_STMT:
15045 finish_break_stmt ();
15046 break;
15047
15048 case CONTINUE_STMT:
15049 finish_continue_stmt ();
15050 break;
15051
15052 case SWITCH_STMT:
15053 stmt = begin_switch_stmt ();
15054 tmp = RECUR (SWITCH_STMT_COND (t));
15055 finish_switch_cond (tmp, stmt);
15056 RECUR (SWITCH_STMT_BODY (t));
15057 finish_switch_stmt (stmt);
15058 break;
15059
15060 case CASE_LABEL_EXPR:
15061 {
15062 tree low = RECUR (CASE_LOW (t));
15063 tree high = RECUR (CASE_HIGH (t));
15064 finish_case_label (EXPR_LOCATION (t), low, high);
15065 }
15066 break;
15067
15068 case LABEL_EXPR:
15069 {
15070 tree decl = LABEL_EXPR_LABEL (t);
15071 tree label;
15072
15073 label = finish_label_stmt (DECL_NAME (decl));
15074 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
15075 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
15076 }
15077 break;
15078
15079 case GOTO_EXPR:
15080 tmp = GOTO_DESTINATION (t);
15081 if (TREE_CODE (tmp) != LABEL_DECL)
15082 /* Computed goto's must be tsubst'd into. On the other hand,
15083 non-computed gotos must not be; the identifier in question
15084 will have no binding. */
15085 tmp = RECUR (tmp);
15086 else
15087 tmp = DECL_NAME (tmp);
15088 finish_goto_stmt (tmp);
15089 break;
15090
15091 case ASM_EXPR:
15092 {
15093 tree string = RECUR (ASM_STRING (t));
15094 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
15095 complain, in_decl);
15096 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
15097 complain, in_decl);
15098 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
15099 complain, in_decl);
15100 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
15101 complain, in_decl);
15102 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
15103 clobbers, labels);
15104 tree asm_expr = tmp;
15105 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
15106 asm_expr = TREE_OPERAND (asm_expr, 0);
15107 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
15108 }
15109 break;
15110
15111 case TRY_BLOCK:
15112 if (CLEANUP_P (t))
15113 {
15114 stmt = begin_try_block ();
15115 RECUR (TRY_STMTS (t));
15116 finish_cleanup_try_block (stmt);
15117 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
15118 }
15119 else
15120 {
15121 tree compound_stmt = NULL_TREE;
15122
15123 if (FN_TRY_BLOCK_P (t))
15124 stmt = begin_function_try_block (&compound_stmt);
15125 else
15126 stmt = begin_try_block ();
15127
15128 RECUR (TRY_STMTS (t));
15129
15130 if (FN_TRY_BLOCK_P (t))
15131 finish_function_try_block (stmt);
15132 else
15133 finish_try_block (stmt);
15134
15135 RECUR (TRY_HANDLERS (t));
15136 if (FN_TRY_BLOCK_P (t))
15137 finish_function_handler_sequence (stmt, compound_stmt);
15138 else
15139 finish_handler_sequence (stmt);
15140 }
15141 break;
15142
15143 case HANDLER:
15144 {
15145 tree decl = HANDLER_PARMS (t);
15146
15147 if (decl)
15148 {
15149 decl = tsubst (decl, args, complain, in_decl);
15150 /* Prevent instantiate_decl from trying to instantiate
15151 this variable. We've already done all that needs to be
15152 done. */
15153 if (decl != error_mark_node)
15154 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15155 }
15156 stmt = begin_handler ();
15157 finish_handler_parms (decl, stmt);
15158 RECUR (HANDLER_BODY (t));
15159 finish_handler (stmt);
15160 }
15161 break;
15162
15163 case TAG_DEFN:
15164 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
15165 if (CLASS_TYPE_P (tmp))
15166 {
15167 /* Local classes are not independent templates; they are
15168 instantiated along with their containing function. And this
15169 way we don't have to deal with pushing out of one local class
15170 to instantiate a member of another local class. */
15171 tree fn;
15172 /* Closures are handled by the LAMBDA_EXPR. */
15173 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
15174 complete_type (tmp);
15175 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
15176 if (!DECL_ARTIFICIAL (fn))
15177 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
15178 }
15179 break;
15180
15181 case STATIC_ASSERT:
15182 {
15183 tree condition;
15184
15185 ++c_inhibit_evaluation_warnings;
15186 condition =
15187 tsubst_expr (STATIC_ASSERT_CONDITION (t),
15188 args,
15189 complain, in_decl,
15190 /*integral_constant_expression_p=*/true);
15191 --c_inhibit_evaluation_warnings;
15192
15193 finish_static_assert (condition,
15194 STATIC_ASSERT_MESSAGE (t),
15195 STATIC_ASSERT_SOURCE_LOCATION (t),
15196 /*member_p=*/false);
15197 }
15198 break;
15199
15200 case OMP_PARALLEL:
15201 r = push_omp_privatization_clauses (OMP_PARALLEL_COMBINED (t));
15202 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), false, true,
15203 args, complain, in_decl);
15204 if (OMP_PARALLEL_COMBINED (t))
15205 omp_parallel_combined_clauses = &tmp;
15206 stmt = begin_omp_parallel ();
15207 RECUR (OMP_PARALLEL_BODY (t));
15208 gcc_assert (omp_parallel_combined_clauses == NULL);
15209 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
15210 = OMP_PARALLEL_COMBINED (t);
15211 pop_omp_privatization_clauses (r);
15212 break;
15213
15214 case OMP_TASK:
15215 r = push_omp_privatization_clauses (false);
15216 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), false, true,
15217 args, complain, in_decl);
15218 stmt = begin_omp_task ();
15219 RECUR (OMP_TASK_BODY (t));
15220 finish_omp_task (tmp, stmt);
15221 pop_omp_privatization_clauses (r);
15222 break;
15223
15224 case OMP_FOR:
15225 case OMP_SIMD:
15226 case CILK_SIMD:
15227 case CILK_FOR:
15228 case OMP_DISTRIBUTE:
15229 case OMP_TASKLOOP:
15230 {
15231 tree clauses, body, pre_body;
15232 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
15233 tree orig_declv = NULL_TREE;
15234 tree incrv = NULL_TREE;
15235 int i;
15236
15237 r = push_omp_privatization_clauses (OMP_FOR_INIT (t) == NULL_TREE);
15238 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), false, true,
15239 args, complain, in_decl);
15240 if (OMP_FOR_INIT (t) != NULL_TREE)
15241 {
15242 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15243 if (TREE_CODE (t) == OMP_FOR && OMP_FOR_ORIG_DECLS (t))
15244 orig_declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15245 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15246 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15247 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15248 }
15249
15250 stmt = begin_omp_structured_block ();
15251
15252 pre_body = push_stmt_list ();
15253 RECUR (OMP_FOR_PRE_BODY (t));
15254 pre_body = pop_stmt_list (pre_body);
15255
15256 if (OMP_FOR_INIT (t) != NULL_TREE)
15257 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
15258 tsubst_omp_for_iterator (t, i, declv, orig_declv, initv, condv,
15259 incrv, &clauses, args, complain, in_decl,
15260 integral_constant_expression_p);
15261 omp_parallel_combined_clauses = NULL;
15262
15263 body = push_stmt_list ();
15264 RECUR (OMP_FOR_BODY (t));
15265 body = pop_stmt_list (body);
15266
15267 if (OMP_FOR_INIT (t) != NULL_TREE)
15268 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv,
15269 orig_declv, initv, condv, incrv, body, pre_body,
15270 clauses);
15271 else
15272 {
15273 t = make_node (TREE_CODE (t));
15274 TREE_TYPE (t) = void_type_node;
15275 OMP_FOR_BODY (t) = body;
15276 OMP_FOR_PRE_BODY (t) = pre_body;
15277 OMP_FOR_CLAUSES (t) = clauses;
15278 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
15279 add_stmt (t);
15280 }
15281
15282 add_stmt (finish_omp_structured_block (stmt));
15283 pop_omp_privatization_clauses (r);
15284 }
15285 break;
15286
15287 case OMP_SECTIONS:
15288 omp_parallel_combined_clauses = NULL;
15289 /* FALLTHRU */
15290 case OMP_SINGLE:
15291 case OMP_TEAMS:
15292 case OMP_CRITICAL:
15293 r = push_omp_privatization_clauses (TREE_CODE (t) == OMP_TEAMS
15294 && OMP_TEAMS_COMBINED (t));
15295 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false, true,
15296 args, complain, in_decl);
15297 stmt = push_stmt_list ();
15298 RECUR (OMP_BODY (t));
15299 stmt = pop_stmt_list (stmt);
15300
15301 t = copy_node (t);
15302 OMP_BODY (t) = stmt;
15303 OMP_CLAUSES (t) = tmp;
15304 add_stmt (t);
15305 pop_omp_privatization_clauses (r);
15306 break;
15307
15308 case OMP_TARGET_DATA:
15309 case OMP_TARGET:
15310 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false, true,
15311 args, complain, in_decl);
15312 keep_next_level (true);
15313 stmt = begin_omp_structured_block ();
15314
15315 RECUR (OMP_BODY (t));
15316 stmt = finish_omp_structured_block (stmt);
15317
15318 t = copy_node (t);
15319 OMP_BODY (t) = stmt;
15320 OMP_CLAUSES (t) = tmp;
15321 add_stmt (t);
15322 break;
15323
15324 case OMP_TARGET_UPDATE:
15325 case OMP_TARGET_ENTER_DATA:
15326 case OMP_TARGET_EXIT_DATA:
15327 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), false, true,
15328 args, complain, in_decl);
15329 t = copy_node (t);
15330 OMP_STANDALONE_CLAUSES (t) = tmp;
15331 add_stmt (t);
15332 break;
15333
15334 case OMP_ORDERED:
15335 tmp = tsubst_omp_clauses (OMP_ORDERED_CLAUSES (t), false, true,
15336 args, complain, in_decl);
15337 stmt = push_stmt_list ();
15338 RECUR (OMP_BODY (t));
15339 stmt = pop_stmt_list (stmt);
15340
15341 t = copy_node (t);
15342 OMP_BODY (t) = stmt;
15343 OMP_ORDERED_CLAUSES (t) = tmp;
15344 add_stmt (t);
15345 break;
15346
15347 case OMP_SECTION:
15348 case OMP_MASTER:
15349 case OMP_TASKGROUP:
15350 stmt = push_stmt_list ();
15351 RECUR (OMP_BODY (t));
15352 stmt = pop_stmt_list (stmt);
15353
15354 t = copy_node (t);
15355 OMP_BODY (t) = stmt;
15356 add_stmt (t);
15357 break;
15358
15359 case OMP_ATOMIC:
15360 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
15361 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
15362 {
15363 tree op1 = TREE_OPERAND (t, 1);
15364 tree rhs1 = NULL_TREE;
15365 tree lhs, rhs;
15366 if (TREE_CODE (op1) == COMPOUND_EXPR)
15367 {
15368 rhs1 = RECUR (TREE_OPERAND (op1, 0));
15369 op1 = TREE_OPERAND (op1, 1);
15370 }
15371 lhs = RECUR (TREE_OPERAND (op1, 0));
15372 rhs = RECUR (TREE_OPERAND (op1, 1));
15373 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
15374 NULL_TREE, NULL_TREE, rhs1,
15375 OMP_ATOMIC_SEQ_CST (t));
15376 }
15377 else
15378 {
15379 tree op1 = TREE_OPERAND (t, 1);
15380 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
15381 tree rhs1 = NULL_TREE;
15382 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
15383 enum tree_code opcode = NOP_EXPR;
15384 if (code == OMP_ATOMIC_READ)
15385 {
15386 v = RECUR (TREE_OPERAND (op1, 0));
15387 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15388 }
15389 else if (code == OMP_ATOMIC_CAPTURE_OLD
15390 || code == OMP_ATOMIC_CAPTURE_NEW)
15391 {
15392 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
15393 v = RECUR (TREE_OPERAND (op1, 0));
15394 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15395 if (TREE_CODE (op11) == COMPOUND_EXPR)
15396 {
15397 rhs1 = RECUR (TREE_OPERAND (op11, 0));
15398 op11 = TREE_OPERAND (op11, 1);
15399 }
15400 lhs = RECUR (TREE_OPERAND (op11, 0));
15401 rhs = RECUR (TREE_OPERAND (op11, 1));
15402 opcode = TREE_CODE (op11);
15403 if (opcode == MODIFY_EXPR)
15404 opcode = NOP_EXPR;
15405 }
15406 else
15407 {
15408 code = OMP_ATOMIC;
15409 lhs = RECUR (TREE_OPERAND (op1, 0));
15410 rhs = RECUR (TREE_OPERAND (op1, 1));
15411 }
15412 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
15413 OMP_ATOMIC_SEQ_CST (t));
15414 }
15415 break;
15416
15417 case TRANSACTION_EXPR:
15418 {
15419 int flags = 0;
15420 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
15421 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
15422
15423 if (TRANSACTION_EXPR_IS_STMT (t))
15424 {
15425 tree body = TRANSACTION_EXPR_BODY (t);
15426 tree noex = NULL_TREE;
15427 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
15428 {
15429 noex = MUST_NOT_THROW_COND (body);
15430 if (noex == NULL_TREE)
15431 noex = boolean_true_node;
15432 body = TREE_OPERAND (body, 0);
15433 }
15434 stmt = begin_transaction_stmt (input_location, NULL, flags);
15435 RECUR (body);
15436 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
15437 }
15438 else
15439 {
15440 stmt = build_transaction_expr (EXPR_LOCATION (t),
15441 RECUR (TRANSACTION_EXPR_BODY (t)),
15442 flags, NULL_TREE);
15443 RETURN (stmt);
15444 }
15445 }
15446 break;
15447
15448 case MUST_NOT_THROW_EXPR:
15449 {
15450 tree op0 = RECUR (TREE_OPERAND (t, 0));
15451 tree cond = RECUR (MUST_NOT_THROW_COND (t));
15452 RETURN (build_must_not_throw_expr (op0, cond));
15453 }
15454
15455 case EXPR_PACK_EXPANSION:
15456 error ("invalid use of pack expansion expression");
15457 RETURN (error_mark_node);
15458
15459 case NONTYPE_ARGUMENT_PACK:
15460 error ("use %<...%> to expand argument pack");
15461 RETURN (error_mark_node);
15462
15463 case CILK_SPAWN_STMT:
15464 cfun->calls_cilk_spawn = 1;
15465 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
15466
15467 case CILK_SYNC_STMT:
15468 RETURN (build_cilk_sync ());
15469
15470 case COMPOUND_EXPR:
15471 tmp = RECUR (TREE_OPERAND (t, 0));
15472 if (tmp == NULL_TREE)
15473 /* If the first operand was a statement, we're done with it. */
15474 RETURN (RECUR (TREE_OPERAND (t, 1)));
15475 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
15476 RECUR (TREE_OPERAND (t, 1)),
15477 complain));
15478
15479 case ANNOTATE_EXPR:
15480 tmp = RECUR (TREE_OPERAND (t, 0));
15481 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
15482 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
15483
15484 default:
15485 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
15486
15487 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
15488 /*function_p=*/false,
15489 integral_constant_expression_p));
15490 }
15491
15492 RETURN (NULL_TREE);
15493 out:
15494 input_location = loc;
15495 return r;
15496 #undef RECUR
15497 #undef RETURN
15498 }
15499
15500 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
15501 function. For description of the body see comment above
15502 cp_parser_omp_declare_reduction_exprs. */
15503
15504 static void
15505 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
15506 {
15507 if (t == NULL_TREE || t == error_mark_node)
15508 return;
15509
15510 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
15511
15512 tree_stmt_iterator tsi;
15513 int i;
15514 tree stmts[7];
15515 memset (stmts, 0, sizeof stmts);
15516 for (i = 0, tsi = tsi_start (t);
15517 i < 7 && !tsi_end_p (tsi);
15518 i++, tsi_next (&tsi))
15519 stmts[i] = tsi_stmt (tsi);
15520 gcc_assert (tsi_end_p (tsi));
15521
15522 if (i >= 3)
15523 {
15524 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
15525 && TREE_CODE (stmts[1]) == DECL_EXPR);
15526 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
15527 args, complain, in_decl);
15528 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
15529 args, complain, in_decl);
15530 DECL_CONTEXT (omp_out) = current_function_decl;
15531 DECL_CONTEXT (omp_in) = current_function_decl;
15532 keep_next_level (true);
15533 tree block = begin_omp_structured_block ();
15534 tsubst_expr (stmts[2], args, complain, in_decl, false);
15535 block = finish_omp_structured_block (block);
15536 block = maybe_cleanup_point_expr_void (block);
15537 add_decl_expr (omp_out);
15538 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
15539 TREE_NO_WARNING (omp_out) = 1;
15540 add_decl_expr (omp_in);
15541 finish_expr_stmt (block);
15542 }
15543 if (i >= 6)
15544 {
15545 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
15546 && TREE_CODE (stmts[4]) == DECL_EXPR);
15547 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
15548 args, complain, in_decl);
15549 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
15550 args, complain, in_decl);
15551 DECL_CONTEXT (omp_priv) = current_function_decl;
15552 DECL_CONTEXT (omp_orig) = current_function_decl;
15553 keep_next_level (true);
15554 tree block = begin_omp_structured_block ();
15555 tsubst_expr (stmts[5], args, complain, in_decl, false);
15556 block = finish_omp_structured_block (block);
15557 block = maybe_cleanup_point_expr_void (block);
15558 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
15559 add_decl_expr (omp_priv);
15560 add_decl_expr (omp_orig);
15561 finish_expr_stmt (block);
15562 if (i == 7)
15563 add_decl_expr (omp_orig);
15564 }
15565 }
15566
15567 /* T is a postfix-expression that is not being used in a function
15568 call. Return the substituted version of T. */
15569
15570 static tree
15571 tsubst_non_call_postfix_expression (tree t, tree args,
15572 tsubst_flags_t complain,
15573 tree in_decl)
15574 {
15575 if (TREE_CODE (t) == SCOPE_REF)
15576 t = tsubst_qualified_id (t, args, complain, in_decl,
15577 /*done=*/false, /*address_p=*/false);
15578 else
15579 t = tsubst_copy_and_build (t, args, complain, in_decl,
15580 /*function_p=*/false,
15581 /*integral_constant_expression_p=*/false);
15582
15583 return t;
15584 }
15585
15586 /* Like tsubst but deals with expressions and performs semantic
15587 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
15588
15589 tree
15590 tsubst_copy_and_build (tree t,
15591 tree args,
15592 tsubst_flags_t complain,
15593 tree in_decl,
15594 bool function_p,
15595 bool integral_constant_expression_p)
15596 {
15597 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
15598 #define RECUR(NODE) \
15599 tsubst_copy_and_build (NODE, args, complain, in_decl, \
15600 /*function_p=*/false, \
15601 integral_constant_expression_p)
15602
15603 tree retval, op1;
15604 location_t loc;
15605
15606 if (t == NULL_TREE || t == error_mark_node)
15607 return t;
15608
15609 loc = input_location;
15610 if (EXPR_HAS_LOCATION (t))
15611 input_location = EXPR_LOCATION (t);
15612
15613 /* N3276 decltype magic only applies to calls at the top level or on the
15614 right side of a comma. */
15615 tsubst_flags_t decltype_flag = (complain & tf_decltype);
15616 complain &= ~tf_decltype;
15617
15618 switch (TREE_CODE (t))
15619 {
15620 case USING_DECL:
15621 t = DECL_NAME (t);
15622 /* Fall through. */
15623 case IDENTIFIER_NODE:
15624 {
15625 tree decl;
15626 cp_id_kind idk;
15627 bool non_integral_constant_expression_p;
15628 const char *error_msg;
15629
15630 if (IDENTIFIER_TYPENAME_P (t))
15631 {
15632 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15633 t = mangle_conv_op_name_for_type (new_type);
15634 }
15635
15636 /* Look up the name. */
15637 decl = lookup_name (t);
15638
15639 /* By convention, expressions use ERROR_MARK_NODE to indicate
15640 failure, not NULL_TREE. */
15641 if (decl == NULL_TREE)
15642 decl = error_mark_node;
15643
15644 decl = finish_id_expression (t, decl, NULL_TREE,
15645 &idk,
15646 integral_constant_expression_p,
15647 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
15648 &non_integral_constant_expression_p,
15649 /*template_p=*/false,
15650 /*done=*/true,
15651 /*address_p=*/false,
15652 /*template_arg_p=*/false,
15653 &error_msg,
15654 input_location);
15655 if (error_msg)
15656 error (error_msg);
15657 if (!function_p && identifier_p (decl))
15658 {
15659 if (complain & tf_error)
15660 unqualified_name_lookup_error (decl);
15661 decl = error_mark_node;
15662 }
15663 RETURN (decl);
15664 }
15665
15666 case TEMPLATE_ID_EXPR:
15667 {
15668 tree object;
15669 tree templ = RECUR (TREE_OPERAND (t, 0));
15670 tree targs = TREE_OPERAND (t, 1);
15671
15672 if (targs)
15673 targs = tsubst_template_args (targs, args, complain, in_decl);
15674 if (targs == error_mark_node)
15675 return error_mark_node;
15676
15677 if (variable_template_p (templ))
15678 {
15679 templ = lookup_template_variable (templ, targs);
15680 if (!any_dependent_template_arguments_p (targs))
15681 {
15682 templ = finish_template_variable (templ, complain);
15683 mark_used (templ);
15684 }
15685 RETURN (convert_from_reference (templ));
15686 }
15687
15688 if (TREE_CODE (templ) == COMPONENT_REF)
15689 {
15690 object = TREE_OPERAND (templ, 0);
15691 templ = TREE_OPERAND (templ, 1);
15692 }
15693 else
15694 object = NULL_TREE;
15695 templ = lookup_template_function (templ, targs);
15696
15697 if (object)
15698 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
15699 object, templ, NULL_TREE));
15700 else
15701 RETURN (baselink_for_fns (templ));
15702 }
15703
15704 case INDIRECT_REF:
15705 {
15706 tree r = RECUR (TREE_OPERAND (t, 0));
15707
15708 if (REFERENCE_REF_P (t))
15709 {
15710 /* A type conversion to reference type will be enclosed in
15711 such an indirect ref, but the substitution of the cast
15712 will have also added such an indirect ref. */
15713 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
15714 r = convert_from_reference (r);
15715 }
15716 else
15717 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
15718 complain|decltype_flag);
15719 RETURN (r);
15720 }
15721
15722 case NOP_EXPR:
15723 {
15724 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15725 tree op0 = RECUR (TREE_OPERAND (t, 0));
15726 RETURN (build_nop (type, op0));
15727 }
15728
15729 case IMPLICIT_CONV_EXPR:
15730 {
15731 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15732 tree expr = RECUR (TREE_OPERAND (t, 0));
15733 int flags = LOOKUP_IMPLICIT;
15734 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
15735 flags = LOOKUP_NORMAL;
15736 RETURN (perform_implicit_conversion_flags (type, expr, complain,
15737 flags));
15738 }
15739
15740 case CONVERT_EXPR:
15741 {
15742 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15743 tree op0 = RECUR (TREE_OPERAND (t, 0));
15744 RETURN (build1 (CONVERT_EXPR, type, op0));
15745 }
15746
15747 case CAST_EXPR:
15748 case REINTERPRET_CAST_EXPR:
15749 case CONST_CAST_EXPR:
15750 case DYNAMIC_CAST_EXPR:
15751 case STATIC_CAST_EXPR:
15752 {
15753 tree type;
15754 tree op, r = NULL_TREE;
15755
15756 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15757 if (integral_constant_expression_p
15758 && !cast_valid_in_integral_constant_expression_p (type))
15759 {
15760 if (complain & tf_error)
15761 error ("a cast to a type other than an integral or "
15762 "enumeration type cannot appear in a constant-expression");
15763 RETURN (error_mark_node);
15764 }
15765
15766 op = RECUR (TREE_OPERAND (t, 0));
15767
15768 warning_sentinel s(warn_useless_cast);
15769 switch (TREE_CODE (t))
15770 {
15771 case CAST_EXPR:
15772 r = build_functional_cast (type, op, complain);
15773 break;
15774 case REINTERPRET_CAST_EXPR:
15775 r = build_reinterpret_cast (type, op, complain);
15776 break;
15777 case CONST_CAST_EXPR:
15778 r = build_const_cast (type, op, complain);
15779 break;
15780 case DYNAMIC_CAST_EXPR:
15781 r = build_dynamic_cast (type, op, complain);
15782 break;
15783 case STATIC_CAST_EXPR:
15784 r = build_static_cast (type, op, complain);
15785 break;
15786 default:
15787 gcc_unreachable ();
15788 }
15789
15790 RETURN (r);
15791 }
15792
15793 case POSTDECREMENT_EXPR:
15794 case POSTINCREMENT_EXPR:
15795 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
15796 args, complain, in_decl);
15797 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
15798 complain|decltype_flag));
15799
15800 case PREDECREMENT_EXPR:
15801 case PREINCREMENT_EXPR:
15802 case NEGATE_EXPR:
15803 case BIT_NOT_EXPR:
15804 case ABS_EXPR:
15805 case TRUTH_NOT_EXPR:
15806 case UNARY_PLUS_EXPR: /* Unary + */
15807 case REALPART_EXPR:
15808 case IMAGPART_EXPR:
15809 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
15810 RECUR (TREE_OPERAND (t, 0)),
15811 complain|decltype_flag));
15812
15813 case FIX_TRUNC_EXPR:
15814 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
15815 0, complain));
15816
15817 case ADDR_EXPR:
15818 op1 = TREE_OPERAND (t, 0);
15819 if (TREE_CODE (op1) == LABEL_DECL)
15820 RETURN (finish_label_address_expr (DECL_NAME (op1),
15821 EXPR_LOCATION (op1)));
15822 if (TREE_CODE (op1) == SCOPE_REF)
15823 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
15824 /*done=*/true, /*address_p=*/true);
15825 else
15826 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
15827 in_decl);
15828 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
15829 complain|decltype_flag));
15830
15831 case PLUS_EXPR:
15832 case MINUS_EXPR:
15833 case MULT_EXPR:
15834 case TRUNC_DIV_EXPR:
15835 case CEIL_DIV_EXPR:
15836 case FLOOR_DIV_EXPR:
15837 case ROUND_DIV_EXPR:
15838 case EXACT_DIV_EXPR:
15839 case BIT_AND_EXPR:
15840 case BIT_IOR_EXPR:
15841 case BIT_XOR_EXPR:
15842 case TRUNC_MOD_EXPR:
15843 case FLOOR_MOD_EXPR:
15844 case TRUTH_ANDIF_EXPR:
15845 case TRUTH_ORIF_EXPR:
15846 case TRUTH_AND_EXPR:
15847 case TRUTH_OR_EXPR:
15848 case RSHIFT_EXPR:
15849 case LSHIFT_EXPR:
15850 case RROTATE_EXPR:
15851 case LROTATE_EXPR:
15852 case EQ_EXPR:
15853 case NE_EXPR:
15854 case MAX_EXPR:
15855 case MIN_EXPR:
15856 case LE_EXPR:
15857 case GE_EXPR:
15858 case LT_EXPR:
15859 case GT_EXPR:
15860 case MEMBER_REF:
15861 case DOTSTAR_EXPR:
15862 {
15863 warning_sentinel s1(warn_type_limits);
15864 warning_sentinel s2(warn_div_by_zero);
15865 warning_sentinel s3(warn_logical_op);
15866 warning_sentinel s4(warn_tautological_compare);
15867 tree op0 = RECUR (TREE_OPERAND (t, 0));
15868 tree op1 = RECUR (TREE_OPERAND (t, 1));
15869 tree r = build_x_binary_op
15870 (input_location, TREE_CODE (t),
15871 op0,
15872 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
15873 ? ERROR_MARK
15874 : TREE_CODE (TREE_OPERAND (t, 0))),
15875 op1,
15876 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
15877 ? ERROR_MARK
15878 : TREE_CODE (TREE_OPERAND (t, 1))),
15879 /*overload=*/NULL,
15880 complain|decltype_flag);
15881 if (EXPR_P (r) && TREE_NO_WARNING (t))
15882 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
15883
15884 RETURN (r);
15885 }
15886
15887 case POINTER_PLUS_EXPR:
15888 {
15889 tree op0 = RECUR (TREE_OPERAND (t, 0));
15890 tree op1 = RECUR (TREE_OPERAND (t, 1));
15891 return fold_build_pointer_plus (op0, op1);
15892 }
15893
15894 case SCOPE_REF:
15895 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
15896 /*address_p=*/false));
15897 case ARRAY_REF:
15898 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
15899 args, complain, in_decl);
15900 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
15901 RECUR (TREE_OPERAND (t, 1)),
15902 complain|decltype_flag));
15903
15904 case ARRAY_NOTATION_REF:
15905 {
15906 tree start_index, length, stride;
15907 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
15908 args, complain, in_decl);
15909 start_index = RECUR (ARRAY_NOTATION_START (t));
15910 length = RECUR (ARRAY_NOTATION_LENGTH (t));
15911 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
15912 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
15913 length, stride, TREE_TYPE (op1)));
15914 }
15915 case SIZEOF_EXPR:
15916 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
15917 RETURN (tsubst_copy (t, args, complain, in_decl));
15918 /* Fall through */
15919
15920 case ALIGNOF_EXPR:
15921 {
15922 tree r;
15923
15924 op1 = TREE_OPERAND (t, 0);
15925 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
15926 op1 = TREE_TYPE (op1);
15927 if (!args)
15928 {
15929 /* When there are no ARGS, we are trying to evaluate a
15930 non-dependent expression from the parser. Trying to do
15931 the substitutions may not work. */
15932 if (!TYPE_P (op1))
15933 op1 = TREE_TYPE (op1);
15934 }
15935 else
15936 {
15937 ++cp_unevaluated_operand;
15938 ++c_inhibit_evaluation_warnings;
15939 if (TYPE_P (op1))
15940 op1 = tsubst (op1, args, complain, in_decl);
15941 else
15942 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
15943 /*function_p=*/false,
15944 /*integral_constant_expression_p=*/
15945 false);
15946 --cp_unevaluated_operand;
15947 --c_inhibit_evaluation_warnings;
15948 }
15949 if (TYPE_P (op1))
15950 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
15951 complain & tf_error);
15952 else
15953 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
15954 complain & tf_error);
15955 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
15956 {
15957 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
15958 {
15959 if (!processing_template_decl && TYPE_P (op1))
15960 {
15961 r = build_min (SIZEOF_EXPR, size_type_node,
15962 build1 (NOP_EXPR, op1, error_mark_node));
15963 SIZEOF_EXPR_TYPE_P (r) = 1;
15964 }
15965 else
15966 r = build_min (SIZEOF_EXPR, size_type_node, op1);
15967 TREE_SIDE_EFFECTS (r) = 0;
15968 TREE_READONLY (r) = 1;
15969 }
15970 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
15971 }
15972 RETURN (r);
15973 }
15974
15975 case AT_ENCODE_EXPR:
15976 {
15977 op1 = TREE_OPERAND (t, 0);
15978 ++cp_unevaluated_operand;
15979 ++c_inhibit_evaluation_warnings;
15980 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
15981 /*function_p=*/false,
15982 /*integral_constant_expression_p=*/false);
15983 --cp_unevaluated_operand;
15984 --c_inhibit_evaluation_warnings;
15985 RETURN (objc_build_encode_expr (op1));
15986 }
15987
15988 case NOEXCEPT_EXPR:
15989 op1 = TREE_OPERAND (t, 0);
15990 ++cp_unevaluated_operand;
15991 ++c_inhibit_evaluation_warnings;
15992 ++cp_noexcept_operand;
15993 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
15994 /*function_p=*/false,
15995 /*integral_constant_expression_p=*/false);
15996 --cp_unevaluated_operand;
15997 --c_inhibit_evaluation_warnings;
15998 --cp_noexcept_operand;
15999 RETURN (finish_noexcept_expr (op1, complain));
16000
16001 case MODOP_EXPR:
16002 {
16003 warning_sentinel s(warn_div_by_zero);
16004 tree lhs = RECUR (TREE_OPERAND (t, 0));
16005 tree rhs = RECUR (TREE_OPERAND (t, 2));
16006 tree r = build_x_modify_expr
16007 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
16008 complain|decltype_flag);
16009 /* TREE_NO_WARNING must be set if either the expression was
16010 parenthesized or it uses an operator such as >>= rather
16011 than plain assignment. In the former case, it was already
16012 set and must be copied. In the latter case,
16013 build_x_modify_expr sets it and it must not be reset
16014 here. */
16015 if (TREE_NO_WARNING (t))
16016 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16017
16018 RETURN (r);
16019 }
16020
16021 case ARROW_EXPR:
16022 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16023 args, complain, in_decl);
16024 /* Remember that there was a reference to this entity. */
16025 if (DECL_P (op1)
16026 && !mark_used (op1, complain) && !(complain & tf_error))
16027 RETURN (error_mark_node);
16028 RETURN (build_x_arrow (input_location, op1, complain));
16029
16030 case NEW_EXPR:
16031 {
16032 tree placement = RECUR (TREE_OPERAND (t, 0));
16033 tree init = RECUR (TREE_OPERAND (t, 3));
16034 vec<tree, va_gc> *placement_vec;
16035 vec<tree, va_gc> *init_vec;
16036 tree ret;
16037
16038 if (placement == NULL_TREE)
16039 placement_vec = NULL;
16040 else
16041 {
16042 placement_vec = make_tree_vector ();
16043 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
16044 vec_safe_push (placement_vec, TREE_VALUE (placement));
16045 }
16046
16047 /* If there was an initializer in the original tree, but it
16048 instantiated to an empty list, then we should pass a
16049 non-NULL empty vector to tell build_new that it was an
16050 empty initializer() rather than no initializer. This can
16051 only happen when the initializer is a pack expansion whose
16052 parameter packs are of length zero. */
16053 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
16054 init_vec = NULL;
16055 else
16056 {
16057 init_vec = make_tree_vector ();
16058 if (init == void_node)
16059 gcc_assert (init_vec != NULL);
16060 else
16061 {
16062 for (; init != NULL_TREE; init = TREE_CHAIN (init))
16063 vec_safe_push (init_vec, TREE_VALUE (init));
16064 }
16065 }
16066
16067 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
16068 tree op2 = RECUR (TREE_OPERAND (t, 2));
16069 ret = build_new (&placement_vec, op1, op2, &init_vec,
16070 NEW_EXPR_USE_GLOBAL (t),
16071 complain);
16072
16073 if (placement_vec != NULL)
16074 release_tree_vector (placement_vec);
16075 if (init_vec != NULL)
16076 release_tree_vector (init_vec);
16077
16078 RETURN (ret);
16079 }
16080
16081 case DELETE_EXPR:
16082 {
16083 tree op0 = RECUR (TREE_OPERAND (t, 0));
16084 tree op1 = RECUR (TREE_OPERAND (t, 1));
16085 RETURN (delete_sanity (op0, op1,
16086 DELETE_EXPR_USE_VEC (t),
16087 DELETE_EXPR_USE_GLOBAL (t),
16088 complain));
16089 }
16090
16091 case COMPOUND_EXPR:
16092 {
16093 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
16094 complain & ~tf_decltype, in_decl,
16095 /*function_p=*/false,
16096 integral_constant_expression_p);
16097 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
16098 op0,
16099 RECUR (TREE_OPERAND (t, 1)),
16100 complain|decltype_flag));
16101 }
16102
16103 case CALL_EXPR:
16104 {
16105 tree function;
16106 vec<tree, va_gc> *call_args;
16107 unsigned int nargs, i;
16108 bool qualified_p;
16109 bool koenig_p;
16110 tree ret;
16111
16112 function = CALL_EXPR_FN (t);
16113 /* When we parsed the expression, we determined whether or
16114 not Koenig lookup should be performed. */
16115 koenig_p = KOENIG_LOOKUP_P (t);
16116 if (TREE_CODE (function) == SCOPE_REF)
16117 {
16118 qualified_p = true;
16119 function = tsubst_qualified_id (function, args, complain, in_decl,
16120 /*done=*/false,
16121 /*address_p=*/false);
16122 }
16123 else if (koenig_p && identifier_p (function))
16124 {
16125 /* Do nothing; calling tsubst_copy_and_build on an identifier
16126 would incorrectly perform unqualified lookup again.
16127
16128 Note that we can also have an IDENTIFIER_NODE if the earlier
16129 unqualified lookup found a member function; in that case
16130 koenig_p will be false and we do want to do the lookup
16131 again to find the instantiated member function.
16132
16133 FIXME but doing that causes c++/15272, so we need to stop
16134 using IDENTIFIER_NODE in that situation. */
16135 qualified_p = false;
16136 }
16137 else
16138 {
16139 if (TREE_CODE (function) == COMPONENT_REF)
16140 {
16141 tree op = TREE_OPERAND (function, 1);
16142
16143 qualified_p = (TREE_CODE (op) == SCOPE_REF
16144 || (BASELINK_P (op)
16145 && BASELINK_QUALIFIED_P (op)));
16146 }
16147 else
16148 qualified_p = false;
16149
16150 if (TREE_CODE (function) == ADDR_EXPR
16151 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
16152 /* Avoid error about taking the address of a constructor. */
16153 function = TREE_OPERAND (function, 0);
16154
16155 function = tsubst_copy_and_build (function, args, complain,
16156 in_decl,
16157 !qualified_p,
16158 integral_constant_expression_p);
16159
16160 if (BASELINK_P (function))
16161 qualified_p = true;
16162 }
16163
16164 nargs = call_expr_nargs (t);
16165 call_args = make_tree_vector ();
16166 for (i = 0; i < nargs; ++i)
16167 {
16168 tree arg = CALL_EXPR_ARG (t, i);
16169
16170 if (!PACK_EXPANSION_P (arg))
16171 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
16172 else
16173 {
16174 /* Expand the pack expansion and push each entry onto
16175 CALL_ARGS. */
16176 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
16177 if (TREE_CODE (arg) == TREE_VEC)
16178 {
16179 unsigned int len, j;
16180
16181 len = TREE_VEC_LENGTH (arg);
16182 for (j = 0; j < len; ++j)
16183 {
16184 tree value = TREE_VEC_ELT (arg, j);
16185 if (value != NULL_TREE)
16186 value = convert_from_reference (value);
16187 vec_safe_push (call_args, value);
16188 }
16189 }
16190 else
16191 {
16192 /* A partial substitution. Add one entry. */
16193 vec_safe_push (call_args, arg);
16194 }
16195 }
16196 }
16197
16198 /* We do not perform argument-dependent lookup if normal
16199 lookup finds a non-function, in accordance with the
16200 expected resolution of DR 218. */
16201 if (koenig_p
16202 && ((is_overloaded_fn (function)
16203 /* If lookup found a member function, the Koenig lookup is
16204 not appropriate, even if an unqualified-name was used
16205 to denote the function. */
16206 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
16207 || identifier_p (function))
16208 /* Only do this when substitution turns a dependent call
16209 into a non-dependent call. */
16210 && type_dependent_expression_p_push (t)
16211 && !any_type_dependent_arguments_p (call_args))
16212 function = perform_koenig_lookup (function, call_args, tf_none);
16213
16214 if (identifier_p (function)
16215 && !any_type_dependent_arguments_p (call_args))
16216 {
16217 if (koenig_p && (complain & tf_warning_or_error))
16218 {
16219 /* For backwards compatibility and good diagnostics, try
16220 the unqualified lookup again if we aren't in SFINAE
16221 context. */
16222 tree unq = (tsubst_copy_and_build
16223 (function, args, complain, in_decl, true,
16224 integral_constant_expression_p));
16225 if (unq == error_mark_node)
16226 RETURN (error_mark_node);
16227
16228 if (unq != function)
16229 {
16230 tree fn = unq;
16231 if (INDIRECT_REF_P (fn))
16232 fn = TREE_OPERAND (fn, 0);
16233 if (TREE_CODE (fn) == COMPONENT_REF)
16234 fn = TREE_OPERAND (fn, 1);
16235 if (is_overloaded_fn (fn))
16236 fn = get_first_fn (fn);
16237 if (permerror (EXPR_LOC_OR_LOC (t, input_location),
16238 "%qD was not declared in this scope, "
16239 "and no declarations were found by "
16240 "argument-dependent lookup at the point "
16241 "of instantiation", function))
16242 {
16243 if (!DECL_P (fn))
16244 /* Can't say anything more. */;
16245 else if (DECL_CLASS_SCOPE_P (fn))
16246 {
16247 location_t loc = EXPR_LOC_OR_LOC (t,
16248 input_location);
16249 inform (loc,
16250 "declarations in dependent base %qT are "
16251 "not found by unqualified lookup",
16252 DECL_CLASS_CONTEXT (fn));
16253 if (current_class_ptr)
16254 inform (loc,
16255 "use %<this->%D%> instead", function);
16256 else
16257 inform (loc,
16258 "use %<%T::%D%> instead",
16259 current_class_name, function);
16260 }
16261 else
16262 inform (DECL_SOURCE_LOCATION (fn),
16263 "%qD declared here, later in the "
16264 "translation unit", fn);
16265 }
16266 function = unq;
16267 }
16268 }
16269 if (identifier_p (function))
16270 {
16271 if (complain & tf_error)
16272 unqualified_name_lookup_error (function);
16273 release_tree_vector (call_args);
16274 RETURN (error_mark_node);
16275 }
16276 }
16277
16278 /* Remember that there was a reference to this entity. */
16279 if (DECL_P (function)
16280 && !mark_used (function, complain) && !(complain & tf_error))
16281 RETURN (error_mark_node);
16282
16283 /* Put back tf_decltype for the actual call. */
16284 complain |= decltype_flag;
16285
16286 if (TREE_CODE (function) == OFFSET_REF)
16287 ret = build_offset_ref_call_from_tree (function, &call_args,
16288 complain);
16289 else if (TREE_CODE (function) == COMPONENT_REF)
16290 {
16291 tree instance = TREE_OPERAND (function, 0);
16292 tree fn = TREE_OPERAND (function, 1);
16293
16294 if (processing_template_decl
16295 && (type_dependent_expression_p (instance)
16296 || (!BASELINK_P (fn)
16297 && TREE_CODE (fn) != FIELD_DECL)
16298 || type_dependent_expression_p (fn)
16299 || any_type_dependent_arguments_p (call_args)))
16300 ret = build_nt_call_vec (function, call_args);
16301 else if (!BASELINK_P (fn))
16302 ret = finish_call_expr (function, &call_args,
16303 /*disallow_virtual=*/false,
16304 /*koenig_p=*/false,
16305 complain);
16306 else
16307 ret = (build_new_method_call
16308 (instance, fn,
16309 &call_args, NULL_TREE,
16310 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
16311 /*fn_p=*/NULL,
16312 complain));
16313 }
16314 else
16315 ret = finish_call_expr (function, &call_args,
16316 /*disallow_virtual=*/qualified_p,
16317 koenig_p,
16318 complain);
16319
16320 release_tree_vector (call_args);
16321
16322 RETURN (ret);
16323 }
16324
16325 case COND_EXPR:
16326 {
16327 tree cond = RECUR (TREE_OPERAND (t, 0));
16328 tree folded_cond = fold_non_dependent_expr (cond);
16329 tree exp1, exp2;
16330
16331 if (TREE_CODE (folded_cond) == INTEGER_CST)
16332 {
16333 if (integer_zerop (folded_cond))
16334 {
16335 ++c_inhibit_evaluation_warnings;
16336 exp1 = RECUR (TREE_OPERAND (t, 1));
16337 --c_inhibit_evaluation_warnings;
16338 exp2 = RECUR (TREE_OPERAND (t, 2));
16339 }
16340 else
16341 {
16342 exp1 = RECUR (TREE_OPERAND (t, 1));
16343 ++c_inhibit_evaluation_warnings;
16344 exp2 = RECUR (TREE_OPERAND (t, 2));
16345 --c_inhibit_evaluation_warnings;
16346 }
16347 cond = folded_cond;
16348 }
16349 else
16350 {
16351 exp1 = RECUR (TREE_OPERAND (t, 1));
16352 exp2 = RECUR (TREE_OPERAND (t, 2));
16353 }
16354
16355 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
16356 cond, exp1, exp2, complain));
16357 }
16358
16359 case PSEUDO_DTOR_EXPR:
16360 {
16361 tree op0 = RECUR (TREE_OPERAND (t, 0));
16362 tree op1 = RECUR (TREE_OPERAND (t, 1));
16363 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
16364 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
16365 input_location));
16366 }
16367
16368 case TREE_LIST:
16369 {
16370 tree purpose, value, chain;
16371
16372 if (t == void_list_node)
16373 RETURN (t);
16374
16375 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
16376 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
16377 {
16378 /* We have pack expansions, so expand those and
16379 create a new list out of it. */
16380 tree purposevec = NULL_TREE;
16381 tree valuevec = NULL_TREE;
16382 tree chain;
16383 int i, len = -1;
16384
16385 /* Expand the argument expressions. */
16386 if (TREE_PURPOSE (t))
16387 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
16388 complain, in_decl);
16389 if (TREE_VALUE (t))
16390 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
16391 complain, in_decl);
16392
16393 /* Build the rest of the list. */
16394 chain = TREE_CHAIN (t);
16395 if (chain && chain != void_type_node)
16396 chain = RECUR (chain);
16397
16398 /* Determine the number of arguments. */
16399 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
16400 {
16401 len = TREE_VEC_LENGTH (purposevec);
16402 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
16403 }
16404 else if (TREE_CODE (valuevec) == TREE_VEC)
16405 len = TREE_VEC_LENGTH (valuevec);
16406 else
16407 {
16408 /* Since we only performed a partial substitution into
16409 the argument pack, we only RETURN (a single list
16410 node. */
16411 if (purposevec == TREE_PURPOSE (t)
16412 && valuevec == TREE_VALUE (t)
16413 && chain == TREE_CHAIN (t))
16414 RETURN (t);
16415
16416 RETURN (tree_cons (purposevec, valuevec, chain));
16417 }
16418
16419 /* Convert the argument vectors into a TREE_LIST */
16420 i = len;
16421 while (i > 0)
16422 {
16423 /* Grab the Ith values. */
16424 i--;
16425 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
16426 : NULL_TREE;
16427 value
16428 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
16429 : NULL_TREE;
16430
16431 /* Build the list (backwards). */
16432 chain = tree_cons (purpose, value, chain);
16433 }
16434
16435 RETURN (chain);
16436 }
16437
16438 purpose = TREE_PURPOSE (t);
16439 if (purpose)
16440 purpose = RECUR (purpose);
16441 value = TREE_VALUE (t);
16442 if (value)
16443 value = RECUR (value);
16444 chain = TREE_CHAIN (t);
16445 if (chain && chain != void_type_node)
16446 chain = RECUR (chain);
16447 if (purpose == TREE_PURPOSE (t)
16448 && value == TREE_VALUE (t)
16449 && chain == TREE_CHAIN (t))
16450 RETURN (t);
16451 RETURN (tree_cons (purpose, value, chain));
16452 }
16453
16454 case COMPONENT_REF:
16455 {
16456 tree object;
16457 tree object_type;
16458 tree member;
16459 tree r;
16460
16461 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16462 args, complain, in_decl);
16463 /* Remember that there was a reference to this entity. */
16464 if (DECL_P (object)
16465 && !mark_used (object, complain) && !(complain & tf_error))
16466 RETURN (error_mark_node);
16467 object_type = TREE_TYPE (object);
16468
16469 member = TREE_OPERAND (t, 1);
16470 if (BASELINK_P (member))
16471 member = tsubst_baselink (member,
16472 non_reference (TREE_TYPE (object)),
16473 args, complain, in_decl);
16474 else
16475 member = tsubst_copy (member, args, complain, in_decl);
16476 if (member == error_mark_node)
16477 RETURN (error_mark_node);
16478
16479 if (type_dependent_expression_p (object))
16480 /* We can't do much here. */;
16481 else if (!CLASS_TYPE_P (object_type))
16482 {
16483 if (scalarish_type_p (object_type))
16484 {
16485 tree s = NULL_TREE;
16486 tree dtor = member;
16487
16488 if (TREE_CODE (dtor) == SCOPE_REF)
16489 {
16490 s = TREE_OPERAND (dtor, 0);
16491 dtor = TREE_OPERAND (dtor, 1);
16492 }
16493 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
16494 {
16495 dtor = TREE_OPERAND (dtor, 0);
16496 if (TYPE_P (dtor))
16497 RETURN (finish_pseudo_destructor_expr
16498 (object, s, dtor, input_location));
16499 }
16500 }
16501 }
16502 else if (TREE_CODE (member) == SCOPE_REF
16503 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
16504 {
16505 /* Lookup the template functions now that we know what the
16506 scope is. */
16507 tree scope = TREE_OPERAND (member, 0);
16508 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
16509 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
16510 member = lookup_qualified_name (scope, tmpl,
16511 /*is_type_p=*/false,
16512 /*complain=*/false);
16513 if (BASELINK_P (member))
16514 {
16515 BASELINK_FUNCTIONS (member)
16516 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
16517 args);
16518 member = (adjust_result_of_qualified_name_lookup
16519 (member, BINFO_TYPE (BASELINK_BINFO (member)),
16520 object_type));
16521 }
16522 else
16523 {
16524 qualified_name_lookup_error (scope, tmpl, member,
16525 input_location);
16526 RETURN (error_mark_node);
16527 }
16528 }
16529 else if (TREE_CODE (member) == SCOPE_REF
16530 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
16531 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
16532 {
16533 if (complain & tf_error)
16534 {
16535 if (TYPE_P (TREE_OPERAND (member, 0)))
16536 error ("%qT is not a class or namespace",
16537 TREE_OPERAND (member, 0));
16538 else
16539 error ("%qD is not a class or namespace",
16540 TREE_OPERAND (member, 0));
16541 }
16542 RETURN (error_mark_node);
16543 }
16544 else if (TREE_CODE (member) == FIELD_DECL)
16545 {
16546 r = finish_non_static_data_member (member, object, NULL_TREE);
16547 if (TREE_CODE (r) == COMPONENT_REF)
16548 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16549 RETURN (r);
16550 }
16551
16552 r = finish_class_member_access_expr (object, member,
16553 /*template_p=*/false,
16554 complain);
16555 if (TREE_CODE (r) == COMPONENT_REF)
16556 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16557 RETURN (r);
16558 }
16559
16560 case THROW_EXPR:
16561 RETURN (build_throw
16562 (RECUR (TREE_OPERAND (t, 0))));
16563
16564 case CONSTRUCTOR:
16565 {
16566 vec<constructor_elt, va_gc> *n;
16567 constructor_elt *ce;
16568 unsigned HOST_WIDE_INT idx;
16569 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16570 bool process_index_p;
16571 int newlen;
16572 bool need_copy_p = false;
16573 tree r;
16574
16575 if (type == error_mark_node)
16576 RETURN (error_mark_node);
16577
16578 /* digest_init will do the wrong thing if we let it. */
16579 if (type && TYPE_PTRMEMFUNC_P (type))
16580 RETURN (t);
16581
16582 /* We do not want to process the index of aggregate
16583 initializers as they are identifier nodes which will be
16584 looked up by digest_init. */
16585 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
16586
16587 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
16588 newlen = vec_safe_length (n);
16589 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
16590 {
16591 if (ce->index && process_index_p
16592 /* An identifier index is looked up in the type
16593 being initialized, not the current scope. */
16594 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
16595 ce->index = RECUR (ce->index);
16596
16597 if (PACK_EXPANSION_P (ce->value))
16598 {
16599 /* Substitute into the pack expansion. */
16600 ce->value = tsubst_pack_expansion (ce->value, args, complain,
16601 in_decl);
16602
16603 if (ce->value == error_mark_node
16604 || PACK_EXPANSION_P (ce->value))
16605 ;
16606 else if (TREE_VEC_LENGTH (ce->value) == 1)
16607 /* Just move the argument into place. */
16608 ce->value = TREE_VEC_ELT (ce->value, 0);
16609 else
16610 {
16611 /* Update the length of the final CONSTRUCTOR
16612 arguments vector, and note that we will need to
16613 copy.*/
16614 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
16615 need_copy_p = true;
16616 }
16617 }
16618 else
16619 ce->value = RECUR (ce->value);
16620 }
16621
16622 if (need_copy_p)
16623 {
16624 vec<constructor_elt, va_gc> *old_n = n;
16625
16626 vec_alloc (n, newlen);
16627 FOR_EACH_VEC_ELT (*old_n, idx, ce)
16628 {
16629 if (TREE_CODE (ce->value) == TREE_VEC)
16630 {
16631 int i, len = TREE_VEC_LENGTH (ce->value);
16632 for (i = 0; i < len; ++i)
16633 CONSTRUCTOR_APPEND_ELT (n, 0,
16634 TREE_VEC_ELT (ce->value, i));
16635 }
16636 else
16637 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
16638 }
16639 }
16640
16641 r = build_constructor (init_list_type_node, n);
16642 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
16643
16644 if (TREE_HAS_CONSTRUCTOR (t))
16645 RETURN (finish_compound_literal (type, r, complain));
16646
16647 TREE_TYPE (r) = type;
16648 RETURN (r);
16649 }
16650
16651 case TYPEID_EXPR:
16652 {
16653 tree operand_0 = TREE_OPERAND (t, 0);
16654 if (TYPE_P (operand_0))
16655 {
16656 operand_0 = tsubst (operand_0, args, complain, in_decl);
16657 RETURN (get_typeid (operand_0, complain));
16658 }
16659 else
16660 {
16661 operand_0 = RECUR (operand_0);
16662 RETURN (build_typeid (operand_0, complain));
16663 }
16664 }
16665
16666 case VAR_DECL:
16667 if (!args)
16668 RETURN (t);
16669 else if (DECL_PACK_P (t))
16670 {
16671 /* We don't build decls for an instantiation of a
16672 variadic capture proxy, we instantiate the elements
16673 when needed. */
16674 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
16675 return RECUR (DECL_VALUE_EXPR (t));
16676 }
16677 /* Fall through */
16678
16679 case PARM_DECL:
16680 {
16681 tree r = tsubst_copy (t, args, complain, in_decl);
16682 /* ??? We're doing a subset of finish_id_expression here. */
16683 if (VAR_P (r)
16684 && !processing_template_decl
16685 && !cp_unevaluated_operand
16686 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
16687 && CP_DECL_THREAD_LOCAL_P (r))
16688 {
16689 if (tree wrap = get_tls_wrapper_fn (r))
16690 /* Replace an evaluated use of the thread_local variable with
16691 a call to its wrapper. */
16692 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
16693 }
16694 else if (outer_automatic_var_p (r))
16695 {
16696 r = process_outer_var_ref (r, complain);
16697 if (is_capture_proxy (r))
16698 register_local_specialization (r, t);
16699 }
16700
16701 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
16702 /* If the original type was a reference, we'll be wrapped in
16703 the appropriate INDIRECT_REF. */
16704 r = convert_from_reference (r);
16705 RETURN (r);
16706 }
16707
16708 case VA_ARG_EXPR:
16709 {
16710 tree op0 = RECUR (TREE_OPERAND (t, 0));
16711 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16712 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
16713 }
16714
16715 case OFFSETOF_EXPR:
16716 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0)),
16717 EXPR_LOCATION (t)));
16718
16719 case TRAIT_EXPR:
16720 {
16721 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
16722 complain, in_decl);
16723
16724 tree type2 = TRAIT_EXPR_TYPE2 (t);
16725 if (type2 && TREE_CODE (type2) == TREE_LIST)
16726 type2 = RECUR (type2);
16727 else if (type2)
16728 type2 = tsubst (type2, args, complain, in_decl);
16729
16730 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
16731 }
16732
16733 case STMT_EXPR:
16734 {
16735 tree old_stmt_expr = cur_stmt_expr;
16736 tree stmt_expr = begin_stmt_expr ();
16737
16738 cur_stmt_expr = stmt_expr;
16739 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
16740 integral_constant_expression_p);
16741 stmt_expr = finish_stmt_expr (stmt_expr, false);
16742 cur_stmt_expr = old_stmt_expr;
16743
16744 /* If the resulting list of expression statement is empty,
16745 fold it further into void_node. */
16746 if (empty_expr_stmt_p (stmt_expr))
16747 stmt_expr = void_node;
16748
16749 RETURN (stmt_expr);
16750 }
16751
16752 case LAMBDA_EXPR:
16753 {
16754 tree r = build_lambda_expr ();
16755
16756 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
16757 LAMBDA_EXPR_CLOSURE (r) = type;
16758 CLASSTYPE_LAMBDA_EXPR (type) = r;
16759
16760 LAMBDA_EXPR_LOCATION (r)
16761 = LAMBDA_EXPR_LOCATION (t);
16762 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
16763 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
16764 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
16765 LAMBDA_EXPR_DISCRIMINATOR (r)
16766 = (LAMBDA_EXPR_DISCRIMINATOR (t));
16767 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
16768 if (!scope)
16769 /* No substitution needed. */;
16770 else if (VAR_OR_FUNCTION_DECL_P (scope))
16771 /* For a function or variable scope, we want to use tsubst so that we
16772 don't complain about referring to an auto before deduction. */
16773 scope = tsubst (scope, args, complain, in_decl);
16774 else if (TREE_CODE (scope) == PARM_DECL)
16775 {
16776 /* Look up the parameter we want directly, as tsubst_copy
16777 doesn't do what we need. */
16778 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
16779 tree parm = FUNCTION_FIRST_USER_PARM (fn);
16780 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
16781 parm = DECL_CHAIN (parm);
16782 scope = parm;
16783 /* FIXME Work around the parm not having DECL_CONTEXT set. */
16784 if (DECL_CONTEXT (scope) == NULL_TREE)
16785 DECL_CONTEXT (scope) = fn;
16786 }
16787 else if (TREE_CODE (scope) == FIELD_DECL)
16788 /* For a field, use tsubst_copy so that we look up the existing field
16789 rather than build a new one. */
16790 scope = RECUR (scope);
16791 else
16792 gcc_unreachable ();
16793 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
16794 LAMBDA_EXPR_RETURN_TYPE (r)
16795 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
16796
16797 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
16798 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
16799
16800 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
16801 determine_visibility (TYPE_NAME (type));
16802 /* Now that we know visibility, instantiate the type so we have a
16803 declaration of the op() for later calls to lambda_function. */
16804 complete_type (type);
16805
16806 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
16807
16808 insert_pending_capture_proxies ();
16809
16810 RETURN (build_lambda_object (r));
16811 }
16812
16813 case TARGET_EXPR:
16814 /* We can get here for a constant initializer of non-dependent type.
16815 FIXME stop folding in cp_parser_initializer_clause. */
16816 {
16817 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
16818 complain);
16819 RETURN (r);
16820 }
16821
16822 case TRANSACTION_EXPR:
16823 RETURN (tsubst_expr(t, args, complain, in_decl,
16824 integral_constant_expression_p));
16825
16826 case PAREN_EXPR:
16827 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
16828
16829 case VEC_PERM_EXPR:
16830 {
16831 tree op0 = RECUR (TREE_OPERAND (t, 0));
16832 tree op1 = RECUR (TREE_OPERAND (t, 1));
16833 tree op2 = RECUR (TREE_OPERAND (t, 2));
16834 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
16835 complain));
16836 }
16837
16838 case REQUIRES_EXPR:
16839 RETURN (tsubst_requires_expr (t, args, complain, in_decl));
16840
16841 default:
16842 /* Handle Objective-C++ constructs, if appropriate. */
16843 {
16844 tree subst
16845 = objcp_tsubst_copy_and_build (t, args, complain,
16846 in_decl, /*function_p=*/false);
16847 if (subst)
16848 RETURN (subst);
16849 }
16850 RETURN (tsubst_copy (t, args, complain, in_decl));
16851 }
16852
16853 #undef RECUR
16854 #undef RETURN
16855 out:
16856 input_location = loc;
16857 return retval;
16858 }
16859
16860 /* Verify that the instantiated ARGS are valid. For type arguments,
16861 make sure that the type's linkage is ok. For non-type arguments,
16862 make sure they are constants if they are integral or enumerations.
16863 Emit an error under control of COMPLAIN, and return TRUE on error. */
16864
16865 static bool
16866 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
16867 {
16868 if (dependent_template_arg_p (t))
16869 return false;
16870 if (ARGUMENT_PACK_P (t))
16871 {
16872 tree vec = ARGUMENT_PACK_ARGS (t);
16873 int len = TREE_VEC_LENGTH (vec);
16874 bool result = false;
16875 int i;
16876
16877 for (i = 0; i < len; ++i)
16878 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
16879 result = true;
16880 return result;
16881 }
16882 else if (TYPE_P (t))
16883 {
16884 /* [basic.link]: A name with no linkage (notably, the name
16885 of a class or enumeration declared in a local scope)
16886 shall not be used to declare an entity with linkage.
16887 This implies that names with no linkage cannot be used as
16888 template arguments
16889
16890 DR 757 relaxes this restriction for C++0x. */
16891 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
16892 : no_linkage_check (t, /*relaxed_p=*/false));
16893
16894 if (nt)
16895 {
16896 /* DR 488 makes use of a type with no linkage cause
16897 type deduction to fail. */
16898 if (complain & tf_error)
16899 {
16900 if (TYPE_ANONYMOUS_P (nt))
16901 error ("%qT is/uses anonymous type", t);
16902 else
16903 error ("template argument for %qD uses local type %qT",
16904 tmpl, t);
16905 }
16906 return true;
16907 }
16908 /* In order to avoid all sorts of complications, we do not
16909 allow variably-modified types as template arguments. */
16910 else if (variably_modified_type_p (t, NULL_TREE))
16911 {
16912 if (complain & tf_error)
16913 error ("%qT is a variably modified type", t);
16914 return true;
16915 }
16916 }
16917 /* Class template and alias template arguments should be OK. */
16918 else if (DECL_TYPE_TEMPLATE_P (t))
16919 ;
16920 /* A non-type argument of integral or enumerated type must be a
16921 constant. */
16922 else if (TREE_TYPE (t)
16923 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
16924 && !REFERENCE_REF_P (t)
16925 && !TREE_CONSTANT (t))
16926 {
16927 if (complain & tf_error)
16928 error ("integral expression %qE is not constant", t);
16929 return true;
16930 }
16931 return false;
16932 }
16933
16934 static bool
16935 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
16936 {
16937 int ix, len = DECL_NTPARMS (tmpl);
16938 bool result = false;
16939
16940 for (ix = 0; ix != len; ix++)
16941 {
16942 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
16943 result = true;
16944 }
16945 if (result && (complain & tf_error))
16946 error (" trying to instantiate %qD", tmpl);
16947 return result;
16948 }
16949
16950 /* We're out of SFINAE context now, so generate diagnostics for the access
16951 errors we saw earlier when instantiating D from TMPL and ARGS. */
16952
16953 static void
16954 recheck_decl_substitution (tree d, tree tmpl, tree args)
16955 {
16956 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
16957 tree type = TREE_TYPE (pattern);
16958 location_t loc = input_location;
16959
16960 push_access_scope (d);
16961 push_deferring_access_checks (dk_no_deferred);
16962 input_location = DECL_SOURCE_LOCATION (pattern);
16963 tsubst (type, args, tf_warning_or_error, d);
16964 input_location = loc;
16965 pop_deferring_access_checks ();
16966 pop_access_scope (d);
16967 }
16968
16969 /* Instantiate the indicated variable, function, or alias template TMPL with
16970 the template arguments in TARG_PTR. */
16971
16972 static tree
16973 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
16974 {
16975 tree targ_ptr = orig_args;
16976 tree fndecl;
16977 tree gen_tmpl;
16978 tree spec;
16979 bool access_ok = true;
16980
16981 if (tmpl == error_mark_node)
16982 return error_mark_node;
16983
16984 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
16985
16986 /* If this function is a clone, handle it specially. */
16987 if (DECL_CLONED_FUNCTION_P (tmpl))
16988 {
16989 tree spec;
16990 tree clone;
16991
16992 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
16993 DECL_CLONED_FUNCTION. */
16994 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
16995 targ_ptr, complain);
16996 if (spec == error_mark_node)
16997 return error_mark_node;
16998
16999 /* Look for the clone. */
17000 FOR_EACH_CLONE (clone, spec)
17001 if (DECL_NAME (clone) == DECL_NAME (tmpl))
17002 return clone;
17003 /* We should always have found the clone by now. */
17004 gcc_unreachable ();
17005 return NULL_TREE;
17006 }
17007
17008 if (targ_ptr == error_mark_node)
17009 return error_mark_node;
17010
17011 /* Check to see if we already have this specialization. */
17012 gen_tmpl = most_general_template (tmpl);
17013 if (tmpl != gen_tmpl)
17014 /* The TMPL is a partial instantiation. To get a full set of
17015 arguments we must add the arguments used to perform the
17016 partial instantiation. */
17017 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
17018 targ_ptr);
17019
17020 /* It would be nice to avoid hashing here and then again in tsubst_decl,
17021 but it doesn't seem to be on the hot path. */
17022 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
17023
17024 gcc_assert (tmpl == gen_tmpl
17025 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
17026 == spec)
17027 || fndecl == NULL_TREE);
17028
17029 if (spec != NULL_TREE)
17030 {
17031 if (FNDECL_HAS_ACCESS_ERRORS (spec))
17032 {
17033 if (complain & tf_error)
17034 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
17035 return error_mark_node;
17036 }
17037 return spec;
17038 }
17039
17040 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
17041 complain))
17042 return error_mark_node;
17043
17044 /* We are building a FUNCTION_DECL, during which the access of its
17045 parameters and return types have to be checked. However this
17046 FUNCTION_DECL which is the desired context for access checking
17047 is not built yet. We solve this chicken-and-egg problem by
17048 deferring all checks until we have the FUNCTION_DECL. */
17049 push_deferring_access_checks (dk_deferred);
17050
17051 /* Instantiation of the function happens in the context of the function
17052 template, not the context of the overload resolution we're doing. */
17053 push_to_top_level ();
17054 /* If there are dependent arguments, e.g. because we're doing partial
17055 ordering, make sure processing_template_decl stays set. */
17056 if (uses_template_parms (targ_ptr))
17057 ++processing_template_decl;
17058 if (DECL_CLASS_SCOPE_P (gen_tmpl))
17059 {
17060 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
17061 complain, gen_tmpl, true);
17062 push_nested_class (ctx);
17063 }
17064
17065 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
17066
17067 if (VAR_P (pattern))
17068 {
17069 /* We need to determine if we're using a partial or explicit
17070 specialization now, because the type of the variable could be
17071 different. */
17072 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
17073 tree elt = most_specialized_partial_spec (tid, complain);
17074 if (elt == error_mark_node)
17075 pattern = error_mark_node;
17076 else if (elt)
17077 {
17078 tmpl = TREE_VALUE (elt);
17079 pattern = DECL_TEMPLATE_RESULT (tmpl);
17080 targ_ptr = TREE_PURPOSE (elt);
17081 }
17082 }
17083
17084 /* Substitute template parameters to obtain the specialization. */
17085 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
17086 if (DECL_CLASS_SCOPE_P (gen_tmpl))
17087 pop_nested_class ();
17088 pop_from_top_level ();
17089
17090 if (fndecl == error_mark_node)
17091 {
17092 pop_deferring_access_checks ();
17093 return error_mark_node;
17094 }
17095
17096 /* The DECL_TI_TEMPLATE should always be the immediate parent
17097 template, not the most general template. */
17098 DECL_TI_TEMPLATE (fndecl) = tmpl;
17099 DECL_TI_ARGS (fndecl) = targ_ptr;
17100
17101 /* Now we know the specialization, compute access previously
17102 deferred. */
17103 push_access_scope (fndecl);
17104 if (!perform_deferred_access_checks (complain))
17105 access_ok = false;
17106 pop_access_scope (fndecl);
17107 pop_deferring_access_checks ();
17108
17109 /* If we've just instantiated the main entry point for a function,
17110 instantiate all the alternate entry points as well. We do this
17111 by cloning the instantiation of the main entry point, not by
17112 instantiating the template clones. */
17113 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
17114 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
17115
17116 if (!access_ok)
17117 {
17118 if (!(complain & tf_error))
17119 {
17120 /* Remember to reinstantiate when we're out of SFINAE so the user
17121 can see the errors. */
17122 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
17123 }
17124 return error_mark_node;
17125 }
17126 return fndecl;
17127 }
17128
17129 /* Wrapper for instantiate_template_1. */
17130
17131 tree
17132 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
17133 {
17134 tree ret;
17135 timevar_push (TV_TEMPLATE_INST);
17136 ret = instantiate_template_1 (tmpl, orig_args, complain);
17137 timevar_pop (TV_TEMPLATE_INST);
17138 return ret;
17139 }
17140
17141 /* Instantiate the alias template TMPL with ARGS. Also push a template
17142 instantiation level, which instantiate_template doesn't do because
17143 functions and variables have sufficient context established by the
17144 callers. */
17145
17146 static tree
17147 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
17148 {
17149 struct pending_template *old_last_pend = last_pending_template;
17150 struct tinst_level *old_error_tinst = last_error_tinst_level;
17151 if (tmpl == error_mark_node || args == error_mark_node)
17152 return error_mark_node;
17153 tree tinst = build_tree_list (tmpl, args);
17154 if (!push_tinst_level (tinst))
17155 {
17156 ggc_free (tinst);
17157 return error_mark_node;
17158 }
17159
17160 args =
17161 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
17162 args, tmpl, complain,
17163 /*require_all_args=*/true,
17164 /*use_default_args=*/true);
17165
17166 tree r = instantiate_template (tmpl, args, complain);
17167 pop_tinst_level ();
17168 /* We can't free this if a pending_template entry or last_error_tinst_level
17169 is pointing at it. */
17170 if (last_pending_template == old_last_pend
17171 && last_error_tinst_level == old_error_tinst)
17172 ggc_free (tinst);
17173
17174 return r;
17175 }
17176
17177 /* PARM is a template parameter pack for FN. Returns true iff
17178 PARM is used in a deducible way in the argument list of FN. */
17179
17180 static bool
17181 pack_deducible_p (tree parm, tree fn)
17182 {
17183 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
17184 for (; t; t = TREE_CHAIN (t))
17185 {
17186 tree type = TREE_VALUE (t);
17187 tree packs;
17188 if (!PACK_EXPANSION_P (type))
17189 continue;
17190 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
17191 packs; packs = TREE_CHAIN (packs))
17192 if (template_args_equal (TREE_VALUE (packs), parm))
17193 {
17194 /* The template parameter pack is used in a function parameter
17195 pack. If this is the end of the parameter list, the
17196 template parameter pack is deducible. */
17197 if (TREE_CHAIN (t) == void_list_node)
17198 return true;
17199 else
17200 /* Otherwise, not. Well, it could be deduced from
17201 a non-pack parameter, but doing so would end up with
17202 a deduction mismatch, so don't bother. */
17203 return false;
17204 }
17205 }
17206 /* The template parameter pack isn't used in any function parameter
17207 packs, but it might be used deeper, e.g. tuple<Args...>. */
17208 return true;
17209 }
17210
17211 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
17212 NARGS elements of the arguments that are being used when calling
17213 it. TARGS is a vector into which the deduced template arguments
17214 are placed.
17215
17216 Returns either a FUNCTION_DECL for the matching specialization of FN or
17217 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
17218 true, diagnostics will be printed to explain why it failed.
17219
17220 If FN is a conversion operator, or we are trying to produce a specific
17221 specialization, RETURN_TYPE is the return type desired.
17222
17223 The EXPLICIT_TARGS are explicit template arguments provided via a
17224 template-id.
17225
17226 The parameter STRICT is one of:
17227
17228 DEDUCE_CALL:
17229 We are deducing arguments for a function call, as in
17230 [temp.deduct.call]. If RETURN_TYPE is non-null, we are
17231 deducing arguments for a call to the result of a conversion
17232 function template, as in [over.call.object].
17233
17234 DEDUCE_CONV:
17235 We are deducing arguments for a conversion function, as in
17236 [temp.deduct.conv].
17237
17238 DEDUCE_EXACT:
17239 We are deducing arguments when doing an explicit instantiation
17240 as in [temp.explicit], when determining an explicit specialization
17241 as in [temp.expl.spec], or when taking the address of a function
17242 template, as in [temp.deduct.funcaddr]. */
17243
17244 tree
17245 fn_type_unification (tree fn,
17246 tree explicit_targs,
17247 tree targs,
17248 const tree *args,
17249 unsigned int nargs,
17250 tree return_type,
17251 unification_kind_t strict,
17252 int flags,
17253 bool explain_p,
17254 bool decltype_p)
17255 {
17256 tree parms;
17257 tree fntype;
17258 tree decl = NULL_TREE;
17259 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
17260 bool ok;
17261 static int deduction_depth;
17262 struct pending_template *old_last_pend = last_pending_template;
17263 struct tinst_level *old_error_tinst = last_error_tinst_level;
17264 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
17265 tree tinst;
17266 tree r = error_mark_node;
17267
17268 if (decltype_p)
17269 complain |= tf_decltype;
17270
17271 /* In C++0x, it's possible to have a function template whose type depends
17272 on itself recursively. This is most obvious with decltype, but can also
17273 occur with enumeration scope (c++/48969). So we need to catch infinite
17274 recursion and reject the substitution at deduction time; this function
17275 will return error_mark_node for any repeated substitution.
17276
17277 This also catches excessive recursion such as when f<N> depends on
17278 f<N-1> across all integers, and returns error_mark_node for all the
17279 substitutions back up to the initial one.
17280
17281 This is, of course, not reentrant. */
17282 if (excessive_deduction_depth)
17283 return error_mark_node;
17284 tinst = build_tree_list (fn, NULL_TREE);
17285 ++deduction_depth;
17286
17287 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
17288
17289 fntype = TREE_TYPE (fn);
17290 if (explicit_targs)
17291 {
17292 /* [temp.deduct]
17293
17294 The specified template arguments must match the template
17295 parameters in kind (i.e., type, nontype, template), and there
17296 must not be more arguments than there are parameters;
17297 otherwise type deduction fails.
17298
17299 Nontype arguments must match the types of the corresponding
17300 nontype template parameters, or must be convertible to the
17301 types of the corresponding nontype parameters as specified in
17302 _temp.arg.nontype_, otherwise type deduction fails.
17303
17304 All references in the function type of the function template
17305 to the corresponding template parameters are replaced by the
17306 specified template argument values. If a substitution in a
17307 template parameter or in the function type of the function
17308 template results in an invalid type, type deduction fails. */
17309 int i, len = TREE_VEC_LENGTH (tparms);
17310 location_t loc = input_location;
17311 bool incomplete = false;
17312
17313 /* Adjust any explicit template arguments before entering the
17314 substitution context. */
17315 explicit_targs
17316 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
17317 complain,
17318 /*require_all_args=*/false,
17319 /*use_default_args=*/false));
17320 if (explicit_targs == error_mark_node)
17321 goto fail;
17322
17323 /* Substitute the explicit args into the function type. This is
17324 necessary so that, for instance, explicitly declared function
17325 arguments can match null pointed constants. If we were given
17326 an incomplete set of explicit args, we must not do semantic
17327 processing during substitution as we could create partial
17328 instantiations. */
17329 for (i = 0; i < len; i++)
17330 {
17331 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
17332 bool parameter_pack = false;
17333 tree targ = TREE_VEC_ELT (explicit_targs, i);
17334
17335 /* Dig out the actual parm. */
17336 if (TREE_CODE (parm) == TYPE_DECL
17337 || TREE_CODE (parm) == TEMPLATE_DECL)
17338 {
17339 parm = TREE_TYPE (parm);
17340 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
17341 }
17342 else if (TREE_CODE (parm) == PARM_DECL)
17343 {
17344 parm = DECL_INITIAL (parm);
17345 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
17346 }
17347
17348 if (!parameter_pack && targ == NULL_TREE)
17349 /* No explicit argument for this template parameter. */
17350 incomplete = true;
17351
17352 if (parameter_pack && pack_deducible_p (parm, fn))
17353 {
17354 /* Mark the argument pack as "incomplete". We could
17355 still deduce more arguments during unification.
17356 We remove this mark in type_unification_real. */
17357 if (targ)
17358 {
17359 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
17360 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
17361 = ARGUMENT_PACK_ARGS (targ);
17362 }
17363
17364 /* We have some incomplete argument packs. */
17365 incomplete = true;
17366 }
17367 }
17368
17369 TREE_VALUE (tinst) = explicit_targs;
17370 if (!push_tinst_level (tinst))
17371 {
17372 excessive_deduction_depth = true;
17373 goto fail;
17374 }
17375 processing_template_decl += incomplete;
17376 input_location = DECL_SOURCE_LOCATION (fn);
17377 /* Ignore any access checks; we'll see them again in
17378 instantiate_template and they might have the wrong
17379 access path at this point. */
17380 push_deferring_access_checks (dk_deferred);
17381 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
17382 complain | tf_partial, NULL_TREE);
17383 pop_deferring_access_checks ();
17384 input_location = loc;
17385 processing_template_decl -= incomplete;
17386 pop_tinst_level ();
17387
17388 if (fntype == error_mark_node)
17389 goto fail;
17390
17391 /* Place the explicitly specified arguments in TARGS. */
17392 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
17393 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
17394 }
17395
17396 /* Never do unification on the 'this' parameter. */
17397 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
17398
17399 if (return_type && strict == DEDUCE_CALL)
17400 {
17401 /* We're deducing for a call to the result of a template conversion
17402 function. The parms we really want are in return_type. */
17403 if (POINTER_TYPE_P (return_type))
17404 return_type = TREE_TYPE (return_type);
17405 parms = TYPE_ARG_TYPES (return_type);
17406 }
17407 else if (return_type)
17408 {
17409 tree *new_args;
17410
17411 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
17412 new_args = XALLOCAVEC (tree, nargs + 1);
17413 new_args[0] = return_type;
17414 memcpy (new_args + 1, args, nargs * sizeof (tree));
17415 args = new_args;
17416 ++nargs;
17417 }
17418
17419 /* We allow incomplete unification without an error message here
17420 because the standard doesn't seem to explicitly prohibit it. Our
17421 callers must be ready to deal with unification failures in any
17422 event. */
17423
17424 TREE_VALUE (tinst) = targs;
17425 /* If we aren't explaining yet, push tinst context so we can see where
17426 any errors (e.g. from class instantiations triggered by instantiation
17427 of default template arguments) come from. If we are explaining, this
17428 context is redundant. */
17429 if (!explain_p && !push_tinst_level (tinst))
17430 {
17431 excessive_deduction_depth = true;
17432 goto fail;
17433 }
17434
17435 /* type_unification_real will pass back any access checks from default
17436 template argument substitution. */
17437 vec<deferred_access_check, va_gc> *checks;
17438 checks = NULL;
17439
17440 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17441 targs, parms, args, nargs, /*subr=*/0,
17442 strict, flags, &checks, explain_p);
17443 if (!explain_p)
17444 pop_tinst_level ();
17445 if (!ok)
17446 goto fail;
17447
17448 /* Now that we have bindings for all of the template arguments,
17449 ensure that the arguments deduced for the template template
17450 parameters have compatible template parameter lists. We cannot
17451 check this property before we have deduced all template
17452 arguments, because the template parameter types of a template
17453 template parameter might depend on prior template parameters
17454 deduced after the template template parameter. The following
17455 ill-formed example illustrates this issue:
17456
17457 template<typename T, template<T> class C> void f(C<5>, T);
17458
17459 template<int N> struct X {};
17460
17461 void g() {
17462 f(X<5>(), 5l); // error: template argument deduction fails
17463 }
17464
17465 The template parameter list of 'C' depends on the template type
17466 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
17467 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
17468 time that we deduce 'C'. */
17469 if (!template_template_parm_bindings_ok_p
17470 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
17471 {
17472 unify_inconsistent_template_template_parameters (explain_p);
17473 goto fail;
17474 }
17475
17476 /* All is well so far. Now, check:
17477
17478 [temp.deduct]
17479
17480 When all template arguments have been deduced, all uses of
17481 template parameters in nondeduced contexts are replaced with
17482 the corresponding deduced argument values. If the
17483 substitution results in an invalid type, as described above,
17484 type deduction fails. */
17485 TREE_VALUE (tinst) = targs;
17486 if (!push_tinst_level (tinst))
17487 {
17488 excessive_deduction_depth = true;
17489 goto fail;
17490 }
17491
17492 /* Also collect access checks from the instantiation. */
17493 reopen_deferring_access_checks (checks);
17494
17495 decl = instantiate_template (fn, targs, complain);
17496
17497 checks = get_deferred_access_checks ();
17498 pop_deferring_access_checks ();
17499
17500 pop_tinst_level ();
17501
17502 if (decl == error_mark_node)
17503 goto fail;
17504
17505 /* Now perform any access checks encountered during substitution. */
17506 push_access_scope (decl);
17507 ok = perform_access_checks (checks, complain);
17508 pop_access_scope (decl);
17509 if (!ok)
17510 goto fail;
17511
17512 /* If we're looking for an exact match, check that what we got
17513 is indeed an exact match. It might not be if some template
17514 parameters are used in non-deduced contexts. But don't check
17515 for an exact match if we have dependent template arguments;
17516 in that case we're doing partial ordering, and we already know
17517 that we have two candidates that will provide the actual type. */
17518 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
17519 {
17520 tree substed = TREE_TYPE (decl);
17521 unsigned int i;
17522
17523 tree sarg
17524 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
17525 if (return_type)
17526 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
17527 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
17528 if (!same_type_p (args[i], TREE_VALUE (sarg)))
17529 {
17530 unify_type_mismatch (explain_p, args[i],
17531 TREE_VALUE (sarg));
17532 goto fail;
17533 }
17534 }
17535
17536 r = decl;
17537
17538 fail:
17539 --deduction_depth;
17540 if (excessive_deduction_depth)
17541 {
17542 if (deduction_depth == 0)
17543 /* Reset once we're all the way out. */
17544 excessive_deduction_depth = false;
17545 }
17546
17547 /* We can't free this if a pending_template entry or last_error_tinst_level
17548 is pointing at it. */
17549 if (last_pending_template == old_last_pend
17550 && last_error_tinst_level == old_error_tinst)
17551 ggc_free (tinst);
17552
17553 return r;
17554 }
17555
17556 /* Adjust types before performing type deduction, as described in
17557 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
17558 sections are symmetric. PARM is the type of a function parameter
17559 or the return type of the conversion function. ARG is the type of
17560 the argument passed to the call, or the type of the value
17561 initialized with the result of the conversion function.
17562 ARG_EXPR is the original argument expression, which may be null. */
17563
17564 static int
17565 maybe_adjust_types_for_deduction (unification_kind_t strict,
17566 tree* parm,
17567 tree* arg,
17568 tree arg_expr)
17569 {
17570 int result = 0;
17571
17572 switch (strict)
17573 {
17574 case DEDUCE_CALL:
17575 break;
17576
17577 case DEDUCE_CONV:
17578 /* Swap PARM and ARG throughout the remainder of this
17579 function; the handling is precisely symmetric since PARM
17580 will initialize ARG rather than vice versa. */
17581 std::swap (parm, arg);
17582 break;
17583
17584 case DEDUCE_EXACT:
17585 /* Core issue #873: Do the DR606 thing (see below) for these cases,
17586 too, but here handle it by stripping the reference from PARM
17587 rather than by adding it to ARG. */
17588 if (TREE_CODE (*parm) == REFERENCE_TYPE
17589 && TYPE_REF_IS_RVALUE (*parm)
17590 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17591 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17592 && TREE_CODE (*arg) == REFERENCE_TYPE
17593 && !TYPE_REF_IS_RVALUE (*arg))
17594 *parm = TREE_TYPE (*parm);
17595 /* Nothing else to do in this case. */
17596 return 0;
17597
17598 default:
17599 gcc_unreachable ();
17600 }
17601
17602 if (TREE_CODE (*parm) != REFERENCE_TYPE)
17603 {
17604 /* [temp.deduct.call]
17605
17606 If P is not a reference type:
17607
17608 --If A is an array type, the pointer type produced by the
17609 array-to-pointer standard conversion (_conv.array_) is
17610 used in place of A for type deduction; otherwise,
17611
17612 --If A is a function type, the pointer type produced by
17613 the function-to-pointer standard conversion
17614 (_conv.func_) is used in place of A for type deduction;
17615 otherwise,
17616
17617 --If A is a cv-qualified type, the top level
17618 cv-qualifiers of A's type are ignored for type
17619 deduction. */
17620 if (TREE_CODE (*arg) == ARRAY_TYPE)
17621 *arg = build_pointer_type (TREE_TYPE (*arg));
17622 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
17623 *arg = build_pointer_type (*arg);
17624 else
17625 *arg = TYPE_MAIN_VARIANT (*arg);
17626 }
17627
17628 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
17629 of the form T&&, where T is a template parameter, and the argument
17630 is an lvalue, T is deduced as A& */
17631 if (TREE_CODE (*parm) == REFERENCE_TYPE
17632 && TYPE_REF_IS_RVALUE (*parm)
17633 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17634 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17635 && (arg_expr ? real_lvalue_p (arg_expr)
17636 /* try_one_overload doesn't provide an arg_expr, but
17637 functions are always lvalues. */
17638 : TREE_CODE (*arg) == FUNCTION_TYPE))
17639 *arg = build_reference_type (*arg);
17640
17641 /* [temp.deduct.call]
17642
17643 If P is a cv-qualified type, the top level cv-qualifiers
17644 of P's type are ignored for type deduction. If P is a
17645 reference type, the type referred to by P is used for
17646 type deduction. */
17647 *parm = TYPE_MAIN_VARIANT (*parm);
17648 if (TREE_CODE (*parm) == REFERENCE_TYPE)
17649 {
17650 *parm = TREE_TYPE (*parm);
17651 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
17652 }
17653
17654 /* DR 322. For conversion deduction, remove a reference type on parm
17655 too (which has been swapped into ARG). */
17656 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
17657 *arg = TREE_TYPE (*arg);
17658
17659 return result;
17660 }
17661
17662 /* Subroutine of unify_one_argument. PARM is a function parameter of a
17663 template which does contain any deducible template parameters; check if
17664 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
17665 unify_one_argument. */
17666
17667 static int
17668 check_non_deducible_conversion (tree parm, tree arg, int strict,
17669 int flags, bool explain_p)
17670 {
17671 tree type;
17672
17673 if (!TYPE_P (arg))
17674 type = TREE_TYPE (arg);
17675 else
17676 type = arg;
17677
17678 if (same_type_p (parm, type))
17679 return unify_success (explain_p);
17680
17681 if (strict == DEDUCE_CONV)
17682 {
17683 if (can_convert_arg (type, parm, NULL_TREE, flags,
17684 explain_p ? tf_warning_or_error : tf_none))
17685 return unify_success (explain_p);
17686 }
17687 else if (strict != DEDUCE_EXACT)
17688 {
17689 if (can_convert_arg (parm, type,
17690 TYPE_P (arg) ? NULL_TREE : arg,
17691 flags, explain_p ? tf_warning_or_error : tf_none))
17692 return unify_success (explain_p);
17693 }
17694
17695 if (strict == DEDUCE_EXACT)
17696 return unify_type_mismatch (explain_p, parm, arg);
17697 else
17698 return unify_arg_conversion (explain_p, parm, type, arg);
17699 }
17700
17701 static bool uses_deducible_template_parms (tree type);
17702
17703 /* Returns true iff the expression EXPR is one from which a template
17704 argument can be deduced. In other words, if it's an undecorated
17705 use of a template non-type parameter. */
17706
17707 static bool
17708 deducible_expression (tree expr)
17709 {
17710 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
17711 }
17712
17713 /* Returns true iff the array domain DOMAIN uses a template parameter in a
17714 deducible way; that is, if it has a max value of <PARM> - 1. */
17715
17716 static bool
17717 deducible_array_bound (tree domain)
17718 {
17719 if (domain == NULL_TREE)
17720 return false;
17721
17722 tree max = TYPE_MAX_VALUE (domain);
17723 if (TREE_CODE (max) != MINUS_EXPR)
17724 return false;
17725
17726 return deducible_expression (TREE_OPERAND (max, 0));
17727 }
17728
17729 /* Returns true iff the template arguments ARGS use a template parameter
17730 in a deducible way. */
17731
17732 static bool
17733 deducible_template_args (tree args)
17734 {
17735 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
17736 {
17737 bool deducible;
17738 tree elt = TREE_VEC_ELT (args, i);
17739 if (ARGUMENT_PACK_P (elt))
17740 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
17741 else
17742 {
17743 if (PACK_EXPANSION_P (elt))
17744 elt = PACK_EXPANSION_PATTERN (elt);
17745 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
17746 deducible = true;
17747 else if (TYPE_P (elt))
17748 deducible = uses_deducible_template_parms (elt);
17749 else
17750 deducible = deducible_expression (elt);
17751 }
17752 if (deducible)
17753 return true;
17754 }
17755 return false;
17756 }
17757
17758 /* Returns true iff TYPE contains any deducible references to template
17759 parameters, as per 14.8.2.5. */
17760
17761 static bool
17762 uses_deducible_template_parms (tree type)
17763 {
17764 if (PACK_EXPANSION_P (type))
17765 type = PACK_EXPANSION_PATTERN (type);
17766
17767 /* T
17768 cv-list T
17769 TT<T>
17770 TT<i>
17771 TT<> */
17772 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
17773 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
17774 return true;
17775
17776 /* T*
17777 T&
17778 T&& */
17779 if (POINTER_TYPE_P (type))
17780 return uses_deducible_template_parms (TREE_TYPE (type));
17781
17782 /* T[integer-constant ]
17783 type [i] */
17784 if (TREE_CODE (type) == ARRAY_TYPE)
17785 return (uses_deducible_template_parms (TREE_TYPE (type))
17786 || deducible_array_bound (TYPE_DOMAIN (type)));
17787
17788 /* T type ::*
17789 type T::*
17790 T T::*
17791 T (type ::*)()
17792 type (T::*)()
17793 type (type ::*)(T)
17794 type (T::*)(T)
17795 T (type ::*)(T)
17796 T (T::*)()
17797 T (T::*)(T) */
17798 if (TYPE_PTRMEM_P (type))
17799 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
17800 || (uses_deducible_template_parms
17801 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
17802
17803 /* template-name <T> (where template-name refers to a class template)
17804 template-name <i> (where template-name refers to a class template) */
17805 if (CLASS_TYPE_P (type)
17806 && CLASSTYPE_TEMPLATE_INFO (type)
17807 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
17808 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
17809 (CLASSTYPE_TI_ARGS (type)));
17810
17811 /* type (T)
17812 T()
17813 T(T) */
17814 if (TREE_CODE (type) == FUNCTION_TYPE
17815 || TREE_CODE (type) == METHOD_TYPE)
17816 {
17817 if (uses_deducible_template_parms (TREE_TYPE (type)))
17818 return true;
17819 tree parm = TYPE_ARG_TYPES (type);
17820 if (TREE_CODE (type) == METHOD_TYPE)
17821 parm = TREE_CHAIN (parm);
17822 for (; parm; parm = TREE_CHAIN (parm))
17823 if (uses_deducible_template_parms (TREE_VALUE (parm)))
17824 return true;
17825 }
17826
17827 return false;
17828 }
17829
17830 /* Subroutine of type_unification_real and unify_pack_expansion to
17831 handle unification of a single P/A pair. Parameters are as
17832 for those functions. */
17833
17834 static int
17835 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
17836 int subr, unification_kind_t strict,
17837 bool explain_p)
17838 {
17839 tree arg_expr = NULL_TREE;
17840 int arg_strict;
17841
17842 if (arg == error_mark_node || parm == error_mark_node)
17843 return unify_invalid (explain_p);
17844 if (arg == unknown_type_node)
17845 /* We can't deduce anything from this, but we might get all the
17846 template args from other function args. */
17847 return unify_success (explain_p);
17848
17849 /* Implicit conversions (Clause 4) will be performed on a function
17850 argument to convert it to the type of the corresponding function
17851 parameter if the parameter type contains no template-parameters that
17852 participate in template argument deduction. */
17853 if (strict != DEDUCE_EXACT
17854 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
17855 /* For function parameters with no deducible template parameters,
17856 just return. We'll check non-dependent conversions later. */
17857 return unify_success (explain_p);
17858
17859 switch (strict)
17860 {
17861 case DEDUCE_CALL:
17862 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
17863 | UNIFY_ALLOW_MORE_CV_QUAL
17864 | UNIFY_ALLOW_DERIVED);
17865 break;
17866
17867 case DEDUCE_CONV:
17868 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
17869 break;
17870
17871 case DEDUCE_EXACT:
17872 arg_strict = UNIFY_ALLOW_NONE;
17873 break;
17874
17875 default:
17876 gcc_unreachable ();
17877 }
17878
17879 /* We only do these transformations if this is the top-level
17880 parameter_type_list in a call or declaration matching; in other
17881 situations (nested function declarators, template argument lists) we
17882 won't be comparing a type to an expression, and we don't do any type
17883 adjustments. */
17884 if (!subr)
17885 {
17886 if (!TYPE_P (arg))
17887 {
17888 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
17889 if (type_unknown_p (arg))
17890 {
17891 /* [temp.deduct.type] A template-argument can be
17892 deduced from a pointer to function or pointer
17893 to member function argument if the set of
17894 overloaded functions does not contain function
17895 templates and at most one of a set of
17896 overloaded functions provides a unique
17897 match. */
17898
17899 if (resolve_overloaded_unification
17900 (tparms, targs, parm, arg, strict,
17901 arg_strict, explain_p))
17902 return unify_success (explain_p);
17903 return unify_overload_resolution_failure (explain_p, arg);
17904 }
17905
17906 arg_expr = arg;
17907 arg = unlowered_expr_type (arg);
17908 if (arg == error_mark_node)
17909 return unify_invalid (explain_p);
17910 }
17911
17912 arg_strict |=
17913 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
17914 }
17915 else
17916 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
17917 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
17918 return unify_template_argument_mismatch (explain_p, parm, arg);
17919
17920 /* For deduction from an init-list we need the actual list. */
17921 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
17922 arg = arg_expr;
17923 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
17924 }
17925
17926 /* Most parms like fn_type_unification.
17927
17928 If SUBR is 1, we're being called recursively (to unify the
17929 arguments of a function or method parameter of a function
17930 template).
17931
17932 CHECKS is a pointer to a vector of access checks encountered while
17933 substituting default template arguments. */
17934
17935 static int
17936 type_unification_real (tree tparms,
17937 tree targs,
17938 tree xparms,
17939 const tree *xargs,
17940 unsigned int xnargs,
17941 int subr,
17942 unification_kind_t strict,
17943 int flags,
17944 vec<deferred_access_check, va_gc> **checks,
17945 bool explain_p)
17946 {
17947 tree parm, arg;
17948 int i;
17949 int ntparms = TREE_VEC_LENGTH (tparms);
17950 int saw_undeduced = 0;
17951 tree parms;
17952 const tree *args;
17953 unsigned int nargs;
17954 unsigned int ia;
17955
17956 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
17957 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
17958 gcc_assert (ntparms > 0);
17959
17960 /* Reset the number of non-defaulted template arguments contained
17961 in TARGS. */
17962 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
17963
17964 again:
17965 parms = xparms;
17966 args = xargs;
17967 nargs = xnargs;
17968
17969 ia = 0;
17970 while (parms && parms != void_list_node
17971 && ia < nargs)
17972 {
17973 parm = TREE_VALUE (parms);
17974
17975 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
17976 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
17977 /* For a function parameter pack that occurs at the end of the
17978 parameter-declaration-list, the type A of each remaining
17979 argument of the call is compared with the type P of the
17980 declarator-id of the function parameter pack. */
17981 break;
17982
17983 parms = TREE_CHAIN (parms);
17984
17985 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
17986 /* For a function parameter pack that does not occur at the
17987 end of the parameter-declaration-list, the type of the
17988 parameter pack is a non-deduced context. */
17989 continue;
17990
17991 arg = args[ia];
17992 ++ia;
17993
17994 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
17995 explain_p))
17996 return 1;
17997 }
17998
17999 if (parms
18000 && parms != void_list_node
18001 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
18002 {
18003 /* Unify the remaining arguments with the pack expansion type. */
18004 tree argvec;
18005 tree parmvec = make_tree_vec (1);
18006
18007 /* Allocate a TREE_VEC and copy in all of the arguments */
18008 argvec = make_tree_vec (nargs - ia);
18009 for (i = 0; ia < nargs; ++ia, ++i)
18010 TREE_VEC_ELT (argvec, i) = args[ia];
18011
18012 /* Copy the parameter into parmvec. */
18013 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
18014 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
18015 /*subr=*/subr, explain_p))
18016 return 1;
18017
18018 /* Advance to the end of the list of parameters. */
18019 parms = TREE_CHAIN (parms);
18020 }
18021
18022 /* Fail if we've reached the end of the parm list, and more args
18023 are present, and the parm list isn't variadic. */
18024 if (ia < nargs && parms == void_list_node)
18025 return unify_too_many_arguments (explain_p, nargs, ia);
18026 /* Fail if parms are left and they don't have default values and
18027 they aren't all deduced as empty packs (c++/57397). This is
18028 consistent with sufficient_parms_p. */
18029 if (parms && parms != void_list_node
18030 && TREE_PURPOSE (parms) == NULL_TREE)
18031 {
18032 unsigned int count = nargs;
18033 tree p = parms;
18034 bool type_pack_p;
18035 do
18036 {
18037 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
18038 if (!type_pack_p)
18039 count++;
18040 p = TREE_CHAIN (p);
18041 }
18042 while (p && p != void_list_node);
18043 if (count != nargs)
18044 return unify_too_few_arguments (explain_p, ia, count,
18045 type_pack_p);
18046 }
18047
18048 if (!subr)
18049 {
18050 tsubst_flags_t complain = (explain_p
18051 ? tf_warning_or_error
18052 : tf_none);
18053
18054 for (i = 0; i < ntparms; i++)
18055 {
18056 tree targ = TREE_VEC_ELT (targs, i);
18057 tree tparm = TREE_VEC_ELT (tparms, i);
18058
18059 /* Clear the "incomplete" flags on all argument packs now so that
18060 substituting them into later default arguments works. */
18061 if (targ && ARGUMENT_PACK_P (targ))
18062 {
18063 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
18064 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
18065 }
18066
18067 if (targ || tparm == error_mark_node)
18068 continue;
18069 tparm = TREE_VALUE (tparm);
18070
18071 /* If this is an undeduced nontype parameter that depends on
18072 a type parameter, try another pass; its type may have been
18073 deduced from a later argument than the one from which
18074 this parameter can be deduced. */
18075 if (TREE_CODE (tparm) == PARM_DECL
18076 && uses_template_parms (TREE_TYPE (tparm))
18077 && saw_undeduced < 2)
18078 {
18079 saw_undeduced = 1;
18080 continue;
18081 }
18082
18083 /* Core issue #226 (C++0x) [temp.deduct]:
18084
18085 If a template argument has not been deduced, its
18086 default template argument, if any, is used.
18087
18088 When we are in C++98 mode, TREE_PURPOSE will either
18089 be NULL_TREE or ERROR_MARK_NODE, so we do not need
18090 to explicitly check cxx_dialect here. */
18091 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
18092 /* OK, there is a default argument. Wait until after the
18093 conversion check to do substitution. */
18094 continue;
18095
18096 /* If the type parameter is a parameter pack, then it will
18097 be deduced to an empty parameter pack. */
18098 if (template_parameter_pack_p (tparm))
18099 {
18100 tree arg;
18101
18102 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
18103 {
18104 arg = make_node (NONTYPE_ARGUMENT_PACK);
18105 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
18106 TREE_CONSTANT (arg) = 1;
18107 }
18108 else
18109 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
18110
18111 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
18112
18113 TREE_VEC_ELT (targs, i) = arg;
18114 continue;
18115 }
18116
18117 return unify_parameter_deduction_failure (explain_p, tparm);
18118 }
18119
18120 /* DR 1391: All parameters have args, now check non-dependent parms for
18121 convertibility. */
18122 if (saw_undeduced < 2)
18123 for (ia = 0, parms = xparms, args = xargs, nargs = xnargs;
18124 parms && parms != void_list_node && ia < nargs; )
18125 {
18126 parm = TREE_VALUE (parms);
18127
18128 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
18129 && (!TREE_CHAIN (parms)
18130 || TREE_CHAIN (parms) == void_list_node))
18131 /* For a function parameter pack that occurs at the end of the
18132 parameter-declaration-list, the type A of each remaining
18133 argument of the call is compared with the type P of the
18134 declarator-id of the function parameter pack. */
18135 break;
18136
18137 parms = TREE_CHAIN (parms);
18138
18139 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
18140 /* For a function parameter pack that does not occur at the
18141 end of the parameter-declaration-list, the type of the
18142 parameter pack is a non-deduced context. */
18143 continue;
18144
18145 arg = args[ia];
18146 ++ia;
18147
18148 if (uses_template_parms (parm))
18149 continue;
18150 if (check_non_deducible_conversion (parm, arg, strict, flags,
18151 explain_p))
18152 return 1;
18153 }
18154
18155 /* Now substitute into the default template arguments. */
18156 for (i = 0; i < ntparms; i++)
18157 {
18158 tree targ = TREE_VEC_ELT (targs, i);
18159 tree tparm = TREE_VEC_ELT (tparms, i);
18160
18161 if (targ || tparm == error_mark_node)
18162 continue;
18163 tree parm = TREE_VALUE (tparm);
18164
18165 if (TREE_CODE (parm) == PARM_DECL
18166 && uses_template_parms (TREE_TYPE (parm))
18167 && saw_undeduced < 2)
18168 continue;
18169
18170 tree arg = TREE_PURPOSE (tparm);
18171 reopen_deferring_access_checks (*checks);
18172 location_t save_loc = input_location;
18173 if (DECL_P (parm))
18174 input_location = DECL_SOURCE_LOCATION (parm);
18175 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
18176 arg = convert_template_argument (parm, arg, targs, complain,
18177 i, NULL_TREE);
18178 input_location = save_loc;
18179 *checks = get_deferred_access_checks ();
18180 pop_deferring_access_checks ();
18181 if (arg == error_mark_node)
18182 return 1;
18183 else
18184 {
18185 TREE_VEC_ELT (targs, i) = arg;
18186 /* The position of the first default template argument,
18187 is also the number of non-defaulted arguments in TARGS.
18188 Record that. */
18189 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
18190 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
18191 continue;
18192 }
18193 }
18194
18195 if (saw_undeduced++ == 1)
18196 goto again;
18197 }
18198
18199 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
18200 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
18201
18202 return unify_success (explain_p);
18203 }
18204
18205 /* Subroutine of type_unification_real. Args are like the variables
18206 at the call site. ARG is an overloaded function (or template-id);
18207 we try deducing template args from each of the overloads, and if
18208 only one succeeds, we go with that. Modifies TARGS and returns
18209 true on success. */
18210
18211 static bool
18212 resolve_overloaded_unification (tree tparms,
18213 tree targs,
18214 tree parm,
18215 tree arg,
18216 unification_kind_t strict,
18217 int sub_strict,
18218 bool explain_p)
18219 {
18220 tree tempargs = copy_node (targs);
18221 int good = 0;
18222 tree goodfn = NULL_TREE;
18223 bool addr_p;
18224
18225 if (TREE_CODE (arg) == ADDR_EXPR)
18226 {
18227 arg = TREE_OPERAND (arg, 0);
18228 addr_p = true;
18229 }
18230 else
18231 addr_p = false;
18232
18233 if (TREE_CODE (arg) == COMPONENT_REF)
18234 /* Handle `&x' where `x' is some static or non-static member
18235 function name. */
18236 arg = TREE_OPERAND (arg, 1);
18237
18238 if (TREE_CODE (arg) == OFFSET_REF)
18239 arg = TREE_OPERAND (arg, 1);
18240
18241 /* Strip baselink information. */
18242 if (BASELINK_P (arg))
18243 arg = BASELINK_FUNCTIONS (arg);
18244
18245 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
18246 {
18247 /* If we got some explicit template args, we need to plug them into
18248 the affected templates before we try to unify, in case the
18249 explicit args will completely resolve the templates in question. */
18250
18251 int ok = 0;
18252 tree expl_subargs = TREE_OPERAND (arg, 1);
18253 arg = TREE_OPERAND (arg, 0);
18254
18255 for (; arg; arg = OVL_NEXT (arg))
18256 {
18257 tree fn = OVL_CURRENT (arg);
18258 tree subargs, elem;
18259
18260 if (TREE_CODE (fn) != TEMPLATE_DECL)
18261 continue;
18262
18263 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18264 expl_subargs, NULL_TREE, tf_none,
18265 /*require_all_args=*/true,
18266 /*use_default_args=*/true);
18267 if (subargs != error_mark_node
18268 && !any_dependent_template_arguments_p (subargs))
18269 {
18270 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
18271 if (try_one_overload (tparms, targs, tempargs, parm,
18272 elem, strict, sub_strict, addr_p, explain_p)
18273 && (!goodfn || !same_type_p (goodfn, elem)))
18274 {
18275 goodfn = elem;
18276 ++good;
18277 }
18278 }
18279 else if (subargs)
18280 ++ok;
18281 }
18282 /* If no templates (or more than one) are fully resolved by the
18283 explicit arguments, this template-id is a non-deduced context; it
18284 could still be OK if we deduce all template arguments for the
18285 enclosing call through other arguments. */
18286 if (good != 1)
18287 good = ok;
18288 }
18289 else if (TREE_CODE (arg) != OVERLOAD
18290 && TREE_CODE (arg) != FUNCTION_DECL)
18291 /* If ARG is, for example, "(0, &f)" then its type will be unknown
18292 -- but the deduction does not succeed because the expression is
18293 not just the function on its own. */
18294 return false;
18295 else
18296 for (; arg; arg = OVL_NEXT (arg))
18297 if (try_one_overload (tparms, targs, tempargs, parm,
18298 TREE_TYPE (OVL_CURRENT (arg)),
18299 strict, sub_strict, addr_p, explain_p)
18300 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
18301 {
18302 goodfn = OVL_CURRENT (arg);
18303 ++good;
18304 }
18305
18306 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18307 to function or pointer to member function argument if the set of
18308 overloaded functions does not contain function templates and at most
18309 one of a set of overloaded functions provides a unique match.
18310
18311 So if we found multiple possibilities, we return success but don't
18312 deduce anything. */
18313
18314 if (good == 1)
18315 {
18316 int i = TREE_VEC_LENGTH (targs);
18317 for (; i--; )
18318 if (TREE_VEC_ELT (tempargs, i))
18319 {
18320 tree old = TREE_VEC_ELT (targs, i);
18321 tree new_ = TREE_VEC_ELT (tempargs, i);
18322 if (new_ && old && ARGUMENT_PACK_P (old)
18323 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
18324 /* Don't forget explicit template arguments in a pack. */
18325 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
18326 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
18327 TREE_VEC_ELT (targs, i) = new_;
18328 }
18329 }
18330 if (good)
18331 return true;
18332
18333 return false;
18334 }
18335
18336 /* Core DR 115: In contexts where deduction is done and fails, or in
18337 contexts where deduction is not done, if a template argument list is
18338 specified and it, along with any default template arguments, identifies
18339 a single function template specialization, then the template-id is an
18340 lvalue for the function template specialization. */
18341
18342 tree
18343 resolve_nondeduced_context (tree orig_expr)
18344 {
18345 tree expr, offset, baselink;
18346 bool addr;
18347
18348 if (!type_unknown_p (orig_expr))
18349 return orig_expr;
18350
18351 expr = orig_expr;
18352 addr = false;
18353 offset = NULL_TREE;
18354 baselink = NULL_TREE;
18355
18356 if (TREE_CODE (expr) == ADDR_EXPR)
18357 {
18358 expr = TREE_OPERAND (expr, 0);
18359 addr = true;
18360 }
18361 if (TREE_CODE (expr) == OFFSET_REF)
18362 {
18363 offset = expr;
18364 expr = TREE_OPERAND (expr, 1);
18365 }
18366 if (BASELINK_P (expr))
18367 {
18368 baselink = expr;
18369 expr = BASELINK_FUNCTIONS (expr);
18370 }
18371
18372 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
18373 {
18374 int good = 0;
18375 tree goodfn = NULL_TREE;
18376
18377 /* If we got some explicit template args, we need to plug them into
18378 the affected templates before we try to unify, in case the
18379 explicit args will completely resolve the templates in question. */
18380
18381 tree expl_subargs = TREE_OPERAND (expr, 1);
18382 tree arg = TREE_OPERAND (expr, 0);
18383 tree badfn = NULL_TREE;
18384 tree badargs = NULL_TREE;
18385
18386 for (; arg; arg = OVL_NEXT (arg))
18387 {
18388 tree fn = OVL_CURRENT (arg);
18389 tree subargs, elem;
18390
18391 if (TREE_CODE (fn) != TEMPLATE_DECL)
18392 continue;
18393
18394 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18395 expl_subargs, NULL_TREE, tf_none,
18396 /*require_all_args=*/true,
18397 /*use_default_args=*/true);
18398 if (subargs != error_mark_node
18399 && !any_dependent_template_arguments_p (subargs))
18400 {
18401 elem = instantiate_template (fn, subargs, tf_none);
18402 if (elem == error_mark_node)
18403 {
18404 badfn = fn;
18405 badargs = subargs;
18406 }
18407 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
18408 {
18409 goodfn = elem;
18410 ++good;
18411 }
18412 }
18413 }
18414 if (good == 1)
18415 {
18416 mark_used (goodfn);
18417 expr = goodfn;
18418 if (baselink)
18419 expr = build_baselink (BASELINK_BINFO (baselink),
18420 BASELINK_ACCESS_BINFO (baselink),
18421 expr, BASELINK_OPTYPE (baselink));
18422 if (offset)
18423 {
18424 tree base
18425 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
18426 expr = build_offset_ref (base, expr, addr, tf_warning_or_error);
18427 }
18428 if (addr)
18429 expr = cp_build_addr_expr (expr, tf_warning_or_error);
18430 return expr;
18431 }
18432 else if (good == 0 && badargs)
18433 /* There were no good options and at least one bad one, so let the
18434 user know what the problem is. */
18435 instantiate_template (badfn, badargs, tf_warning_or_error);
18436 }
18437 return orig_expr;
18438 }
18439
18440 /* Subroutine of resolve_overloaded_unification; does deduction for a single
18441 overload. Fills TARGS with any deduced arguments, or error_mark_node if
18442 different overloads deduce different arguments for a given parm.
18443 ADDR_P is true if the expression for which deduction is being
18444 performed was of the form "& fn" rather than simply "fn".
18445
18446 Returns 1 on success. */
18447
18448 static int
18449 try_one_overload (tree tparms,
18450 tree orig_targs,
18451 tree targs,
18452 tree parm,
18453 tree arg,
18454 unification_kind_t strict,
18455 int sub_strict,
18456 bool addr_p,
18457 bool explain_p)
18458 {
18459 int nargs;
18460 tree tempargs;
18461 int i;
18462
18463 if (arg == error_mark_node)
18464 return 0;
18465
18466 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18467 to function or pointer to member function argument if the set of
18468 overloaded functions does not contain function templates and at most
18469 one of a set of overloaded functions provides a unique match.
18470
18471 So if this is a template, just return success. */
18472
18473 if (uses_template_parms (arg))
18474 return 1;
18475
18476 if (TREE_CODE (arg) == METHOD_TYPE)
18477 arg = build_ptrmemfunc_type (build_pointer_type (arg));
18478 else if (addr_p)
18479 arg = build_pointer_type (arg);
18480
18481 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
18482
18483 /* We don't copy orig_targs for this because if we have already deduced
18484 some template args from previous args, unify would complain when we
18485 try to deduce a template parameter for the same argument, even though
18486 there isn't really a conflict. */
18487 nargs = TREE_VEC_LENGTH (targs);
18488 tempargs = make_tree_vec (nargs);
18489
18490 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
18491 return 0;
18492
18493 /* First make sure we didn't deduce anything that conflicts with
18494 explicitly specified args. */
18495 for (i = nargs; i--; )
18496 {
18497 tree elt = TREE_VEC_ELT (tempargs, i);
18498 tree oldelt = TREE_VEC_ELT (orig_targs, i);
18499
18500 if (!elt)
18501 /*NOP*/;
18502 else if (uses_template_parms (elt))
18503 /* Since we're unifying against ourselves, we will fill in
18504 template args used in the function parm list with our own
18505 template parms. Discard them. */
18506 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
18507 else if (oldelt && !template_args_equal (oldelt, elt))
18508 return 0;
18509 }
18510
18511 for (i = nargs; i--; )
18512 {
18513 tree elt = TREE_VEC_ELT (tempargs, i);
18514
18515 if (elt)
18516 TREE_VEC_ELT (targs, i) = elt;
18517 }
18518
18519 return 1;
18520 }
18521
18522 /* PARM is a template class (perhaps with unbound template
18523 parameters). ARG is a fully instantiated type. If ARG can be
18524 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
18525 TARGS are as for unify. */
18526
18527 static tree
18528 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
18529 bool explain_p)
18530 {
18531 tree copy_of_targs;
18532
18533 if (!CLASSTYPE_TEMPLATE_INFO (arg)
18534 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
18535 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
18536 return NULL_TREE;
18537
18538 /* We need to make a new template argument vector for the call to
18539 unify. If we used TARGS, we'd clutter it up with the result of
18540 the attempted unification, even if this class didn't work out.
18541 We also don't want to commit ourselves to all the unifications
18542 we've already done, since unification is supposed to be done on
18543 an argument-by-argument basis. In other words, consider the
18544 following pathological case:
18545
18546 template <int I, int J, int K>
18547 struct S {};
18548
18549 template <int I, int J>
18550 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
18551
18552 template <int I, int J, int K>
18553 void f(S<I, J, K>, S<I, I, I>);
18554
18555 void g() {
18556 S<0, 0, 0> s0;
18557 S<0, 1, 2> s2;
18558
18559 f(s0, s2);
18560 }
18561
18562 Now, by the time we consider the unification involving `s2', we
18563 already know that we must have `f<0, 0, 0>'. But, even though
18564 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
18565 because there are two ways to unify base classes of S<0, 1, 2>
18566 with S<I, I, I>. If we kept the already deduced knowledge, we
18567 would reject the possibility I=1. */
18568 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
18569
18570 /* If unification failed, we're done. */
18571 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
18572 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
18573 return NULL_TREE;
18574
18575 return arg;
18576 }
18577
18578 /* Given a template type PARM and a class type ARG, find the unique
18579 base type in ARG that is an instance of PARM. We do not examine
18580 ARG itself; only its base-classes. If there is not exactly one
18581 appropriate base class, return NULL_TREE. PARM may be the type of
18582 a partial specialization, as well as a plain template type. Used
18583 by unify. */
18584
18585 static enum template_base_result
18586 get_template_base (tree tparms, tree targs, tree parm, tree arg,
18587 bool explain_p, tree *result)
18588 {
18589 tree rval = NULL_TREE;
18590 tree binfo;
18591
18592 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
18593
18594 binfo = TYPE_BINFO (complete_type (arg));
18595 if (!binfo)
18596 {
18597 /* The type could not be completed. */
18598 *result = NULL_TREE;
18599 return tbr_incomplete_type;
18600 }
18601
18602 /* Walk in inheritance graph order. The search order is not
18603 important, and this avoids multiple walks of virtual bases. */
18604 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
18605 {
18606 tree r = try_class_unification (tparms, targs, parm,
18607 BINFO_TYPE (binfo), explain_p);
18608
18609 if (r)
18610 {
18611 /* If there is more than one satisfactory baseclass, then:
18612
18613 [temp.deduct.call]
18614
18615 If they yield more than one possible deduced A, the type
18616 deduction fails.
18617
18618 applies. */
18619 if (rval && !same_type_p (r, rval))
18620 {
18621 *result = NULL_TREE;
18622 return tbr_ambiguous_baseclass;
18623 }
18624
18625 rval = r;
18626 }
18627 }
18628
18629 *result = rval;
18630 return tbr_success;
18631 }
18632
18633 /* Returns the level of DECL, which declares a template parameter. */
18634
18635 static int
18636 template_decl_level (tree decl)
18637 {
18638 switch (TREE_CODE (decl))
18639 {
18640 case TYPE_DECL:
18641 case TEMPLATE_DECL:
18642 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
18643
18644 case PARM_DECL:
18645 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
18646
18647 default:
18648 gcc_unreachable ();
18649 }
18650 return 0;
18651 }
18652
18653 /* Decide whether ARG can be unified with PARM, considering only the
18654 cv-qualifiers of each type, given STRICT as documented for unify.
18655 Returns nonzero iff the unification is OK on that basis. */
18656
18657 static int
18658 check_cv_quals_for_unify (int strict, tree arg, tree parm)
18659 {
18660 int arg_quals = cp_type_quals (arg);
18661 int parm_quals = cp_type_quals (parm);
18662
18663 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18664 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
18665 {
18666 /* Although a CVR qualifier is ignored when being applied to a
18667 substituted template parameter ([8.3.2]/1 for example), that
18668 does not allow us to unify "const T" with "int&" because both
18669 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
18670 It is ok when we're allowing additional CV qualifiers
18671 at the outer level [14.8.2.1]/3,1st bullet. */
18672 if ((TREE_CODE (arg) == REFERENCE_TYPE
18673 || TREE_CODE (arg) == FUNCTION_TYPE
18674 || TREE_CODE (arg) == METHOD_TYPE)
18675 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
18676 return 0;
18677
18678 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
18679 && (parm_quals & TYPE_QUAL_RESTRICT))
18680 return 0;
18681 }
18682
18683 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
18684 && (arg_quals & parm_quals) != parm_quals)
18685 return 0;
18686
18687 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
18688 && (parm_quals & arg_quals) != arg_quals)
18689 return 0;
18690
18691 return 1;
18692 }
18693
18694 /* Determines the LEVEL and INDEX for the template parameter PARM. */
18695 void
18696 template_parm_level_and_index (tree parm, int* level, int* index)
18697 {
18698 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18699 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
18700 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
18701 {
18702 *index = TEMPLATE_TYPE_IDX (parm);
18703 *level = TEMPLATE_TYPE_LEVEL (parm);
18704 }
18705 else
18706 {
18707 *index = TEMPLATE_PARM_IDX (parm);
18708 *level = TEMPLATE_PARM_LEVEL (parm);
18709 }
18710 }
18711
18712 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
18713 do { \
18714 if (unify (TP, TA, P, A, S, EP)) \
18715 return 1; \
18716 } while (0);
18717
18718 /* Unifies the remaining arguments in PACKED_ARGS with the pack
18719 expansion at the end of PACKED_PARMS. Returns 0 if the type
18720 deduction succeeds, 1 otherwise. STRICT is the same as in
18721 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
18722 call argument list. We'll need to adjust the arguments to make them
18723 types. SUBR tells us if this is from a recursive call to
18724 type_unification_real, or for comparing two template argument
18725 lists. */
18726
18727 static int
18728 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
18729 tree packed_args, unification_kind_t strict,
18730 bool subr, bool explain_p)
18731 {
18732 tree parm
18733 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
18734 tree pattern = PACK_EXPANSION_PATTERN (parm);
18735 tree pack, packs = NULL_TREE;
18736 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
18737
18738 packed_args = expand_template_argument_pack (packed_args);
18739
18740 int len = TREE_VEC_LENGTH (packed_args);
18741
18742 /* Determine the parameter packs we will be deducing from the
18743 pattern, and record their current deductions. */
18744 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
18745 pack; pack = TREE_CHAIN (pack))
18746 {
18747 tree parm_pack = TREE_VALUE (pack);
18748 int idx, level;
18749
18750 /* Determine the index and level of this parameter pack. */
18751 template_parm_level_and_index (parm_pack, &level, &idx);
18752
18753 /* Keep track of the parameter packs and their corresponding
18754 argument packs. */
18755 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
18756 TREE_TYPE (packs) = make_tree_vec (len - start);
18757 }
18758
18759 /* Loop through all of the arguments that have not yet been
18760 unified and unify each with the pattern. */
18761 for (i = start; i < len; i++)
18762 {
18763 tree parm;
18764 bool any_explicit = false;
18765 tree arg = TREE_VEC_ELT (packed_args, i);
18766
18767 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
18768 or the element of its argument pack at the current index if
18769 this argument was explicitly specified. */
18770 for (pack = packs; pack; pack = TREE_CHAIN (pack))
18771 {
18772 int idx, level;
18773 tree arg, pargs;
18774 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
18775
18776 arg = NULL_TREE;
18777 if (TREE_VALUE (pack)
18778 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
18779 && (i - start < TREE_VEC_LENGTH (pargs)))
18780 {
18781 any_explicit = true;
18782 arg = TREE_VEC_ELT (pargs, i - start);
18783 }
18784 TMPL_ARG (targs, level, idx) = arg;
18785 }
18786
18787 /* If we had explicit template arguments, substitute them into the
18788 pattern before deduction. */
18789 if (any_explicit)
18790 {
18791 /* Some arguments might still be unspecified or dependent. */
18792 bool dependent;
18793 ++processing_template_decl;
18794 dependent = any_dependent_template_arguments_p (targs);
18795 if (!dependent)
18796 --processing_template_decl;
18797 parm = tsubst (pattern, targs,
18798 explain_p ? tf_warning_or_error : tf_none,
18799 NULL_TREE);
18800 if (dependent)
18801 --processing_template_decl;
18802 if (parm == error_mark_node)
18803 return 1;
18804 }
18805 else
18806 parm = pattern;
18807
18808 /* Unify the pattern with the current argument. */
18809 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
18810 explain_p))
18811 return 1;
18812
18813 /* For each parameter pack, collect the deduced value. */
18814 for (pack = packs; pack; pack = TREE_CHAIN (pack))
18815 {
18816 int idx, level;
18817 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
18818
18819 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
18820 TMPL_ARG (targs, level, idx);
18821 }
18822 }
18823
18824 /* Verify that the results of unification with the parameter packs
18825 produce results consistent with what we've seen before, and make
18826 the deduced argument packs available. */
18827 for (pack = packs; pack; pack = TREE_CHAIN (pack))
18828 {
18829 tree old_pack = TREE_VALUE (pack);
18830 tree new_args = TREE_TYPE (pack);
18831 int i, len = TREE_VEC_LENGTH (new_args);
18832 int idx, level;
18833 bool nondeduced_p = false;
18834
18835 /* By default keep the original deduced argument pack.
18836 If necessary, more specific code is going to update the
18837 resulting deduced argument later down in this function. */
18838 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
18839 TMPL_ARG (targs, level, idx) = old_pack;
18840
18841 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
18842 actually deduce anything. */
18843 for (i = 0; i < len && !nondeduced_p; ++i)
18844 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
18845 nondeduced_p = true;
18846 if (nondeduced_p)
18847 continue;
18848
18849 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
18850 {
18851 /* If we had fewer function args than explicit template args,
18852 just use the explicits. */
18853 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
18854 int explicit_len = TREE_VEC_LENGTH (explicit_args);
18855 if (len < explicit_len)
18856 new_args = explicit_args;
18857 }
18858
18859 if (!old_pack)
18860 {
18861 tree result;
18862 /* Build the deduced *_ARGUMENT_PACK. */
18863 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
18864 {
18865 result = make_node (NONTYPE_ARGUMENT_PACK);
18866 TREE_TYPE (result) =
18867 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
18868 TREE_CONSTANT (result) = 1;
18869 }
18870 else
18871 result = cxx_make_type (TYPE_ARGUMENT_PACK);
18872
18873 SET_ARGUMENT_PACK_ARGS (result, new_args);
18874
18875 /* Note the deduced argument packs for this parameter
18876 pack. */
18877 TMPL_ARG (targs, level, idx) = result;
18878 }
18879 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
18880 && (ARGUMENT_PACK_ARGS (old_pack)
18881 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
18882 {
18883 /* We only had the explicitly-provided arguments before, but
18884 now we have a complete set of arguments. */
18885 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
18886
18887 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
18888 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
18889 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
18890 }
18891 else
18892 {
18893 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
18894 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
18895
18896 if (!comp_template_args_with_info (old_args, new_args,
18897 &bad_old_arg, &bad_new_arg))
18898 /* Inconsistent unification of this parameter pack. */
18899 return unify_parameter_pack_inconsistent (explain_p,
18900 bad_old_arg,
18901 bad_new_arg);
18902 }
18903 }
18904
18905 return unify_success (explain_p);
18906 }
18907
18908 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
18909 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
18910 parameters and return value are as for unify. */
18911
18912 static int
18913 unify_array_domain (tree tparms, tree targs,
18914 tree parm_dom, tree arg_dom,
18915 bool explain_p)
18916 {
18917 tree parm_max;
18918 tree arg_max;
18919 bool parm_cst;
18920 bool arg_cst;
18921
18922 /* Our representation of array types uses "N - 1" as the
18923 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
18924 not an integer constant. We cannot unify arbitrarily
18925 complex expressions, so we eliminate the MINUS_EXPRs
18926 here. */
18927 parm_max = TYPE_MAX_VALUE (parm_dom);
18928 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
18929 if (!parm_cst)
18930 {
18931 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
18932 parm_max = TREE_OPERAND (parm_max, 0);
18933 }
18934 arg_max = TYPE_MAX_VALUE (arg_dom);
18935 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
18936 if (!arg_cst)
18937 {
18938 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
18939 trying to unify the type of a variable with the type
18940 of a template parameter. For example:
18941
18942 template <unsigned int N>
18943 void f (char (&) [N]);
18944 int g();
18945 void h(int i) {
18946 char a[g(i)];
18947 f(a);
18948 }
18949
18950 Here, the type of the ARG will be "int [g(i)]", and
18951 may be a SAVE_EXPR, etc. */
18952 if (TREE_CODE (arg_max) != MINUS_EXPR)
18953 return unify_vla_arg (explain_p, arg_dom);
18954 arg_max = TREE_OPERAND (arg_max, 0);
18955 }
18956
18957 /* If only one of the bounds used a MINUS_EXPR, compensate
18958 by adding one to the other bound. */
18959 if (parm_cst && !arg_cst)
18960 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
18961 integer_type_node,
18962 parm_max,
18963 integer_one_node);
18964 else if (arg_cst && !parm_cst)
18965 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
18966 integer_type_node,
18967 arg_max,
18968 integer_one_node);
18969
18970 return unify (tparms, targs, parm_max, arg_max,
18971 UNIFY_ALLOW_INTEGER, explain_p);
18972 }
18973
18974 /* Deduce the value of template parameters. TPARMS is the (innermost)
18975 set of template parameters to a template. TARGS is the bindings
18976 for those template parameters, as determined thus far; TARGS may
18977 include template arguments for outer levels of template parameters
18978 as well. PARM is a parameter to a template function, or a
18979 subcomponent of that parameter; ARG is the corresponding argument.
18980 This function attempts to match PARM with ARG in a manner
18981 consistent with the existing assignments in TARGS. If more values
18982 are deduced, then TARGS is updated.
18983
18984 Returns 0 if the type deduction succeeds, 1 otherwise. The
18985 parameter STRICT is a bitwise or of the following flags:
18986
18987 UNIFY_ALLOW_NONE:
18988 Require an exact match between PARM and ARG.
18989 UNIFY_ALLOW_MORE_CV_QUAL:
18990 Allow the deduced ARG to be more cv-qualified (by qualification
18991 conversion) than ARG.
18992 UNIFY_ALLOW_LESS_CV_QUAL:
18993 Allow the deduced ARG to be less cv-qualified than ARG.
18994 UNIFY_ALLOW_DERIVED:
18995 Allow the deduced ARG to be a template base class of ARG,
18996 or a pointer to a template base class of the type pointed to by
18997 ARG.
18998 UNIFY_ALLOW_INTEGER:
18999 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
19000 case for more information.
19001 UNIFY_ALLOW_OUTER_LEVEL:
19002 This is the outermost level of a deduction. Used to determine validity
19003 of qualification conversions. A valid qualification conversion must
19004 have const qualified pointers leading up to the inner type which
19005 requires additional CV quals, except at the outer level, where const
19006 is not required [conv.qual]. It would be normal to set this flag in
19007 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
19008 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
19009 This is the outermost level of a deduction, and PARM can be more CV
19010 qualified at this point.
19011 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
19012 This is the outermost level of a deduction, and PARM can be less CV
19013 qualified at this point. */
19014
19015 static int
19016 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
19017 bool explain_p)
19018 {
19019 int idx;
19020 tree targ;
19021 tree tparm;
19022 int strict_in = strict;
19023
19024 /* I don't think this will do the right thing with respect to types.
19025 But the only case I've seen it in so far has been array bounds, where
19026 signedness is the only information lost, and I think that will be
19027 okay. */
19028 while (TREE_CODE (parm) == NOP_EXPR)
19029 parm = TREE_OPERAND (parm, 0);
19030
19031 if (arg == error_mark_node)
19032 return unify_invalid (explain_p);
19033 if (arg == unknown_type_node
19034 || arg == init_list_type_node)
19035 /* We can't deduce anything from this, but we might get all the
19036 template args from other function args. */
19037 return unify_success (explain_p);
19038
19039 /* If PARM uses template parameters, then we can't bail out here,
19040 even if ARG == PARM, since we won't record unifications for the
19041 template parameters. We might need them if we're trying to
19042 figure out which of two things is more specialized. */
19043 if (arg == parm && !uses_template_parms (parm))
19044 return unify_success (explain_p);
19045
19046 /* Handle init lists early, so the rest of the function can assume
19047 we're dealing with a type. */
19048 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
19049 {
19050 tree elt, elttype;
19051 unsigned i;
19052 tree orig_parm = parm;
19053
19054 /* Replace T with std::initializer_list<T> for deduction. */
19055 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19056 && flag_deduce_init_list)
19057 parm = listify (parm);
19058
19059 if (!is_std_init_list (parm)
19060 && TREE_CODE (parm) != ARRAY_TYPE)
19061 /* We can only deduce from an initializer list argument if the
19062 parameter is std::initializer_list or an array; otherwise this
19063 is a non-deduced context. */
19064 return unify_success (explain_p);
19065
19066 if (TREE_CODE (parm) == ARRAY_TYPE)
19067 elttype = TREE_TYPE (parm);
19068 else
19069 {
19070 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
19071 /* Deduction is defined in terms of a single type, so just punt
19072 on the (bizarre) std::initializer_list<T...>. */
19073 if (PACK_EXPANSION_P (elttype))
19074 return unify_success (explain_p);
19075 }
19076
19077 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
19078 {
19079 int elt_strict = strict;
19080
19081 if (elt == error_mark_node)
19082 return unify_invalid (explain_p);
19083
19084 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
19085 {
19086 tree type = TREE_TYPE (elt);
19087 if (type == error_mark_node)
19088 return unify_invalid (explain_p);
19089 /* It should only be possible to get here for a call. */
19090 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
19091 elt_strict |= maybe_adjust_types_for_deduction
19092 (DEDUCE_CALL, &elttype, &type, elt);
19093 elt = type;
19094 }
19095
19096 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
19097 explain_p);
19098 }
19099
19100 if (TREE_CODE (parm) == ARRAY_TYPE
19101 && deducible_array_bound (TYPE_DOMAIN (parm)))
19102 {
19103 /* Also deduce from the length of the initializer list. */
19104 tree max = size_int (CONSTRUCTOR_NELTS (arg));
19105 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
19106 if (idx == error_mark_node)
19107 return unify_invalid (explain_p);
19108 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19109 idx, explain_p);
19110 }
19111
19112 /* If the std::initializer_list<T> deduction worked, replace the
19113 deduced A with std::initializer_list<A>. */
19114 if (orig_parm != parm)
19115 {
19116 idx = TEMPLATE_TYPE_IDX (orig_parm);
19117 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19118 targ = listify (targ);
19119 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
19120 }
19121 return unify_success (explain_p);
19122 }
19123
19124 /* Immediately reject some pairs that won't unify because of
19125 cv-qualification mismatches. */
19126 if (TREE_CODE (arg) == TREE_CODE (parm)
19127 && TYPE_P (arg)
19128 /* It is the elements of the array which hold the cv quals of an array
19129 type, and the elements might be template type parms. We'll check
19130 when we recurse. */
19131 && TREE_CODE (arg) != ARRAY_TYPE
19132 /* We check the cv-qualifiers when unifying with template type
19133 parameters below. We want to allow ARG `const T' to unify with
19134 PARM `T' for example, when computing which of two templates
19135 is more specialized, for example. */
19136 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
19137 && !check_cv_quals_for_unify (strict_in, arg, parm))
19138 return unify_cv_qual_mismatch (explain_p, parm, arg);
19139
19140 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
19141 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
19142 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
19143 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
19144 strict &= ~UNIFY_ALLOW_DERIVED;
19145 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
19146 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
19147
19148 switch (TREE_CODE (parm))
19149 {
19150 case TYPENAME_TYPE:
19151 case SCOPE_REF:
19152 case UNBOUND_CLASS_TEMPLATE:
19153 /* In a type which contains a nested-name-specifier, template
19154 argument values cannot be deduced for template parameters used
19155 within the nested-name-specifier. */
19156 return unify_success (explain_p);
19157
19158 case TEMPLATE_TYPE_PARM:
19159 case TEMPLATE_TEMPLATE_PARM:
19160 case BOUND_TEMPLATE_TEMPLATE_PARM:
19161 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19162 if (error_operand_p (tparm))
19163 return unify_invalid (explain_p);
19164
19165 if (TEMPLATE_TYPE_LEVEL (parm)
19166 != template_decl_level (tparm))
19167 /* The PARM is not one we're trying to unify. Just check
19168 to see if it matches ARG. */
19169 {
19170 if (TREE_CODE (arg) == TREE_CODE (parm)
19171 && (is_auto (parm) ? is_auto (arg)
19172 : same_type_p (parm, arg)))
19173 return unify_success (explain_p);
19174 else
19175 return unify_type_mismatch (explain_p, parm, arg);
19176 }
19177 idx = TEMPLATE_TYPE_IDX (parm);
19178 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19179 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
19180 if (error_operand_p (tparm))
19181 return unify_invalid (explain_p);
19182
19183 /* Check for mixed types and values. */
19184 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19185 && TREE_CODE (tparm) != TYPE_DECL)
19186 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19187 && TREE_CODE (tparm) != TEMPLATE_DECL))
19188 gcc_unreachable ();
19189
19190 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19191 {
19192 /* ARG must be constructed from a template class or a template
19193 template parameter. */
19194 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
19195 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
19196 return unify_template_deduction_failure (explain_p, parm, arg);
19197 {
19198 tree parmvec = TYPE_TI_ARGS (parm);
19199 /* An alias template name is never deduced. */
19200 if (TYPE_ALIAS_P (arg))
19201 arg = strip_typedefs (arg);
19202 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
19203 tree full_argvec = add_to_template_args (targs, argvec);
19204 tree parm_parms
19205 = DECL_INNERMOST_TEMPLATE_PARMS
19206 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
19207 int i, len;
19208 int parm_variadic_p = 0;
19209
19210 /* The resolution to DR150 makes clear that default
19211 arguments for an N-argument may not be used to bind T
19212 to a template template parameter with fewer than N
19213 parameters. It is not safe to permit the binding of
19214 default arguments as an extension, as that may change
19215 the meaning of a conforming program. Consider:
19216
19217 struct Dense { static const unsigned int dim = 1; };
19218
19219 template <template <typename> class View,
19220 typename Block>
19221 void operator+(float, View<Block> const&);
19222
19223 template <typename Block,
19224 unsigned int Dim = Block::dim>
19225 struct Lvalue_proxy { operator float() const; };
19226
19227 void
19228 test_1d (void) {
19229 Lvalue_proxy<Dense> p;
19230 float b;
19231 b + p;
19232 }
19233
19234 Here, if Lvalue_proxy is permitted to bind to View, then
19235 the global operator+ will be used; if they are not, the
19236 Lvalue_proxy will be converted to float. */
19237 if (coerce_template_parms (parm_parms,
19238 full_argvec,
19239 TYPE_TI_TEMPLATE (parm),
19240 (explain_p
19241 ? tf_warning_or_error
19242 : tf_none),
19243 /*require_all_args=*/true,
19244 /*use_default_args=*/false)
19245 == error_mark_node)
19246 return 1;
19247
19248 /* Deduce arguments T, i from TT<T> or TT<i>.
19249 We check each element of PARMVEC and ARGVEC individually
19250 rather than the whole TREE_VEC since they can have
19251 different number of elements. */
19252
19253 parmvec = expand_template_argument_pack (parmvec);
19254 argvec = expand_template_argument_pack (argvec);
19255
19256 len = TREE_VEC_LENGTH (parmvec);
19257
19258 /* Check if the parameters end in a pack, making them
19259 variadic. */
19260 if (len > 0
19261 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
19262 parm_variadic_p = 1;
19263
19264 for (i = 0; i < len - parm_variadic_p; ++i)
19265 /* If the template argument list of P contains a pack
19266 expansion that is not the last template argument, the
19267 entire template argument list is a non-deduced
19268 context. */
19269 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
19270 return unify_success (explain_p);
19271
19272 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
19273 return unify_too_few_arguments (explain_p,
19274 TREE_VEC_LENGTH (argvec), len);
19275
19276 for (i = 0; i < len - parm_variadic_p; ++i)
19277 {
19278 RECUR_AND_CHECK_FAILURE (tparms, targs,
19279 TREE_VEC_ELT (parmvec, i),
19280 TREE_VEC_ELT (argvec, i),
19281 UNIFY_ALLOW_NONE, explain_p);
19282 }
19283
19284 if (parm_variadic_p
19285 && unify_pack_expansion (tparms, targs,
19286 parmvec, argvec,
19287 DEDUCE_EXACT,
19288 /*subr=*/true, explain_p))
19289 return 1;
19290 }
19291 arg = TYPE_TI_TEMPLATE (arg);
19292
19293 /* Fall through to deduce template name. */
19294 }
19295
19296 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19297 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19298 {
19299 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
19300
19301 /* Simple cases: Value already set, does match or doesn't. */
19302 if (targ != NULL_TREE && template_args_equal (targ, arg))
19303 return unify_success (explain_p);
19304 else if (targ)
19305 return unify_inconsistency (explain_p, parm, targ, arg);
19306 }
19307 else
19308 {
19309 /* If PARM is `const T' and ARG is only `int', we don't have
19310 a match unless we are allowing additional qualification.
19311 If ARG is `const int' and PARM is just `T' that's OK;
19312 that binds `const int' to `T'. */
19313 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
19314 arg, parm))
19315 return unify_cv_qual_mismatch (explain_p, parm, arg);
19316
19317 /* Consider the case where ARG is `const volatile int' and
19318 PARM is `const T'. Then, T should be `volatile int'. */
19319 arg = cp_build_qualified_type_real
19320 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
19321 if (arg == error_mark_node)
19322 return unify_invalid (explain_p);
19323
19324 /* Simple cases: Value already set, does match or doesn't. */
19325 if (targ != NULL_TREE && same_type_p (targ, arg))
19326 return unify_success (explain_p);
19327 else if (targ)
19328 return unify_inconsistency (explain_p, parm, targ, arg);
19329
19330 /* Make sure that ARG is not a variable-sized array. (Note
19331 that were talking about variable-sized arrays (like
19332 `int[n]'), rather than arrays of unknown size (like
19333 `int[]').) We'll get very confused by such a type since
19334 the bound of the array is not constant, and therefore
19335 not mangleable. Besides, such types are not allowed in
19336 ISO C++, so we can do as we please here. We do allow
19337 them for 'auto' deduction, since that isn't ABI-exposed. */
19338 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
19339 return unify_vla_arg (explain_p, arg);
19340
19341 /* Strip typedefs as in convert_template_argument. */
19342 arg = canonicalize_type_argument (arg, tf_none);
19343 }
19344
19345 /* If ARG is a parameter pack or an expansion, we cannot unify
19346 against it unless PARM is also a parameter pack. */
19347 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19348 && !template_parameter_pack_p (parm))
19349 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19350
19351 /* If the argument deduction results is a METHOD_TYPE,
19352 then there is a problem.
19353 METHOD_TYPE doesn't map to any real C++ type the result of
19354 the deduction can not be of that type. */
19355 if (TREE_CODE (arg) == METHOD_TYPE)
19356 return unify_method_type_error (explain_p, arg);
19357
19358 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19359 return unify_success (explain_p);
19360
19361 case TEMPLATE_PARM_INDEX:
19362 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19363 if (error_operand_p (tparm))
19364 return unify_invalid (explain_p);
19365
19366 if (TEMPLATE_PARM_LEVEL (parm)
19367 != template_decl_level (tparm))
19368 {
19369 /* The PARM is not one we're trying to unify. Just check
19370 to see if it matches ARG. */
19371 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
19372 && cp_tree_equal (parm, arg));
19373 if (result)
19374 unify_expression_unequal (explain_p, parm, arg);
19375 return result;
19376 }
19377
19378 idx = TEMPLATE_PARM_IDX (parm);
19379 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19380
19381 if (targ)
19382 {
19383 int x = !cp_tree_equal (targ, arg);
19384 if (x)
19385 unify_inconsistency (explain_p, parm, targ, arg);
19386 return x;
19387 }
19388
19389 /* [temp.deduct.type] If, in the declaration of a function template
19390 with a non-type template-parameter, the non-type
19391 template-parameter is used in an expression in the function
19392 parameter-list and, if the corresponding template-argument is
19393 deduced, the template-argument type shall match the type of the
19394 template-parameter exactly, except that a template-argument
19395 deduced from an array bound may be of any integral type.
19396 The non-type parameter might use already deduced type parameters. */
19397 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
19398 if (!TREE_TYPE (arg))
19399 /* Template-parameter dependent expression. Just accept it for now.
19400 It will later be processed in convert_template_argument. */
19401 ;
19402 else if (same_type_p (TREE_TYPE (arg), tparm))
19403 /* OK */;
19404 else if ((strict & UNIFY_ALLOW_INTEGER)
19405 && CP_INTEGRAL_TYPE_P (tparm))
19406 /* Convert the ARG to the type of PARM; the deduced non-type
19407 template argument must exactly match the types of the
19408 corresponding parameter. */
19409 arg = fold (build_nop (tparm, arg));
19410 else if (uses_template_parms (tparm))
19411 /* We haven't deduced the type of this parameter yet. Try again
19412 later. */
19413 return unify_success (explain_p);
19414 else
19415 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
19416
19417 /* If ARG is a parameter pack or an expansion, we cannot unify
19418 against it unless PARM is also a parameter pack. */
19419 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19420 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
19421 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19422
19423 {
19424 bool removed_attr = false;
19425 arg = strip_typedefs_expr (arg, &removed_attr);
19426 }
19427 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19428 return unify_success (explain_p);
19429
19430 case PTRMEM_CST:
19431 {
19432 /* A pointer-to-member constant can be unified only with
19433 another constant. */
19434 if (TREE_CODE (arg) != PTRMEM_CST)
19435 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
19436
19437 /* Just unify the class member. It would be useless (and possibly
19438 wrong, depending on the strict flags) to unify also
19439 PTRMEM_CST_CLASS, because we want to be sure that both parm and
19440 arg refer to the same variable, even if through different
19441 classes. For instance:
19442
19443 struct A { int x; };
19444 struct B : A { };
19445
19446 Unification of &A::x and &B::x must succeed. */
19447 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
19448 PTRMEM_CST_MEMBER (arg), strict, explain_p);
19449 }
19450
19451 case POINTER_TYPE:
19452 {
19453 if (!TYPE_PTR_P (arg))
19454 return unify_type_mismatch (explain_p, parm, arg);
19455
19456 /* [temp.deduct.call]
19457
19458 A can be another pointer or pointer to member type that can
19459 be converted to the deduced A via a qualification
19460 conversion (_conv.qual_).
19461
19462 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
19463 This will allow for additional cv-qualification of the
19464 pointed-to types if appropriate. */
19465
19466 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
19467 /* The derived-to-base conversion only persists through one
19468 level of pointers. */
19469 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
19470
19471 return unify (tparms, targs, TREE_TYPE (parm),
19472 TREE_TYPE (arg), strict, explain_p);
19473 }
19474
19475 case REFERENCE_TYPE:
19476 if (TREE_CODE (arg) != REFERENCE_TYPE)
19477 return unify_type_mismatch (explain_p, parm, arg);
19478 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19479 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19480
19481 case ARRAY_TYPE:
19482 if (TREE_CODE (arg) != ARRAY_TYPE)
19483 return unify_type_mismatch (explain_p, parm, arg);
19484 if ((TYPE_DOMAIN (parm) == NULL_TREE)
19485 != (TYPE_DOMAIN (arg) == NULL_TREE))
19486 return unify_type_mismatch (explain_p, parm, arg);
19487 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19488 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19489 if (TYPE_DOMAIN (parm) != NULL_TREE)
19490 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19491 TYPE_DOMAIN (arg), explain_p);
19492 return unify_success (explain_p);
19493
19494 case REAL_TYPE:
19495 case COMPLEX_TYPE:
19496 case VECTOR_TYPE:
19497 case INTEGER_TYPE:
19498 case BOOLEAN_TYPE:
19499 case ENUMERAL_TYPE:
19500 case VOID_TYPE:
19501 case NULLPTR_TYPE:
19502 if (TREE_CODE (arg) != TREE_CODE (parm))
19503 return unify_type_mismatch (explain_p, parm, arg);
19504
19505 /* We have already checked cv-qualification at the top of the
19506 function. */
19507 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
19508 return unify_type_mismatch (explain_p, parm, arg);
19509
19510 /* As far as unification is concerned, this wins. Later checks
19511 will invalidate it if necessary. */
19512 return unify_success (explain_p);
19513
19514 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
19515 /* Type INTEGER_CST can come from ordinary constant template args. */
19516 case INTEGER_CST:
19517 while (TREE_CODE (arg) == NOP_EXPR)
19518 arg = TREE_OPERAND (arg, 0);
19519
19520 if (TREE_CODE (arg) != INTEGER_CST)
19521 return unify_template_argument_mismatch (explain_p, parm, arg);
19522 return (tree_int_cst_equal (parm, arg)
19523 ? unify_success (explain_p)
19524 : unify_template_argument_mismatch (explain_p, parm, arg));
19525
19526 case TREE_VEC:
19527 {
19528 int i, len, argslen;
19529 int parm_variadic_p = 0;
19530
19531 if (TREE_CODE (arg) != TREE_VEC)
19532 return unify_template_argument_mismatch (explain_p, parm, arg);
19533
19534 len = TREE_VEC_LENGTH (parm);
19535 argslen = TREE_VEC_LENGTH (arg);
19536
19537 /* Check for pack expansions in the parameters. */
19538 for (i = 0; i < len; ++i)
19539 {
19540 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
19541 {
19542 if (i == len - 1)
19543 /* We can unify against something with a trailing
19544 parameter pack. */
19545 parm_variadic_p = 1;
19546 else
19547 /* [temp.deduct.type]/9: If the template argument list of
19548 P contains a pack expansion that is not the last
19549 template argument, the entire template argument list
19550 is a non-deduced context. */
19551 return unify_success (explain_p);
19552 }
19553 }
19554
19555 /* If we don't have enough arguments to satisfy the parameters
19556 (not counting the pack expression at the end), or we have
19557 too many arguments for a parameter list that doesn't end in
19558 a pack expression, we can't unify. */
19559 if (parm_variadic_p
19560 ? argslen < len - parm_variadic_p
19561 : argslen != len)
19562 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
19563
19564 /* Unify all of the parameters that precede the (optional)
19565 pack expression. */
19566 for (i = 0; i < len - parm_variadic_p; ++i)
19567 {
19568 RECUR_AND_CHECK_FAILURE (tparms, targs,
19569 TREE_VEC_ELT (parm, i),
19570 TREE_VEC_ELT (arg, i),
19571 UNIFY_ALLOW_NONE, explain_p);
19572 }
19573 if (parm_variadic_p)
19574 return unify_pack_expansion (tparms, targs, parm, arg,
19575 DEDUCE_EXACT,
19576 /*subr=*/true, explain_p);
19577 return unify_success (explain_p);
19578 }
19579
19580 case RECORD_TYPE:
19581 case UNION_TYPE:
19582 if (TREE_CODE (arg) != TREE_CODE (parm))
19583 return unify_type_mismatch (explain_p, parm, arg);
19584
19585 if (TYPE_PTRMEMFUNC_P (parm))
19586 {
19587 if (!TYPE_PTRMEMFUNC_P (arg))
19588 return unify_type_mismatch (explain_p, parm, arg);
19589
19590 return unify (tparms, targs,
19591 TYPE_PTRMEMFUNC_FN_TYPE (parm),
19592 TYPE_PTRMEMFUNC_FN_TYPE (arg),
19593 strict, explain_p);
19594 }
19595 else if (TYPE_PTRMEMFUNC_P (arg))
19596 return unify_type_mismatch (explain_p, parm, arg);
19597
19598 if (CLASSTYPE_TEMPLATE_INFO (parm))
19599 {
19600 tree t = NULL_TREE;
19601
19602 if (strict_in & UNIFY_ALLOW_DERIVED)
19603 {
19604 /* First, we try to unify the PARM and ARG directly. */
19605 t = try_class_unification (tparms, targs,
19606 parm, arg, explain_p);
19607
19608 if (!t)
19609 {
19610 /* Fallback to the special case allowed in
19611 [temp.deduct.call]:
19612
19613 If P is a class, and P has the form
19614 template-id, then A can be a derived class of
19615 the deduced A. Likewise, if P is a pointer to
19616 a class of the form template-id, A can be a
19617 pointer to a derived class pointed to by the
19618 deduced A. */
19619 enum template_base_result r;
19620 r = get_template_base (tparms, targs, parm, arg,
19621 explain_p, &t);
19622
19623 if (!t)
19624 {
19625 /* Don't give the derived diagnostic if we're
19626 already dealing with the same template. */
19627 bool same_template
19628 = (CLASSTYPE_TEMPLATE_INFO (arg)
19629 && (CLASSTYPE_TI_TEMPLATE (parm)
19630 == CLASSTYPE_TI_TEMPLATE (arg)));
19631 return unify_no_common_base (explain_p && !same_template,
19632 r, parm, arg);
19633 }
19634 }
19635 }
19636 else if (CLASSTYPE_TEMPLATE_INFO (arg)
19637 && (CLASSTYPE_TI_TEMPLATE (parm)
19638 == CLASSTYPE_TI_TEMPLATE (arg)))
19639 /* Perhaps PARM is something like S<U> and ARG is S<int>.
19640 Then, we should unify `int' and `U'. */
19641 t = arg;
19642 else
19643 /* There's no chance of unification succeeding. */
19644 return unify_type_mismatch (explain_p, parm, arg);
19645
19646 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
19647 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
19648 }
19649 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
19650 return unify_type_mismatch (explain_p, parm, arg);
19651 return unify_success (explain_p);
19652
19653 case METHOD_TYPE:
19654 case FUNCTION_TYPE:
19655 {
19656 unsigned int nargs;
19657 tree *args;
19658 tree a;
19659 unsigned int i;
19660
19661 if (TREE_CODE (arg) != TREE_CODE (parm))
19662 return unify_type_mismatch (explain_p, parm, arg);
19663
19664 /* CV qualifications for methods can never be deduced, they must
19665 match exactly. We need to check them explicitly here,
19666 because type_unification_real treats them as any other
19667 cv-qualified parameter. */
19668 if (TREE_CODE (parm) == METHOD_TYPE
19669 && (!check_cv_quals_for_unify
19670 (UNIFY_ALLOW_NONE,
19671 class_of_this_parm (arg),
19672 class_of_this_parm (parm))))
19673 return unify_cv_qual_mismatch (explain_p, parm, arg);
19674
19675 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
19676 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
19677
19678 nargs = list_length (TYPE_ARG_TYPES (arg));
19679 args = XALLOCAVEC (tree, nargs);
19680 for (a = TYPE_ARG_TYPES (arg), i = 0;
19681 a != NULL_TREE && a != void_list_node;
19682 a = TREE_CHAIN (a), ++i)
19683 args[i] = TREE_VALUE (a);
19684 nargs = i;
19685
19686 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
19687 args, nargs, 1, DEDUCE_EXACT,
19688 LOOKUP_NORMAL, NULL, explain_p);
19689 }
19690
19691 case OFFSET_TYPE:
19692 /* Unify a pointer to member with a pointer to member function, which
19693 deduces the type of the member as a function type. */
19694 if (TYPE_PTRMEMFUNC_P (arg))
19695 {
19696 /* Check top-level cv qualifiers */
19697 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
19698 return unify_cv_qual_mismatch (explain_p, parm, arg);
19699
19700 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
19701 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
19702 UNIFY_ALLOW_NONE, explain_p);
19703
19704 /* Determine the type of the function we are unifying against. */
19705 tree fntype = static_fn_type (arg);
19706
19707 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
19708 }
19709
19710 if (TREE_CODE (arg) != OFFSET_TYPE)
19711 return unify_type_mismatch (explain_p, parm, arg);
19712 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
19713 TYPE_OFFSET_BASETYPE (arg),
19714 UNIFY_ALLOW_NONE, explain_p);
19715 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19716 strict, explain_p);
19717
19718 case CONST_DECL:
19719 if (DECL_TEMPLATE_PARM_P (parm))
19720 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
19721 if (arg != scalar_constant_value (parm))
19722 return unify_template_argument_mismatch (explain_p, parm, arg);
19723 return unify_success (explain_p);
19724
19725 case FIELD_DECL:
19726 case TEMPLATE_DECL:
19727 /* Matched cases are handled by the ARG == PARM test above. */
19728 return unify_template_argument_mismatch (explain_p, parm, arg);
19729
19730 case VAR_DECL:
19731 /* A non-type template parameter that is a variable should be a
19732 an integral constant, in which case, it whould have been
19733 folded into its (constant) value. So we should not be getting
19734 a variable here. */
19735 gcc_unreachable ();
19736
19737 case TYPE_ARGUMENT_PACK:
19738 case NONTYPE_ARGUMENT_PACK:
19739 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
19740 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
19741
19742 case TYPEOF_TYPE:
19743 case DECLTYPE_TYPE:
19744 case UNDERLYING_TYPE:
19745 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
19746 or UNDERLYING_TYPE nodes. */
19747 return unify_success (explain_p);
19748
19749 case ERROR_MARK:
19750 /* Unification fails if we hit an error node. */
19751 return unify_invalid (explain_p);
19752
19753 case INDIRECT_REF:
19754 if (REFERENCE_REF_P (parm))
19755 {
19756 if (REFERENCE_REF_P (arg))
19757 arg = TREE_OPERAND (arg, 0);
19758 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
19759 strict, explain_p);
19760 }
19761 /* FALLTHRU */
19762
19763 default:
19764 /* An unresolved overload is a nondeduced context. */
19765 if (is_overloaded_fn (parm) || type_unknown_p (parm))
19766 return unify_success (explain_p);
19767 gcc_assert (EXPR_P (parm));
19768
19769 /* We must be looking at an expression. This can happen with
19770 something like:
19771
19772 template <int I>
19773 void foo(S<I>, S<I + 2>);
19774
19775 This is a "nondeduced context":
19776
19777 [deduct.type]
19778
19779 The nondeduced contexts are:
19780
19781 --A type that is a template-id in which one or more of
19782 the template-arguments is an expression that references
19783 a template-parameter.
19784
19785 In these cases, we assume deduction succeeded, but don't
19786 actually infer any unifications. */
19787
19788 if (!uses_template_parms (parm)
19789 && !template_args_equal (parm, arg))
19790 return unify_expression_unequal (explain_p, parm, arg);
19791 else
19792 return unify_success (explain_p);
19793 }
19794 }
19795 #undef RECUR_AND_CHECK_FAILURE
19796 \f
19797 /* Note that DECL can be defined in this translation unit, if
19798 required. */
19799
19800 static void
19801 mark_definable (tree decl)
19802 {
19803 tree clone;
19804 DECL_NOT_REALLY_EXTERN (decl) = 1;
19805 FOR_EACH_CLONE (clone, decl)
19806 DECL_NOT_REALLY_EXTERN (clone) = 1;
19807 }
19808
19809 /* Called if RESULT is explicitly instantiated, or is a member of an
19810 explicitly instantiated class. */
19811
19812 void
19813 mark_decl_instantiated (tree result, int extern_p)
19814 {
19815 SET_DECL_EXPLICIT_INSTANTIATION (result);
19816
19817 /* If this entity has already been written out, it's too late to
19818 make any modifications. */
19819 if (TREE_ASM_WRITTEN (result))
19820 return;
19821
19822 /* For anonymous namespace we don't need to do anything. */
19823 if (decl_anon_ns_mem_p (result))
19824 {
19825 gcc_assert (!TREE_PUBLIC (result));
19826 return;
19827 }
19828
19829 if (TREE_CODE (result) != FUNCTION_DECL)
19830 /* The TREE_PUBLIC flag for function declarations will have been
19831 set correctly by tsubst. */
19832 TREE_PUBLIC (result) = 1;
19833
19834 /* This might have been set by an earlier implicit instantiation. */
19835 DECL_COMDAT (result) = 0;
19836
19837 if (extern_p)
19838 DECL_NOT_REALLY_EXTERN (result) = 0;
19839 else
19840 {
19841 mark_definable (result);
19842 mark_needed (result);
19843 /* Always make artificials weak. */
19844 if (DECL_ARTIFICIAL (result) && flag_weak)
19845 comdat_linkage (result);
19846 /* For WIN32 we also want to put explicit instantiations in
19847 linkonce sections. */
19848 else if (TREE_PUBLIC (result))
19849 maybe_make_one_only (result);
19850 }
19851
19852 /* If EXTERN_P, then this function will not be emitted -- unless
19853 followed by an explicit instantiation, at which point its linkage
19854 will be adjusted. If !EXTERN_P, then this function will be
19855 emitted here. In neither circumstance do we want
19856 import_export_decl to adjust the linkage. */
19857 DECL_INTERFACE_KNOWN (result) = 1;
19858 }
19859
19860 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
19861 important template arguments. If any are missing, we check whether
19862 they're important by using error_mark_node for substituting into any
19863 args that were used for partial ordering (the ones between ARGS and END)
19864 and seeing if it bubbles up. */
19865
19866 static bool
19867 check_undeduced_parms (tree targs, tree args, tree end)
19868 {
19869 bool found = false;
19870 int i;
19871 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
19872 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
19873 {
19874 found = true;
19875 TREE_VEC_ELT (targs, i) = error_mark_node;
19876 }
19877 if (found)
19878 {
19879 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
19880 if (substed == error_mark_node)
19881 return true;
19882 }
19883 return false;
19884 }
19885
19886 /* Given two function templates PAT1 and PAT2, return:
19887
19888 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
19889 -1 if PAT2 is more specialized than PAT1.
19890 0 if neither is more specialized.
19891
19892 LEN indicates the number of parameters we should consider
19893 (defaulted parameters should not be considered).
19894
19895 The 1998 std underspecified function template partial ordering, and
19896 DR214 addresses the issue. We take pairs of arguments, one from
19897 each of the templates, and deduce them against each other. One of
19898 the templates will be more specialized if all the *other*
19899 template's arguments deduce against its arguments and at least one
19900 of its arguments *does* *not* deduce against the other template's
19901 corresponding argument. Deduction is done as for class templates.
19902 The arguments used in deduction have reference and top level cv
19903 qualifiers removed. Iff both arguments were originally reference
19904 types *and* deduction succeeds in both directions, an lvalue reference
19905 wins against an rvalue reference and otherwise the template
19906 with the more cv-qualified argument wins for that pairing (if
19907 neither is more cv-qualified, they both are equal). Unlike regular
19908 deduction, after all the arguments have been deduced in this way,
19909 we do *not* verify the deduced template argument values can be
19910 substituted into non-deduced contexts.
19911
19912 The logic can be a bit confusing here, because we look at deduce1 and
19913 targs1 to see if pat2 is at least as specialized, and vice versa; if we
19914 can find template arguments for pat1 to make arg1 look like arg2, that
19915 means that arg2 is at least as specialized as arg1. */
19916
19917 int
19918 more_specialized_fn (tree pat1, tree pat2, int len)
19919 {
19920 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
19921 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
19922 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
19923 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
19924 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
19925 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
19926 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
19927 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
19928 tree origs1, origs2;
19929 bool lose1 = false;
19930 bool lose2 = false;
19931
19932 /* Remove the this parameter from non-static member functions. If
19933 one is a non-static member function and the other is not a static
19934 member function, remove the first parameter from that function
19935 also. This situation occurs for operator functions where we
19936 locate both a member function (with this pointer) and non-member
19937 operator (with explicit first operand). */
19938 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
19939 {
19940 len--; /* LEN is the number of significant arguments for DECL1 */
19941 args1 = TREE_CHAIN (args1);
19942 if (!DECL_STATIC_FUNCTION_P (decl2))
19943 args2 = TREE_CHAIN (args2);
19944 }
19945 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
19946 {
19947 args2 = TREE_CHAIN (args2);
19948 if (!DECL_STATIC_FUNCTION_P (decl1))
19949 {
19950 len--;
19951 args1 = TREE_CHAIN (args1);
19952 }
19953 }
19954
19955 /* If only one is a conversion operator, they are unordered. */
19956 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
19957 return 0;
19958
19959 /* Consider the return type for a conversion function */
19960 if (DECL_CONV_FN_P (decl1))
19961 {
19962 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
19963 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
19964 len++;
19965 }
19966
19967 processing_template_decl++;
19968
19969 origs1 = args1;
19970 origs2 = args2;
19971
19972 while (len--
19973 /* Stop when an ellipsis is seen. */
19974 && args1 != NULL_TREE && args2 != NULL_TREE)
19975 {
19976 tree arg1 = TREE_VALUE (args1);
19977 tree arg2 = TREE_VALUE (args2);
19978 int deduce1, deduce2;
19979 int quals1 = -1;
19980 int quals2 = -1;
19981 int ref1 = 0;
19982 int ref2 = 0;
19983
19984 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
19985 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
19986 {
19987 /* When both arguments are pack expansions, we need only
19988 unify the patterns themselves. */
19989 arg1 = PACK_EXPANSION_PATTERN (arg1);
19990 arg2 = PACK_EXPANSION_PATTERN (arg2);
19991
19992 /* This is the last comparison we need to do. */
19993 len = 0;
19994 }
19995
19996 if (TREE_CODE (arg1) == REFERENCE_TYPE)
19997 {
19998 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
19999 arg1 = TREE_TYPE (arg1);
20000 quals1 = cp_type_quals (arg1);
20001 }
20002
20003 if (TREE_CODE (arg2) == REFERENCE_TYPE)
20004 {
20005 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
20006 arg2 = TREE_TYPE (arg2);
20007 quals2 = cp_type_quals (arg2);
20008 }
20009
20010 arg1 = TYPE_MAIN_VARIANT (arg1);
20011 arg2 = TYPE_MAIN_VARIANT (arg2);
20012
20013 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
20014 {
20015 int i, len2 = list_length (args2);
20016 tree parmvec = make_tree_vec (1);
20017 tree argvec = make_tree_vec (len2);
20018 tree ta = args2;
20019
20020 /* Setup the parameter vector, which contains only ARG1. */
20021 TREE_VEC_ELT (parmvec, 0) = arg1;
20022
20023 /* Setup the argument vector, which contains the remaining
20024 arguments. */
20025 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
20026 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
20027
20028 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
20029 argvec, DEDUCE_EXACT,
20030 /*subr=*/true, /*explain_p=*/false)
20031 == 0);
20032
20033 /* We cannot deduce in the other direction, because ARG1 is
20034 a pack expansion but ARG2 is not. */
20035 deduce2 = 0;
20036 }
20037 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20038 {
20039 int i, len1 = list_length (args1);
20040 tree parmvec = make_tree_vec (1);
20041 tree argvec = make_tree_vec (len1);
20042 tree ta = args1;
20043
20044 /* Setup the parameter vector, which contains only ARG1. */
20045 TREE_VEC_ELT (parmvec, 0) = arg2;
20046
20047 /* Setup the argument vector, which contains the remaining
20048 arguments. */
20049 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
20050 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
20051
20052 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
20053 argvec, DEDUCE_EXACT,
20054 /*subr=*/true, /*explain_p=*/false)
20055 == 0);
20056
20057 /* We cannot deduce in the other direction, because ARG2 is
20058 a pack expansion but ARG1 is not.*/
20059 deduce1 = 0;
20060 }
20061
20062 else
20063 {
20064 /* The normal case, where neither argument is a pack
20065 expansion. */
20066 deduce1 = (unify (tparms1, targs1, arg1, arg2,
20067 UNIFY_ALLOW_NONE, /*explain_p=*/false)
20068 == 0);
20069 deduce2 = (unify (tparms2, targs2, arg2, arg1,
20070 UNIFY_ALLOW_NONE, /*explain_p=*/false)
20071 == 0);
20072 }
20073
20074 /* If we couldn't deduce arguments for tparms1 to make arg1 match
20075 arg2, then arg2 is not as specialized as arg1. */
20076 if (!deduce1)
20077 lose2 = true;
20078 if (!deduce2)
20079 lose1 = true;
20080
20081 /* "If, for a given type, deduction succeeds in both directions
20082 (i.e., the types are identical after the transformations above)
20083 and both P and A were reference types (before being replaced with
20084 the type referred to above):
20085 - if the type from the argument template was an lvalue reference and
20086 the type from the parameter template was not, the argument type is
20087 considered to be more specialized than the other; otherwise,
20088 - if the type from the argument template is more cv-qualified
20089 than the type from the parameter template (as described above),
20090 the argument type is considered to be more specialized than the other;
20091 otherwise,
20092 - neither type is more specialized than the other." */
20093
20094 if (deduce1 && deduce2)
20095 {
20096 if (ref1 && ref2 && ref1 != ref2)
20097 {
20098 if (ref1 > ref2)
20099 lose1 = true;
20100 else
20101 lose2 = true;
20102 }
20103 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
20104 {
20105 if ((quals1 & quals2) == quals2)
20106 lose2 = true;
20107 if ((quals1 & quals2) == quals1)
20108 lose1 = true;
20109 }
20110 }
20111
20112 if (lose1 && lose2)
20113 /* We've failed to deduce something in either direction.
20114 These must be unordered. */
20115 break;
20116
20117 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
20118 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20119 /* We have already processed all of the arguments in our
20120 handing of the pack expansion type. */
20121 len = 0;
20122
20123 args1 = TREE_CHAIN (args1);
20124 args2 = TREE_CHAIN (args2);
20125 }
20126
20127 /* "In most cases, all template parameters must have values in order for
20128 deduction to succeed, but for partial ordering purposes a template
20129 parameter may remain without a value provided it is not used in the
20130 types being used for partial ordering."
20131
20132 Thus, if we are missing any of the targs1 we need to substitute into
20133 origs1, then pat2 is not as specialized as pat1. This can happen when
20134 there is a nondeduced context. */
20135 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
20136 lose2 = true;
20137 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
20138 lose1 = true;
20139
20140 processing_template_decl--;
20141
20142 /* If both deductions succeed, the partial ordering selects the more
20143 constrained template. */
20144 if (!lose1 && !lose2)
20145 {
20146 tree c1 = get_constraints (DECL_TEMPLATE_RESULT (pat1));
20147 tree c2 = get_constraints (DECL_TEMPLATE_RESULT (pat2));
20148 lose1 = !subsumes_constraints (c1, c2);
20149 lose2 = !subsumes_constraints (c2, c1);
20150 }
20151
20152 /* All things being equal, if the next argument is a pack expansion
20153 for one function but not for the other, prefer the
20154 non-variadic function. FIXME this is bogus; see c++/41958. */
20155 if (lose1 == lose2
20156 && args1 && TREE_VALUE (args1)
20157 && args2 && TREE_VALUE (args2))
20158 {
20159 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
20160 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
20161 }
20162
20163 if (lose1 == lose2)
20164 return 0;
20165 else if (!lose1)
20166 return 1;
20167 else
20168 return -1;
20169 }
20170
20171 /* Determine which of two partial specializations of TMPL is more
20172 specialized.
20173
20174 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
20175 to the first partial specialization. The TREE_PURPOSE is the
20176 innermost set of template parameters for the partial
20177 specialization. PAT2 is similar, but for the second template.
20178
20179 Return 1 if the first partial specialization is more specialized;
20180 -1 if the second is more specialized; 0 if neither is more
20181 specialized.
20182
20183 See [temp.class.order] for information about determining which of
20184 two templates is more specialized. */
20185
20186 static int
20187 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
20188 {
20189 tree targs;
20190 int winner = 0;
20191 bool any_deductions = false;
20192
20193 tree tmpl1 = TREE_VALUE (pat1);
20194 tree tmpl2 = TREE_VALUE (pat2);
20195 tree parms1 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl1);
20196 tree parms2 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl2);
20197 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
20198 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
20199
20200 /* Just like what happens for functions, if we are ordering between
20201 different template specializations, we may encounter dependent
20202 types in the arguments, and we need our dependency check functions
20203 to behave correctly. */
20204 ++processing_template_decl;
20205 targs = get_partial_spec_bindings (tmpl, parms1, specargs1, specargs2);
20206 if (targs)
20207 {
20208 --winner;
20209 any_deductions = true;
20210 }
20211
20212 targs = get_partial_spec_bindings (tmpl, parms2, specargs2, specargs1);
20213 if (targs)
20214 {
20215 ++winner;
20216 any_deductions = true;
20217 }
20218 --processing_template_decl;
20219
20220 /* If both deductions succeed, the partial ordering selects the more
20221 constrained template. */
20222 if (!winner && any_deductions)
20223 return more_constrained (tmpl1, tmpl2);
20224
20225 /* In the case of a tie where at least one of the templates
20226 has a parameter pack at the end, the template with the most
20227 non-packed parameters wins. */
20228 if (winner == 0
20229 && any_deductions
20230 && (template_args_variadic_p (TREE_PURPOSE (pat1))
20231 || template_args_variadic_p (TREE_PURPOSE (pat2))))
20232 {
20233 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
20234 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
20235 int len1 = TREE_VEC_LENGTH (args1);
20236 int len2 = TREE_VEC_LENGTH (args2);
20237
20238 /* We don't count the pack expansion at the end. */
20239 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
20240 --len1;
20241 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
20242 --len2;
20243
20244 if (len1 > len2)
20245 return 1;
20246 else if (len1 < len2)
20247 return -1;
20248 }
20249
20250 return winner;
20251 }
20252
20253 /* Return the template arguments that will produce the function signature
20254 DECL from the function template FN, with the explicit template
20255 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
20256 also match. Return NULL_TREE if no satisfactory arguments could be
20257 found. */
20258
20259 static tree
20260 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
20261 {
20262 int ntparms = DECL_NTPARMS (fn);
20263 tree targs = make_tree_vec (ntparms);
20264 tree decl_type = TREE_TYPE (decl);
20265 tree decl_arg_types;
20266 tree *args;
20267 unsigned int nargs, ix;
20268 tree arg;
20269
20270 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
20271
20272 /* Never do unification on the 'this' parameter. */
20273 decl_arg_types = skip_artificial_parms_for (decl,
20274 TYPE_ARG_TYPES (decl_type));
20275
20276 nargs = list_length (decl_arg_types);
20277 args = XALLOCAVEC (tree, nargs);
20278 for (arg = decl_arg_types, ix = 0;
20279 arg != NULL_TREE && arg != void_list_node;
20280 arg = TREE_CHAIN (arg), ++ix)
20281 args[ix] = TREE_VALUE (arg);
20282
20283 if (fn_type_unification (fn, explicit_args, targs,
20284 args, ix,
20285 (check_rettype || DECL_CONV_FN_P (fn)
20286 ? TREE_TYPE (decl_type) : NULL_TREE),
20287 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
20288 /*decltype*/false)
20289 == error_mark_node)
20290 return NULL_TREE;
20291
20292 return targs;
20293 }
20294
20295 /* Return the innermost template arguments that, when applied to a partial
20296 specialization of TMPL whose innermost template parameters are
20297 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
20298 ARGS.
20299
20300 For example, suppose we have:
20301
20302 template <class T, class U> struct S {};
20303 template <class T> struct S<T*, int> {};
20304
20305 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
20306 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
20307 int}. The resulting vector will be {double}, indicating that `T'
20308 is bound to `double'. */
20309
20310 static tree
20311 get_partial_spec_bindings (tree tmpl, tree tparms, tree spec_args, tree args)
20312 {
20313 int i, ntparms = TREE_VEC_LENGTH (tparms);
20314 tree deduced_args;
20315 tree innermost_deduced_args;
20316
20317 innermost_deduced_args = make_tree_vec (ntparms);
20318 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20319 {
20320 deduced_args = copy_node (args);
20321 SET_TMPL_ARGS_LEVEL (deduced_args,
20322 TMPL_ARGS_DEPTH (deduced_args),
20323 innermost_deduced_args);
20324 }
20325 else
20326 deduced_args = innermost_deduced_args;
20327
20328 if (unify (tparms, deduced_args,
20329 INNERMOST_TEMPLATE_ARGS (spec_args),
20330 INNERMOST_TEMPLATE_ARGS (args),
20331 UNIFY_ALLOW_NONE, /*explain_p=*/false))
20332 return NULL_TREE;
20333
20334 for (i = 0; i < ntparms; ++i)
20335 if (! TREE_VEC_ELT (innermost_deduced_args, i))
20336 return NULL_TREE;
20337
20338 /* Verify that nondeduced template arguments agree with the type
20339 obtained from argument deduction.
20340
20341 For example:
20342
20343 struct A { typedef int X; };
20344 template <class T, class U> struct C {};
20345 template <class T> struct C<T, typename T::X> {};
20346
20347 Then with the instantiation `C<A, int>', we can deduce that
20348 `T' is `A' but unify () does not check whether `typename T::X'
20349 is `int'. */
20350 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
20351 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20352 spec_args, tmpl,
20353 tf_none, false, false);
20354 if (spec_args == error_mark_node
20355 /* We only need to check the innermost arguments; the other
20356 arguments will always agree. */
20357 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
20358 INNERMOST_TEMPLATE_ARGS (args)))
20359 return NULL_TREE;
20360
20361 /* Now that we have bindings for all of the template arguments,
20362 ensure that the arguments deduced for the template template
20363 parameters have compatible template parameter lists. See the use
20364 of template_template_parm_bindings_ok_p in fn_type_unification
20365 for more information. */
20366 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
20367 return NULL_TREE;
20368
20369 return deduced_args;
20370 }
20371
20372 // Compare two function templates T1 and T2 by deducing bindings
20373 // from one against the other. If both deductions succeed, compare
20374 // constraints to see which is more constrained.
20375 static int
20376 more_specialized_inst (tree t1, tree t2)
20377 {
20378 int fate = 0;
20379 int count = 0;
20380
20381 if (get_bindings (t1, DECL_TEMPLATE_RESULT (t2), NULL_TREE, true))
20382 {
20383 --fate;
20384 ++count;
20385 }
20386
20387 if (get_bindings (t2, DECL_TEMPLATE_RESULT (t1), NULL_TREE, true))
20388 {
20389 ++fate;
20390 ++count;
20391 }
20392
20393 // If both deductions succeed, then one may be more constrained.
20394 if (count == 2 && fate == 0)
20395 fate = more_constrained (t1, t2);
20396
20397 return fate;
20398 }
20399
20400 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
20401 Return the TREE_LIST node with the most specialized template, if
20402 any. If there is no most specialized template, the error_mark_node
20403 is returned.
20404
20405 Note that this function does not look at, or modify, the
20406 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
20407 returned is one of the elements of INSTANTIATIONS, callers may
20408 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
20409 and retrieve it from the value returned. */
20410
20411 tree
20412 most_specialized_instantiation (tree templates)
20413 {
20414 tree fn, champ;
20415
20416 ++processing_template_decl;
20417
20418 champ = templates;
20419 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
20420 {
20421 int fate = more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn));
20422 if (fate == -1)
20423 champ = fn;
20424 else if (!fate)
20425 {
20426 /* Equally specialized, move to next function. If there
20427 is no next function, nothing's most specialized. */
20428 fn = TREE_CHAIN (fn);
20429 champ = fn;
20430 if (!fn)
20431 break;
20432 }
20433 }
20434
20435 if (champ)
20436 /* Now verify that champ is better than everything earlier in the
20437 instantiation list. */
20438 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn)) {
20439 if (more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn)) != 1)
20440 {
20441 champ = NULL_TREE;
20442 break;
20443 }
20444 }
20445
20446 processing_template_decl--;
20447
20448 if (!champ)
20449 return error_mark_node;
20450
20451 return champ;
20452 }
20453
20454 /* If DECL is a specialization of some template, return the most
20455 general such template. Otherwise, returns NULL_TREE.
20456
20457 For example, given:
20458
20459 template <class T> struct S { template <class U> void f(U); };
20460
20461 if TMPL is `template <class U> void S<int>::f(U)' this will return
20462 the full template. This function will not trace past partial
20463 specializations, however. For example, given in addition:
20464
20465 template <class T> struct S<T*> { template <class U> void f(U); };
20466
20467 if TMPL is `template <class U> void S<int*>::f(U)' this will return
20468 `template <class T> template <class U> S<T*>::f(U)'. */
20469
20470 tree
20471 most_general_template (tree decl)
20472 {
20473 if (TREE_CODE (decl) != TEMPLATE_DECL)
20474 {
20475 if (tree tinfo = get_template_info (decl))
20476 decl = TI_TEMPLATE (tinfo);
20477 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
20478 template friend, or a FIELD_DECL for a capture pack. */
20479 if (TREE_CODE (decl) != TEMPLATE_DECL)
20480 return NULL_TREE;
20481 }
20482
20483 /* Look for more and more general templates. */
20484 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
20485 {
20486 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
20487 (See cp-tree.h for details.) */
20488 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
20489 break;
20490
20491 if (CLASS_TYPE_P (TREE_TYPE (decl))
20492 && !TYPE_DECL_ALIAS_P (TYPE_NAME (TREE_TYPE (decl)))
20493 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
20494 break;
20495
20496 /* Stop if we run into an explicitly specialized class template. */
20497 if (!DECL_NAMESPACE_SCOPE_P (decl)
20498 && DECL_CONTEXT (decl)
20499 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
20500 break;
20501
20502 decl = DECL_TI_TEMPLATE (decl);
20503 }
20504
20505 return decl;
20506 }
20507
20508 /* Return the most specialized of the template partial specializations
20509 which can produce TARGET, a specialization of some class or variable
20510 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
20511 a TEMPLATE_DECL node corresponding to the partial specialization, while
20512 the TREE_PURPOSE is the set of template arguments that must be
20513 substituted into the template pattern in order to generate TARGET.
20514
20515 If the choice of partial specialization is ambiguous, a diagnostic
20516 is issued, and the error_mark_node is returned. If there are no
20517 partial specializations matching TARGET, then NULL_TREE is
20518 returned, indicating that the primary template should be used. */
20519
20520 static tree
20521 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
20522 {
20523 tree list = NULL_TREE;
20524 tree t;
20525 tree champ;
20526 int fate;
20527 bool ambiguous_p;
20528 tree outer_args = NULL_TREE;
20529 tree tmpl, args;
20530
20531 if (TYPE_P (target))
20532 {
20533 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
20534 tmpl = TI_TEMPLATE (tinfo);
20535 args = TI_ARGS (tinfo);
20536 }
20537 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
20538 {
20539 tmpl = TREE_OPERAND (target, 0);
20540 args = TREE_OPERAND (target, 1);
20541 }
20542 else if (VAR_P (target))
20543 {
20544 tree tinfo = DECL_TEMPLATE_INFO (target);
20545 tmpl = TI_TEMPLATE (tinfo);
20546 args = TI_ARGS (tinfo);
20547 }
20548 else
20549 gcc_unreachable ();
20550
20551 tree main_tmpl = most_general_template (tmpl);
20552
20553 /* For determining which partial specialization to use, only the
20554 innermost args are interesting. */
20555 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20556 {
20557 outer_args = strip_innermost_template_args (args, 1);
20558 args = INNERMOST_TEMPLATE_ARGS (args);
20559 }
20560
20561 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
20562 {
20563 tree partial_spec_args;
20564 tree spec_args;
20565 tree spec_tmpl = TREE_VALUE (t);
20566
20567 partial_spec_args = TREE_PURPOSE (t);
20568
20569 ++processing_template_decl;
20570
20571 if (outer_args)
20572 {
20573 /* Discard the outer levels of args, and then substitute in the
20574 template args from the enclosing class. */
20575 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
20576 partial_spec_args = tsubst_template_args
20577 (partial_spec_args, outer_args, tf_none, NULL_TREE);
20578
20579 /* And the same for the partial specialization TEMPLATE_DECL. */
20580 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
20581 }
20582
20583 partial_spec_args =
20584 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20585 partial_spec_args,
20586 tmpl, tf_none,
20587 /*require_all_args=*/true,
20588 /*use_default_args=*/true);
20589
20590 --processing_template_decl;
20591
20592 if (partial_spec_args == error_mark_node)
20593 return error_mark_node;
20594 if (spec_tmpl == error_mark_node)
20595 return error_mark_node;
20596
20597 tree parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
20598 spec_args = get_partial_spec_bindings (tmpl, parms,
20599 partial_spec_args,
20600 args);
20601 if (spec_args)
20602 {
20603 if (outer_args)
20604 spec_args = add_to_template_args (outer_args, spec_args);
20605
20606 /* Keep the candidate only if the constraints are satisfied,
20607 or if we're not compiling with concepts. */
20608 if (!flag_concepts
20609 || constraints_satisfied_p (spec_tmpl, spec_args))
20610 {
20611 list = tree_cons (spec_args, TREE_VALUE (t), list);
20612 TREE_TYPE (list) = TREE_TYPE (t);
20613 }
20614 }
20615 }
20616
20617 if (! list)
20618 return NULL_TREE;
20619
20620 ambiguous_p = false;
20621 t = list;
20622 champ = t;
20623 t = TREE_CHAIN (t);
20624 for (; t; t = TREE_CHAIN (t))
20625 {
20626 fate = more_specialized_partial_spec (tmpl, champ, t);
20627 if (fate == 1)
20628 ;
20629 else
20630 {
20631 if (fate == 0)
20632 {
20633 t = TREE_CHAIN (t);
20634 if (! t)
20635 {
20636 ambiguous_p = true;
20637 break;
20638 }
20639 }
20640 champ = t;
20641 }
20642 }
20643
20644 if (!ambiguous_p)
20645 for (t = list; t && t != champ; t = TREE_CHAIN (t))
20646 {
20647 fate = more_specialized_partial_spec (tmpl, champ, t);
20648 if (fate != 1)
20649 {
20650 ambiguous_p = true;
20651 break;
20652 }
20653 }
20654
20655 if (ambiguous_p)
20656 {
20657 const char *str;
20658 char *spaces = NULL;
20659 if (!(complain & tf_error))
20660 return error_mark_node;
20661 if (TYPE_P (target))
20662 error ("ambiguous template instantiation for %q#T", target);
20663 else
20664 error ("ambiguous template instantiation for %q#D", target);
20665 str = ngettext ("candidate is:", "candidates are:", list_length (list));
20666 for (t = list; t; t = TREE_CHAIN (t))
20667 {
20668 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
20669 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
20670 "%s %#S", spaces ? spaces : str, subst);
20671 spaces = spaces ? spaces : get_spaces (str);
20672 }
20673 free (spaces);
20674 return error_mark_node;
20675 }
20676
20677 return champ;
20678 }
20679
20680 /* Explicitly instantiate DECL. */
20681
20682 void
20683 do_decl_instantiation (tree decl, tree storage)
20684 {
20685 tree result = NULL_TREE;
20686 int extern_p = 0;
20687
20688 if (!decl || decl == error_mark_node)
20689 /* An error occurred, for which grokdeclarator has already issued
20690 an appropriate message. */
20691 return;
20692 else if (! DECL_LANG_SPECIFIC (decl))
20693 {
20694 error ("explicit instantiation of non-template %q#D", decl);
20695 return;
20696 }
20697
20698 bool var_templ = (DECL_TEMPLATE_INFO (decl)
20699 && variable_template_p (DECL_TI_TEMPLATE (decl)));
20700
20701 if (VAR_P (decl) && !var_templ)
20702 {
20703 /* There is an asymmetry here in the way VAR_DECLs and
20704 FUNCTION_DECLs are handled by grokdeclarator. In the case of
20705 the latter, the DECL we get back will be marked as a
20706 template instantiation, and the appropriate
20707 DECL_TEMPLATE_INFO will be set up. This does not happen for
20708 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
20709 should handle VAR_DECLs as it currently handles
20710 FUNCTION_DECLs. */
20711 if (!DECL_CLASS_SCOPE_P (decl))
20712 {
20713 error ("%qD is not a static data member of a class template", decl);
20714 return;
20715 }
20716 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
20717 if (!result || !VAR_P (result))
20718 {
20719 error ("no matching template for %qD found", decl);
20720 return;
20721 }
20722 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
20723 {
20724 error ("type %qT for explicit instantiation %qD does not match "
20725 "declared type %qT", TREE_TYPE (result), decl,
20726 TREE_TYPE (decl));
20727 return;
20728 }
20729 }
20730 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
20731 {
20732 error ("explicit instantiation of %q#D", decl);
20733 return;
20734 }
20735 else
20736 result = decl;
20737
20738 /* Check for various error cases. Note that if the explicit
20739 instantiation is valid the RESULT will currently be marked as an
20740 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
20741 until we get here. */
20742
20743 if (DECL_TEMPLATE_SPECIALIZATION (result))
20744 {
20745 /* DR 259 [temp.spec].
20746
20747 Both an explicit instantiation and a declaration of an explicit
20748 specialization shall not appear in a program unless the explicit
20749 instantiation follows a declaration of the explicit specialization.
20750
20751 For a given set of template parameters, if an explicit
20752 instantiation of a template appears after a declaration of an
20753 explicit specialization for that template, the explicit
20754 instantiation has no effect. */
20755 return;
20756 }
20757 else if (DECL_EXPLICIT_INSTANTIATION (result))
20758 {
20759 /* [temp.spec]
20760
20761 No program shall explicitly instantiate any template more
20762 than once.
20763
20764 We check DECL_NOT_REALLY_EXTERN so as not to complain when
20765 the first instantiation was `extern' and the second is not,
20766 and EXTERN_P for the opposite case. */
20767 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
20768 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
20769 /* If an "extern" explicit instantiation follows an ordinary
20770 explicit instantiation, the template is instantiated. */
20771 if (extern_p)
20772 return;
20773 }
20774 else if (!DECL_IMPLICIT_INSTANTIATION (result))
20775 {
20776 error ("no matching template for %qD found", result);
20777 return;
20778 }
20779 else if (!DECL_TEMPLATE_INFO (result))
20780 {
20781 permerror (input_location, "explicit instantiation of non-template %q#D", result);
20782 return;
20783 }
20784
20785 if (storage == NULL_TREE)
20786 ;
20787 else if (storage == ridpointers[(int) RID_EXTERN])
20788 {
20789 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
20790 pedwarn (input_location, OPT_Wpedantic,
20791 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
20792 "instantiations");
20793 extern_p = 1;
20794 }
20795 else
20796 error ("storage class %qD applied to template instantiation", storage);
20797
20798 check_explicit_instantiation_namespace (result);
20799 mark_decl_instantiated (result, extern_p);
20800 if (! extern_p)
20801 instantiate_decl (result, /*defer_ok=*/1,
20802 /*expl_inst_class_mem_p=*/false);
20803 }
20804
20805 static void
20806 mark_class_instantiated (tree t, int extern_p)
20807 {
20808 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
20809 SET_CLASSTYPE_INTERFACE_KNOWN (t);
20810 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
20811 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
20812 if (! extern_p)
20813 {
20814 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
20815 rest_of_type_compilation (t, 1);
20816 }
20817 }
20818
20819 /* Called from do_type_instantiation through binding_table_foreach to
20820 do recursive instantiation for the type bound in ENTRY. */
20821 static void
20822 bt_instantiate_type_proc (binding_entry entry, void *data)
20823 {
20824 tree storage = *(tree *) data;
20825
20826 if (MAYBE_CLASS_TYPE_P (entry->type)
20827 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
20828 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
20829 }
20830
20831 /* Called from do_type_instantiation to instantiate a member
20832 (a member function or a static member variable) of an
20833 explicitly instantiated class template. */
20834 static void
20835 instantiate_class_member (tree decl, int extern_p)
20836 {
20837 mark_decl_instantiated (decl, extern_p);
20838 if (! extern_p)
20839 instantiate_decl (decl, /*defer_ok=*/1,
20840 /*expl_inst_class_mem_p=*/true);
20841 }
20842
20843 /* Perform an explicit instantiation of template class T. STORAGE, if
20844 non-null, is the RID for extern, inline or static. COMPLAIN is
20845 nonzero if this is called from the parser, zero if called recursively,
20846 since the standard is unclear (as detailed below). */
20847
20848 void
20849 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
20850 {
20851 int extern_p = 0;
20852 int nomem_p = 0;
20853 int static_p = 0;
20854 int previous_instantiation_extern_p = 0;
20855
20856 if (TREE_CODE (t) == TYPE_DECL)
20857 t = TREE_TYPE (t);
20858
20859 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
20860 {
20861 tree tmpl =
20862 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
20863 if (tmpl)
20864 error ("explicit instantiation of non-class template %qD", tmpl);
20865 else
20866 error ("explicit instantiation of non-template type %qT", t);
20867 return;
20868 }
20869
20870 complete_type (t);
20871
20872 if (!COMPLETE_TYPE_P (t))
20873 {
20874 if (complain & tf_error)
20875 error ("explicit instantiation of %q#T before definition of template",
20876 t);
20877 return;
20878 }
20879
20880 if (storage != NULL_TREE)
20881 {
20882 if (!in_system_header_at (input_location))
20883 {
20884 if (storage == ridpointers[(int) RID_EXTERN])
20885 {
20886 if (cxx_dialect == cxx98)
20887 pedwarn (input_location, OPT_Wpedantic,
20888 "ISO C++ 1998 forbids the use of %<extern%> on "
20889 "explicit instantiations");
20890 }
20891 else
20892 pedwarn (input_location, OPT_Wpedantic,
20893 "ISO C++ forbids the use of %qE"
20894 " on explicit instantiations", storage);
20895 }
20896
20897 if (storage == ridpointers[(int) RID_INLINE])
20898 nomem_p = 1;
20899 else if (storage == ridpointers[(int) RID_EXTERN])
20900 extern_p = 1;
20901 else if (storage == ridpointers[(int) RID_STATIC])
20902 static_p = 1;
20903 else
20904 {
20905 error ("storage class %qD applied to template instantiation",
20906 storage);
20907 extern_p = 0;
20908 }
20909 }
20910
20911 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
20912 {
20913 /* DR 259 [temp.spec].
20914
20915 Both an explicit instantiation and a declaration of an explicit
20916 specialization shall not appear in a program unless the explicit
20917 instantiation follows a declaration of the explicit specialization.
20918
20919 For a given set of template parameters, if an explicit
20920 instantiation of a template appears after a declaration of an
20921 explicit specialization for that template, the explicit
20922 instantiation has no effect. */
20923 return;
20924 }
20925 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
20926 {
20927 /* [temp.spec]
20928
20929 No program shall explicitly instantiate any template more
20930 than once.
20931
20932 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
20933 instantiation was `extern'. If EXTERN_P then the second is.
20934 These cases are OK. */
20935 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
20936
20937 if (!previous_instantiation_extern_p && !extern_p
20938 && (complain & tf_error))
20939 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
20940
20941 /* If we've already instantiated the template, just return now. */
20942 if (!CLASSTYPE_INTERFACE_ONLY (t))
20943 return;
20944 }
20945
20946 check_explicit_instantiation_namespace (TYPE_NAME (t));
20947 mark_class_instantiated (t, extern_p);
20948
20949 if (nomem_p)
20950 return;
20951
20952 {
20953 tree tmp;
20954
20955 /* In contrast to implicit instantiation, where only the
20956 declarations, and not the definitions, of members are
20957 instantiated, we have here:
20958
20959 [temp.explicit]
20960
20961 The explicit instantiation of a class template specialization
20962 implies the instantiation of all of its members not
20963 previously explicitly specialized in the translation unit
20964 containing the explicit instantiation.
20965
20966 Of course, we can't instantiate member template classes, since
20967 we don't have any arguments for them. Note that the standard
20968 is unclear on whether the instantiation of the members are
20969 *explicit* instantiations or not. However, the most natural
20970 interpretation is that it should be an explicit instantiation. */
20971
20972 if (! static_p)
20973 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
20974 if (TREE_CODE (tmp) == FUNCTION_DECL
20975 && DECL_TEMPLATE_INSTANTIATION (tmp))
20976 instantiate_class_member (tmp, extern_p);
20977
20978 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
20979 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
20980 instantiate_class_member (tmp, extern_p);
20981
20982 if (CLASSTYPE_NESTED_UTDS (t))
20983 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
20984 bt_instantiate_type_proc, &storage);
20985 }
20986 }
20987
20988 /* Given a function DECL, which is a specialization of TMPL, modify
20989 DECL to be a re-instantiation of TMPL with the same template
20990 arguments. TMPL should be the template into which tsubst'ing
20991 should occur for DECL, not the most general template.
20992
20993 One reason for doing this is a scenario like this:
20994
20995 template <class T>
20996 void f(const T&, int i);
20997
20998 void g() { f(3, 7); }
20999
21000 template <class T>
21001 void f(const T& t, const int i) { }
21002
21003 Note that when the template is first instantiated, with
21004 instantiate_template, the resulting DECL will have no name for the
21005 first parameter, and the wrong type for the second. So, when we go
21006 to instantiate the DECL, we regenerate it. */
21007
21008 static void
21009 regenerate_decl_from_template (tree decl, tree tmpl)
21010 {
21011 /* The arguments used to instantiate DECL, from the most general
21012 template. */
21013 tree args;
21014 tree code_pattern;
21015
21016 args = DECL_TI_ARGS (decl);
21017 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
21018
21019 /* Make sure that we can see identifiers, and compute access
21020 correctly. */
21021 push_access_scope (decl);
21022
21023 if (TREE_CODE (decl) == FUNCTION_DECL)
21024 {
21025 tree decl_parm;
21026 tree pattern_parm;
21027 tree specs;
21028 int args_depth;
21029 int parms_depth;
21030
21031 args_depth = TMPL_ARGS_DEPTH (args);
21032 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
21033 if (args_depth > parms_depth)
21034 args = get_innermost_template_args (args, parms_depth);
21035
21036 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
21037 args, tf_error, NULL_TREE,
21038 /*defer_ok*/false);
21039 if (specs && specs != error_mark_node)
21040 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
21041 specs);
21042
21043 /* Merge parameter declarations. */
21044 decl_parm = skip_artificial_parms_for (decl,
21045 DECL_ARGUMENTS (decl));
21046 pattern_parm
21047 = skip_artificial_parms_for (code_pattern,
21048 DECL_ARGUMENTS (code_pattern));
21049 while (decl_parm && !DECL_PACK_P (pattern_parm))
21050 {
21051 tree parm_type;
21052 tree attributes;
21053
21054 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
21055 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
21056 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
21057 NULL_TREE);
21058 parm_type = type_decays_to (parm_type);
21059 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
21060 TREE_TYPE (decl_parm) = parm_type;
21061 attributes = DECL_ATTRIBUTES (pattern_parm);
21062 if (DECL_ATTRIBUTES (decl_parm) != attributes)
21063 {
21064 DECL_ATTRIBUTES (decl_parm) = attributes;
21065 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
21066 }
21067 decl_parm = DECL_CHAIN (decl_parm);
21068 pattern_parm = DECL_CHAIN (pattern_parm);
21069 }
21070 /* Merge any parameters that match with the function parameter
21071 pack. */
21072 if (pattern_parm && DECL_PACK_P (pattern_parm))
21073 {
21074 int i, len;
21075 tree expanded_types;
21076 /* Expand the TYPE_PACK_EXPANSION that provides the types for
21077 the parameters in this function parameter pack. */
21078 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
21079 args, tf_error, NULL_TREE);
21080 len = TREE_VEC_LENGTH (expanded_types);
21081 for (i = 0; i < len; i++)
21082 {
21083 tree parm_type;
21084 tree attributes;
21085
21086 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
21087 /* Rename the parameter to include the index. */
21088 DECL_NAME (decl_parm) =
21089 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
21090 parm_type = TREE_VEC_ELT (expanded_types, i);
21091 parm_type = type_decays_to (parm_type);
21092 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
21093 TREE_TYPE (decl_parm) = parm_type;
21094 attributes = DECL_ATTRIBUTES (pattern_parm);
21095 if (DECL_ATTRIBUTES (decl_parm) != attributes)
21096 {
21097 DECL_ATTRIBUTES (decl_parm) = attributes;
21098 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
21099 }
21100 decl_parm = DECL_CHAIN (decl_parm);
21101 }
21102 }
21103 /* Merge additional specifiers from the CODE_PATTERN. */
21104 if (DECL_DECLARED_INLINE_P (code_pattern)
21105 && !DECL_DECLARED_INLINE_P (decl))
21106 DECL_DECLARED_INLINE_P (decl) = 1;
21107 }
21108 else if (VAR_P (decl))
21109 {
21110 DECL_INITIAL (decl) =
21111 tsubst_expr (DECL_INITIAL (code_pattern), args,
21112 tf_error, DECL_TI_TEMPLATE (decl),
21113 /*integral_constant_expression_p=*/false);
21114 if (VAR_HAD_UNKNOWN_BOUND (decl))
21115 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
21116 tf_error, DECL_TI_TEMPLATE (decl));
21117 }
21118 else
21119 gcc_unreachable ();
21120
21121 pop_access_scope (decl);
21122 }
21123
21124 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
21125 substituted to get DECL. */
21126
21127 tree
21128 template_for_substitution (tree decl)
21129 {
21130 tree tmpl = DECL_TI_TEMPLATE (decl);
21131
21132 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
21133 for the instantiation. This is not always the most general
21134 template. Consider, for example:
21135
21136 template <class T>
21137 struct S { template <class U> void f();
21138 template <> void f<int>(); };
21139
21140 and an instantiation of S<double>::f<int>. We want TD to be the
21141 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
21142 while (/* An instantiation cannot have a definition, so we need a
21143 more general template. */
21144 DECL_TEMPLATE_INSTANTIATION (tmpl)
21145 /* We must also deal with friend templates. Given:
21146
21147 template <class T> struct S {
21148 template <class U> friend void f() {};
21149 };
21150
21151 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
21152 so far as the language is concerned, but that's still
21153 where we get the pattern for the instantiation from. On
21154 other hand, if the definition comes outside the class, say:
21155
21156 template <class T> struct S {
21157 template <class U> friend void f();
21158 };
21159 template <class U> friend void f() {}
21160
21161 we don't need to look any further. That's what the check for
21162 DECL_INITIAL is for. */
21163 || (TREE_CODE (decl) == FUNCTION_DECL
21164 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
21165 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
21166 {
21167 /* The present template, TD, should not be a definition. If it
21168 were a definition, we should be using it! Note that we
21169 cannot restructure the loop to just keep going until we find
21170 a template with a definition, since that might go too far if
21171 a specialization was declared, but not defined. */
21172
21173 /* Fetch the more general template. */
21174 tmpl = DECL_TI_TEMPLATE (tmpl);
21175 }
21176
21177 return tmpl;
21178 }
21179
21180 /* Returns true if we need to instantiate this template instance even if we
21181 know we aren't going to emit it. */
21182
21183 bool
21184 always_instantiate_p (tree decl)
21185 {
21186 /* We always instantiate inline functions so that we can inline them. An
21187 explicit instantiation declaration prohibits implicit instantiation of
21188 non-inline functions. With high levels of optimization, we would
21189 normally inline non-inline functions -- but we're not allowed to do
21190 that for "extern template" functions. Therefore, we check
21191 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
21192 return ((TREE_CODE (decl) == FUNCTION_DECL
21193 && (DECL_DECLARED_INLINE_P (decl)
21194 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
21195 /* And we need to instantiate static data members so that
21196 their initializers are available in integral constant
21197 expressions. */
21198 || (VAR_P (decl)
21199 && decl_maybe_constant_var_p (decl)));
21200 }
21201
21202 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
21203 instantiate it now, modifying TREE_TYPE (fn). */
21204
21205 void
21206 maybe_instantiate_noexcept (tree fn)
21207 {
21208 tree fntype, spec, noex, clone;
21209
21210 /* Don't instantiate a noexcept-specification from template context. */
21211 if (processing_template_decl)
21212 return;
21213
21214 if (DECL_CLONED_FUNCTION_P (fn))
21215 fn = DECL_CLONED_FUNCTION (fn);
21216 fntype = TREE_TYPE (fn);
21217 spec = TYPE_RAISES_EXCEPTIONS (fntype);
21218
21219 if (!spec || !TREE_PURPOSE (spec))
21220 return;
21221
21222 noex = TREE_PURPOSE (spec);
21223
21224 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
21225 {
21226 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
21227 spec = get_defaulted_eh_spec (fn);
21228 else if (push_tinst_level (fn))
21229 {
21230 push_access_scope (fn);
21231 push_deferring_access_checks (dk_no_deferred);
21232 input_location = DECL_SOURCE_LOCATION (fn);
21233 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
21234 DEFERRED_NOEXCEPT_ARGS (noex),
21235 tf_warning_or_error, fn,
21236 /*function_p=*/false,
21237 /*integral_constant_expression_p=*/true);
21238 pop_deferring_access_checks ();
21239 pop_access_scope (fn);
21240 pop_tinst_level ();
21241 spec = build_noexcept_spec (noex, tf_warning_or_error);
21242 if (spec == error_mark_node)
21243 spec = noexcept_false_spec;
21244 }
21245 else
21246 spec = noexcept_false_spec;
21247
21248 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
21249 }
21250
21251 FOR_EACH_CLONE (clone, fn)
21252 {
21253 if (TREE_TYPE (clone) == fntype)
21254 TREE_TYPE (clone) = TREE_TYPE (fn);
21255 else
21256 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
21257 }
21258 }
21259
21260 /* Produce the definition of D, a _DECL generated from a template. If
21261 DEFER_OK is nonzero, then we don't have to actually do the
21262 instantiation now; we just have to do it sometime. Normally it is
21263 an error if this is an explicit instantiation but D is undefined.
21264 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
21265 explicitly instantiated class template. */
21266
21267 tree
21268 instantiate_decl (tree d, int defer_ok,
21269 bool expl_inst_class_mem_p)
21270 {
21271 tree tmpl = DECL_TI_TEMPLATE (d);
21272 tree gen_args;
21273 tree args;
21274 tree td;
21275 tree code_pattern;
21276 tree spec;
21277 tree gen_tmpl;
21278 bool pattern_defined;
21279 location_t saved_loc = input_location;
21280 int saved_unevaluated_operand = cp_unevaluated_operand;
21281 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
21282 bool external_p;
21283 bool deleted_p;
21284 tree fn_context;
21285 bool nested = false;
21286
21287 /* This function should only be used to instantiate templates for
21288 functions and static member variables. */
21289 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
21290
21291 /* A concept is never instantiated. */
21292 gcc_assert (!DECL_DECLARED_CONCEPT_P (d));
21293
21294 /* Variables are never deferred; if instantiation is required, they
21295 are instantiated right away. That allows for better code in the
21296 case that an expression refers to the value of the variable --
21297 if the variable has a constant value the referring expression can
21298 take advantage of that fact. */
21299 if (VAR_P (d)
21300 || DECL_DECLARED_CONSTEXPR_P (d))
21301 defer_ok = 0;
21302
21303 /* Don't instantiate cloned functions. Instead, instantiate the
21304 functions they cloned. */
21305 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
21306 d = DECL_CLONED_FUNCTION (d);
21307
21308 if (DECL_TEMPLATE_INSTANTIATED (d)
21309 || (TREE_CODE (d) == FUNCTION_DECL
21310 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
21311 || DECL_TEMPLATE_SPECIALIZATION (d))
21312 /* D has already been instantiated or explicitly specialized, so
21313 there's nothing for us to do here.
21314
21315 It might seem reasonable to check whether or not D is an explicit
21316 instantiation, and, if so, stop here. But when an explicit
21317 instantiation is deferred until the end of the compilation,
21318 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
21319 the instantiation. */
21320 return d;
21321
21322 /* Check to see whether we know that this template will be
21323 instantiated in some other file, as with "extern template"
21324 extension. */
21325 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
21326
21327 /* In general, we do not instantiate such templates. */
21328 if (external_p && !always_instantiate_p (d))
21329 return d;
21330
21331 gen_tmpl = most_general_template (tmpl);
21332 gen_args = DECL_TI_ARGS (d);
21333
21334 if (tmpl != gen_tmpl)
21335 /* We should already have the extra args. */
21336 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
21337 == TMPL_ARGS_DEPTH (gen_args));
21338 /* And what's in the hash table should match D. */
21339 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
21340 || spec == NULL_TREE);
21341
21342 /* This needs to happen before any tsubsting. */
21343 if (! push_tinst_level (d))
21344 return d;
21345
21346 timevar_push (TV_TEMPLATE_INST);
21347
21348 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
21349 for the instantiation. */
21350 td = template_for_substitution (d);
21351 code_pattern = DECL_TEMPLATE_RESULT (td);
21352
21353 /* We should never be trying to instantiate a member of a class
21354 template or partial specialization. */
21355 gcc_assert (d != code_pattern);
21356
21357 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
21358 || DECL_TEMPLATE_SPECIALIZATION (td))
21359 /* In the case of a friend template whose definition is provided
21360 outside the class, we may have too many arguments. Drop the
21361 ones we don't need. The same is true for specializations. */
21362 args = get_innermost_template_args
21363 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
21364 else
21365 args = gen_args;
21366
21367 if (TREE_CODE (d) == FUNCTION_DECL)
21368 {
21369 deleted_p = DECL_DELETED_FN (code_pattern);
21370 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
21371 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
21372 || deleted_p);
21373 }
21374 else
21375 {
21376 deleted_p = false;
21377 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
21378 }
21379
21380 /* We may be in the middle of deferred access check. Disable it now. */
21381 push_deferring_access_checks (dk_no_deferred);
21382
21383 /* Unless an explicit instantiation directive has already determined
21384 the linkage of D, remember that a definition is available for
21385 this entity. */
21386 if (pattern_defined
21387 && !DECL_INTERFACE_KNOWN (d)
21388 && !DECL_NOT_REALLY_EXTERN (d))
21389 mark_definable (d);
21390
21391 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
21392 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
21393 input_location = DECL_SOURCE_LOCATION (d);
21394
21395 /* If D is a member of an explicitly instantiated class template,
21396 and no definition is available, treat it like an implicit
21397 instantiation. */
21398 if (!pattern_defined && expl_inst_class_mem_p
21399 && DECL_EXPLICIT_INSTANTIATION (d))
21400 {
21401 /* Leave linkage flags alone on instantiations with anonymous
21402 visibility. */
21403 if (TREE_PUBLIC (d))
21404 {
21405 DECL_NOT_REALLY_EXTERN (d) = 0;
21406 DECL_INTERFACE_KNOWN (d) = 0;
21407 }
21408 SET_DECL_IMPLICIT_INSTANTIATION (d);
21409 }
21410
21411 /* Defer all other templates, unless we have been explicitly
21412 forbidden from doing so. */
21413 if (/* If there is no definition, we cannot instantiate the
21414 template. */
21415 ! pattern_defined
21416 /* If it's OK to postpone instantiation, do so. */
21417 || defer_ok
21418 /* If this is a static data member that will be defined
21419 elsewhere, we don't want to instantiate the entire data
21420 member, but we do want to instantiate the initializer so that
21421 we can substitute that elsewhere. */
21422 || (external_p && VAR_P (d))
21423 /* Handle here a deleted function too, avoid generating
21424 its body (c++/61080). */
21425 || deleted_p)
21426 {
21427 /* The definition of the static data member is now required so
21428 we must substitute the initializer. */
21429 if (VAR_P (d)
21430 && !DECL_INITIAL (d)
21431 && DECL_INITIAL (code_pattern))
21432 {
21433 tree ns;
21434 tree init;
21435 bool const_init = false;
21436 bool enter_context = DECL_CLASS_SCOPE_P (d);
21437
21438 ns = decl_namespace_context (d);
21439 push_nested_namespace (ns);
21440 if (enter_context)
21441 push_nested_class (DECL_CONTEXT (d));
21442 init = tsubst_expr (DECL_INITIAL (code_pattern),
21443 args,
21444 tf_warning_or_error, NULL_TREE,
21445 /*integral_constant_expression_p=*/false);
21446 /* If instantiating the initializer involved instantiating this
21447 again, don't call cp_finish_decl twice. */
21448 if (!DECL_INITIAL (d))
21449 {
21450 /* Make sure the initializer is still constant, in case of
21451 circular dependency (template/instantiate6.C). */
21452 const_init
21453 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21454 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
21455 /*asmspec_tree=*/NULL_TREE,
21456 LOOKUP_ONLYCONVERTING);
21457 }
21458 if (enter_context)
21459 pop_nested_class ();
21460 pop_nested_namespace (ns);
21461 }
21462
21463 /* We restore the source position here because it's used by
21464 add_pending_template. */
21465 input_location = saved_loc;
21466
21467 if (at_eof && !pattern_defined
21468 && DECL_EXPLICIT_INSTANTIATION (d)
21469 && DECL_NOT_REALLY_EXTERN (d))
21470 /* [temp.explicit]
21471
21472 The definition of a non-exported function template, a
21473 non-exported member function template, or a non-exported
21474 member function or static data member of a class template
21475 shall be present in every translation unit in which it is
21476 explicitly instantiated. */
21477 permerror (input_location, "explicit instantiation of %qD "
21478 "but no definition available", d);
21479
21480 /* If we're in unevaluated context, we just wanted to get the
21481 constant value; this isn't an odr use, so don't queue
21482 a full instantiation. */
21483 if (cp_unevaluated_operand != 0)
21484 goto out;
21485 /* ??? Historically, we have instantiated inline functions, even
21486 when marked as "extern template". */
21487 if (!(external_p && VAR_P (d)))
21488 add_pending_template (d);
21489 goto out;
21490 }
21491 /* Tell the repository that D is available in this translation unit
21492 -- and see if it is supposed to be instantiated here. */
21493 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
21494 {
21495 /* In a PCH file, despite the fact that the repository hasn't
21496 requested instantiation in the PCH it is still possible that
21497 an instantiation will be required in a file that includes the
21498 PCH. */
21499 if (pch_file)
21500 add_pending_template (d);
21501 /* Instantiate inline functions so that the inliner can do its
21502 job, even though we'll not be emitting a copy of this
21503 function. */
21504 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
21505 goto out;
21506 }
21507
21508 fn_context = decl_function_context (d);
21509 nested = (current_function_decl != NULL_TREE);
21510 vec<tree> omp_privatization_save;
21511 if (nested)
21512 save_omp_privatization_clauses (omp_privatization_save);
21513
21514 if (!fn_context)
21515 push_to_top_level ();
21516 else
21517 {
21518 if (nested)
21519 push_function_context ();
21520 cp_unevaluated_operand = 0;
21521 c_inhibit_evaluation_warnings = 0;
21522 }
21523
21524 /* Mark D as instantiated so that recursive calls to
21525 instantiate_decl do not try to instantiate it again. */
21526 DECL_TEMPLATE_INSTANTIATED (d) = 1;
21527
21528 /* Regenerate the declaration in case the template has been modified
21529 by a subsequent redeclaration. */
21530 regenerate_decl_from_template (d, td);
21531
21532 /* We already set the file and line above. Reset them now in case
21533 they changed as a result of calling regenerate_decl_from_template. */
21534 input_location = DECL_SOURCE_LOCATION (d);
21535
21536 if (VAR_P (d))
21537 {
21538 tree init;
21539 bool const_init = false;
21540
21541 /* Clear out DECL_RTL; whatever was there before may not be right
21542 since we've reset the type of the declaration. */
21543 SET_DECL_RTL (d, NULL);
21544 DECL_IN_AGGR_P (d) = 0;
21545
21546 /* The initializer is placed in DECL_INITIAL by
21547 regenerate_decl_from_template so we don't need to
21548 push/pop_access_scope again here. Pull it out so that
21549 cp_finish_decl can process it. */
21550 init = DECL_INITIAL (d);
21551 DECL_INITIAL (d) = NULL_TREE;
21552 DECL_INITIALIZED_P (d) = 0;
21553
21554 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
21555 initializer. That function will defer actual emission until
21556 we have a chance to determine linkage. */
21557 DECL_EXTERNAL (d) = 0;
21558
21559 /* Enter the scope of D so that access-checking works correctly. */
21560 bool enter_context = DECL_CLASS_SCOPE_P (d);
21561 if (enter_context)
21562 push_nested_class (DECL_CONTEXT (d));
21563
21564 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21565 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
21566
21567 if (enter_context)
21568 pop_nested_class ();
21569
21570 if (variable_template_p (td))
21571 note_variable_template_instantiation (d);
21572 }
21573 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
21574 synthesize_method (d);
21575 else if (TREE_CODE (d) == FUNCTION_DECL)
21576 {
21577 hash_map<tree, tree> *saved_local_specializations;
21578 tree subst_decl;
21579 tree tmpl_parm;
21580 tree spec_parm;
21581 tree block = NULL_TREE;
21582
21583 /* Save away the current list, in case we are instantiating one
21584 template from within the body of another. */
21585 saved_local_specializations = local_specializations;
21586
21587 /* Set up the list of local specializations. */
21588 local_specializations = new hash_map<tree, tree>;
21589
21590 /* Set up context. */
21591 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
21592 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
21593 block = push_stmt_list ();
21594 else
21595 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
21596
21597 /* Some typedefs referenced from within the template code need to be
21598 access checked at template instantiation time, i.e now. These
21599 types were added to the template at parsing time. Let's get those
21600 and perform the access checks then. */
21601 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
21602 gen_args);
21603
21604 /* Create substitution entries for the parameters. */
21605 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
21606 tmpl_parm = DECL_ARGUMENTS (subst_decl);
21607 spec_parm = DECL_ARGUMENTS (d);
21608 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
21609 {
21610 register_local_specialization (spec_parm, tmpl_parm);
21611 spec_parm = skip_artificial_parms_for (d, spec_parm);
21612 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
21613 }
21614 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
21615 {
21616 if (!DECL_PACK_P (tmpl_parm))
21617 {
21618 register_local_specialization (spec_parm, tmpl_parm);
21619 spec_parm = DECL_CHAIN (spec_parm);
21620 }
21621 else
21622 {
21623 /* Register the (value) argument pack as a specialization of
21624 TMPL_PARM, then move on. */
21625 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
21626 register_local_specialization (argpack, tmpl_parm);
21627 }
21628 }
21629 gcc_assert (!spec_parm);
21630
21631 /* Substitute into the body of the function. */
21632 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
21633 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
21634 tf_warning_or_error, tmpl);
21635 else
21636 {
21637 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
21638 tf_warning_or_error, tmpl,
21639 /*integral_constant_expression_p=*/false);
21640
21641 /* Set the current input_location to the end of the function
21642 so that finish_function knows where we are. */
21643 input_location
21644 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
21645
21646 /* Remember if we saw an infinite loop in the template. */
21647 current_function_infinite_loop
21648 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
21649 }
21650
21651 /* We don't need the local specializations any more. */
21652 delete local_specializations;
21653 local_specializations = saved_local_specializations;
21654
21655 /* Finish the function. */
21656 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
21657 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
21658 DECL_SAVED_TREE (d) = pop_stmt_list (block);
21659 else
21660 {
21661 d = finish_function (0);
21662 expand_or_defer_fn (d);
21663 }
21664
21665 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
21666 cp_check_omp_declare_reduction (d);
21667 }
21668
21669 /* We're not deferring instantiation any more. */
21670 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
21671
21672 if (!fn_context)
21673 pop_from_top_level ();
21674 else if (nested)
21675 pop_function_context ();
21676
21677 out:
21678 input_location = saved_loc;
21679 cp_unevaluated_operand = saved_unevaluated_operand;
21680 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
21681 pop_deferring_access_checks ();
21682 pop_tinst_level ();
21683 if (nested)
21684 restore_omp_privatization_clauses (omp_privatization_save);
21685
21686 timevar_pop (TV_TEMPLATE_INST);
21687
21688 return d;
21689 }
21690
21691 /* Run through the list of templates that we wish we could
21692 instantiate, and instantiate any we can. RETRIES is the
21693 number of times we retry pending template instantiation. */
21694
21695 void
21696 instantiate_pending_templates (int retries)
21697 {
21698 int reconsider;
21699 location_t saved_loc = input_location;
21700
21701 /* Instantiating templates may trigger vtable generation. This in turn
21702 may require further template instantiations. We place a limit here
21703 to avoid infinite loop. */
21704 if (pending_templates && retries >= max_tinst_depth)
21705 {
21706 tree decl = pending_templates->tinst->decl;
21707
21708 fatal_error (input_location,
21709 "template instantiation depth exceeds maximum of %d"
21710 " instantiating %q+D, possibly from virtual table generation"
21711 " (use -ftemplate-depth= to increase the maximum)",
21712 max_tinst_depth, decl);
21713 if (TREE_CODE (decl) == FUNCTION_DECL)
21714 /* Pretend that we defined it. */
21715 DECL_INITIAL (decl) = error_mark_node;
21716 return;
21717 }
21718
21719 do
21720 {
21721 struct pending_template **t = &pending_templates;
21722 struct pending_template *last = NULL;
21723 reconsider = 0;
21724 while (*t)
21725 {
21726 tree instantiation = reopen_tinst_level ((*t)->tinst);
21727 bool complete = false;
21728
21729 if (TYPE_P (instantiation))
21730 {
21731 tree fn;
21732
21733 if (!COMPLETE_TYPE_P (instantiation))
21734 {
21735 instantiate_class_template (instantiation);
21736 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
21737 for (fn = TYPE_METHODS (instantiation);
21738 fn;
21739 fn = TREE_CHAIN (fn))
21740 if (! DECL_ARTIFICIAL (fn))
21741 instantiate_decl (fn,
21742 /*defer_ok=*/0,
21743 /*expl_inst_class_mem_p=*/false);
21744 if (COMPLETE_TYPE_P (instantiation))
21745 reconsider = 1;
21746 }
21747
21748 complete = COMPLETE_TYPE_P (instantiation);
21749 }
21750 else
21751 {
21752 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
21753 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
21754 {
21755 instantiation
21756 = instantiate_decl (instantiation,
21757 /*defer_ok=*/0,
21758 /*expl_inst_class_mem_p=*/false);
21759 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
21760 reconsider = 1;
21761 }
21762
21763 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
21764 || DECL_TEMPLATE_INSTANTIATED (instantiation));
21765 }
21766
21767 if (complete)
21768 /* If INSTANTIATION has been instantiated, then we don't
21769 need to consider it again in the future. */
21770 *t = (*t)->next;
21771 else
21772 {
21773 last = *t;
21774 t = &(*t)->next;
21775 }
21776 tinst_depth = 0;
21777 current_tinst_level = NULL;
21778 }
21779 last_pending_template = last;
21780 }
21781 while (reconsider);
21782
21783 input_location = saved_loc;
21784 }
21785
21786 /* Substitute ARGVEC into T, which is a list of initializers for
21787 either base class or a non-static data member. The TREE_PURPOSEs
21788 are DECLs, and the TREE_VALUEs are the initializer values. Used by
21789 instantiate_decl. */
21790
21791 static tree
21792 tsubst_initializer_list (tree t, tree argvec)
21793 {
21794 tree inits = NULL_TREE;
21795
21796 for (; t; t = TREE_CHAIN (t))
21797 {
21798 tree decl;
21799 tree init;
21800 tree expanded_bases = NULL_TREE;
21801 tree expanded_arguments = NULL_TREE;
21802 int i, len = 1;
21803
21804 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
21805 {
21806 tree expr;
21807 tree arg;
21808
21809 /* Expand the base class expansion type into separate base
21810 classes. */
21811 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
21812 tf_warning_or_error,
21813 NULL_TREE);
21814 if (expanded_bases == error_mark_node)
21815 continue;
21816
21817 /* We'll be building separate TREE_LISTs of arguments for
21818 each base. */
21819 len = TREE_VEC_LENGTH (expanded_bases);
21820 expanded_arguments = make_tree_vec (len);
21821 for (i = 0; i < len; i++)
21822 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
21823
21824 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
21825 expand each argument in the TREE_VALUE of t. */
21826 expr = make_node (EXPR_PACK_EXPANSION);
21827 PACK_EXPANSION_LOCAL_P (expr) = true;
21828 PACK_EXPANSION_PARAMETER_PACKS (expr) =
21829 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
21830
21831 if (TREE_VALUE (t) == void_type_node)
21832 /* VOID_TYPE_NODE is used to indicate
21833 value-initialization. */
21834 {
21835 for (i = 0; i < len; i++)
21836 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
21837 }
21838 else
21839 {
21840 /* Substitute parameter packs into each argument in the
21841 TREE_LIST. */
21842 in_base_initializer = 1;
21843 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
21844 {
21845 tree expanded_exprs;
21846
21847 /* Expand the argument. */
21848 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
21849 expanded_exprs
21850 = tsubst_pack_expansion (expr, argvec,
21851 tf_warning_or_error,
21852 NULL_TREE);
21853 if (expanded_exprs == error_mark_node)
21854 continue;
21855
21856 /* Prepend each of the expanded expressions to the
21857 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
21858 for (i = 0; i < len; i++)
21859 {
21860 TREE_VEC_ELT (expanded_arguments, i) =
21861 tree_cons (NULL_TREE,
21862 TREE_VEC_ELT (expanded_exprs, i),
21863 TREE_VEC_ELT (expanded_arguments, i));
21864 }
21865 }
21866 in_base_initializer = 0;
21867
21868 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
21869 since we built them backwards. */
21870 for (i = 0; i < len; i++)
21871 {
21872 TREE_VEC_ELT (expanded_arguments, i) =
21873 nreverse (TREE_VEC_ELT (expanded_arguments, i));
21874 }
21875 }
21876 }
21877
21878 for (i = 0; i < len; ++i)
21879 {
21880 if (expanded_bases)
21881 {
21882 decl = TREE_VEC_ELT (expanded_bases, i);
21883 decl = expand_member_init (decl);
21884 init = TREE_VEC_ELT (expanded_arguments, i);
21885 }
21886 else
21887 {
21888 tree tmp;
21889 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
21890 tf_warning_or_error, NULL_TREE);
21891
21892 decl = expand_member_init (decl);
21893 if (decl && !DECL_P (decl))
21894 in_base_initializer = 1;
21895
21896 init = TREE_VALUE (t);
21897 tmp = init;
21898 if (init != void_type_node)
21899 init = tsubst_expr (init, argvec,
21900 tf_warning_or_error, NULL_TREE,
21901 /*integral_constant_expression_p=*/false);
21902 if (init == NULL_TREE && tmp != NULL_TREE)
21903 /* If we had an initializer but it instantiated to nothing,
21904 value-initialize the object. This will only occur when
21905 the initializer was a pack expansion where the parameter
21906 packs used in that expansion were of length zero. */
21907 init = void_type_node;
21908 in_base_initializer = 0;
21909 }
21910
21911 if (decl)
21912 {
21913 init = build_tree_list (decl, init);
21914 TREE_CHAIN (init) = inits;
21915 inits = init;
21916 }
21917 }
21918 }
21919 return inits;
21920 }
21921
21922 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
21923
21924 static void
21925 set_current_access_from_decl (tree decl)
21926 {
21927 if (TREE_PRIVATE (decl))
21928 current_access_specifier = access_private_node;
21929 else if (TREE_PROTECTED (decl))
21930 current_access_specifier = access_protected_node;
21931 else
21932 current_access_specifier = access_public_node;
21933 }
21934
21935 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
21936 is the instantiation (which should have been created with
21937 start_enum) and ARGS are the template arguments to use. */
21938
21939 static void
21940 tsubst_enum (tree tag, tree newtag, tree args)
21941 {
21942 tree e;
21943
21944 if (SCOPED_ENUM_P (newtag))
21945 begin_scope (sk_scoped_enum, newtag);
21946
21947 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
21948 {
21949 tree value;
21950 tree decl;
21951
21952 decl = TREE_VALUE (e);
21953 /* Note that in a template enum, the TREE_VALUE is the
21954 CONST_DECL, not the corresponding INTEGER_CST. */
21955 value = tsubst_expr (DECL_INITIAL (decl),
21956 args, tf_warning_or_error, NULL_TREE,
21957 /*integral_constant_expression_p=*/true);
21958
21959 /* Give this enumeration constant the correct access. */
21960 set_current_access_from_decl (decl);
21961
21962 /* Actually build the enumerator itself. Here we're assuming that
21963 enumerators can't have dependent attributes. */
21964 build_enumerator (DECL_NAME (decl), value, newtag,
21965 DECL_ATTRIBUTES (decl), DECL_SOURCE_LOCATION (decl));
21966 }
21967
21968 if (SCOPED_ENUM_P (newtag))
21969 finish_scope ();
21970
21971 finish_enum_value_list (newtag);
21972 finish_enum (newtag);
21973
21974 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
21975 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
21976 }
21977
21978 /* DECL is a FUNCTION_DECL that is a template specialization. Return
21979 its type -- but without substituting the innermost set of template
21980 arguments. So, innermost set of template parameters will appear in
21981 the type. */
21982
21983 tree
21984 get_mostly_instantiated_function_type (tree decl)
21985 {
21986 /* For a function, DECL_TI_TEMPLATE is partially instantiated. */
21987 return TREE_TYPE (DECL_TI_TEMPLATE (decl));
21988 }
21989
21990 /* Return truthvalue if we're processing a template different from
21991 the last one involved in diagnostics. */
21992 bool
21993 problematic_instantiation_changed (void)
21994 {
21995 return current_tinst_level != last_error_tinst_level;
21996 }
21997
21998 /* Remember current template involved in diagnostics. */
21999 void
22000 record_last_problematic_instantiation (void)
22001 {
22002 last_error_tinst_level = current_tinst_level;
22003 }
22004
22005 struct tinst_level *
22006 current_instantiation (void)
22007 {
22008 return current_tinst_level;
22009 }
22010
22011 /* Return TRUE if current_function_decl is being instantiated, false
22012 otherwise. */
22013
22014 bool
22015 instantiating_current_function_p (void)
22016 {
22017 return (current_instantiation ()
22018 && current_instantiation ()->decl == current_function_decl);
22019 }
22020
22021 /* [temp.param] Check that template non-type parm TYPE is of an allowable
22022 type. Return zero for ok, nonzero for disallowed. Issue error and
22023 warning messages under control of COMPLAIN. */
22024
22025 static int
22026 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
22027 {
22028 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
22029 return 0;
22030 else if (POINTER_TYPE_P (type))
22031 return 0;
22032 else if (TYPE_PTRMEM_P (type))
22033 return 0;
22034 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
22035 return 0;
22036 else if (TREE_CODE (type) == TYPENAME_TYPE)
22037 return 0;
22038 else if (TREE_CODE (type) == DECLTYPE_TYPE)
22039 return 0;
22040 else if (TREE_CODE (type) == NULLPTR_TYPE)
22041 return 0;
22042 /* A bound template template parm could later be instantiated to have a valid
22043 nontype parm type via an alias template. */
22044 else if (cxx_dialect >= cxx11
22045 && TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
22046 return 0;
22047
22048 if (complain & tf_error)
22049 {
22050 if (type == error_mark_node)
22051 inform (input_location, "invalid template non-type parameter");
22052 else
22053 error ("%q#T is not a valid type for a template non-type parameter",
22054 type);
22055 }
22056 return 1;
22057 }
22058
22059 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
22060 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
22061
22062 static bool
22063 dependent_type_p_r (tree type)
22064 {
22065 tree scope;
22066
22067 /* [temp.dep.type]
22068
22069 A type is dependent if it is:
22070
22071 -- a template parameter. Template template parameters are types
22072 for us (since TYPE_P holds true for them) so we handle
22073 them here. */
22074 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
22075 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
22076 return true;
22077 /* -- a qualified-id with a nested-name-specifier which contains a
22078 class-name that names a dependent type or whose unqualified-id
22079 names a dependent type. */
22080 if (TREE_CODE (type) == TYPENAME_TYPE)
22081 return true;
22082
22083 /* An alias template specialization can be dependent even if the
22084 resulting type is not. */
22085 if (dependent_alias_template_spec_p (type))
22086 return true;
22087
22088 /* -- a cv-qualified type where the cv-unqualified type is
22089 dependent.
22090 No code is necessary for this bullet; the code below handles
22091 cv-qualified types, and we don't want to strip aliases with
22092 TYPE_MAIN_VARIANT because of DR 1558. */
22093 /* -- a compound type constructed from any dependent type. */
22094 if (TYPE_PTRMEM_P (type))
22095 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
22096 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
22097 (type)));
22098 else if (TYPE_PTR_P (type)
22099 || TREE_CODE (type) == REFERENCE_TYPE)
22100 return dependent_type_p (TREE_TYPE (type));
22101 else if (TREE_CODE (type) == FUNCTION_TYPE
22102 || TREE_CODE (type) == METHOD_TYPE)
22103 {
22104 tree arg_type;
22105
22106 if (dependent_type_p (TREE_TYPE (type)))
22107 return true;
22108 for (arg_type = TYPE_ARG_TYPES (type);
22109 arg_type;
22110 arg_type = TREE_CHAIN (arg_type))
22111 if (dependent_type_p (TREE_VALUE (arg_type)))
22112 return true;
22113 return false;
22114 }
22115 /* -- an array type constructed from any dependent type or whose
22116 size is specified by a constant expression that is
22117 value-dependent.
22118
22119 We checked for type- and value-dependence of the bounds in
22120 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
22121 if (TREE_CODE (type) == ARRAY_TYPE)
22122 {
22123 if (TYPE_DOMAIN (type)
22124 && dependent_type_p (TYPE_DOMAIN (type)))
22125 return true;
22126 return dependent_type_p (TREE_TYPE (type));
22127 }
22128
22129 /* -- a template-id in which either the template name is a template
22130 parameter ... */
22131 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
22132 return true;
22133 /* ... or any of the template arguments is a dependent type or
22134 an expression that is type-dependent or value-dependent. */
22135 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
22136 && (any_dependent_template_arguments_p
22137 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
22138 return true;
22139
22140 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
22141 dependent; if the argument of the `typeof' expression is not
22142 type-dependent, then it should already been have resolved. */
22143 if (TREE_CODE (type) == TYPEOF_TYPE
22144 || TREE_CODE (type) == DECLTYPE_TYPE
22145 || TREE_CODE (type) == UNDERLYING_TYPE)
22146 return true;
22147
22148 /* A template argument pack is dependent if any of its packed
22149 arguments are. */
22150 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
22151 {
22152 tree args = ARGUMENT_PACK_ARGS (type);
22153 int i, len = TREE_VEC_LENGTH (args);
22154 for (i = 0; i < len; ++i)
22155 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
22156 return true;
22157 }
22158
22159 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
22160 be template parameters. */
22161 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
22162 return true;
22163
22164 /* The standard does not specifically mention types that are local
22165 to template functions or local classes, but they should be
22166 considered dependent too. For example:
22167
22168 template <int I> void f() {
22169 enum E { a = I };
22170 S<sizeof (E)> s;
22171 }
22172
22173 The size of `E' cannot be known until the value of `I' has been
22174 determined. Therefore, `E' must be considered dependent. */
22175 scope = TYPE_CONTEXT (type);
22176 if (scope && TYPE_P (scope))
22177 return dependent_type_p (scope);
22178 /* Don't use type_dependent_expression_p here, as it can lead
22179 to infinite recursion trying to determine whether a lambda
22180 nested in a lambda is dependent (c++/47687). */
22181 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
22182 && DECL_LANG_SPECIFIC (scope)
22183 && DECL_TEMPLATE_INFO (scope)
22184 && (any_dependent_template_arguments_p
22185 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
22186 return true;
22187
22188 /* Other types are non-dependent. */
22189 return false;
22190 }
22191
22192 /* Returns TRUE if TYPE is dependent, in the sense of
22193 [temp.dep.type]. Note that a NULL type is considered dependent. */
22194
22195 bool
22196 dependent_type_p (tree type)
22197 {
22198 /* If there are no template parameters in scope, then there can't be
22199 any dependent types. */
22200 if (!processing_template_decl)
22201 {
22202 /* If we are not processing a template, then nobody should be
22203 providing us with a dependent type. */
22204 gcc_assert (type);
22205 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
22206 return false;
22207 }
22208
22209 /* If the type is NULL, we have not computed a type for the entity
22210 in question; in that case, the type is dependent. */
22211 if (!type)
22212 return true;
22213
22214 /* Erroneous types can be considered non-dependent. */
22215 if (type == error_mark_node)
22216 return false;
22217
22218 /* If we have not already computed the appropriate value for TYPE,
22219 do so now. */
22220 if (!TYPE_DEPENDENT_P_VALID (type))
22221 {
22222 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
22223 TYPE_DEPENDENT_P_VALID (type) = 1;
22224 }
22225
22226 return TYPE_DEPENDENT_P (type);
22227 }
22228
22229 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
22230 lookup. In other words, a dependent type that is not the current
22231 instantiation. */
22232
22233 bool
22234 dependent_scope_p (tree scope)
22235 {
22236 return (scope && TYPE_P (scope) && dependent_type_p (scope)
22237 && !currently_open_class (scope));
22238 }
22239
22240 /* T is a SCOPE_REF; return whether we need to consider it
22241 instantiation-dependent so that we can check access at instantiation
22242 time even though we know which member it resolves to. */
22243
22244 static bool
22245 instantiation_dependent_scope_ref_p (tree t)
22246 {
22247 if (DECL_P (TREE_OPERAND (t, 1))
22248 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
22249 && accessible_in_template_p (TREE_OPERAND (t, 0),
22250 TREE_OPERAND (t, 1)))
22251 return false;
22252 else
22253 return true;
22254 }
22255
22256 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
22257 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
22258 expression. */
22259
22260 /* Note that this predicate is not appropriate for general expressions;
22261 only constant expressions (that satisfy potential_constant_expression)
22262 can be tested for value dependence. */
22263
22264 bool
22265 value_dependent_expression_p (tree expression)
22266 {
22267 if (!processing_template_decl)
22268 return false;
22269
22270 /* A name declared with a dependent type. */
22271 if (DECL_P (expression) && type_dependent_expression_p (expression))
22272 return true;
22273
22274 switch (TREE_CODE (expression))
22275 {
22276 case IDENTIFIER_NODE:
22277 /* A name that has not been looked up -- must be dependent. */
22278 return true;
22279
22280 case TEMPLATE_PARM_INDEX:
22281 /* A non-type template parm. */
22282 return true;
22283
22284 case CONST_DECL:
22285 /* A non-type template parm. */
22286 if (DECL_TEMPLATE_PARM_P (expression))
22287 return true;
22288 return value_dependent_expression_p (DECL_INITIAL (expression));
22289
22290 case VAR_DECL:
22291 /* A constant with literal type and is initialized
22292 with an expression that is value-dependent.
22293
22294 Note that a non-dependent parenthesized initializer will have
22295 already been replaced with its constant value, so if we see
22296 a TREE_LIST it must be dependent. */
22297 if (DECL_INITIAL (expression)
22298 && decl_constant_var_p (expression)
22299 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
22300 /* cp_finish_decl doesn't fold reference initializers. */
22301 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
22302 || value_dependent_expression_p (DECL_INITIAL (expression))))
22303 return true;
22304 return false;
22305
22306 case DYNAMIC_CAST_EXPR:
22307 case STATIC_CAST_EXPR:
22308 case CONST_CAST_EXPR:
22309 case REINTERPRET_CAST_EXPR:
22310 case CAST_EXPR:
22311 /* These expressions are value-dependent if the type to which
22312 the cast occurs is dependent or the expression being casted
22313 is value-dependent. */
22314 {
22315 tree type = TREE_TYPE (expression);
22316
22317 if (dependent_type_p (type))
22318 return true;
22319
22320 /* A functional cast has a list of operands. */
22321 expression = TREE_OPERAND (expression, 0);
22322 if (!expression)
22323 {
22324 /* If there are no operands, it must be an expression such
22325 as "int()". This should not happen for aggregate types
22326 because it would form non-constant expressions. */
22327 gcc_assert (cxx_dialect >= cxx11
22328 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
22329
22330 return false;
22331 }
22332
22333 if (TREE_CODE (expression) == TREE_LIST)
22334 return any_value_dependent_elements_p (expression);
22335
22336 return value_dependent_expression_p (expression);
22337 }
22338
22339 case SIZEOF_EXPR:
22340 if (SIZEOF_EXPR_TYPE_P (expression))
22341 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
22342 /* FALLTHRU */
22343 case ALIGNOF_EXPR:
22344 case TYPEID_EXPR:
22345 /* A `sizeof' expression is value-dependent if the operand is
22346 type-dependent or is a pack expansion. */
22347 expression = TREE_OPERAND (expression, 0);
22348 if (PACK_EXPANSION_P (expression))
22349 return true;
22350 else if (TYPE_P (expression))
22351 return dependent_type_p (expression);
22352 return instantiation_dependent_expression_p (expression);
22353
22354 case AT_ENCODE_EXPR:
22355 /* An 'encode' expression is value-dependent if the operand is
22356 type-dependent. */
22357 expression = TREE_OPERAND (expression, 0);
22358 return dependent_type_p (expression);
22359
22360 case NOEXCEPT_EXPR:
22361 expression = TREE_OPERAND (expression, 0);
22362 return instantiation_dependent_expression_p (expression);
22363
22364 case SCOPE_REF:
22365 /* All instantiation-dependent expressions should also be considered
22366 value-dependent. */
22367 return instantiation_dependent_scope_ref_p (expression);
22368
22369 case COMPONENT_REF:
22370 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
22371 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
22372
22373 case NONTYPE_ARGUMENT_PACK:
22374 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
22375 is value-dependent. */
22376 {
22377 tree values = ARGUMENT_PACK_ARGS (expression);
22378 int i, len = TREE_VEC_LENGTH (values);
22379
22380 for (i = 0; i < len; ++i)
22381 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
22382 return true;
22383
22384 return false;
22385 }
22386
22387 case TRAIT_EXPR:
22388 {
22389 tree type2 = TRAIT_EXPR_TYPE2 (expression);
22390 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
22391 || (type2 ? dependent_type_p (type2) : false));
22392 }
22393
22394 case MODOP_EXPR:
22395 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22396 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
22397
22398 case ARRAY_REF:
22399 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22400 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
22401
22402 case ADDR_EXPR:
22403 {
22404 tree op = TREE_OPERAND (expression, 0);
22405 return (value_dependent_expression_p (op)
22406 || has_value_dependent_address (op));
22407 }
22408
22409 case REQUIRES_EXPR:
22410 /* Treat all requires-expressions as value-dependent so
22411 we don't try to fold them. */
22412 return true;
22413
22414 case TYPE_REQ:
22415 return dependent_type_p (TREE_OPERAND (expression, 0));
22416
22417 case CALL_EXPR:
22418 {
22419 tree fn = get_callee_fndecl (expression);
22420 int i, nargs;
22421 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
22422 return true;
22423 nargs = call_expr_nargs (expression);
22424 for (i = 0; i < nargs; ++i)
22425 {
22426 tree op = CALL_EXPR_ARG (expression, i);
22427 /* In a call to a constexpr member function, look through the
22428 implicit ADDR_EXPR on the object argument so that it doesn't
22429 cause the call to be considered value-dependent. We also
22430 look through it in potential_constant_expression. */
22431 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
22432 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
22433 && TREE_CODE (op) == ADDR_EXPR)
22434 op = TREE_OPERAND (op, 0);
22435 if (value_dependent_expression_p (op))
22436 return true;
22437 }
22438 return false;
22439 }
22440
22441 case TEMPLATE_ID_EXPR:
22442 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
22443 type-dependent. */
22444 return type_dependent_expression_p (expression)
22445 || variable_concept_p (TREE_OPERAND (expression, 0));
22446
22447 case CONSTRUCTOR:
22448 {
22449 unsigned ix;
22450 tree val;
22451 if (dependent_type_p (TREE_TYPE (expression)))
22452 return true;
22453 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
22454 if (value_dependent_expression_p (val))
22455 return true;
22456 return false;
22457 }
22458
22459 case STMT_EXPR:
22460 /* Treat a GNU statement expression as dependent to avoid crashing
22461 under instantiate_non_dependent_expr; it can't be constant. */
22462 return true;
22463
22464 default:
22465 /* A constant expression is value-dependent if any subexpression is
22466 value-dependent. */
22467 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
22468 {
22469 case tcc_reference:
22470 case tcc_unary:
22471 case tcc_comparison:
22472 case tcc_binary:
22473 case tcc_expression:
22474 case tcc_vl_exp:
22475 {
22476 int i, len = cp_tree_operand_length (expression);
22477
22478 for (i = 0; i < len; i++)
22479 {
22480 tree t = TREE_OPERAND (expression, i);
22481
22482 /* In some cases, some of the operands may be missing.l
22483 (For example, in the case of PREDECREMENT_EXPR, the
22484 amount to increment by may be missing.) That doesn't
22485 make the expression dependent. */
22486 if (t && value_dependent_expression_p (t))
22487 return true;
22488 }
22489 }
22490 break;
22491 default:
22492 break;
22493 }
22494 break;
22495 }
22496
22497 /* The expression is not value-dependent. */
22498 return false;
22499 }
22500
22501 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
22502 [temp.dep.expr]. Note that an expression with no type is
22503 considered dependent. Other parts of the compiler arrange for an
22504 expression with type-dependent subexpressions to have no type, so
22505 this function doesn't have to be fully recursive. */
22506
22507 bool
22508 type_dependent_expression_p (tree expression)
22509 {
22510 if (!processing_template_decl)
22511 return false;
22512
22513 if (expression == NULL_TREE || expression == error_mark_node)
22514 return false;
22515
22516 /* An unresolved name is always dependent. */
22517 if (identifier_p (expression)
22518 || TREE_CODE (expression) == USING_DECL
22519 || TREE_CODE (expression) == WILDCARD_DECL)
22520 return true;
22521
22522 /* A fold expression is type-dependent. */
22523 if (TREE_CODE (expression) == UNARY_LEFT_FOLD_EXPR
22524 || TREE_CODE (expression) == UNARY_RIGHT_FOLD_EXPR
22525 || TREE_CODE (expression) == BINARY_LEFT_FOLD_EXPR
22526 || TREE_CODE (expression) == BINARY_RIGHT_FOLD_EXPR)
22527 return true;
22528
22529 /* Some expression forms are never type-dependent. */
22530 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
22531 || TREE_CODE (expression) == SIZEOF_EXPR
22532 || TREE_CODE (expression) == ALIGNOF_EXPR
22533 || TREE_CODE (expression) == AT_ENCODE_EXPR
22534 || TREE_CODE (expression) == NOEXCEPT_EXPR
22535 || TREE_CODE (expression) == TRAIT_EXPR
22536 || TREE_CODE (expression) == TYPEID_EXPR
22537 || TREE_CODE (expression) == DELETE_EXPR
22538 || TREE_CODE (expression) == VEC_DELETE_EXPR
22539 || TREE_CODE (expression) == THROW_EXPR
22540 || TREE_CODE (expression) == REQUIRES_EXPR)
22541 return false;
22542
22543 /* The types of these expressions depends only on the type to which
22544 the cast occurs. */
22545 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
22546 || TREE_CODE (expression) == STATIC_CAST_EXPR
22547 || TREE_CODE (expression) == CONST_CAST_EXPR
22548 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
22549 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
22550 || TREE_CODE (expression) == CAST_EXPR)
22551 return dependent_type_p (TREE_TYPE (expression));
22552
22553 /* The types of these expressions depends only on the type created
22554 by the expression. */
22555 if (TREE_CODE (expression) == NEW_EXPR
22556 || TREE_CODE (expression) == VEC_NEW_EXPR)
22557 {
22558 /* For NEW_EXPR tree nodes created inside a template, either
22559 the object type itself or a TREE_LIST may appear as the
22560 operand 1. */
22561 tree type = TREE_OPERAND (expression, 1);
22562 if (TREE_CODE (type) == TREE_LIST)
22563 /* This is an array type. We need to check array dimensions
22564 as well. */
22565 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
22566 || value_dependent_expression_p
22567 (TREE_OPERAND (TREE_VALUE (type), 1));
22568 else
22569 return dependent_type_p (type);
22570 }
22571
22572 if (TREE_CODE (expression) == SCOPE_REF)
22573 {
22574 tree scope = TREE_OPERAND (expression, 0);
22575 tree name = TREE_OPERAND (expression, 1);
22576
22577 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
22578 contains an identifier associated by name lookup with one or more
22579 declarations declared with a dependent type, or...a
22580 nested-name-specifier or qualified-id that names a member of an
22581 unknown specialization. */
22582 return (type_dependent_expression_p (name)
22583 || dependent_scope_p (scope));
22584 }
22585
22586 if (TREE_CODE (expression) == FUNCTION_DECL
22587 && DECL_LANG_SPECIFIC (expression)
22588 && DECL_TEMPLATE_INFO (expression)
22589 && (any_dependent_template_arguments_p
22590 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
22591 return true;
22592
22593 if (TREE_CODE (expression) == TEMPLATE_DECL
22594 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
22595 return false;
22596
22597 if (TREE_CODE (expression) == STMT_EXPR)
22598 expression = stmt_expr_value_expr (expression);
22599
22600 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
22601 {
22602 tree elt;
22603 unsigned i;
22604
22605 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
22606 {
22607 if (type_dependent_expression_p (elt))
22608 return true;
22609 }
22610 return false;
22611 }
22612
22613 /* A static data member of the current instantiation with incomplete
22614 array type is type-dependent, as the definition and specializations
22615 can have different bounds. */
22616 if (VAR_P (expression)
22617 && DECL_CLASS_SCOPE_P (expression)
22618 && dependent_type_p (DECL_CONTEXT (expression))
22619 && VAR_HAD_UNKNOWN_BOUND (expression))
22620 return true;
22621
22622 /* An array of unknown bound depending on a variadic parameter, eg:
22623
22624 template<typename... Args>
22625 void foo (Args... args)
22626 {
22627 int arr[] = { args... };
22628 }
22629
22630 template<int... vals>
22631 void bar ()
22632 {
22633 int arr[] = { vals... };
22634 }
22635
22636 If the array has no length and has an initializer, it must be that
22637 we couldn't determine its length in cp_complete_array_type because
22638 it is dependent. */
22639 if (VAR_P (expression)
22640 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
22641 && !TYPE_DOMAIN (TREE_TYPE (expression))
22642 && DECL_INITIAL (expression))
22643 return true;
22644
22645 /* A variable template specialization is type-dependent if it has any
22646 dependent template arguments. */
22647 if (VAR_P (expression)
22648 && DECL_LANG_SPECIFIC (expression)
22649 && DECL_TEMPLATE_INFO (expression)
22650 && variable_template_p (DECL_TI_TEMPLATE (expression)))
22651 return any_dependent_template_arguments_p (DECL_TI_ARGS (expression));
22652
22653 /* Always dependent, on the number of arguments if nothing else. */
22654 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
22655 return true;
22656
22657 if (TREE_TYPE (expression) == unknown_type_node)
22658 {
22659 if (TREE_CODE (expression) == ADDR_EXPR)
22660 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
22661 if (TREE_CODE (expression) == COMPONENT_REF
22662 || TREE_CODE (expression) == OFFSET_REF)
22663 {
22664 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
22665 return true;
22666 expression = TREE_OPERAND (expression, 1);
22667 if (identifier_p (expression))
22668 return false;
22669 }
22670 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
22671 if (TREE_CODE (expression) == SCOPE_REF)
22672 return false;
22673
22674 if (BASELINK_P (expression))
22675 {
22676 if (BASELINK_OPTYPE (expression)
22677 && dependent_type_p (BASELINK_OPTYPE (expression)))
22678 return true;
22679 expression = BASELINK_FUNCTIONS (expression);
22680 }
22681
22682 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
22683 {
22684 if (any_dependent_template_arguments_p
22685 (TREE_OPERAND (expression, 1)))
22686 return true;
22687 expression = TREE_OPERAND (expression, 0);
22688 if (identifier_p (expression))
22689 return true;
22690 }
22691
22692 gcc_assert (TREE_CODE (expression) == OVERLOAD
22693 || TREE_CODE (expression) == FUNCTION_DECL);
22694
22695 while (expression)
22696 {
22697 if (type_dependent_expression_p (OVL_CURRENT (expression)))
22698 return true;
22699 expression = OVL_NEXT (expression);
22700 }
22701 return false;
22702 }
22703
22704 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
22705
22706 return (dependent_type_p (TREE_TYPE (expression)));
22707 }
22708
22709 /* walk_tree callback function for instantiation_dependent_expression_p,
22710 below. Returns non-zero if a dependent subexpression is found. */
22711
22712 static tree
22713 instantiation_dependent_r (tree *tp, int *walk_subtrees,
22714 void * /*data*/)
22715 {
22716 if (TYPE_P (*tp))
22717 {
22718 /* We don't have to worry about decltype currently because decltype
22719 of an instantiation-dependent expr is a dependent type. This
22720 might change depending on the resolution of DR 1172. */
22721 *walk_subtrees = false;
22722 return NULL_TREE;
22723 }
22724 enum tree_code code = TREE_CODE (*tp);
22725 switch (code)
22726 {
22727 /* Don't treat an argument list as dependent just because it has no
22728 TREE_TYPE. */
22729 case TREE_LIST:
22730 case TREE_VEC:
22731 return NULL_TREE;
22732
22733 case VAR_DECL:
22734 case CONST_DECL:
22735 /* A constant with a dependent initializer is dependent. */
22736 if (value_dependent_expression_p (*tp))
22737 return *tp;
22738 break;
22739
22740 case TEMPLATE_PARM_INDEX:
22741 return *tp;
22742
22743 /* Handle expressions with type operands. */
22744 case SIZEOF_EXPR:
22745 case ALIGNOF_EXPR:
22746 case TYPEID_EXPR:
22747 case AT_ENCODE_EXPR:
22748 {
22749 tree op = TREE_OPERAND (*tp, 0);
22750 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
22751 op = TREE_TYPE (op);
22752 if (TYPE_P (op))
22753 {
22754 if (dependent_type_p (op))
22755 return *tp;
22756 else
22757 {
22758 *walk_subtrees = false;
22759 return NULL_TREE;
22760 }
22761 }
22762 break;
22763 }
22764
22765 case TRAIT_EXPR:
22766 if (value_dependent_expression_p (*tp))
22767 return *tp;
22768 *walk_subtrees = false;
22769 return NULL_TREE;
22770
22771 case COMPONENT_REF:
22772 if (identifier_p (TREE_OPERAND (*tp, 1)))
22773 /* In a template, finish_class_member_access_expr creates a
22774 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
22775 type-dependent, so that we can check access control at
22776 instantiation time (PR 42277). See also Core issue 1273. */
22777 return *tp;
22778 break;
22779
22780 case SCOPE_REF:
22781 if (instantiation_dependent_scope_ref_p (*tp))
22782 return *tp;
22783 else
22784 break;
22785
22786 /* Treat statement-expressions as dependent. */
22787 case BIND_EXPR:
22788 return *tp;
22789
22790 /* Treat requires-expressions as dependent. */
22791 case REQUIRES_EXPR:
22792 return *tp;
22793
22794 case CALL_EXPR:
22795 /* Treat calls to function concepts as dependent. */
22796 if (function_concept_check_p (*tp))
22797 return *tp;
22798 break;
22799
22800 case TEMPLATE_ID_EXPR:
22801 /* And variable concepts. */
22802 if (variable_concept_p (TREE_OPERAND (*tp, 0)))
22803 return *tp;
22804 break;
22805
22806 default:
22807 break;
22808 }
22809
22810 if (type_dependent_expression_p (*tp))
22811 return *tp;
22812 else
22813 return NULL_TREE;
22814 }
22815
22816 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
22817 sense defined by the ABI:
22818
22819 "An expression is instantiation-dependent if it is type-dependent
22820 or value-dependent, or it has a subexpression that is type-dependent
22821 or value-dependent." */
22822
22823 bool
22824 instantiation_dependent_expression_p (tree expression)
22825 {
22826 tree result;
22827
22828 if (!processing_template_decl)
22829 return false;
22830
22831 if (expression == error_mark_node)
22832 return false;
22833
22834 result = cp_walk_tree_without_duplicates (&expression,
22835 instantiation_dependent_r, NULL);
22836 return result != NULL_TREE;
22837 }
22838
22839 /* Like type_dependent_expression_p, but it also works while not processing
22840 a template definition, i.e. during substitution or mangling. */
22841
22842 bool
22843 type_dependent_expression_p_push (tree expr)
22844 {
22845 bool b;
22846 ++processing_template_decl;
22847 b = type_dependent_expression_p (expr);
22848 --processing_template_decl;
22849 return b;
22850 }
22851
22852 /* Returns TRUE if ARGS contains a type-dependent expression. */
22853
22854 bool
22855 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
22856 {
22857 unsigned int i;
22858 tree arg;
22859
22860 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
22861 {
22862 if (type_dependent_expression_p (arg))
22863 return true;
22864 }
22865 return false;
22866 }
22867
22868 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
22869 expressions) contains any type-dependent expressions. */
22870
22871 bool
22872 any_type_dependent_elements_p (const_tree list)
22873 {
22874 for (; list; list = TREE_CHAIN (list))
22875 if (type_dependent_expression_p (TREE_VALUE (list)))
22876 return true;
22877
22878 return false;
22879 }
22880
22881 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
22882 expressions) contains any value-dependent expressions. */
22883
22884 bool
22885 any_value_dependent_elements_p (const_tree list)
22886 {
22887 for (; list; list = TREE_CHAIN (list))
22888 if (value_dependent_expression_p (TREE_VALUE (list)))
22889 return true;
22890
22891 return false;
22892 }
22893
22894 /* Returns TRUE if the ARG (a template argument) is dependent. */
22895
22896 bool
22897 dependent_template_arg_p (tree arg)
22898 {
22899 if (!processing_template_decl)
22900 return false;
22901
22902 /* Assume a template argument that was wrongly written by the user
22903 is dependent. This is consistent with what
22904 any_dependent_template_arguments_p [that calls this function]
22905 does. */
22906 if (!arg || arg == error_mark_node)
22907 return true;
22908
22909 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
22910 arg = ARGUMENT_PACK_SELECT_ARG (arg);
22911
22912 if (TREE_CODE (arg) == TEMPLATE_DECL
22913 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
22914 return dependent_template_p (arg);
22915 else if (ARGUMENT_PACK_P (arg))
22916 {
22917 tree args = ARGUMENT_PACK_ARGS (arg);
22918 int i, len = TREE_VEC_LENGTH (args);
22919 for (i = 0; i < len; ++i)
22920 {
22921 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
22922 return true;
22923 }
22924
22925 return false;
22926 }
22927 else if (TYPE_P (arg))
22928 return dependent_type_p (arg);
22929 else
22930 return (type_dependent_expression_p (arg)
22931 || value_dependent_expression_p (arg));
22932 }
22933
22934 /* Returns true if ARGS (a collection of template arguments) contains
22935 any types that require structural equality testing. */
22936
22937 bool
22938 any_template_arguments_need_structural_equality_p (tree args)
22939 {
22940 int i;
22941 int j;
22942
22943 if (!args)
22944 return false;
22945 if (args == error_mark_node)
22946 return true;
22947
22948 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
22949 {
22950 tree level = TMPL_ARGS_LEVEL (args, i + 1);
22951 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
22952 {
22953 tree arg = TREE_VEC_ELT (level, j);
22954 tree packed_args = NULL_TREE;
22955 int k, len = 1;
22956
22957 if (ARGUMENT_PACK_P (arg))
22958 {
22959 /* Look inside the argument pack. */
22960 packed_args = ARGUMENT_PACK_ARGS (arg);
22961 len = TREE_VEC_LENGTH (packed_args);
22962 }
22963
22964 for (k = 0; k < len; ++k)
22965 {
22966 if (packed_args)
22967 arg = TREE_VEC_ELT (packed_args, k);
22968
22969 if (error_operand_p (arg))
22970 return true;
22971 else if (TREE_CODE (arg) == TEMPLATE_DECL)
22972 continue;
22973 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
22974 return true;
22975 else if (!TYPE_P (arg) && TREE_TYPE (arg)
22976 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
22977 return true;
22978 }
22979 }
22980 }
22981
22982 return false;
22983 }
22984
22985 /* Returns true if ARGS (a collection of template arguments) contains
22986 any dependent arguments. */
22987
22988 bool
22989 any_dependent_template_arguments_p (const_tree args)
22990 {
22991 int i;
22992 int j;
22993
22994 if (!args)
22995 return false;
22996 if (args == error_mark_node)
22997 return true;
22998
22999 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
23000 {
23001 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
23002 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
23003 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
23004 return true;
23005 }
23006
23007 return false;
23008 }
23009
23010 /* Returns TRUE if the template TMPL is dependent. */
23011
23012 bool
23013 dependent_template_p (tree tmpl)
23014 {
23015 if (TREE_CODE (tmpl) == OVERLOAD)
23016 {
23017 while (tmpl)
23018 {
23019 if (dependent_template_p (OVL_CURRENT (tmpl)))
23020 return true;
23021 tmpl = OVL_NEXT (tmpl);
23022 }
23023 return false;
23024 }
23025
23026 /* Template template parameters are dependent. */
23027 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
23028 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
23029 return true;
23030 /* So are names that have not been looked up. */
23031 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
23032 return true;
23033 /* So are member templates of dependent classes. */
23034 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
23035 return dependent_type_p (DECL_CONTEXT (tmpl));
23036 return false;
23037 }
23038
23039 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
23040
23041 bool
23042 dependent_template_id_p (tree tmpl, tree args)
23043 {
23044 return (dependent_template_p (tmpl)
23045 || any_dependent_template_arguments_p (args));
23046 }
23047
23048 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
23049 are dependent. */
23050
23051 bool
23052 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
23053 {
23054 int i;
23055
23056 if (!processing_template_decl)
23057 return false;
23058
23059 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
23060 {
23061 tree decl = TREE_VEC_ELT (declv, i);
23062 tree init = TREE_VEC_ELT (initv, i);
23063 tree cond = TREE_VEC_ELT (condv, i);
23064 tree incr = TREE_VEC_ELT (incrv, i);
23065
23066 if (type_dependent_expression_p (decl)
23067 || TREE_CODE (decl) == SCOPE_REF)
23068 return true;
23069
23070 if (init && type_dependent_expression_p (init))
23071 return true;
23072
23073 if (type_dependent_expression_p (cond))
23074 return true;
23075
23076 if (COMPARISON_CLASS_P (cond)
23077 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
23078 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
23079 return true;
23080
23081 if (TREE_CODE (incr) == MODOP_EXPR)
23082 {
23083 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
23084 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
23085 return true;
23086 }
23087 else if (type_dependent_expression_p (incr))
23088 return true;
23089 else if (TREE_CODE (incr) == MODIFY_EXPR)
23090 {
23091 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
23092 return true;
23093 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
23094 {
23095 tree t = TREE_OPERAND (incr, 1);
23096 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
23097 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
23098 return true;
23099 }
23100 }
23101 }
23102
23103 return false;
23104 }
23105
23106 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
23107 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
23108 no such TYPE can be found. Note that this function peers inside
23109 uninstantiated templates and therefore should be used only in
23110 extremely limited situations. ONLY_CURRENT_P restricts this
23111 peering to the currently open classes hierarchy (which is required
23112 when comparing types). */
23113
23114 tree
23115 resolve_typename_type (tree type, bool only_current_p)
23116 {
23117 tree scope;
23118 tree name;
23119 tree decl;
23120 int quals;
23121 tree pushed_scope;
23122 tree result;
23123
23124 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
23125
23126 scope = TYPE_CONTEXT (type);
23127 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
23128 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
23129 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
23130 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
23131 identifier of the TYPENAME_TYPE anymore.
23132 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
23133 TYPENAME_TYPE instead, we avoid messing up with a possible
23134 typedef variant case. */
23135 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
23136
23137 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
23138 it first before we can figure out what NAME refers to. */
23139 if (TREE_CODE (scope) == TYPENAME_TYPE)
23140 {
23141 if (TYPENAME_IS_RESOLVING_P (scope))
23142 /* Given a class template A with a dependent base with nested type C,
23143 typedef typename A::C::C C will land us here, as trying to resolve
23144 the initial A::C leads to the local C typedef, which leads back to
23145 A::C::C. So we break the recursion now. */
23146 return type;
23147 else
23148 scope = resolve_typename_type (scope, only_current_p);
23149 }
23150 /* If we don't know what SCOPE refers to, then we cannot resolve the
23151 TYPENAME_TYPE. */
23152 if (TREE_CODE (scope) == TYPENAME_TYPE)
23153 return type;
23154 /* If the SCOPE is a template type parameter, we have no way of
23155 resolving the name. */
23156 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
23157 return type;
23158 /* If the SCOPE is not the current instantiation, there's no reason
23159 to look inside it. */
23160 if (only_current_p && !currently_open_class (scope))
23161 return type;
23162 /* If this is a typedef, we don't want to look inside (c++/11987). */
23163 if (typedef_variant_p (type))
23164 return type;
23165 /* If SCOPE isn't the template itself, it will not have a valid
23166 TYPE_FIELDS list. */
23167 if (CLASS_TYPE_P (scope)
23168 && same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
23169 /* scope is either the template itself or a compatible instantiation
23170 like X<T>, so look up the name in the original template. */
23171 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
23172 else
23173 /* scope is a partial instantiation, so we can't do the lookup or we
23174 will lose the template arguments. */
23175 return type;
23176 /* Enter the SCOPE so that name lookup will be resolved as if we
23177 were in the class definition. In particular, SCOPE will no
23178 longer be considered a dependent type. */
23179 pushed_scope = push_scope (scope);
23180 /* Look up the declaration. */
23181 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
23182 tf_warning_or_error);
23183
23184 result = NULL_TREE;
23185
23186 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
23187 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
23188 if (!decl)
23189 /*nop*/;
23190 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
23191 && TREE_CODE (decl) == TYPE_DECL)
23192 {
23193 result = TREE_TYPE (decl);
23194 if (result == error_mark_node)
23195 result = NULL_TREE;
23196 }
23197 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
23198 && DECL_CLASS_TEMPLATE_P (decl))
23199 {
23200 tree tmpl;
23201 tree args;
23202 /* Obtain the template and the arguments. */
23203 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
23204 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
23205 /* Instantiate the template. */
23206 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
23207 /*entering_scope=*/0,
23208 tf_error | tf_user);
23209 if (result == error_mark_node)
23210 result = NULL_TREE;
23211 }
23212
23213 /* Leave the SCOPE. */
23214 if (pushed_scope)
23215 pop_scope (pushed_scope);
23216
23217 /* If we failed to resolve it, return the original typename. */
23218 if (!result)
23219 return type;
23220
23221 /* If lookup found a typename type, resolve that too. */
23222 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
23223 {
23224 /* Ill-formed programs can cause infinite recursion here, so we
23225 must catch that. */
23226 TYPENAME_IS_RESOLVING_P (type) = 1;
23227 result = resolve_typename_type (result, only_current_p);
23228 TYPENAME_IS_RESOLVING_P (type) = 0;
23229 }
23230
23231 /* Qualify the resulting type. */
23232 quals = cp_type_quals (type);
23233 if (quals)
23234 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
23235
23236 return result;
23237 }
23238
23239 /* EXPR is an expression which is not type-dependent. Return a proxy
23240 for EXPR that can be used to compute the types of larger
23241 expressions containing EXPR. */
23242
23243 tree
23244 build_non_dependent_expr (tree expr)
23245 {
23246 tree inner_expr;
23247
23248 /* Try to get a constant value for all non-dependent expressions in
23249 order to expose bugs in *_dependent_expression_p and constexpr. */
23250 if (flag_checking && cxx_dialect >= cxx11)
23251 fold_non_dependent_expr (expr);
23252
23253 /* Preserve OVERLOADs; the functions must be available to resolve
23254 types. */
23255 inner_expr = expr;
23256 if (TREE_CODE (inner_expr) == STMT_EXPR)
23257 inner_expr = stmt_expr_value_expr (inner_expr);
23258 if (TREE_CODE (inner_expr) == ADDR_EXPR)
23259 inner_expr = TREE_OPERAND (inner_expr, 0);
23260 if (TREE_CODE (inner_expr) == COMPONENT_REF)
23261 inner_expr = TREE_OPERAND (inner_expr, 1);
23262 if (is_overloaded_fn (inner_expr)
23263 || TREE_CODE (inner_expr) == OFFSET_REF)
23264 return expr;
23265 /* There is no need to return a proxy for a variable. */
23266 if (VAR_P (expr))
23267 return expr;
23268 /* Preserve string constants; conversions from string constants to
23269 "char *" are allowed, even though normally a "const char *"
23270 cannot be used to initialize a "char *". */
23271 if (TREE_CODE (expr) == STRING_CST)
23272 return expr;
23273 /* Preserve void and arithmetic constants, as an optimization -- there is no
23274 reason to create a new node. */
23275 if (TREE_CODE (expr) == VOID_CST
23276 || TREE_CODE (expr) == INTEGER_CST
23277 || TREE_CODE (expr) == REAL_CST)
23278 return expr;
23279 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
23280 There is at least one place where we want to know that a
23281 particular expression is a throw-expression: when checking a ?:
23282 expression, there are special rules if the second or third
23283 argument is a throw-expression. */
23284 if (TREE_CODE (expr) == THROW_EXPR)
23285 return expr;
23286
23287 /* Don't wrap an initializer list, we need to be able to look inside. */
23288 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
23289 return expr;
23290
23291 /* Don't wrap a dummy object, we need to be able to test for it. */
23292 if (is_dummy_object (expr))
23293 return expr;
23294
23295 if (TREE_CODE (expr) == COND_EXPR)
23296 return build3 (COND_EXPR,
23297 TREE_TYPE (expr),
23298 TREE_OPERAND (expr, 0),
23299 (TREE_OPERAND (expr, 1)
23300 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
23301 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
23302 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
23303 if (TREE_CODE (expr) == COMPOUND_EXPR
23304 && !COMPOUND_EXPR_OVERLOADED (expr))
23305 return build2 (COMPOUND_EXPR,
23306 TREE_TYPE (expr),
23307 TREE_OPERAND (expr, 0),
23308 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
23309
23310 /* If the type is unknown, it can't really be non-dependent */
23311 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
23312
23313 /* Otherwise, build a NON_DEPENDENT_EXPR. */
23314 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
23315 }
23316
23317 /* ARGS is a vector of expressions as arguments to a function call.
23318 Replace the arguments with equivalent non-dependent expressions.
23319 This modifies ARGS in place. */
23320
23321 void
23322 make_args_non_dependent (vec<tree, va_gc> *args)
23323 {
23324 unsigned int ix;
23325 tree arg;
23326
23327 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
23328 {
23329 tree newarg = build_non_dependent_expr (arg);
23330 if (newarg != arg)
23331 (*args)[ix] = newarg;
23332 }
23333 }
23334
23335 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
23336 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
23337 parms. */
23338
23339 static tree
23340 make_auto_1 (tree name)
23341 {
23342 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
23343 TYPE_NAME (au) = build_decl (input_location,
23344 TYPE_DECL, name, au);
23345 TYPE_STUB_DECL (au) = TYPE_NAME (au);
23346 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
23347 (0, processing_template_decl + 1, processing_template_decl + 1,
23348 TYPE_NAME (au), NULL_TREE);
23349 TYPE_CANONICAL (au) = canonical_type_parameter (au);
23350 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
23351 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
23352
23353 return au;
23354 }
23355
23356 tree
23357 make_decltype_auto (void)
23358 {
23359 return make_auto_1 (get_identifier ("decltype(auto)"));
23360 }
23361
23362 tree
23363 make_auto (void)
23364 {
23365 return make_auto_1 (get_identifier ("auto"));
23366 }
23367
23368 /* Given type ARG, return std::initializer_list<ARG>. */
23369
23370 static tree
23371 listify (tree arg)
23372 {
23373 tree std_init_list = namespace_binding
23374 (get_identifier ("initializer_list"), std_node);
23375 tree argvec;
23376 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
23377 {
23378 error ("deducing from brace-enclosed initializer list requires "
23379 "#include <initializer_list>");
23380 return error_mark_node;
23381 }
23382 argvec = make_tree_vec (1);
23383 TREE_VEC_ELT (argvec, 0) = arg;
23384 return lookup_template_class (std_init_list, argvec, NULL_TREE,
23385 NULL_TREE, 0, tf_warning_or_error);
23386 }
23387
23388 /* Replace auto in TYPE with std::initializer_list<auto>. */
23389
23390 static tree
23391 listify_autos (tree type, tree auto_node)
23392 {
23393 tree init_auto = listify (auto_node);
23394 tree argvec = make_tree_vec (1);
23395 TREE_VEC_ELT (argvec, 0) = init_auto;
23396 if (processing_template_decl)
23397 argvec = add_to_template_args (current_template_args (), argvec);
23398 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
23399 }
23400
23401 /* Hash traits for hashing possibly constrained 'auto'
23402 TEMPLATE_TYPE_PARMs for use by do_auto_deduction. */
23403
23404 struct auto_hash : default_hash_traits<tree>
23405 {
23406 static inline hashval_t hash (tree);
23407 static inline bool equal (tree, tree);
23408 };
23409
23410 /* Hash the 'auto' T. */
23411
23412 inline hashval_t
23413 auto_hash::hash (tree t)
23414 {
23415 if (tree c = PLACEHOLDER_TYPE_CONSTRAINTS (t))
23416 /* Matching constrained-type-specifiers denote the same template
23417 parameter, so hash the constraint. */
23418 return hash_placeholder_constraint (c);
23419 else
23420 /* But unconstrained autos are all separate, so just hash the pointer. */
23421 return iterative_hash_object (t, 0);
23422 }
23423
23424 /* Compare two 'auto's. */
23425
23426 inline bool
23427 auto_hash::equal (tree t1, tree t2)
23428 {
23429 if (t1 == t2)
23430 return true;
23431
23432 tree c1 = PLACEHOLDER_TYPE_CONSTRAINTS (t1);
23433 tree c2 = PLACEHOLDER_TYPE_CONSTRAINTS (t2);
23434
23435 /* Two unconstrained autos are distinct. */
23436 if (!c1 || !c2)
23437 return false;
23438
23439 return equivalent_placeholder_constraints (c1, c2);
23440 }
23441
23442 /* for_each_template_parm callback for extract_autos: if t is a (possibly
23443 constrained) auto, add it to the vector. */
23444
23445 static int
23446 extract_autos_r (tree t, void *data)
23447 {
23448 hash_table<auto_hash> &hash = *(hash_table<auto_hash>*)data;
23449 if (is_auto_or_concept (t))
23450 {
23451 /* All the autos were built with index 0; fix that up now. */
23452 tree *p = hash.find_slot (t, INSERT);
23453 unsigned idx;
23454 if (*p)
23455 /* If this is a repeated constrained-type-specifier, use the index we
23456 chose before. */
23457 idx = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (*p));
23458 else
23459 {
23460 /* Otherwise this is new, so use the current count. */
23461 *p = t;
23462 idx = hash.elements () - 1;
23463 }
23464 TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (t)) = idx;
23465 }
23466
23467 /* Always keep walking. */
23468 return 0;
23469 }
23470
23471 /* Return a TREE_VEC of the 'auto's used in type under the Concepts TS, which
23472 says they can appear anywhere in the type. */
23473
23474 static tree
23475 extract_autos (tree type)
23476 {
23477 hash_set<tree> visited;
23478 hash_table<auto_hash> hash (2);
23479
23480 for_each_template_parm (type, extract_autos_r, &hash, &visited, true);
23481
23482 tree tree_vec = make_tree_vec (hash.elements());
23483 for (hash_table<auto_hash>::iterator iter = hash.begin();
23484 iter != hash.end(); ++iter)
23485 {
23486 tree elt = *iter;
23487 unsigned i = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (elt));
23488 TREE_VEC_ELT (tree_vec, i)
23489 = build_tree_list (NULL_TREE, TYPE_NAME (elt));
23490 }
23491
23492 return tree_vec;
23493 }
23494
23495 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23496 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
23497
23498 tree
23499 do_auto_deduction (tree type, tree init, tree auto_node)
23500 {
23501 return do_auto_deduction (type, init, auto_node,
23502 tf_warning_or_error,
23503 adc_unspecified);
23504 }
23505
23506 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23507 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE.
23508 The CONTEXT determines the context in which auto deduction is performed
23509 and is used to control error diagnostics. */
23510
23511 tree
23512 do_auto_deduction (tree type, tree init, tree auto_node,
23513 tsubst_flags_t complain, auto_deduction_context context)
23514 {
23515 tree targs;
23516
23517 if (init == error_mark_node)
23518 return error_mark_node;
23519
23520 if (type_dependent_expression_p (init))
23521 /* Defining a subset of type-dependent expressions that we can deduce
23522 from ahead of time isn't worth the trouble. */
23523 return type;
23524
23525 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
23526 with either a new invented type template parameter U or, if the
23527 initializer is a braced-init-list (8.5.4), with
23528 std::initializer_list<U>. */
23529 if (BRACE_ENCLOSED_INITIALIZER_P (init))
23530 {
23531 if (!DIRECT_LIST_INIT_P (init))
23532 type = listify_autos (type, auto_node);
23533 else if (CONSTRUCTOR_NELTS (init) == 1)
23534 init = CONSTRUCTOR_ELT (init, 0)->value;
23535 else
23536 {
23537 if (complain & tf_warning_or_error)
23538 {
23539 if (permerror (input_location, "direct-list-initialization of "
23540 "%<auto%> requires exactly one element"))
23541 inform (input_location,
23542 "for deduction to %<std::initializer_list%>, use copy-"
23543 "list-initialization (i.e. add %<=%> before the %<{%>)");
23544 }
23545 type = listify_autos (type, auto_node);
23546 }
23547 }
23548
23549 init = resolve_nondeduced_context (init);
23550
23551 if (AUTO_IS_DECLTYPE (auto_node))
23552 {
23553 bool id = (DECL_P (init) || (TREE_CODE (init) == COMPONENT_REF
23554 && !REF_PARENTHESIZED_P (init)));
23555 targs = make_tree_vec (1);
23556 TREE_VEC_ELT (targs, 0)
23557 = finish_decltype_type (init, id, tf_warning_or_error);
23558 if (type != auto_node)
23559 {
23560 if (complain & tf_error)
23561 error ("%qT as type rather than plain %<decltype(auto)%>", type);
23562 return error_mark_node;
23563 }
23564 }
23565 else
23566 {
23567 tree parms = build_tree_list (NULL_TREE, type);
23568 tree tparms;
23569
23570 if (flag_concepts)
23571 tparms = extract_autos (type);
23572 else
23573 {
23574 tparms = make_tree_vec (1);
23575 TREE_VEC_ELT (tparms, 0)
23576 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
23577 }
23578
23579 targs = make_tree_vec (TREE_VEC_LENGTH (tparms));
23580 int val = type_unification_real (tparms, targs, parms, &init, 1, 0,
23581 DEDUCE_CALL, LOOKUP_NORMAL,
23582 NULL, /*explain_p=*/false);
23583 if (val > 0)
23584 {
23585 if (processing_template_decl)
23586 /* Try again at instantiation time. */
23587 return type;
23588 if (type && type != error_mark_node
23589 && (complain & tf_error))
23590 /* If type is error_mark_node a diagnostic must have been
23591 emitted by now. Also, having a mention to '<type error>'
23592 in the diagnostic is not really useful to the user. */
23593 {
23594 if (cfun && auto_node == current_function_auto_return_pattern
23595 && LAMBDA_FUNCTION_P (current_function_decl))
23596 error ("unable to deduce lambda return type from %qE", init);
23597 else
23598 error ("unable to deduce %qT from %qE", type, init);
23599 type_unification_real (tparms, targs, parms, &init, 1, 0,
23600 DEDUCE_CALL, LOOKUP_NORMAL,
23601 NULL, /*explain_p=*/true);
23602 }
23603 return error_mark_node;
23604 }
23605 }
23606
23607 /* If the list of declarators contains more than one declarator, the type
23608 of each declared variable is determined as described above. If the
23609 type deduced for the template parameter U is not the same in each
23610 deduction, the program is ill-formed. */
23611 if (!flag_concepts && TREE_TYPE (auto_node)
23612 && !same_type_p (TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0)))
23613 {
23614 if (cfun && auto_node == current_function_auto_return_pattern
23615 && LAMBDA_FUNCTION_P (current_function_decl))
23616 error ("inconsistent types %qT and %qT deduced for "
23617 "lambda return type", TREE_TYPE (auto_node),
23618 TREE_VEC_ELT (targs, 0));
23619 else
23620 error ("inconsistent deduction for %qT: %qT and then %qT",
23621 auto_node, TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0));
23622 return error_mark_node;
23623 }
23624 if (!flag_concepts)
23625 TREE_TYPE (auto_node) = TREE_VEC_ELT (targs, 0);
23626
23627 /* Check any placeholder constraints against the deduced type. */
23628 if (flag_concepts && !processing_template_decl)
23629 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (auto_node))
23630 {
23631 /* Use the deduced type to check the associated constraints. */
23632 if (!constraints_satisfied_p (constr, targs))
23633 {
23634 if (complain & tf_warning_or_error)
23635 {
23636 switch (context)
23637 {
23638 case adc_unspecified:
23639 error("placeholder constraints not satisfied");
23640 break;
23641 case adc_variable_type:
23642 error ("deduced initializer does not satisfy "
23643 "placeholder constraints");
23644 break;
23645 case adc_return_type:
23646 error ("deduced return type does not satisfy "
23647 "placeholder constraints");
23648 break;
23649 case adc_requirement:
23650 error ("deduced expression type does not saatisy "
23651 "placeholder constraints");
23652 break;
23653 }
23654 diagnose_constraints (input_location, constr, targs);
23655 }
23656 return error_mark_node;
23657 }
23658 }
23659
23660 if (processing_template_decl)
23661 targs = add_to_template_args (current_template_args (), targs);
23662 return tsubst (type, targs, complain, NULL_TREE);
23663 }
23664
23665 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
23666 result. */
23667
23668 tree
23669 splice_late_return_type (tree type, tree late_return_type)
23670 {
23671 if (is_auto (type))
23672 {
23673 if (late_return_type)
23674 return late_return_type;
23675
23676 tree idx = get_template_parm_index (type);
23677 if (TEMPLATE_PARM_LEVEL (idx) <= processing_template_decl)
23678 /* In an abbreviated function template we didn't know we were dealing
23679 with a function template when we saw the auto return type, so update
23680 it to have the correct level. */
23681 return make_auto_1 (TYPE_IDENTIFIER (type));
23682 }
23683 return type;
23684 }
23685
23686 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
23687 'decltype(auto)'. */
23688
23689 bool
23690 is_auto (const_tree type)
23691 {
23692 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
23693 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
23694 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
23695 return true;
23696 else
23697 return false;
23698 }
23699
23700 /* for_each_template_parm callback for type_uses_auto. */
23701
23702 int
23703 is_auto_r (tree tp, void */*data*/)
23704 {
23705 return is_auto_or_concept (tp);
23706 }
23707
23708 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
23709 a use of `auto'. Returns NULL_TREE otherwise. */
23710
23711 tree
23712 type_uses_auto (tree type)
23713 {
23714 if (flag_concepts)
23715 {
23716 /* The Concepts TS allows multiple autos in one type-specifier; just
23717 return the first one we find, do_auto_deduction will collect all of
23718 them. */
23719 if (uses_template_parms (type))
23720 return for_each_template_parm (type, is_auto_r, /*data*/NULL,
23721 /*visited*/NULL, /*nondeduced*/true);
23722 else
23723 return NULL_TREE;
23724 }
23725 else
23726 return find_type_usage (type, is_auto);
23727 }
23728
23729 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
23730 'decltype(auto)' or a concept. */
23731
23732 bool
23733 is_auto_or_concept (const_tree type)
23734 {
23735 return is_auto (type); // or concept
23736 }
23737
23738 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
23739 a concept identifier) iff TYPE contains a use of a generic type. Returns
23740 NULL_TREE otherwise. */
23741
23742 tree
23743 type_uses_auto_or_concept (tree type)
23744 {
23745 return find_type_usage (type, is_auto_or_concept);
23746 }
23747
23748
23749 /* For a given template T, return the vector of typedefs referenced
23750 in T for which access check is needed at T instantiation time.
23751 T is either a FUNCTION_DECL or a RECORD_TYPE.
23752 Those typedefs were added to T by the function
23753 append_type_to_template_for_access_check. */
23754
23755 vec<qualified_typedef_usage_t, va_gc> *
23756 get_types_needing_access_check (tree t)
23757 {
23758 tree ti;
23759 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
23760
23761 if (!t || t == error_mark_node)
23762 return NULL;
23763
23764 if (!(ti = get_template_info (t)))
23765 return NULL;
23766
23767 if (CLASS_TYPE_P (t)
23768 || TREE_CODE (t) == FUNCTION_DECL)
23769 {
23770 if (!TI_TEMPLATE (ti))
23771 return NULL;
23772
23773 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
23774 }
23775
23776 return result;
23777 }
23778
23779 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
23780 tied to T. That list of typedefs will be access checked at
23781 T instantiation time.
23782 T is either a FUNCTION_DECL or a RECORD_TYPE.
23783 TYPE_DECL is a TYPE_DECL node representing a typedef.
23784 SCOPE is the scope through which TYPE_DECL is accessed.
23785 LOCATION is the location of the usage point of TYPE_DECL.
23786
23787 This function is a subroutine of
23788 append_type_to_template_for_access_check. */
23789
23790 static void
23791 append_type_to_template_for_access_check_1 (tree t,
23792 tree type_decl,
23793 tree scope,
23794 location_t location)
23795 {
23796 qualified_typedef_usage_t typedef_usage;
23797 tree ti;
23798
23799 if (!t || t == error_mark_node)
23800 return;
23801
23802 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
23803 || CLASS_TYPE_P (t))
23804 && type_decl
23805 && TREE_CODE (type_decl) == TYPE_DECL
23806 && scope);
23807
23808 if (!(ti = get_template_info (t)))
23809 return;
23810
23811 gcc_assert (TI_TEMPLATE (ti));
23812
23813 typedef_usage.typedef_decl = type_decl;
23814 typedef_usage.context = scope;
23815 typedef_usage.locus = location;
23816
23817 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
23818 }
23819
23820 /* Append TYPE_DECL to the template TEMPL.
23821 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
23822 At TEMPL instanciation time, TYPE_DECL will be checked to see
23823 if it can be accessed through SCOPE.
23824 LOCATION is the location of the usage point of TYPE_DECL.
23825
23826 e.g. consider the following code snippet:
23827
23828 class C
23829 {
23830 typedef int myint;
23831 };
23832
23833 template<class U> struct S
23834 {
23835 C::myint mi; // <-- usage point of the typedef C::myint
23836 };
23837
23838 S<char> s;
23839
23840 At S<char> instantiation time, we need to check the access of C::myint
23841 In other words, we need to check the access of the myint typedef through
23842 the C scope. For that purpose, this function will add the myint typedef
23843 and the scope C through which its being accessed to a list of typedefs
23844 tied to the template S. That list will be walked at template instantiation
23845 time and access check performed on each typedefs it contains.
23846 Note that this particular code snippet should yield an error because
23847 myint is private to C. */
23848
23849 void
23850 append_type_to_template_for_access_check (tree templ,
23851 tree type_decl,
23852 tree scope,
23853 location_t location)
23854 {
23855 qualified_typedef_usage_t *iter;
23856 unsigned i;
23857
23858 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
23859
23860 /* Make sure we don't append the type to the template twice. */
23861 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
23862 if (iter->typedef_decl == type_decl && scope == iter->context)
23863 return;
23864
23865 append_type_to_template_for_access_check_1 (templ, type_decl,
23866 scope, location);
23867 }
23868
23869 /* Convert the generic type parameters in PARM that match the types given in the
23870 range [START_IDX, END_IDX) from the current_template_parms into generic type
23871 packs. */
23872
23873 tree
23874 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
23875 {
23876 tree current = current_template_parms;
23877 int depth = TMPL_PARMS_DEPTH (current);
23878 current = INNERMOST_TEMPLATE_PARMS (current);
23879 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
23880
23881 for (int i = 0; i < start_idx; ++i)
23882 TREE_VEC_ELT (replacement, i)
23883 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
23884
23885 for (int i = start_idx; i < end_idx; ++i)
23886 {
23887 /* Create a distinct parameter pack type from the current parm and add it
23888 to the replacement args to tsubst below into the generic function
23889 parameter. */
23890
23891 tree o = TREE_TYPE (TREE_VALUE
23892 (TREE_VEC_ELT (current, i)));
23893 tree t = copy_type (o);
23894 TEMPLATE_TYPE_PARM_INDEX (t)
23895 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
23896 o, 0, 0, tf_none);
23897 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
23898 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
23899 TYPE_MAIN_VARIANT (t) = t;
23900 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
23901 TYPE_CANONICAL (t) = canonical_type_parameter (t);
23902 TREE_VEC_ELT (replacement, i) = t;
23903 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
23904 }
23905
23906 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
23907 TREE_VEC_ELT (replacement, i)
23908 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
23909
23910 /* If there are more levels then build up the replacement with the outer
23911 template parms. */
23912 if (depth > 1)
23913 replacement = add_to_template_args (template_parms_to_args
23914 (TREE_CHAIN (current_template_parms)),
23915 replacement);
23916
23917 return tsubst (parm, replacement, tf_none, NULL_TREE);
23918 }
23919
23920 /* Entries in the decl_constraint hash table. */
23921 struct GTY((for_user)) constr_entry
23922 {
23923 tree decl;
23924 tree ci;
23925 };
23926
23927 /* Hashing function and equality for constraint entries. */
23928 struct constr_hasher : ggc_ptr_hash<constr_entry>
23929 {
23930 static hashval_t hash (constr_entry *e)
23931 {
23932 return (hashval_t)DECL_UID (e->decl);
23933 }
23934
23935 static bool equal (constr_entry *e1, constr_entry *e2)
23936 {
23937 return e1->decl == e2->decl;
23938 }
23939 };
23940
23941 /* A mapping from declarations to constraint information. Note that
23942 both templates and their underlying declarations are mapped to the
23943 same constraint information.
23944
23945 FIXME: This is defined in pt.c because garbage collection
23946 code is not being generated for constraint.cc. */
23947
23948 static GTY (()) hash_table<constr_hasher> *decl_constraints;
23949
23950 /* Returns true iff cinfo contains a valid set of constraints.
23951 This is the case when the associated requirements have been
23952 successfully decomposed into lists of atomic constraints.
23953 That is, when the saved assumptions are not error_mark_node. */
23954
23955 bool
23956 valid_constraints_p (tree cinfo)
23957 {
23958 gcc_assert (cinfo);
23959 return CI_ASSUMPTIONS (cinfo) != error_mark_node;
23960 }
23961
23962 /* Returns the template constraints of declaration T. If T is not
23963 constrained, return NULL_TREE. Note that T must be non-null. */
23964
23965 tree
23966 get_constraints (tree t)
23967 {
23968 gcc_assert (DECL_P (t));
23969 if (TREE_CODE (t) == TEMPLATE_DECL)
23970 t = DECL_TEMPLATE_RESULT (t);
23971 constr_entry elt = { t, NULL_TREE };
23972 constr_entry* found = decl_constraints->find (&elt);
23973 if (found)
23974 return found->ci;
23975 else
23976 return NULL_TREE;
23977 }
23978
23979 /* Associate the given constraint information CI with the declaration
23980 T. If T is a template, then the constraints are associated with
23981 its underlying declaration. Don't build associations if CI is
23982 NULL_TREE. */
23983
23984 void
23985 set_constraints (tree t, tree ci)
23986 {
23987 if (!ci)
23988 return;
23989 gcc_assert (t);
23990 if (TREE_CODE (t) == TEMPLATE_DECL)
23991 t = DECL_TEMPLATE_RESULT (t);
23992 gcc_assert (!get_constraints (t));
23993 constr_entry elt = {t, ci};
23994 constr_entry** slot = decl_constraints->find_slot (&elt, INSERT);
23995 constr_entry* entry = ggc_alloc<constr_entry> ();
23996 *entry = elt;
23997 *slot = entry;
23998 }
23999
24000 /* Remove the associated constraints of the declaration T. */
24001
24002 void
24003 remove_constraints (tree t)
24004 {
24005 gcc_assert (DECL_P (t));
24006 if (TREE_CODE (t) == TEMPLATE_DECL)
24007 t = DECL_TEMPLATE_RESULT (t);
24008
24009 constr_entry elt = {t, NULL_TREE};
24010 constr_entry** slot = decl_constraints->find_slot (&elt, NO_INSERT);
24011 if (slot)
24012 decl_constraints->clear_slot (slot);
24013 }
24014
24015 /* Set up the hash table for constraint association. */
24016
24017 void
24018 init_constraint_processing (void)
24019 {
24020 decl_constraints = hash_table<constr_hasher>::create_ggc(37);
24021 }
24022
24023 /* Set up the hash tables for template instantiations. */
24024
24025 void
24026 init_template_processing (void)
24027 {
24028 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
24029 type_specializations = hash_table<spec_hasher>::create_ggc (37);
24030 }
24031
24032 /* Print stats about the template hash tables for -fstats. */
24033
24034 void
24035 print_template_statistics (void)
24036 {
24037 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
24038 "%f collisions\n", (long) decl_specializations->size (),
24039 (long) decl_specializations->elements (),
24040 decl_specializations->collisions ());
24041 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
24042 "%f collisions\n", (long) type_specializations->size (),
24043 (long) type_specializations->elements (),
24044 type_specializations->collisions ());
24045 }
24046
24047 #include "gt-cp-pt.h"