re PR c++/63693 (ICE in resolve_typename_type)
[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 "alias.h"
32 #include "tree.h"
33 #include "stringpool.h"
34 #include "varasm.h"
35 #include "attribs.h"
36 #include "stor-layout.h"
37 #include "intl.h"
38 #include "flags.h"
39 #include "cp-tree.h"
40 #include "c-family/c-common.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 "timevar.h"
47 #include "tree-iterator.h"
48 #include "type-utils.h"
49 #include "gimplify.h"
50
51 /* The type of functions taking a tree, and some additional data, and
52 returning an int. */
53 typedef int (*tree_fn_t) (tree, void*);
54
55 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
56 instantiations have been deferred, either because their definitions
57 were not yet available, or because we were putting off doing the work. */
58 struct GTY ((chain_next ("%h.next"))) pending_template {
59 struct pending_template *next;
60 struct tinst_level *tinst;
61 };
62
63 static GTY(()) struct pending_template *pending_templates;
64 static GTY(()) struct pending_template *last_pending_template;
65
66 int processing_template_parmlist;
67 static int template_header_count;
68
69 static GTY(()) tree saved_trees;
70 static vec<int> inline_parm_levels;
71
72 static GTY(()) struct tinst_level *current_tinst_level;
73
74 static GTY(()) tree saved_access_scope;
75
76 /* Live only within one (recursive) call to tsubst_expr. We use
77 this to pass the statement expression node from the STMT_EXPR
78 to the EXPR_STMT that is its result. */
79 static tree cur_stmt_expr;
80
81 // -------------------------------------------------------------------------- //
82 // Local Specialization Stack
83 //
84 // Implementation of the RAII helper for creating new local
85 // specializations.
86 local_specialization_stack::local_specialization_stack ()
87 : saved (local_specializations)
88 {
89 local_specializations = new hash_map<tree, tree>;
90 }
91
92 local_specialization_stack::~local_specialization_stack ()
93 {
94 delete local_specializations;
95 local_specializations = saved;
96 }
97
98 /* True if we've recursed into fn_type_unification too many times. */
99 static bool excessive_deduction_depth;
100
101 struct GTY((for_user)) spec_entry
102 {
103 tree tmpl;
104 tree args;
105 tree spec;
106 };
107
108 struct spec_hasher : ggc_ptr_hash<spec_entry>
109 {
110 static hashval_t hash (spec_entry *);
111 static bool equal (spec_entry *, spec_entry *);
112 };
113
114 static GTY (()) hash_table<spec_hasher> *decl_specializations;
115
116 static GTY (()) hash_table<spec_hasher> *type_specializations;
117
118 /* Contains canonical template parameter types. The vector is indexed by
119 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
120 TREE_LIST, whose TREE_VALUEs contain the canonical template
121 parameters of various types and levels. */
122 static GTY(()) vec<tree, va_gc> *canonical_template_parms;
123
124 #define UNIFY_ALLOW_NONE 0
125 #define UNIFY_ALLOW_MORE_CV_QUAL 1
126 #define UNIFY_ALLOW_LESS_CV_QUAL 2
127 #define UNIFY_ALLOW_DERIVED 4
128 #define UNIFY_ALLOW_INTEGER 8
129 #define UNIFY_ALLOW_OUTER_LEVEL 16
130 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
131 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
132
133 enum template_base_result {
134 tbr_incomplete_type,
135 tbr_ambiguous_baseclass,
136 tbr_success
137 };
138
139 static void push_access_scope (tree);
140 static void pop_access_scope (tree);
141 static bool resolve_overloaded_unification (tree, tree, tree, tree,
142 unification_kind_t, int,
143 bool);
144 static int try_one_overload (tree, tree, tree, tree, tree,
145 unification_kind_t, int, bool, bool);
146 static int unify (tree, tree, tree, tree, int, bool);
147 static void add_pending_template (tree);
148 static tree reopen_tinst_level (struct tinst_level *);
149 static tree tsubst_initializer_list (tree, tree);
150 static tree get_partial_spec_bindings (tree, tree, tree, tree);
151 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
152 bool, bool);
153 static tree coerce_innermost_template_parms (tree, tree, tree, tsubst_flags_t,
154 bool, bool);
155 static void tsubst_enum (tree, tree, tree);
156 static tree add_to_template_args (tree, tree);
157 static tree add_outermost_template_args (tree, tree);
158 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
159 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
160 tree);
161 static int type_unification_real (tree, tree, tree, const tree *,
162 unsigned int, int, unification_kind_t, int,
163 vec<deferred_access_check, va_gc> **,
164 bool);
165 static void note_template_header (int);
166 static tree convert_nontype_argument_function (tree, tree, tsubst_flags_t);
167 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
168 static tree convert_template_argument (tree, tree, tree,
169 tsubst_flags_t, int, tree);
170 static int for_each_template_parm (tree, tree_fn_t, void*,
171 hash_set<tree> *, bool);
172 static tree expand_template_argument_pack (tree);
173 static tree build_template_parm_index (int, int, int, tree, tree);
174 static bool inline_needs_template_parms (tree, bool);
175 static void push_inline_template_parms_recursive (tree, int);
176 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
177 static int mark_template_parm (tree, void *);
178 static int template_parm_this_level_p (tree, void *);
179 static tree tsubst_friend_function (tree, tree);
180 static tree tsubst_friend_class (tree, tree);
181 static int can_complete_type_without_circularity (tree);
182 static tree get_bindings (tree, tree, tree, bool);
183 static int template_decl_level (tree);
184 static int check_cv_quals_for_unify (int, tree, tree);
185 static void template_parm_level_and_index (tree, int*, int*);
186 static int unify_pack_expansion (tree, tree, tree,
187 tree, unification_kind_t, bool, bool);
188 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
189 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
190 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
191 static void regenerate_decl_from_template (tree, tree);
192 static tree most_specialized_partial_spec (tree, tsubst_flags_t);
193 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
194 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
195 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
196 static bool check_specialization_scope (void);
197 static tree process_partial_specialization (tree);
198 static void set_current_access_from_decl (tree);
199 static enum template_base_result get_template_base (tree, tree, tree, tree,
200 bool , tree *);
201 static tree try_class_unification (tree, tree, tree, tree, bool);
202 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
203 tree, tree);
204 static bool template_template_parm_bindings_ok_p (tree, tree);
205 static int template_args_equal (tree, tree);
206 static void tsubst_default_arguments (tree, tsubst_flags_t);
207 static tree for_each_template_parm_r (tree *, int *, void *);
208 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
209 static void copy_default_args_to_explicit_spec (tree);
210 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
211 static bool dependent_template_arg_p (tree);
212 static bool any_template_arguments_need_structural_equality_p (tree);
213 static bool dependent_type_p_r (tree);
214 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
215 static tree tsubst_decl (tree, tree, tsubst_flags_t);
216 static void perform_typedefs_access_check (tree tmpl, tree targs);
217 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
218 location_t);
219 static tree listify (tree);
220 static tree listify_autos (tree, tree);
221 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
222 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
223 static bool complex_alias_template_p (const_tree tmpl);
224
225 /* Make the current scope suitable for access checking when we are
226 processing T. T can be FUNCTION_DECL for instantiated function
227 template, VAR_DECL for static member variable, or TYPE_DECL for
228 alias template (needed by instantiate_decl). */
229
230 static void
231 push_access_scope (tree t)
232 {
233 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
234 || TREE_CODE (t) == TYPE_DECL);
235
236 if (DECL_FRIEND_CONTEXT (t))
237 push_nested_class (DECL_FRIEND_CONTEXT (t));
238 else if (DECL_CLASS_SCOPE_P (t))
239 push_nested_class (DECL_CONTEXT (t));
240 else
241 push_to_top_level ();
242
243 if (TREE_CODE (t) == FUNCTION_DECL)
244 {
245 saved_access_scope = tree_cons
246 (NULL_TREE, current_function_decl, saved_access_scope);
247 current_function_decl = t;
248 }
249 }
250
251 /* Restore the scope set up by push_access_scope. T is the node we
252 are processing. */
253
254 static void
255 pop_access_scope (tree t)
256 {
257 if (TREE_CODE (t) == FUNCTION_DECL)
258 {
259 current_function_decl = TREE_VALUE (saved_access_scope);
260 saved_access_scope = TREE_CHAIN (saved_access_scope);
261 }
262
263 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
264 pop_nested_class ();
265 else
266 pop_from_top_level ();
267 }
268
269 /* Do any processing required when DECL (a member template
270 declaration) is finished. Returns the TEMPLATE_DECL corresponding
271 to DECL, unless it is a specialization, in which case the DECL
272 itself is returned. */
273
274 tree
275 finish_member_template_decl (tree decl)
276 {
277 if (decl == error_mark_node)
278 return error_mark_node;
279
280 gcc_assert (DECL_P (decl));
281
282 if (TREE_CODE (decl) == TYPE_DECL)
283 {
284 tree type;
285
286 type = TREE_TYPE (decl);
287 if (type == error_mark_node)
288 return error_mark_node;
289 if (MAYBE_CLASS_TYPE_P (type)
290 && CLASSTYPE_TEMPLATE_INFO (type)
291 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
292 {
293 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
294 check_member_template (tmpl);
295 return tmpl;
296 }
297 return NULL_TREE;
298 }
299 else if (TREE_CODE (decl) == FIELD_DECL)
300 error ("data member %qD cannot be a member template", decl);
301 else if (DECL_TEMPLATE_INFO (decl))
302 {
303 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
304 {
305 check_member_template (DECL_TI_TEMPLATE (decl));
306 return DECL_TI_TEMPLATE (decl);
307 }
308 else
309 return decl;
310 }
311 else
312 error ("invalid member template declaration %qD", decl);
313
314 return error_mark_node;
315 }
316
317 /* Create a template info node. */
318
319 tree
320 build_template_info (tree template_decl, tree template_args)
321 {
322 tree result = make_node (TEMPLATE_INFO);
323 TI_TEMPLATE (result) = template_decl;
324 TI_ARGS (result) = template_args;
325 return result;
326 }
327
328 /* Return the template info node corresponding to T, whatever T is. */
329
330 tree
331 get_template_info (const_tree t)
332 {
333 tree tinfo = NULL_TREE;
334
335 if (!t || t == error_mark_node)
336 return NULL;
337
338 if (TREE_CODE (t) == NAMESPACE_DECL)
339 return NULL;
340
341 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
342 tinfo = DECL_TEMPLATE_INFO (t);
343
344 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
345 t = TREE_TYPE (t);
346
347 if (OVERLOAD_TYPE_P (t))
348 tinfo = TYPE_TEMPLATE_INFO (t);
349 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
350 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
351
352 return tinfo;
353 }
354
355 /* Returns the template nesting level of the indicated class TYPE.
356
357 For example, in:
358 template <class T>
359 struct A
360 {
361 template <class U>
362 struct B {};
363 };
364
365 A<T>::B<U> has depth two, while A<T> has depth one.
366 Both A<T>::B<int> and A<int>::B<U> have depth one, if
367 they are instantiations, not specializations.
368
369 This function is guaranteed to return 0 if passed NULL_TREE so
370 that, for example, `template_class_depth (current_class_type)' is
371 always safe. */
372
373 int
374 template_class_depth (tree type)
375 {
376 int depth;
377
378 for (depth = 0;
379 type && TREE_CODE (type) != NAMESPACE_DECL;
380 type = (TREE_CODE (type) == FUNCTION_DECL)
381 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
382 {
383 tree tinfo = get_template_info (type);
384
385 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
386 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
387 ++depth;
388 }
389
390 return depth;
391 }
392
393 /* Subroutine of maybe_begin_member_template_processing.
394 Returns true if processing DECL needs us to push template parms. */
395
396 static bool
397 inline_needs_template_parms (tree decl, bool nsdmi)
398 {
399 if (!decl || (!nsdmi && ! DECL_TEMPLATE_INFO (decl)))
400 return false;
401
402 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
403 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
404 }
405
406 /* Subroutine of maybe_begin_member_template_processing.
407 Push the template parms in PARMS, starting from LEVELS steps into the
408 chain, and ending at the beginning, since template parms are listed
409 innermost first. */
410
411 static void
412 push_inline_template_parms_recursive (tree parmlist, int levels)
413 {
414 tree parms = TREE_VALUE (parmlist);
415 int i;
416
417 if (levels > 1)
418 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
419
420 ++processing_template_decl;
421 current_template_parms
422 = tree_cons (size_int (processing_template_decl),
423 parms, current_template_parms);
424 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
425
426 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
427 NULL);
428 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
429 {
430 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
431
432 if (error_operand_p (parm))
433 continue;
434
435 gcc_assert (DECL_P (parm));
436
437 switch (TREE_CODE (parm))
438 {
439 case TYPE_DECL:
440 case TEMPLATE_DECL:
441 pushdecl (parm);
442 break;
443
444 case PARM_DECL:
445 {
446 /* Make a CONST_DECL as is done in process_template_parm.
447 It is ugly that we recreate this here; the original
448 version built in process_template_parm is no longer
449 available. */
450 tree decl = build_decl (DECL_SOURCE_LOCATION (parm),
451 CONST_DECL, DECL_NAME (parm),
452 TREE_TYPE (parm));
453 DECL_ARTIFICIAL (decl) = 1;
454 TREE_CONSTANT (decl) = 1;
455 TREE_READONLY (decl) = 1;
456 DECL_INITIAL (decl) = DECL_INITIAL (parm);
457 SET_DECL_TEMPLATE_PARM_P (decl);
458 pushdecl (decl);
459 }
460 break;
461
462 default:
463 gcc_unreachable ();
464 }
465 }
466 }
467
468 /* Restore the template parameter context for a member template, a
469 friend template defined in a class definition, or a non-template
470 member of template class. */
471
472 void
473 maybe_begin_member_template_processing (tree decl)
474 {
475 tree parms;
476 int levels = 0;
477 bool nsdmi = TREE_CODE (decl) == FIELD_DECL;
478
479 if (nsdmi)
480 {
481 tree ctx = DECL_CONTEXT (decl);
482 decl = (CLASSTYPE_TEMPLATE_INFO (ctx)
483 /* Disregard full specializations (c++/60999). */
484 && uses_template_parms (ctx)
485 ? CLASSTYPE_TI_TEMPLATE (ctx) : NULL_TREE);
486 }
487
488 if (inline_needs_template_parms (decl, nsdmi))
489 {
490 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
491 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
492
493 if (DECL_TEMPLATE_SPECIALIZATION (decl))
494 {
495 --levels;
496 parms = TREE_CHAIN (parms);
497 }
498
499 push_inline_template_parms_recursive (parms, levels);
500 }
501
502 /* Remember how many levels of template parameters we pushed so that
503 we can pop them later. */
504 inline_parm_levels.safe_push (levels);
505 }
506
507 /* Undo the effects of maybe_begin_member_template_processing. */
508
509 void
510 maybe_end_member_template_processing (void)
511 {
512 int i;
513 int last;
514
515 if (inline_parm_levels.length () == 0)
516 return;
517
518 last = inline_parm_levels.pop ();
519 for (i = 0; i < last; ++i)
520 {
521 --processing_template_decl;
522 current_template_parms = TREE_CHAIN (current_template_parms);
523 poplevel (0, 0, 0);
524 }
525 }
526
527 /* Return a new template argument vector which contains all of ARGS,
528 but has as its innermost set of arguments the EXTRA_ARGS. */
529
530 static tree
531 add_to_template_args (tree args, tree extra_args)
532 {
533 tree new_args;
534 int extra_depth;
535 int i;
536 int j;
537
538 if (args == NULL_TREE || extra_args == error_mark_node)
539 return extra_args;
540
541 extra_depth = TMPL_ARGS_DEPTH (extra_args);
542 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
543
544 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
545 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
546
547 for (j = 1; j <= extra_depth; ++j, ++i)
548 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
549
550 return new_args;
551 }
552
553 /* Like add_to_template_args, but only the outermost ARGS are added to
554 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
555 (EXTRA_ARGS) levels are added. This function is used to combine
556 the template arguments from a partial instantiation with the
557 template arguments used to attain the full instantiation from the
558 partial instantiation. */
559
560 static tree
561 add_outermost_template_args (tree args, tree extra_args)
562 {
563 tree new_args;
564
565 /* If there are more levels of EXTRA_ARGS than there are ARGS,
566 something very fishy is going on. */
567 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
568
569 /* If *all* the new arguments will be the EXTRA_ARGS, just return
570 them. */
571 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
572 return extra_args;
573
574 /* For the moment, we make ARGS look like it contains fewer levels. */
575 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
576
577 new_args = add_to_template_args (args, extra_args);
578
579 /* Now, we restore ARGS to its full dimensions. */
580 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
581
582 return new_args;
583 }
584
585 /* Return the N levels of innermost template arguments from the ARGS. */
586
587 tree
588 get_innermost_template_args (tree args, int n)
589 {
590 tree new_args;
591 int extra_levels;
592 int i;
593
594 gcc_assert (n >= 0);
595
596 /* If N is 1, just return the innermost set of template arguments. */
597 if (n == 1)
598 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
599
600 /* If we're not removing anything, just return the arguments we were
601 given. */
602 extra_levels = TMPL_ARGS_DEPTH (args) - n;
603 gcc_assert (extra_levels >= 0);
604 if (extra_levels == 0)
605 return args;
606
607 /* Make a new set of arguments, not containing the outer arguments. */
608 new_args = make_tree_vec (n);
609 for (i = 1; i <= n; ++i)
610 SET_TMPL_ARGS_LEVEL (new_args, i,
611 TMPL_ARGS_LEVEL (args, i + extra_levels));
612
613 return new_args;
614 }
615
616 /* The inverse of get_innermost_template_args: Return all but the innermost
617 EXTRA_LEVELS levels of template arguments from the ARGS. */
618
619 static tree
620 strip_innermost_template_args (tree args, int extra_levels)
621 {
622 tree new_args;
623 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
624 int i;
625
626 gcc_assert (n >= 0);
627
628 /* If N is 1, just return the outermost set of template arguments. */
629 if (n == 1)
630 return TMPL_ARGS_LEVEL (args, 1);
631
632 /* If we're not removing anything, just return the arguments we were
633 given. */
634 gcc_assert (extra_levels >= 0);
635 if (extra_levels == 0)
636 return args;
637
638 /* Make a new set of arguments, not containing the inner arguments. */
639 new_args = make_tree_vec (n);
640 for (i = 1; i <= n; ++i)
641 SET_TMPL_ARGS_LEVEL (new_args, i,
642 TMPL_ARGS_LEVEL (args, i));
643
644 return new_args;
645 }
646
647 /* We've got a template header coming up; push to a new level for storing
648 the parms. */
649
650 void
651 begin_template_parm_list (void)
652 {
653 /* We use a non-tag-transparent scope here, which causes pushtag to
654 put tags in this scope, rather than in the enclosing class or
655 namespace scope. This is the right thing, since we want
656 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
657 global template class, push_template_decl handles putting the
658 TEMPLATE_DECL into top-level scope. For a nested template class,
659 e.g.:
660
661 template <class T> struct S1 {
662 template <class T> struct S2 {};
663 };
664
665 pushtag contains special code to call pushdecl_with_scope on the
666 TEMPLATE_DECL for S2. */
667 begin_scope (sk_template_parms, NULL);
668 ++processing_template_decl;
669 ++processing_template_parmlist;
670 note_template_header (0);
671
672 /* Add a dummy parameter level while we process the parameter list. */
673 current_template_parms
674 = tree_cons (size_int (processing_template_decl),
675 make_tree_vec (0),
676 current_template_parms);
677 }
678
679 /* This routine is called when a specialization is declared. If it is
680 invalid to declare a specialization here, an error is reported and
681 false is returned, otherwise this routine will return true. */
682
683 static bool
684 check_specialization_scope (void)
685 {
686 tree scope = current_scope ();
687
688 /* [temp.expl.spec]
689
690 An explicit specialization shall be declared in the namespace of
691 which the template is a member, or, for member templates, in the
692 namespace of which the enclosing class or enclosing class
693 template is a member. An explicit specialization of a member
694 function, member class or static data member of a class template
695 shall be declared in the namespace of which the class template
696 is a member. */
697 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
698 {
699 error ("explicit specialization in non-namespace scope %qD", scope);
700 return false;
701 }
702
703 /* [temp.expl.spec]
704
705 In an explicit specialization declaration for a member of a class
706 template or a member template that appears in namespace scope,
707 the member template and some of its enclosing class templates may
708 remain unspecialized, except that the declaration shall not
709 explicitly specialize a class member template if its enclosing
710 class templates are not explicitly specialized as well. */
711 if (current_template_parms)
712 {
713 error ("enclosing class templates are not explicitly specialized");
714 return false;
715 }
716
717 return true;
718 }
719
720 /* We've just seen template <>. */
721
722 bool
723 begin_specialization (void)
724 {
725 begin_scope (sk_template_spec, NULL);
726 note_template_header (1);
727 return check_specialization_scope ();
728 }
729
730 /* Called at then end of processing a declaration preceded by
731 template<>. */
732
733 void
734 end_specialization (void)
735 {
736 finish_scope ();
737 reset_specialization ();
738 }
739
740 /* Any template <>'s that we have seen thus far are not referring to a
741 function specialization. */
742
743 void
744 reset_specialization (void)
745 {
746 processing_specialization = 0;
747 template_header_count = 0;
748 }
749
750 /* We've just seen a template header. If SPECIALIZATION is nonzero,
751 it was of the form template <>. */
752
753 static void
754 note_template_header (int specialization)
755 {
756 processing_specialization = specialization;
757 template_header_count++;
758 }
759
760 /* We're beginning an explicit instantiation. */
761
762 void
763 begin_explicit_instantiation (void)
764 {
765 gcc_assert (!processing_explicit_instantiation);
766 processing_explicit_instantiation = true;
767 }
768
769
770 void
771 end_explicit_instantiation (void)
772 {
773 gcc_assert (processing_explicit_instantiation);
774 processing_explicit_instantiation = false;
775 }
776
777 /* An explicit specialization or partial specialization of TMPL is being
778 declared. Check that the namespace in which the specialization is
779 occurring is permissible. Returns false iff it is invalid to
780 specialize TMPL in the current namespace. */
781
782 static bool
783 check_specialization_namespace (tree tmpl)
784 {
785 tree tpl_ns = decl_namespace_context (tmpl);
786
787 /* [tmpl.expl.spec]
788
789 An explicit specialization shall be declared in the namespace of
790 which the template is a member, or, for member templates, in the
791 namespace of which the enclosing class or enclosing class
792 template is a member. An explicit specialization of a member
793 function, member class or static data member of a class template
794 shall be declared in the namespace of which the class template is
795 a member. */
796 if (current_scope() != DECL_CONTEXT (tmpl)
797 && !at_namespace_scope_p ())
798 {
799 error ("specialization of %qD must appear at namespace scope", tmpl);
800 return false;
801 }
802 if (is_associated_namespace (current_namespace, tpl_ns))
803 /* Same or super-using namespace. */
804 return true;
805 else
806 {
807 permerror (input_location,
808 "specialization of %qD in different namespace", tmpl);
809 permerror (DECL_SOURCE_LOCATION (tmpl),
810 " from definition of %q#D", tmpl);
811 return false;
812 }
813 }
814
815 /* SPEC is an explicit instantiation. Check that it is valid to
816 perform this explicit instantiation in the current namespace. */
817
818 static void
819 check_explicit_instantiation_namespace (tree spec)
820 {
821 tree ns;
822
823 /* DR 275: An explicit instantiation shall appear in an enclosing
824 namespace of its template. */
825 ns = decl_namespace_context (spec);
826 if (!is_ancestor (current_namespace, ns))
827 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
828 "(which does not enclose namespace %qD)",
829 spec, current_namespace, ns);
830 }
831
832 // Returns the type of a template specialization only if that
833 // specialization needs to be defined. Otherwise (e.g., if the type has
834 // already been defined), the function returns NULL_TREE.
835 static tree
836 maybe_new_partial_specialization (tree type)
837 {
838 // An implicit instantiation of an incomplete type implies
839 // the definition of a new class template.
840 //
841 // template<typename T>
842 // struct S;
843 //
844 // template<typename T>
845 // struct S<T*>;
846 //
847 // Here, S<T*> is an implicit instantiation of S whose type
848 // is incomplete.
849 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type) && !COMPLETE_TYPE_P (type))
850 return type;
851
852 // It can also be the case that TYPE is a completed specialization.
853 // Continuing the previous example, suppose we also declare:
854 //
855 // template<typename T>
856 // requires Integral<T>
857 // struct S<T*>;
858 //
859 // Here, S<T*> refers to the specialization S<T*> defined
860 // above. However, we need to differentiate definitions because
861 // we intend to define a new partial specialization. In this case,
862 // we rely on the fact that the constraints are different for
863 // this declaration than that above.
864 //
865 // Note that we also get here for injected class names and
866 // late-parsed template definitions. We must ensure that we
867 // do not create new type declarations for those cases.
868 if (flag_concepts && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
869 {
870 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
871 tree args = CLASSTYPE_TI_ARGS (type);
872
873 // If there are no template parameters, this cannot be a new
874 // partial template specializtion?
875 if (!current_template_parms)
876 return NULL_TREE;
877
878 // If the constraints are not the same as those of the primary
879 // then, we can probably create a new specialization.
880 tree type_constr = current_template_constraints ();
881
882 if (type == TREE_TYPE (tmpl))
883 if (tree main_constr = get_constraints (tmpl))
884 if (equivalent_constraints (type_constr, main_constr))
885 return NULL_TREE;
886
887 // Also, if there's a pre-existing specialization with matching
888 // constraints, then this also isn't new.
889 tree specs = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
890 while (specs)
891 {
892 tree spec_tmpl = TREE_VALUE (specs);
893 tree spec_args = TREE_PURPOSE (specs);
894 tree spec_constr = get_constraints (spec_tmpl);
895 if (comp_template_args (args, spec_args)
896 && equivalent_constraints (type_constr, spec_constr))
897 return NULL_TREE;
898 specs = TREE_CHAIN (specs);
899 }
900
901 // Create a new type node (and corresponding type decl)
902 // for the newly declared specialization.
903 tree t = make_class_type (TREE_CODE (type));
904 CLASSTYPE_DECLARED_CLASS (t) = CLASSTYPE_DECLARED_CLASS (type);
905 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (type);
906 SET_TYPE_TEMPLATE_INFO (t, build_template_info (tmpl, args));
907
908 /* We only need a separate type node for storing the definition of this
909 partial specialization; uses of S<T*> are unconstrained, so all are
910 equivalent. So keep TYPE_CANONICAL the same. */
911 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
912
913 // Build the corresponding type decl.
914 tree d = create_implicit_typedef (DECL_NAME (tmpl), t);
915 DECL_CONTEXT (d) = TYPE_CONTEXT (t);
916 DECL_SOURCE_LOCATION (d) = input_location;
917
918 return t;
919 }
920
921 return NULL_TREE;
922 }
923
924 /* The TYPE is being declared. If it is a template type, that means it
925 is a partial specialization. Do appropriate error-checking. */
926
927 tree
928 maybe_process_partial_specialization (tree type)
929 {
930 tree context;
931
932 if (type == error_mark_node)
933 return error_mark_node;
934
935 /* A lambda that appears in specialization context is not itself a
936 specialization. */
937 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
938 return type;
939
940 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
941 {
942 error ("name of class shadows template template parameter %qD",
943 TYPE_NAME (type));
944 return error_mark_node;
945 }
946
947 context = TYPE_CONTEXT (type);
948
949 if (TYPE_ALIAS_P (type))
950 {
951 if (TYPE_TEMPLATE_INFO (type)
952 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
953 error ("specialization of alias template %qD",
954 TYPE_TI_TEMPLATE (type));
955 else
956 error ("explicit specialization of non-template %qT", type);
957 return error_mark_node;
958 }
959 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
960 {
961 /* This is for ordinary explicit specialization and partial
962 specialization of a template class such as:
963
964 template <> class C<int>;
965
966 or:
967
968 template <class T> class C<T*>;
969
970 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
971
972 if (tree t = maybe_new_partial_specialization (type))
973 {
974 if (!check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (t))
975 && !at_namespace_scope_p ())
976 return error_mark_node;
977 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
978 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (t)) = input_location;
979 if (processing_template_decl)
980 {
981 tree decl = push_template_decl (TYPE_MAIN_DECL (t));
982 if (decl == error_mark_node)
983 return error_mark_node;
984 return TREE_TYPE (decl);
985 }
986 }
987 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
988 error ("specialization of %qT after instantiation", type);
989 else if (errorcount && !processing_specialization
990 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
991 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
992 /* Trying to define a specialization either without a template<> header
993 or in an inappropriate place. We've already given an error, so just
994 bail now so we don't actually define the specialization. */
995 return error_mark_node;
996 }
997 else if (CLASS_TYPE_P (type)
998 && !CLASSTYPE_USE_TEMPLATE (type)
999 && CLASSTYPE_TEMPLATE_INFO (type)
1000 && context && CLASS_TYPE_P (context)
1001 && CLASSTYPE_TEMPLATE_INFO (context))
1002 {
1003 /* This is for an explicit specialization of member class
1004 template according to [temp.expl.spec/18]:
1005
1006 template <> template <class U> class C<int>::D;
1007
1008 The context `C<int>' must be an implicit instantiation.
1009 Otherwise this is just a member class template declared
1010 earlier like:
1011
1012 template <> class C<int> { template <class U> class D; };
1013 template <> template <class U> class C<int>::D;
1014
1015 In the first case, `C<int>::D' is a specialization of `C<T>::D'
1016 while in the second case, `C<int>::D' is a primary template
1017 and `C<T>::D' may not exist. */
1018
1019 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
1020 && !COMPLETE_TYPE_P (type))
1021 {
1022 tree t;
1023 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
1024
1025 if (current_namespace
1026 != decl_namespace_context (tmpl))
1027 {
1028 permerror (input_location,
1029 "specializing %q#T in different namespace", type);
1030 permerror (DECL_SOURCE_LOCATION (tmpl),
1031 " from definition of %q#D", tmpl);
1032 }
1033
1034 /* Check for invalid specialization after instantiation:
1035
1036 template <> template <> class C<int>::D<int>;
1037 template <> template <class U> class C<int>::D; */
1038
1039 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
1040 t; t = TREE_CHAIN (t))
1041 {
1042 tree inst = TREE_VALUE (t);
1043 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst)
1044 || !COMPLETE_OR_OPEN_TYPE_P (inst))
1045 {
1046 /* We already have a full specialization of this partial
1047 instantiation, or a full specialization has been
1048 looked up but not instantiated. Reassign it to the
1049 new member specialization template. */
1050 spec_entry elt;
1051 spec_entry *entry;
1052
1053 elt.tmpl = most_general_template (tmpl);
1054 elt.args = CLASSTYPE_TI_ARGS (inst);
1055 elt.spec = inst;
1056
1057 type_specializations->remove_elt (&elt);
1058
1059 elt.tmpl = tmpl;
1060 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
1061
1062 spec_entry **slot
1063 = type_specializations->find_slot (&elt, INSERT);
1064 entry = ggc_alloc<spec_entry> ();
1065 *entry = elt;
1066 *slot = entry;
1067 }
1068 else
1069 /* But if we've had an implicit instantiation, that's a
1070 problem ([temp.expl.spec]/6). */
1071 error ("specialization %qT after instantiation %qT",
1072 type, inst);
1073 }
1074
1075 /* Mark TYPE as a specialization. And as a result, we only
1076 have one level of template argument for the innermost
1077 class template. */
1078 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
1079 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
1080 CLASSTYPE_TI_ARGS (type)
1081 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
1082 }
1083 }
1084 else if (processing_specialization)
1085 {
1086 /* Someday C++0x may allow for enum template specialization. */
1087 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
1088 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
1089 pedwarn (input_location, OPT_Wpedantic, "template specialization "
1090 "of %qD not allowed by ISO C++", type);
1091 else
1092 {
1093 error ("explicit specialization of non-template %qT", type);
1094 return error_mark_node;
1095 }
1096 }
1097
1098 return type;
1099 }
1100
1101 /* Returns nonzero if we can optimize the retrieval of specializations
1102 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
1103 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
1104
1105 static inline bool
1106 optimize_specialization_lookup_p (tree tmpl)
1107 {
1108 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
1109 && DECL_CLASS_SCOPE_P (tmpl)
1110 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
1111 parameter. */
1112 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
1113 /* The optimized lookup depends on the fact that the
1114 template arguments for the member function template apply
1115 purely to the containing class, which is not true if the
1116 containing class is an explicit or partial
1117 specialization. */
1118 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
1119 && !DECL_MEMBER_TEMPLATE_P (tmpl)
1120 && !DECL_CONV_FN_P (tmpl)
1121 /* It is possible to have a template that is not a member
1122 template and is not a member of a template class:
1123
1124 template <typename T>
1125 struct S { friend A::f(); };
1126
1127 Here, the friend function is a template, but the context does
1128 not have template information. The optimized lookup relies
1129 on having ARGS be the template arguments for both the class
1130 and the function template. */
1131 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
1132 }
1133
1134 /* Make sure ARGS doesn't use any inappropriate typedefs; we should have
1135 gone through coerce_template_parms by now. */
1136
1137 static void
1138 check_unstripped_args (tree args ATTRIBUTE_UNUSED)
1139 {
1140 #ifdef ENABLE_CHECKING
1141 ++processing_template_decl;
1142 if (!any_dependent_template_arguments_p (args))
1143 {
1144 tree inner = INNERMOST_TEMPLATE_ARGS (args);
1145 for (int i = 0; i < TREE_VEC_LENGTH (inner); ++i)
1146 {
1147 tree arg = TREE_VEC_ELT (inner, i);
1148 if (TREE_CODE (arg) == TEMPLATE_DECL)
1149 /* OK */;
1150 else if (TYPE_P (arg))
1151 gcc_assert (strip_typedefs (arg, NULL) == arg);
1152 else if (strip_typedefs (TREE_TYPE (arg), NULL) != TREE_TYPE (arg))
1153 /* Allow typedefs on the type of a non-type argument, since a
1154 parameter can have them. */;
1155 else
1156 gcc_assert (strip_typedefs_expr (arg, NULL) == arg);
1157 }
1158 }
1159 --processing_template_decl;
1160 #endif
1161 }
1162
1163 /* Retrieve the specialization (in the sense of [temp.spec] - a
1164 specialization is either an instantiation or an explicit
1165 specialization) of TMPL for the given template ARGS. If there is
1166 no such specialization, return NULL_TREE. The ARGS are a vector of
1167 arguments, or a vector of vectors of arguments, in the case of
1168 templates with more than one level of parameters.
1169
1170 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1171 then we search for a partial specialization matching ARGS. This
1172 parameter is ignored if TMPL is not a class template.
1173
1174 We can also look up a FIELD_DECL, if it is a lambda capture pack; the
1175 result is a NONTYPE_ARGUMENT_PACK. */
1176
1177 static tree
1178 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1179 {
1180 if (tmpl == NULL_TREE)
1181 return NULL_TREE;
1182
1183 if (args == error_mark_node)
1184 return NULL_TREE;
1185
1186 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL
1187 || TREE_CODE (tmpl) == FIELD_DECL);
1188
1189 /* There should be as many levels of arguments as there are
1190 levels of parameters. */
1191 gcc_assert (TMPL_ARGS_DEPTH (args)
1192 == (TREE_CODE (tmpl) == TEMPLATE_DECL
1193 ? TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl))
1194 : template_class_depth (DECL_CONTEXT (tmpl))));
1195
1196 check_unstripped_args (args);
1197
1198 if (optimize_specialization_lookup_p (tmpl))
1199 {
1200 tree class_template;
1201 tree class_specialization;
1202 vec<tree, va_gc> *methods;
1203 tree fns;
1204 int idx;
1205
1206 /* The template arguments actually apply to the containing
1207 class. Find the class specialization with those
1208 arguments. */
1209 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1210 class_specialization
1211 = retrieve_specialization (class_template, args, 0);
1212 if (!class_specialization)
1213 return NULL_TREE;
1214 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1215 for the specialization. */
1216 idx = class_method_index_for_fn (class_specialization, tmpl);
1217 if (idx == -1)
1218 return NULL_TREE;
1219 /* Iterate through the methods with the indicated name, looking
1220 for the one that has an instance of TMPL. */
1221 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1222 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1223 {
1224 tree fn = OVL_CURRENT (fns);
1225 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1226 /* using-declarations can add base methods to the method vec,
1227 and we don't want those here. */
1228 && DECL_CONTEXT (fn) == class_specialization)
1229 return fn;
1230 }
1231 return NULL_TREE;
1232 }
1233 else
1234 {
1235 spec_entry *found;
1236 spec_entry elt;
1237 hash_table<spec_hasher> *specializations;
1238
1239 elt.tmpl = tmpl;
1240 elt.args = args;
1241 elt.spec = NULL_TREE;
1242
1243 if (DECL_CLASS_TEMPLATE_P (tmpl))
1244 specializations = type_specializations;
1245 else
1246 specializations = decl_specializations;
1247
1248 if (hash == 0)
1249 hash = spec_hasher::hash (&elt);
1250 found = specializations->find_with_hash (&elt, hash);
1251 if (found)
1252 return found->spec;
1253 }
1254
1255 return NULL_TREE;
1256 }
1257
1258 /* Like retrieve_specialization, but for local declarations. */
1259
1260 tree
1261 retrieve_local_specialization (tree tmpl)
1262 {
1263 if (local_specializations == NULL)
1264 return NULL_TREE;
1265
1266 tree *slot = local_specializations->get (tmpl);
1267 return slot ? *slot : NULL_TREE;
1268 }
1269
1270 /* Returns nonzero iff DECL is a specialization of TMPL. */
1271
1272 int
1273 is_specialization_of (tree decl, tree tmpl)
1274 {
1275 tree t;
1276
1277 if (TREE_CODE (decl) == FUNCTION_DECL)
1278 {
1279 for (t = decl;
1280 t != NULL_TREE;
1281 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1282 if (t == tmpl)
1283 return 1;
1284 }
1285 else
1286 {
1287 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1288
1289 for (t = TREE_TYPE (decl);
1290 t != NULL_TREE;
1291 t = CLASSTYPE_USE_TEMPLATE (t)
1292 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1293 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1294 return 1;
1295 }
1296
1297 return 0;
1298 }
1299
1300 /* Returns nonzero iff DECL is a specialization of friend declaration
1301 FRIEND_DECL according to [temp.friend]. */
1302
1303 bool
1304 is_specialization_of_friend (tree decl, tree friend_decl)
1305 {
1306 bool need_template = true;
1307 int template_depth;
1308
1309 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1310 || TREE_CODE (decl) == TYPE_DECL);
1311
1312 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1313 of a template class, we want to check if DECL is a specialization
1314 if this. */
1315 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1316 && DECL_TEMPLATE_INFO (friend_decl)
1317 && !DECL_USE_TEMPLATE (friend_decl))
1318 {
1319 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1320 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1321 need_template = false;
1322 }
1323 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1324 && !PRIMARY_TEMPLATE_P (friend_decl))
1325 need_template = false;
1326
1327 /* There is nothing to do if this is not a template friend. */
1328 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1329 return false;
1330
1331 if (is_specialization_of (decl, friend_decl))
1332 return true;
1333
1334 /* [temp.friend/6]
1335 A member of a class template may be declared to be a friend of a
1336 non-template class. In this case, the corresponding member of
1337 every specialization of the class template is a friend of the
1338 class granting friendship.
1339
1340 For example, given a template friend declaration
1341
1342 template <class T> friend void A<T>::f();
1343
1344 the member function below is considered a friend
1345
1346 template <> struct A<int> {
1347 void f();
1348 };
1349
1350 For this type of template friend, TEMPLATE_DEPTH below will be
1351 nonzero. To determine if DECL is a friend of FRIEND, we first
1352 check if the enclosing class is a specialization of another. */
1353
1354 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1355 if (template_depth
1356 && DECL_CLASS_SCOPE_P (decl)
1357 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1358 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1359 {
1360 /* Next, we check the members themselves. In order to handle
1361 a few tricky cases, such as when FRIEND_DECL's are
1362
1363 template <class T> friend void A<T>::g(T t);
1364 template <class T> template <T t> friend void A<T>::h();
1365
1366 and DECL's are
1367
1368 void A<int>::g(int);
1369 template <int> void A<int>::h();
1370
1371 we need to figure out ARGS, the template arguments from
1372 the context of DECL. This is required for template substitution
1373 of `T' in the function parameter of `g' and template parameter
1374 of `h' in the above examples. Here ARGS corresponds to `int'. */
1375
1376 tree context = DECL_CONTEXT (decl);
1377 tree args = NULL_TREE;
1378 int current_depth = 0;
1379
1380 while (current_depth < template_depth)
1381 {
1382 if (CLASSTYPE_TEMPLATE_INFO (context))
1383 {
1384 if (current_depth == 0)
1385 args = TYPE_TI_ARGS (context);
1386 else
1387 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1388 current_depth++;
1389 }
1390 context = TYPE_CONTEXT (context);
1391 }
1392
1393 if (TREE_CODE (decl) == FUNCTION_DECL)
1394 {
1395 bool is_template;
1396 tree friend_type;
1397 tree decl_type;
1398 tree friend_args_type;
1399 tree decl_args_type;
1400
1401 /* Make sure that both DECL and FRIEND_DECL are templates or
1402 non-templates. */
1403 is_template = DECL_TEMPLATE_INFO (decl)
1404 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1405 if (need_template ^ is_template)
1406 return false;
1407 else if (is_template)
1408 {
1409 /* If both are templates, check template parameter list. */
1410 tree friend_parms
1411 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1412 args, tf_none);
1413 if (!comp_template_parms
1414 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1415 friend_parms))
1416 return false;
1417
1418 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1419 }
1420 else
1421 decl_type = TREE_TYPE (decl);
1422
1423 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1424 tf_none, NULL_TREE);
1425 if (friend_type == error_mark_node)
1426 return false;
1427
1428 /* Check if return types match. */
1429 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1430 return false;
1431
1432 /* Check if function parameter types match, ignoring the
1433 `this' parameter. */
1434 friend_args_type = TYPE_ARG_TYPES (friend_type);
1435 decl_args_type = TYPE_ARG_TYPES (decl_type);
1436 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1437 friend_args_type = TREE_CHAIN (friend_args_type);
1438 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1439 decl_args_type = TREE_CHAIN (decl_args_type);
1440
1441 return compparms (decl_args_type, friend_args_type);
1442 }
1443 else
1444 {
1445 /* DECL is a TYPE_DECL */
1446 bool is_template;
1447 tree decl_type = TREE_TYPE (decl);
1448
1449 /* Make sure that both DECL and FRIEND_DECL are templates or
1450 non-templates. */
1451 is_template
1452 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1453 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1454
1455 if (need_template ^ is_template)
1456 return false;
1457 else if (is_template)
1458 {
1459 tree friend_parms;
1460 /* If both are templates, check the name of the two
1461 TEMPLATE_DECL's first because is_friend didn't. */
1462 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1463 != DECL_NAME (friend_decl))
1464 return false;
1465
1466 /* Now check template parameter list. */
1467 friend_parms
1468 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1469 args, tf_none);
1470 return comp_template_parms
1471 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1472 friend_parms);
1473 }
1474 else
1475 return (DECL_NAME (decl)
1476 == DECL_NAME (friend_decl));
1477 }
1478 }
1479 return false;
1480 }
1481
1482 /* Register the specialization SPEC as a specialization of TMPL with
1483 the indicated ARGS. IS_FRIEND indicates whether the specialization
1484 is actually just a friend declaration. Returns SPEC, or an
1485 equivalent prior declaration, if available.
1486
1487 We also store instantiations of field packs in the hash table, even
1488 though they are not themselves templates, to make lookup easier. */
1489
1490 static tree
1491 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1492 hashval_t hash)
1493 {
1494 tree fn;
1495 spec_entry **slot = NULL;
1496 spec_entry elt;
1497
1498 gcc_assert ((TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec))
1499 || (TREE_CODE (tmpl) == FIELD_DECL
1500 && TREE_CODE (spec) == NONTYPE_ARGUMENT_PACK));
1501
1502 if (TREE_CODE (spec) == FUNCTION_DECL
1503 && uses_template_parms (DECL_TI_ARGS (spec)))
1504 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1505 register it; we want the corresponding TEMPLATE_DECL instead.
1506 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1507 the more obvious `uses_template_parms (spec)' to avoid problems
1508 with default function arguments. In particular, given
1509 something like this:
1510
1511 template <class T> void f(T t1, T t = T())
1512
1513 the default argument expression is not substituted for in an
1514 instantiation unless and until it is actually needed. */
1515 return spec;
1516
1517 if (optimize_specialization_lookup_p (tmpl))
1518 /* We don't put these specializations in the hash table, but we might
1519 want to give an error about a mismatch. */
1520 fn = retrieve_specialization (tmpl, args, 0);
1521 else
1522 {
1523 elt.tmpl = tmpl;
1524 elt.args = args;
1525 elt.spec = spec;
1526
1527 if (hash == 0)
1528 hash = spec_hasher::hash (&elt);
1529
1530 slot =
1531 decl_specializations->find_slot_with_hash (&elt, hash, INSERT);
1532 if (*slot)
1533 fn = ((spec_entry *) *slot)->spec;
1534 else
1535 fn = NULL_TREE;
1536 }
1537
1538 /* We can sometimes try to re-register a specialization that we've
1539 already got. In particular, regenerate_decl_from_template calls
1540 duplicate_decls which will update the specialization list. But,
1541 we'll still get called again here anyhow. It's more convenient
1542 to simply allow this than to try to prevent it. */
1543 if (fn == spec)
1544 return spec;
1545 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1546 {
1547 if (DECL_TEMPLATE_INSTANTIATION (fn))
1548 {
1549 if (DECL_ODR_USED (fn)
1550 || DECL_EXPLICIT_INSTANTIATION (fn))
1551 {
1552 error ("specialization of %qD after instantiation",
1553 fn);
1554 return error_mark_node;
1555 }
1556 else
1557 {
1558 tree clone;
1559 /* This situation should occur only if the first
1560 specialization is an implicit instantiation, the
1561 second is an explicit specialization, and the
1562 implicit instantiation has not yet been used. That
1563 situation can occur if we have implicitly
1564 instantiated a member function and then specialized
1565 it later.
1566
1567 We can also wind up here if a friend declaration that
1568 looked like an instantiation turns out to be a
1569 specialization:
1570
1571 template <class T> void foo(T);
1572 class S { friend void foo<>(int) };
1573 template <> void foo(int);
1574
1575 We transform the existing DECL in place so that any
1576 pointers to it become pointers to the updated
1577 declaration.
1578
1579 If there was a definition for the template, but not
1580 for the specialization, we want this to look as if
1581 there were no definition, and vice versa. */
1582 DECL_INITIAL (fn) = NULL_TREE;
1583 duplicate_decls (spec, fn, is_friend);
1584 /* The call to duplicate_decls will have applied
1585 [temp.expl.spec]:
1586
1587 An explicit specialization of a function template
1588 is inline only if it is explicitly declared to be,
1589 and independently of whether its function template
1590 is.
1591
1592 to the primary function; now copy the inline bits to
1593 the various clones. */
1594 FOR_EACH_CLONE (clone, fn)
1595 {
1596 DECL_DECLARED_INLINE_P (clone)
1597 = DECL_DECLARED_INLINE_P (fn);
1598 DECL_SOURCE_LOCATION (clone)
1599 = DECL_SOURCE_LOCATION (fn);
1600 DECL_DELETED_FN (clone)
1601 = DECL_DELETED_FN (fn);
1602 }
1603 check_specialization_namespace (tmpl);
1604
1605 return fn;
1606 }
1607 }
1608 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1609 {
1610 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1611 /* Dup decl failed, but this is a new definition. Set the
1612 line number so any errors match this new
1613 definition. */
1614 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1615
1616 return fn;
1617 }
1618 }
1619 else if (fn)
1620 return duplicate_decls (spec, fn, is_friend);
1621
1622 /* A specialization must be declared in the same namespace as the
1623 template it is specializing. */
1624 if (DECL_P (spec) && DECL_TEMPLATE_SPECIALIZATION (spec)
1625 && !check_specialization_namespace (tmpl))
1626 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1627
1628 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1629 {
1630 spec_entry *entry = ggc_alloc<spec_entry> ();
1631 gcc_assert (tmpl && args && spec);
1632 *entry = elt;
1633 *slot = entry;
1634 if ((TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1635 && PRIMARY_TEMPLATE_P (tmpl)
1636 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1637 || variable_template_p (tmpl))
1638 /* If TMPL is a forward declaration of a template function, keep a list
1639 of all specializations in case we need to reassign them to a friend
1640 template later in tsubst_friend_function.
1641
1642 Also keep a list of all variable template instantiations so that
1643 process_partial_specialization can check whether a later partial
1644 specialization would have used it. */
1645 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1646 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1647 }
1648
1649 return spec;
1650 }
1651
1652 /* Returns true iff two spec_entry nodes are equivalent. */
1653
1654 int comparing_specializations;
1655
1656 bool
1657 spec_hasher::equal (spec_entry *e1, spec_entry *e2)
1658 {
1659 int equal;
1660
1661 ++comparing_specializations;
1662 equal = (e1->tmpl == e2->tmpl
1663 && comp_template_args (e1->args, e2->args));
1664 if (equal && flag_concepts
1665 /* tmpl could be a FIELD_DECL for a capture pack. */
1666 && TREE_CODE (e1->tmpl) == TEMPLATE_DECL
1667 && VAR_P (DECL_TEMPLATE_RESULT (e1->tmpl))
1668 && uses_template_parms (e1->args))
1669 {
1670 /* Partial specializations of a variable template can be distinguished by
1671 constraints. */
1672 tree c1 = e1->spec ? get_constraints (e1->spec) : NULL_TREE;
1673 tree c2 = e2->spec ? get_constraints (e2->spec) : NULL_TREE;
1674 equal = equivalent_constraints (c1, c2);
1675 }
1676 --comparing_specializations;
1677
1678 return equal;
1679 }
1680
1681 /* Returns a hash for a template TMPL and template arguments ARGS. */
1682
1683 static hashval_t
1684 hash_tmpl_and_args (tree tmpl, tree args)
1685 {
1686 hashval_t val = DECL_UID (tmpl);
1687 return iterative_hash_template_arg (args, val);
1688 }
1689
1690 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1691 ignoring SPEC. */
1692
1693 hashval_t
1694 spec_hasher::hash (spec_entry *e)
1695 {
1696 return hash_tmpl_and_args (e->tmpl, e->args);
1697 }
1698
1699 /* Recursively calculate a hash value for a template argument ARG, for use
1700 in the hash tables of template specializations. */
1701
1702 hashval_t
1703 iterative_hash_template_arg (tree arg, hashval_t val)
1704 {
1705 unsigned HOST_WIDE_INT i;
1706 enum tree_code code;
1707 char tclass;
1708
1709 if (arg == NULL_TREE)
1710 return iterative_hash_object (arg, val);
1711
1712 if (!TYPE_P (arg))
1713 STRIP_NOPS (arg);
1714
1715 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1716 /* We can get one of these when re-hashing a previous entry in the middle
1717 of substituting into a pack expansion. Just look through it. */
1718 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1719
1720 code = TREE_CODE (arg);
1721 tclass = TREE_CODE_CLASS (code);
1722
1723 val = iterative_hash_object (code, val);
1724
1725 switch (code)
1726 {
1727 case ERROR_MARK:
1728 return val;
1729
1730 case IDENTIFIER_NODE:
1731 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1732
1733 case TREE_VEC:
1734 {
1735 int i, len = TREE_VEC_LENGTH (arg);
1736 for (i = 0; i < len; ++i)
1737 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1738 return val;
1739 }
1740
1741 case TYPE_PACK_EXPANSION:
1742 case EXPR_PACK_EXPANSION:
1743 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1744 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1745
1746 case TYPE_ARGUMENT_PACK:
1747 case NONTYPE_ARGUMENT_PACK:
1748 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1749
1750 case TREE_LIST:
1751 for (; arg; arg = TREE_CHAIN (arg))
1752 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1753 return val;
1754
1755 case OVERLOAD:
1756 for (; arg; arg = OVL_NEXT (arg))
1757 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1758 return val;
1759
1760 case CONSTRUCTOR:
1761 {
1762 tree field, value;
1763 iterative_hash_template_arg (TREE_TYPE (arg), val);
1764 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1765 {
1766 val = iterative_hash_template_arg (field, val);
1767 val = iterative_hash_template_arg (value, val);
1768 }
1769 return val;
1770 }
1771
1772 case PARM_DECL:
1773 if (!DECL_ARTIFICIAL (arg))
1774 {
1775 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1776 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1777 }
1778 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1779
1780 case TARGET_EXPR:
1781 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1782
1783 case PTRMEM_CST:
1784 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1785 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1786
1787 case TEMPLATE_PARM_INDEX:
1788 val = iterative_hash_template_arg
1789 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1790 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1791 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1792
1793 case TRAIT_EXPR:
1794 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1795 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1796 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1797
1798 case BASELINK:
1799 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1800 val);
1801 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1802 val);
1803
1804 case MODOP_EXPR:
1805 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1806 code = TREE_CODE (TREE_OPERAND (arg, 1));
1807 val = iterative_hash_object (code, val);
1808 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1809
1810 case LAMBDA_EXPR:
1811 /* A lambda can't appear in a template arg, but don't crash on
1812 erroneous input. */
1813 gcc_assert (seen_error ());
1814 return val;
1815
1816 case CAST_EXPR:
1817 case IMPLICIT_CONV_EXPR:
1818 case STATIC_CAST_EXPR:
1819 case REINTERPRET_CAST_EXPR:
1820 case CONST_CAST_EXPR:
1821 case DYNAMIC_CAST_EXPR:
1822 case NEW_EXPR:
1823 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1824 /* Now hash operands as usual. */
1825 break;
1826
1827 default:
1828 break;
1829 }
1830
1831 switch (tclass)
1832 {
1833 case tcc_type:
1834 if (alias_template_specialization_p (arg))
1835 {
1836 // We want an alias specialization that survived strip_typedefs
1837 // to hash differently from its TYPE_CANONICAL, to avoid hash
1838 // collisions that compare as different in template_args_equal.
1839 // These could be dependent specializations that strip_typedefs
1840 // left alone, or untouched specializations because
1841 // coerce_template_parms returns the unconverted template
1842 // arguments if it sees incomplete argument packs.
1843 tree ti = TYPE_TEMPLATE_INFO (arg);
1844 return hash_tmpl_and_args (TI_TEMPLATE (ti), TI_ARGS (ti));
1845 }
1846 if (TYPE_CANONICAL (arg))
1847 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1848 val);
1849 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1850 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1851 /* Otherwise just compare the types during lookup. */
1852 return val;
1853
1854 case tcc_declaration:
1855 case tcc_constant:
1856 return iterative_hash_expr (arg, val);
1857
1858 default:
1859 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1860 {
1861 unsigned n = cp_tree_operand_length (arg);
1862 for (i = 0; i < n; ++i)
1863 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1864 return val;
1865 }
1866 }
1867 gcc_unreachable ();
1868 return 0;
1869 }
1870
1871 /* Unregister the specialization SPEC as a specialization of TMPL.
1872 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1873 if the SPEC was listed as a specialization of TMPL.
1874
1875 Note that SPEC has been ggc_freed, so we can't look inside it. */
1876
1877 bool
1878 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1879 {
1880 spec_entry *entry;
1881 spec_entry elt;
1882
1883 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1884 elt.args = TI_ARGS (tinfo);
1885 elt.spec = NULL_TREE;
1886
1887 entry = decl_specializations->find (&elt);
1888 if (entry != NULL)
1889 {
1890 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1891 gcc_assert (new_spec != NULL_TREE);
1892 entry->spec = new_spec;
1893 return 1;
1894 }
1895
1896 return 0;
1897 }
1898
1899 /* Like register_specialization, but for local declarations. We are
1900 registering SPEC, an instantiation of TMPL. */
1901
1902 void
1903 register_local_specialization (tree spec, tree tmpl)
1904 {
1905 local_specializations->put (tmpl, spec);
1906 }
1907
1908 /* TYPE is a class type. Returns true if TYPE is an explicitly
1909 specialized class. */
1910
1911 bool
1912 explicit_class_specialization_p (tree type)
1913 {
1914 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1915 return false;
1916 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1917 }
1918
1919 /* Print the list of functions at FNS, going through all the overloads
1920 for each element of the list. Alternatively, FNS can not be a
1921 TREE_LIST, in which case it will be printed together with all the
1922 overloads.
1923
1924 MORE and *STR should respectively be FALSE and NULL when the function
1925 is called from the outside. They are used internally on recursive
1926 calls. print_candidates manages the two parameters and leaves NULL
1927 in *STR when it ends. */
1928
1929 static void
1930 print_candidates_1 (tree fns, bool more, const char **str)
1931 {
1932 tree fn, fn2;
1933 char *spaces = NULL;
1934
1935 for (fn = fns; fn; fn = OVL_NEXT (fn))
1936 if (TREE_CODE (fn) == TREE_LIST)
1937 {
1938 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1939 print_candidates_1 (TREE_VALUE (fn2),
1940 TREE_CHAIN (fn2) || more, str);
1941 }
1942 else
1943 {
1944 tree cand = OVL_CURRENT (fn);
1945 if (!*str)
1946 {
1947 /* Pick the prefix string. */
1948 if (!more && !OVL_NEXT (fns))
1949 {
1950 inform (DECL_SOURCE_LOCATION (cand),
1951 "candidate is: %#D", cand);
1952 continue;
1953 }
1954
1955 *str = _("candidates are:");
1956 spaces = get_spaces (*str);
1957 }
1958 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1959 *str = spaces ? spaces : *str;
1960 }
1961
1962 if (!more)
1963 {
1964 free (spaces);
1965 *str = NULL;
1966 }
1967 }
1968
1969 /* Print the list of candidate FNS in an error message. FNS can also
1970 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1971
1972 void
1973 print_candidates (tree fns)
1974 {
1975 const char *str = NULL;
1976 print_candidates_1 (fns, false, &str);
1977 gcc_assert (str == NULL);
1978 }
1979
1980 /* Get a (possibly) constrained template declaration for the
1981 purpose of ordering candidates. */
1982 static tree
1983 get_template_for_ordering (tree list)
1984 {
1985 gcc_assert (TREE_CODE (list) == TREE_LIST);
1986 tree f = TREE_VALUE (list);
1987 if (tree ti = DECL_TEMPLATE_INFO (f))
1988 return TI_TEMPLATE (ti);
1989 return f;
1990 }
1991
1992 /* Among candidates having the same signature, return the
1993 most constrained or NULL_TREE if there is no best candidate.
1994 If the signatures of candidates vary (e.g., template
1995 specialization vs. member function), then there can be no
1996 most constrained.
1997
1998 Note that we don't compare constraints on the functions
1999 themselves, but rather those of their templates. */
2000 static tree
2001 most_constrained_function (tree candidates)
2002 {
2003 // Try to find the best candidate in a first pass.
2004 tree champ = candidates;
2005 for (tree c = TREE_CHAIN (champ); c; c = TREE_CHAIN (c))
2006 {
2007 int winner = more_constrained (get_template_for_ordering (champ),
2008 get_template_for_ordering (c));
2009 if (winner == -1)
2010 champ = c; // The candidate is more constrained
2011 else if (winner == 0)
2012 return NULL_TREE; // Neither is more constrained
2013 }
2014
2015 // Verify that the champ is better than previous candidates.
2016 for (tree c = candidates; c != champ; c = TREE_CHAIN (c)) {
2017 if (!more_constrained (get_template_for_ordering (champ),
2018 get_template_for_ordering (c)))
2019 return NULL_TREE;
2020 }
2021
2022 return champ;
2023 }
2024
2025
2026 /* Returns the template (one of the functions given by TEMPLATE_ID)
2027 which can be specialized to match the indicated DECL with the
2028 explicit template args given in TEMPLATE_ID. The DECL may be
2029 NULL_TREE if none is available. In that case, the functions in
2030 TEMPLATE_ID are non-members.
2031
2032 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
2033 specialization of a member template.
2034
2035 The TEMPLATE_COUNT is the number of references to qualifying
2036 template classes that appeared in the name of the function. See
2037 check_explicit_specialization for a more accurate description.
2038
2039 TSK indicates what kind of template declaration (if any) is being
2040 declared. TSK_TEMPLATE indicates that the declaration given by
2041 DECL, though a FUNCTION_DECL, has template parameters, and is
2042 therefore a template function.
2043
2044 The template args (those explicitly specified and those deduced)
2045 are output in a newly created vector *TARGS_OUT.
2046
2047 If it is impossible to determine the result, an error message is
2048 issued. The error_mark_node is returned to indicate failure. */
2049
2050 static tree
2051 determine_specialization (tree template_id,
2052 tree decl,
2053 tree* targs_out,
2054 int need_member_template,
2055 int template_count,
2056 tmpl_spec_kind tsk)
2057 {
2058 tree fns;
2059 tree targs;
2060 tree explicit_targs;
2061 tree candidates = NULL_TREE;
2062
2063 /* A TREE_LIST of templates of which DECL may be a specialization.
2064 The TREE_VALUE of each node is a TEMPLATE_DECL. The
2065 corresponding TREE_PURPOSE is the set of template arguments that,
2066 when used to instantiate the template, would produce a function
2067 with the signature of DECL. */
2068 tree templates = NULL_TREE;
2069 int header_count;
2070 cp_binding_level *b;
2071
2072 *targs_out = NULL_TREE;
2073
2074 if (template_id == error_mark_node || decl == error_mark_node)
2075 return error_mark_node;
2076
2077 /* We shouldn't be specializing a member template of an
2078 unspecialized class template; we already gave an error in
2079 check_specialization_scope, now avoid crashing. */
2080 if (template_count && DECL_CLASS_SCOPE_P (decl)
2081 && template_class_depth (DECL_CONTEXT (decl)) > 0)
2082 {
2083 gcc_assert (errorcount);
2084 return error_mark_node;
2085 }
2086
2087 fns = TREE_OPERAND (template_id, 0);
2088 explicit_targs = TREE_OPERAND (template_id, 1);
2089
2090 if (fns == error_mark_node)
2091 return error_mark_node;
2092
2093 /* Check for baselinks. */
2094 if (BASELINK_P (fns))
2095 fns = BASELINK_FUNCTIONS (fns);
2096
2097 if (TREE_CODE (decl) == FUNCTION_DECL && !is_overloaded_fn (fns))
2098 {
2099 error ("%qD is not a function template", fns);
2100 return error_mark_node;
2101 }
2102 else if (VAR_P (decl) && !variable_template_p (fns))
2103 {
2104 error ("%qD is not a variable template", fns);
2105 return error_mark_node;
2106 }
2107
2108 /* Count the number of template headers specified for this
2109 specialization. */
2110 header_count = 0;
2111 for (b = current_binding_level;
2112 b->kind == sk_template_parms;
2113 b = b->level_chain)
2114 ++header_count;
2115
2116 tree orig_fns = fns;
2117
2118 if (variable_template_p (fns))
2119 {
2120 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (fns));
2121 targs = coerce_template_parms (parms, explicit_targs, fns,
2122 tf_warning_or_error,
2123 /*req_all*/true, /*use_defarg*/true);
2124 if (targs != error_mark_node)
2125 templates = tree_cons (targs, fns, templates);
2126 }
2127 else for (; fns; fns = OVL_NEXT (fns))
2128 {
2129 tree fn = OVL_CURRENT (fns);
2130
2131 if (TREE_CODE (fn) == TEMPLATE_DECL)
2132 {
2133 tree decl_arg_types;
2134 tree fn_arg_types;
2135 tree insttype;
2136
2137 /* In case of explicit specialization, we need to check if
2138 the number of template headers appearing in the specialization
2139 is correct. This is usually done in check_explicit_specialization,
2140 but the check done there cannot be exhaustive when specializing
2141 member functions. Consider the following code:
2142
2143 template <> void A<int>::f(int);
2144 template <> template <> void A<int>::f(int);
2145
2146 Assuming that A<int> is not itself an explicit specialization
2147 already, the first line specializes "f" which is a non-template
2148 member function, whilst the second line specializes "f" which
2149 is a template member function. So both lines are syntactically
2150 correct, and check_explicit_specialization does not reject
2151 them.
2152
2153 Here, we can do better, as we are matching the specialization
2154 against the declarations. We count the number of template
2155 headers, and we check if they match TEMPLATE_COUNT + 1
2156 (TEMPLATE_COUNT is the number of qualifying template classes,
2157 plus there must be another header for the member template
2158 itself).
2159
2160 Notice that if header_count is zero, this is not a
2161 specialization but rather a template instantiation, so there
2162 is no check we can perform here. */
2163 if (header_count && header_count != template_count + 1)
2164 continue;
2165
2166 /* Check that the number of template arguments at the
2167 innermost level for DECL is the same as for FN. */
2168 if (current_binding_level->kind == sk_template_parms
2169 && !current_binding_level->explicit_spec_p
2170 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
2171 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
2172 (current_template_parms))))
2173 continue;
2174
2175 /* DECL might be a specialization of FN. */
2176 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2177 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
2178
2179 /* For a non-static member function, we need to make sure
2180 that the const qualification is the same. Since
2181 get_bindings does not try to merge the "this" parameter,
2182 we must do the comparison explicitly. */
2183 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2184 && !same_type_p (TREE_VALUE (fn_arg_types),
2185 TREE_VALUE (decl_arg_types)))
2186 continue;
2187
2188 /* Skip the "this" parameter and, for constructors of
2189 classes with virtual bases, the VTT parameter. A
2190 full specialization of a constructor will have a VTT
2191 parameter, but a template never will. */
2192 decl_arg_types
2193 = skip_artificial_parms_for (decl, decl_arg_types);
2194 fn_arg_types
2195 = skip_artificial_parms_for (fn, fn_arg_types);
2196
2197 /* Function templates cannot be specializations; there are
2198 no partial specializations of functions. Therefore, if
2199 the type of DECL does not match FN, there is no
2200 match.
2201
2202 Note that it should never be the case that we have both
2203 candidates added here, and for regular member functions
2204 below. */
2205 if (tsk == tsk_template)
2206 {
2207 if (compparms (fn_arg_types, decl_arg_types))
2208 candidates = tree_cons (NULL_TREE, fn, candidates);
2209 continue;
2210 }
2211
2212 /* See whether this function might be a specialization of this
2213 template. Suppress access control because we might be trying
2214 to make this specialization a friend, and we have already done
2215 access control for the declaration of the specialization. */
2216 push_deferring_access_checks (dk_no_check);
2217 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
2218 pop_deferring_access_checks ();
2219
2220 if (!targs)
2221 /* We cannot deduce template arguments that when used to
2222 specialize TMPL will produce DECL. */
2223 continue;
2224
2225 /* Remove, from the set of candidates, all those functions
2226 whose constraints are not satisfied. */
2227 if (flag_concepts && !constraints_satisfied_p (fn, targs))
2228 continue;
2229
2230 // Then, try to form the new function type.
2231 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
2232 if (insttype == error_mark_node)
2233 continue;
2234 fn_arg_types
2235 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
2236 if (!compparms (fn_arg_types, decl_arg_types))
2237 continue;
2238
2239 /* Save this template, and the arguments deduced. */
2240 templates = tree_cons (targs, fn, templates);
2241 }
2242 else if (need_member_template)
2243 /* FN is an ordinary member function, and we need a
2244 specialization of a member template. */
2245 ;
2246 else if (TREE_CODE (fn) != FUNCTION_DECL)
2247 /* We can get IDENTIFIER_NODEs here in certain erroneous
2248 cases. */
2249 ;
2250 else if (!DECL_FUNCTION_MEMBER_P (fn))
2251 /* This is just an ordinary non-member function. Nothing can
2252 be a specialization of that. */
2253 ;
2254 else if (DECL_ARTIFICIAL (fn))
2255 /* Cannot specialize functions that are created implicitly. */
2256 ;
2257 else
2258 {
2259 tree decl_arg_types;
2260
2261 /* This is an ordinary member function. However, since
2262 we're here, we can assume its enclosing class is a
2263 template class. For example,
2264
2265 template <typename T> struct S { void f(); };
2266 template <> void S<int>::f() {}
2267
2268 Here, S<int>::f is a non-template, but S<int> is a
2269 template class. If FN has the same type as DECL, we
2270 might be in business. */
2271
2272 if (!DECL_TEMPLATE_INFO (fn))
2273 /* Its enclosing class is an explicit specialization
2274 of a template class. This is not a candidate. */
2275 continue;
2276
2277 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2278 TREE_TYPE (TREE_TYPE (fn))))
2279 /* The return types differ. */
2280 continue;
2281
2282 /* Adjust the type of DECL in case FN is a static member. */
2283 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2284 if (DECL_STATIC_FUNCTION_P (fn)
2285 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2286 decl_arg_types = TREE_CHAIN (decl_arg_types);
2287
2288 if (!compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2289 decl_arg_types))
2290 continue;
2291
2292 // If the deduced arguments do not satisfy the constraints,
2293 // this is not a candidate.
2294 if (flag_concepts && !constraints_satisfied_p (fn))
2295 continue;
2296
2297 // Add the candidate.
2298 candidates = tree_cons (NULL_TREE, fn, candidates);
2299 }
2300 }
2301
2302 if (templates && TREE_CHAIN (templates))
2303 {
2304 /* We have:
2305
2306 [temp.expl.spec]
2307
2308 It is possible for a specialization with a given function
2309 signature to be instantiated from more than one function
2310 template. In such cases, explicit specification of the
2311 template arguments must be used to uniquely identify the
2312 function template specialization being specialized.
2313
2314 Note that here, there's no suggestion that we're supposed to
2315 determine which of the candidate templates is most
2316 specialized. However, we, also have:
2317
2318 [temp.func.order]
2319
2320 Partial ordering of overloaded function template
2321 declarations is used in the following contexts to select
2322 the function template to which a function template
2323 specialization refers:
2324
2325 -- when an explicit specialization refers to a function
2326 template.
2327
2328 So, we do use the partial ordering rules, at least for now.
2329 This extension can only serve to make invalid programs valid,
2330 so it's safe. And, there is strong anecdotal evidence that
2331 the committee intended the partial ordering rules to apply;
2332 the EDG front end has that behavior, and John Spicer claims
2333 that the committee simply forgot to delete the wording in
2334 [temp.expl.spec]. */
2335 tree tmpl = most_specialized_instantiation (templates);
2336 if (tmpl != error_mark_node)
2337 {
2338 templates = tmpl;
2339 TREE_CHAIN (templates) = NULL_TREE;
2340 }
2341 }
2342
2343 // Concepts allows multiple declarations of member functions
2344 // with the same signature. Like above, we need to rely on
2345 // on the partial ordering of those candidates to determine which
2346 // is the best.
2347 if (flag_concepts && candidates && TREE_CHAIN (candidates))
2348 {
2349 if (tree cand = most_constrained_function (candidates))
2350 {
2351 candidates = cand;
2352 TREE_CHAIN (cand) = NULL_TREE;
2353 }
2354 }
2355
2356 if (templates == NULL_TREE && candidates == NULL_TREE)
2357 {
2358 error ("template-id %qD for %q+D does not match any template "
2359 "declaration", template_id, decl);
2360 if (header_count && header_count != template_count + 1)
2361 inform (input_location, "saw %d %<template<>%>, need %d for "
2362 "specializing a member function template",
2363 header_count, template_count + 1);
2364 else
2365 print_candidates (orig_fns);
2366 return error_mark_node;
2367 }
2368 else if ((templates && TREE_CHAIN (templates))
2369 || (candidates && TREE_CHAIN (candidates))
2370 || (templates && candidates))
2371 {
2372 error ("ambiguous template specialization %qD for %q+D",
2373 template_id, decl);
2374 candidates = chainon (candidates, templates);
2375 print_candidates (candidates);
2376 return error_mark_node;
2377 }
2378
2379 /* We have one, and exactly one, match. */
2380 if (candidates)
2381 {
2382 tree fn = TREE_VALUE (candidates);
2383 *targs_out = copy_node (DECL_TI_ARGS (fn));
2384
2385 // Propagate the candidate's constraints to the declaration.
2386 set_constraints (decl, get_constraints (fn));
2387
2388 /* DECL is a re-declaration or partial instantiation of a template
2389 function. */
2390 if (TREE_CODE (fn) == TEMPLATE_DECL)
2391 return fn;
2392 /* It was a specialization of an ordinary member function in a
2393 template class. */
2394 return DECL_TI_TEMPLATE (fn);
2395 }
2396
2397 /* It was a specialization of a template. */
2398 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2399 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2400 {
2401 *targs_out = copy_node (targs);
2402 SET_TMPL_ARGS_LEVEL (*targs_out,
2403 TMPL_ARGS_DEPTH (*targs_out),
2404 TREE_PURPOSE (templates));
2405 }
2406 else
2407 *targs_out = TREE_PURPOSE (templates);
2408 return TREE_VALUE (templates);
2409 }
2410
2411 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2412 but with the default argument values filled in from those in the
2413 TMPL_TYPES. */
2414
2415 static tree
2416 copy_default_args_to_explicit_spec_1 (tree spec_types,
2417 tree tmpl_types)
2418 {
2419 tree new_spec_types;
2420
2421 if (!spec_types)
2422 return NULL_TREE;
2423
2424 if (spec_types == void_list_node)
2425 return void_list_node;
2426
2427 /* Substitute into the rest of the list. */
2428 new_spec_types =
2429 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2430 TREE_CHAIN (tmpl_types));
2431
2432 /* Add the default argument for this parameter. */
2433 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2434 TREE_VALUE (spec_types),
2435 new_spec_types);
2436 }
2437
2438 /* DECL is an explicit specialization. Replicate default arguments
2439 from the template it specializes. (That way, code like:
2440
2441 template <class T> void f(T = 3);
2442 template <> void f(double);
2443 void g () { f (); }
2444
2445 works, as required.) An alternative approach would be to look up
2446 the correct default arguments at the call-site, but this approach
2447 is consistent with how implicit instantiations are handled. */
2448
2449 static void
2450 copy_default_args_to_explicit_spec (tree decl)
2451 {
2452 tree tmpl;
2453 tree spec_types;
2454 tree tmpl_types;
2455 tree new_spec_types;
2456 tree old_type;
2457 tree new_type;
2458 tree t;
2459 tree object_type = NULL_TREE;
2460 tree in_charge = NULL_TREE;
2461 tree vtt = NULL_TREE;
2462
2463 /* See if there's anything we need to do. */
2464 tmpl = DECL_TI_TEMPLATE (decl);
2465 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2466 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2467 if (TREE_PURPOSE (t))
2468 break;
2469 if (!t)
2470 return;
2471
2472 old_type = TREE_TYPE (decl);
2473 spec_types = TYPE_ARG_TYPES (old_type);
2474
2475 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2476 {
2477 /* Remove the this pointer, but remember the object's type for
2478 CV quals. */
2479 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2480 spec_types = TREE_CHAIN (spec_types);
2481 tmpl_types = TREE_CHAIN (tmpl_types);
2482
2483 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2484 {
2485 /* DECL may contain more parameters than TMPL due to the extra
2486 in-charge parameter in constructors and destructors. */
2487 in_charge = spec_types;
2488 spec_types = TREE_CHAIN (spec_types);
2489 }
2490 if (DECL_HAS_VTT_PARM_P (decl))
2491 {
2492 vtt = spec_types;
2493 spec_types = TREE_CHAIN (spec_types);
2494 }
2495 }
2496
2497 /* Compute the merged default arguments. */
2498 new_spec_types =
2499 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2500
2501 /* Compute the new FUNCTION_TYPE. */
2502 if (object_type)
2503 {
2504 if (vtt)
2505 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2506 TREE_VALUE (vtt),
2507 new_spec_types);
2508
2509 if (in_charge)
2510 /* Put the in-charge parameter back. */
2511 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2512 TREE_VALUE (in_charge),
2513 new_spec_types);
2514
2515 new_type = build_method_type_directly (object_type,
2516 TREE_TYPE (old_type),
2517 new_spec_types);
2518 }
2519 else
2520 new_type = build_function_type (TREE_TYPE (old_type),
2521 new_spec_types);
2522 new_type = cp_build_type_attribute_variant (new_type,
2523 TYPE_ATTRIBUTES (old_type));
2524 new_type = build_exception_variant (new_type,
2525 TYPE_RAISES_EXCEPTIONS (old_type));
2526
2527 if (TYPE_HAS_LATE_RETURN_TYPE (old_type))
2528 TYPE_HAS_LATE_RETURN_TYPE (new_type) = 1;
2529
2530 TREE_TYPE (decl) = new_type;
2531 }
2532
2533 /* Return the number of template headers we expect to see for a definition
2534 or specialization of CTYPE or one of its non-template members. */
2535
2536 int
2537 num_template_headers_for_class (tree ctype)
2538 {
2539 int num_templates = 0;
2540
2541 while (ctype && CLASS_TYPE_P (ctype))
2542 {
2543 /* You're supposed to have one `template <...>' for every
2544 template class, but you don't need one for a full
2545 specialization. For example:
2546
2547 template <class T> struct S{};
2548 template <> struct S<int> { void f(); };
2549 void S<int>::f () {}
2550
2551 is correct; there shouldn't be a `template <>' for the
2552 definition of `S<int>::f'. */
2553 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2554 /* If CTYPE does not have template information of any
2555 kind, then it is not a template, nor is it nested
2556 within a template. */
2557 break;
2558 if (explicit_class_specialization_p (ctype))
2559 break;
2560 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2561 ++num_templates;
2562
2563 ctype = TYPE_CONTEXT (ctype);
2564 }
2565
2566 return num_templates;
2567 }
2568
2569 /* Do a simple sanity check on the template headers that precede the
2570 variable declaration DECL. */
2571
2572 void
2573 check_template_variable (tree decl)
2574 {
2575 tree ctx = CP_DECL_CONTEXT (decl);
2576 int wanted = num_template_headers_for_class (ctx);
2577 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
2578 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2579 {
2580 if (cxx_dialect < cxx14)
2581 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2582 "variable templates only available with "
2583 "-std=c++14 or -std=gnu++14");
2584
2585 // Namespace-scope variable templates should have a template header.
2586 ++wanted;
2587 }
2588 if (template_header_count > wanted)
2589 {
2590 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2591 "too many template headers for %D (should be %d)",
2592 decl, wanted);
2593 if (warned && CLASS_TYPE_P (ctx)
2594 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2595 inform (DECL_SOURCE_LOCATION (decl),
2596 "members of an explicitly specialized class are defined "
2597 "without a template header");
2598 }
2599 }
2600
2601 /* Check to see if the function just declared, as indicated in
2602 DECLARATOR, and in DECL, is a specialization of a function
2603 template. We may also discover that the declaration is an explicit
2604 instantiation at this point.
2605
2606 Returns DECL, or an equivalent declaration that should be used
2607 instead if all goes well. Issues an error message if something is
2608 amiss. Returns error_mark_node if the error is not easily
2609 recoverable.
2610
2611 FLAGS is a bitmask consisting of the following flags:
2612
2613 2: The function has a definition.
2614 4: The function is a friend.
2615
2616 The TEMPLATE_COUNT is the number of references to qualifying
2617 template classes that appeared in the name of the function. For
2618 example, in
2619
2620 template <class T> struct S { void f(); };
2621 void S<int>::f();
2622
2623 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2624 classes are not counted in the TEMPLATE_COUNT, so that in
2625
2626 template <class T> struct S {};
2627 template <> struct S<int> { void f(); }
2628 template <> void S<int>::f();
2629
2630 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2631 invalid; there should be no template <>.)
2632
2633 If the function is a specialization, it is marked as such via
2634 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2635 is set up correctly, and it is added to the list of specializations
2636 for that template. */
2637
2638 tree
2639 check_explicit_specialization (tree declarator,
2640 tree decl,
2641 int template_count,
2642 int flags)
2643 {
2644 int have_def = flags & 2;
2645 int is_friend = flags & 4;
2646 bool is_concept = flags & 8;
2647 int specialization = 0;
2648 int explicit_instantiation = 0;
2649 int member_specialization = 0;
2650 tree ctype = DECL_CLASS_CONTEXT (decl);
2651 tree dname = DECL_NAME (decl);
2652 tmpl_spec_kind tsk;
2653
2654 if (is_friend)
2655 {
2656 if (!processing_specialization)
2657 tsk = tsk_none;
2658 else
2659 tsk = tsk_excessive_parms;
2660 }
2661 else
2662 tsk = current_tmpl_spec_kind (template_count);
2663
2664 switch (tsk)
2665 {
2666 case tsk_none:
2667 if (processing_specialization && !VAR_P (decl))
2668 {
2669 specialization = 1;
2670 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2671 }
2672 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2673 {
2674 if (is_friend)
2675 /* This could be something like:
2676
2677 template <class T> void f(T);
2678 class S { friend void f<>(int); } */
2679 specialization = 1;
2680 else
2681 {
2682 /* This case handles bogus declarations like template <>
2683 template <class T> void f<int>(); */
2684
2685 error ("template-id %qD in declaration of primary template",
2686 declarator);
2687 return decl;
2688 }
2689 }
2690 break;
2691
2692 case tsk_invalid_member_spec:
2693 /* The error has already been reported in
2694 check_specialization_scope. */
2695 return error_mark_node;
2696
2697 case tsk_invalid_expl_inst:
2698 error ("template parameter list used in explicit instantiation");
2699
2700 /* Fall through. */
2701
2702 case tsk_expl_inst:
2703 if (have_def)
2704 error ("definition provided for explicit instantiation");
2705
2706 explicit_instantiation = 1;
2707 break;
2708
2709 case tsk_excessive_parms:
2710 case tsk_insufficient_parms:
2711 if (tsk == tsk_excessive_parms)
2712 error ("too many template parameter lists in declaration of %qD",
2713 decl);
2714 else if (template_header_count)
2715 error("too few template parameter lists in declaration of %qD", decl);
2716 else
2717 error("explicit specialization of %qD must be introduced by "
2718 "%<template <>%>", decl);
2719
2720 /* Fall through. */
2721 case tsk_expl_spec:
2722 if (is_concept)
2723 error ("explicit specialization declared %<concept%>");
2724
2725 if (VAR_P (decl) && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2726 /* In cases like template<> constexpr bool v = true;
2727 We'll give an error in check_template_variable. */
2728 break;
2729
2730 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2731 if (ctype)
2732 member_specialization = 1;
2733 else
2734 specialization = 1;
2735 break;
2736
2737 case tsk_template:
2738 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2739 {
2740 /* This case handles bogus declarations like template <>
2741 template <class T> void f<int>(); */
2742
2743 if (!uses_template_parms (declarator))
2744 error ("template-id %qD in declaration of primary template",
2745 declarator);
2746 else if (variable_template_p (TREE_OPERAND (declarator, 0)))
2747 {
2748 /* Partial specialization of variable template. */
2749 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2750 specialization = 1;
2751 goto ok;
2752 }
2753 else if (cxx_dialect < cxx14)
2754 error ("non-type partial specialization %qD "
2755 "is not allowed", declarator);
2756 else
2757 error ("non-class, non-variable partial specialization %qD "
2758 "is not allowed", declarator);
2759 return decl;
2760 ok:;
2761 }
2762
2763 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2764 /* This is a specialization of a member template, without
2765 specialization the containing class. Something like:
2766
2767 template <class T> struct S {
2768 template <class U> void f (U);
2769 };
2770 template <> template <class U> void S<int>::f(U) {}
2771
2772 That's a specialization -- but of the entire template. */
2773 specialization = 1;
2774 break;
2775
2776 default:
2777 gcc_unreachable ();
2778 }
2779
2780 if ((specialization || member_specialization)
2781 /* This doesn't apply to variable templates. */
2782 && (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE
2783 || TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE))
2784 {
2785 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2786 for (; t; t = TREE_CHAIN (t))
2787 if (TREE_PURPOSE (t))
2788 {
2789 permerror (input_location,
2790 "default argument specified in explicit specialization");
2791 break;
2792 }
2793 }
2794
2795 if (specialization || member_specialization || explicit_instantiation)
2796 {
2797 tree tmpl = NULL_TREE;
2798 tree targs = NULL_TREE;
2799 bool was_template_id = (TREE_CODE (declarator) == TEMPLATE_ID_EXPR);
2800
2801 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2802 if (!was_template_id)
2803 {
2804 tree fns;
2805
2806 gcc_assert (identifier_p (declarator));
2807 if (ctype)
2808 fns = dname;
2809 else
2810 {
2811 /* If there is no class context, the explicit instantiation
2812 must be at namespace scope. */
2813 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2814
2815 /* Find the namespace binding, using the declaration
2816 context. */
2817 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2818 false, true);
2819 if (fns == error_mark_node || !is_overloaded_fn (fns))
2820 {
2821 error ("%qD is not a template function", dname);
2822 fns = error_mark_node;
2823 }
2824 else
2825 {
2826 tree fn = OVL_CURRENT (fns);
2827 if (!is_associated_namespace (CP_DECL_CONTEXT (decl),
2828 CP_DECL_CONTEXT (fn)))
2829 error ("%qD is not declared in %qD",
2830 decl, current_namespace);
2831 }
2832 }
2833
2834 declarator = lookup_template_function (fns, NULL_TREE);
2835 }
2836
2837 if (declarator == error_mark_node)
2838 return error_mark_node;
2839
2840 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2841 {
2842 if (!explicit_instantiation)
2843 /* A specialization in class scope. This is invalid,
2844 but the error will already have been flagged by
2845 check_specialization_scope. */
2846 return error_mark_node;
2847 else
2848 {
2849 /* It's not valid to write an explicit instantiation in
2850 class scope, e.g.:
2851
2852 class C { template void f(); }
2853
2854 This case is caught by the parser. However, on
2855 something like:
2856
2857 template class C { void f(); };
2858
2859 (which is invalid) we can get here. The error will be
2860 issued later. */
2861 ;
2862 }
2863
2864 return decl;
2865 }
2866 else if (ctype != NULL_TREE
2867 && (identifier_p (TREE_OPERAND (declarator, 0))))
2868 {
2869 // We'll match variable templates in start_decl.
2870 if (VAR_P (decl))
2871 return decl;
2872
2873 /* Find the list of functions in ctype that have the same
2874 name as the declared function. */
2875 tree name = TREE_OPERAND (declarator, 0);
2876 tree fns = NULL_TREE;
2877 int idx;
2878
2879 if (constructor_name_p (name, ctype))
2880 {
2881 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2882
2883 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2884 : !CLASSTYPE_DESTRUCTORS (ctype))
2885 {
2886 /* From [temp.expl.spec]:
2887
2888 If such an explicit specialization for the member
2889 of a class template names an implicitly-declared
2890 special member function (clause _special_), the
2891 program is ill-formed.
2892
2893 Similar language is found in [temp.explicit]. */
2894 error ("specialization of implicitly-declared special member function");
2895 return error_mark_node;
2896 }
2897
2898 name = is_constructor ? ctor_identifier : dtor_identifier;
2899 }
2900
2901 if (!DECL_CONV_FN_P (decl))
2902 {
2903 idx = lookup_fnfields_1 (ctype, name);
2904 if (idx >= 0)
2905 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2906 }
2907 else
2908 {
2909 vec<tree, va_gc> *methods;
2910 tree ovl;
2911
2912 /* For a type-conversion operator, we cannot do a
2913 name-based lookup. We might be looking for `operator
2914 int' which will be a specialization of `operator T'.
2915 So, we find *all* the conversion operators, and then
2916 select from them. */
2917 fns = NULL_TREE;
2918
2919 methods = CLASSTYPE_METHOD_VEC (ctype);
2920 if (methods)
2921 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2922 methods->iterate (idx, &ovl);
2923 ++idx)
2924 {
2925 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2926 /* There are no more conversion functions. */
2927 break;
2928
2929 /* Glue all these conversion functions together
2930 with those we already have. */
2931 for (; ovl; ovl = OVL_NEXT (ovl))
2932 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2933 }
2934 }
2935
2936 if (fns == NULL_TREE)
2937 {
2938 error ("no member function %qD declared in %qT", name, ctype);
2939 return error_mark_node;
2940 }
2941 else
2942 TREE_OPERAND (declarator, 0) = fns;
2943 }
2944
2945 /* Figure out what exactly is being specialized at this point.
2946 Note that for an explicit instantiation, even one for a
2947 member function, we cannot tell apriori whether the
2948 instantiation is for a member template, or just a member
2949 function of a template class. Even if a member template is
2950 being instantiated, the member template arguments may be
2951 elided if they can be deduced from the rest of the
2952 declaration. */
2953 tmpl = determine_specialization (declarator, decl,
2954 &targs,
2955 member_specialization,
2956 template_count,
2957 tsk);
2958
2959 if (!tmpl || tmpl == error_mark_node)
2960 /* We couldn't figure out what this declaration was
2961 specializing. */
2962 return error_mark_node;
2963 else
2964 {
2965 tree gen_tmpl = most_general_template (tmpl);
2966
2967 if (explicit_instantiation)
2968 {
2969 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2970 is done by do_decl_instantiation later. */
2971
2972 int arg_depth = TMPL_ARGS_DEPTH (targs);
2973 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2974
2975 if (arg_depth > parm_depth)
2976 {
2977 /* If TMPL is not the most general template (for
2978 example, if TMPL is a friend template that is
2979 injected into namespace scope), then there will
2980 be too many levels of TARGS. Remove some of them
2981 here. */
2982 int i;
2983 tree new_targs;
2984
2985 new_targs = make_tree_vec (parm_depth);
2986 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2987 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2988 = TREE_VEC_ELT (targs, i);
2989 targs = new_targs;
2990 }
2991
2992 return instantiate_template (tmpl, targs, tf_error);
2993 }
2994
2995 /* If we thought that the DECL was a member function, but it
2996 turns out to be specializing a static member function,
2997 make DECL a static member function as well. */
2998 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
2999 && DECL_STATIC_FUNCTION_P (tmpl)
3000 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
3001 revert_static_member_fn (decl);
3002
3003 /* If this is a specialization of a member template of a
3004 template class, we want to return the TEMPLATE_DECL, not
3005 the specialization of it. */
3006 if (tsk == tsk_template && !was_template_id)
3007 {
3008 tree result = DECL_TEMPLATE_RESULT (tmpl);
3009 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
3010 DECL_INITIAL (result) = NULL_TREE;
3011 if (have_def)
3012 {
3013 tree parm;
3014 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
3015 DECL_SOURCE_LOCATION (result)
3016 = DECL_SOURCE_LOCATION (decl);
3017 /* We want to use the argument list specified in the
3018 definition, not in the original declaration. */
3019 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
3020 for (parm = DECL_ARGUMENTS (result); parm;
3021 parm = DECL_CHAIN (parm))
3022 DECL_CONTEXT (parm) = result;
3023 }
3024 return register_specialization (tmpl, gen_tmpl, targs,
3025 is_friend, 0);
3026 }
3027
3028 /* Set up the DECL_TEMPLATE_INFO for DECL. */
3029 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
3030
3031 if (was_template_id)
3032 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl)) = true;
3033
3034 /* Inherit default function arguments from the template
3035 DECL is specializing. */
3036 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
3037 copy_default_args_to_explicit_spec (decl);
3038
3039 /* This specialization has the same protection as the
3040 template it specializes. */
3041 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
3042 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
3043
3044 /* 7.1.1-1 [dcl.stc]
3045
3046 A storage-class-specifier shall not be specified in an
3047 explicit specialization...
3048
3049 The parser rejects these, so unless action is taken here,
3050 explicit function specializations will always appear with
3051 global linkage.
3052
3053 The action recommended by the C++ CWG in response to C++
3054 defect report 605 is to make the storage class and linkage
3055 of the explicit specialization match the templated function:
3056
3057 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
3058 */
3059 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
3060 {
3061 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
3062 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
3063
3064 /* A concept cannot be specialized. */
3065 if (DECL_DECLARED_CONCEPT_P (tmpl_func))
3066 {
3067 error ("explicit specialization of function concept %qD",
3068 gen_tmpl);
3069 return error_mark_node;
3070 }
3071
3072 /* This specialization has the same linkage and visibility as
3073 the function template it specializes. */
3074 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
3075 if (! TREE_PUBLIC (decl))
3076 {
3077 DECL_INTERFACE_KNOWN (decl) = 1;
3078 DECL_NOT_REALLY_EXTERN (decl) = 1;
3079 }
3080 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
3081 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
3082 {
3083 DECL_VISIBILITY_SPECIFIED (decl) = 1;
3084 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
3085 }
3086 }
3087
3088 /* If DECL is a friend declaration, declared using an
3089 unqualified name, the namespace associated with DECL may
3090 have been set incorrectly. For example, in:
3091
3092 template <typename T> void f(T);
3093 namespace N {
3094 struct S { friend void f<int>(int); }
3095 }
3096
3097 we will have set the DECL_CONTEXT for the friend
3098 declaration to N, rather than to the global namespace. */
3099 if (DECL_NAMESPACE_SCOPE_P (decl))
3100 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
3101
3102 if (is_friend && !have_def)
3103 /* This is not really a declaration of a specialization.
3104 It's just the name of an instantiation. But, it's not
3105 a request for an instantiation, either. */
3106 SET_DECL_IMPLICIT_INSTANTIATION (decl);
3107 else if (TREE_CODE (decl) == FUNCTION_DECL)
3108 /* A specialization is not necessarily COMDAT. */
3109 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
3110 && DECL_DECLARED_INLINE_P (decl));
3111 else if (VAR_P (decl))
3112 DECL_COMDAT (decl) = false;
3113
3114 /* If this is a full specialization, register it so that we can find
3115 it again. Partial specializations will be registered in
3116 process_partial_specialization. */
3117 if (!processing_template_decl)
3118 decl = register_specialization (decl, gen_tmpl, targs,
3119 is_friend, 0);
3120
3121 /* A 'structor should already have clones. */
3122 gcc_assert (decl == error_mark_node
3123 || variable_template_p (tmpl)
3124 || !(DECL_CONSTRUCTOR_P (decl)
3125 || DECL_DESTRUCTOR_P (decl))
3126 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
3127 }
3128 }
3129
3130 return decl;
3131 }
3132
3133 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
3134 parameters. These are represented in the same format used for
3135 DECL_TEMPLATE_PARMS. */
3136
3137 int
3138 comp_template_parms (const_tree parms1, const_tree parms2)
3139 {
3140 const_tree p1;
3141 const_tree p2;
3142
3143 if (parms1 == parms2)
3144 return 1;
3145
3146 for (p1 = parms1, p2 = parms2;
3147 p1 != NULL_TREE && p2 != NULL_TREE;
3148 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
3149 {
3150 tree t1 = TREE_VALUE (p1);
3151 tree t2 = TREE_VALUE (p2);
3152 int i;
3153
3154 gcc_assert (TREE_CODE (t1) == TREE_VEC);
3155 gcc_assert (TREE_CODE (t2) == TREE_VEC);
3156
3157 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
3158 return 0;
3159
3160 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
3161 {
3162 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
3163 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
3164
3165 /* If either of the template parameters are invalid, assume
3166 they match for the sake of error recovery. */
3167 if (error_operand_p (parm1) || error_operand_p (parm2))
3168 return 1;
3169
3170 if (TREE_CODE (parm1) != TREE_CODE (parm2))
3171 return 0;
3172
3173 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
3174 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
3175 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
3176 continue;
3177 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
3178 return 0;
3179 }
3180 }
3181
3182 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
3183 /* One set of parameters has more parameters lists than the
3184 other. */
3185 return 0;
3186
3187 return 1;
3188 }
3189
3190 /* Determine whether PARM is a parameter pack. */
3191
3192 bool
3193 template_parameter_pack_p (const_tree parm)
3194 {
3195 /* Determine if we have a non-type template parameter pack. */
3196 if (TREE_CODE (parm) == PARM_DECL)
3197 return (DECL_TEMPLATE_PARM_P (parm)
3198 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
3199 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
3200 return TEMPLATE_PARM_PARAMETER_PACK (parm);
3201
3202 /* If this is a list of template parameters, we could get a
3203 TYPE_DECL or a TEMPLATE_DECL. */
3204 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
3205 parm = TREE_TYPE (parm);
3206
3207 /* Otherwise it must be a type template parameter. */
3208 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
3209 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
3210 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
3211 }
3212
3213 /* Determine if T is a function parameter pack. */
3214
3215 bool
3216 function_parameter_pack_p (const_tree t)
3217 {
3218 if (t && TREE_CODE (t) == PARM_DECL)
3219 return DECL_PACK_P (t);
3220 return false;
3221 }
3222
3223 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
3224 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
3225
3226 tree
3227 get_function_template_decl (const_tree primary_func_tmpl_inst)
3228 {
3229 if (! primary_func_tmpl_inst
3230 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
3231 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
3232 return NULL;
3233
3234 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
3235 }
3236
3237 /* Return true iff the function parameter PARAM_DECL was expanded
3238 from the function parameter pack PACK. */
3239
3240 bool
3241 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
3242 {
3243 if (DECL_ARTIFICIAL (param_decl)
3244 || !function_parameter_pack_p (pack))
3245 return false;
3246
3247 /* The parameter pack and its pack arguments have the same
3248 DECL_PARM_INDEX. */
3249 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
3250 }
3251
3252 /* Determine whether ARGS describes a variadic template args list,
3253 i.e., one that is terminated by a template argument pack. */
3254
3255 static bool
3256 template_args_variadic_p (tree args)
3257 {
3258 int nargs;
3259 tree last_parm;
3260
3261 if (args == NULL_TREE)
3262 return false;
3263
3264 args = INNERMOST_TEMPLATE_ARGS (args);
3265 nargs = TREE_VEC_LENGTH (args);
3266
3267 if (nargs == 0)
3268 return false;
3269
3270 last_parm = TREE_VEC_ELT (args, nargs - 1);
3271
3272 return ARGUMENT_PACK_P (last_parm);
3273 }
3274
3275 /* Generate a new name for the parameter pack name NAME (an
3276 IDENTIFIER_NODE) that incorporates its */
3277
3278 static tree
3279 make_ith_pack_parameter_name (tree name, int i)
3280 {
3281 /* Munge the name to include the parameter index. */
3282 #define NUMBUF_LEN 128
3283 char numbuf[NUMBUF_LEN];
3284 char* newname;
3285 int newname_len;
3286
3287 if (name == NULL_TREE)
3288 return name;
3289 snprintf (numbuf, NUMBUF_LEN, "%i", i);
3290 newname_len = IDENTIFIER_LENGTH (name)
3291 + strlen (numbuf) + 2;
3292 newname = (char*)alloca (newname_len);
3293 snprintf (newname, newname_len,
3294 "%s#%i", IDENTIFIER_POINTER (name), i);
3295 return get_identifier (newname);
3296 }
3297
3298 /* Return true if T is a primary function, class or alias template
3299 instantiation. */
3300
3301 bool
3302 primary_template_instantiation_p (const_tree t)
3303 {
3304 if (!t)
3305 return false;
3306
3307 if (TREE_CODE (t) == FUNCTION_DECL)
3308 return DECL_LANG_SPECIFIC (t)
3309 && DECL_TEMPLATE_INSTANTIATION (t)
3310 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
3311 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3312 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
3313 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
3314 else if (alias_template_specialization_p (t))
3315 return true;
3316 return false;
3317 }
3318
3319 /* Return true if PARM is a template template parameter. */
3320
3321 bool
3322 template_template_parameter_p (const_tree parm)
3323 {
3324 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
3325 }
3326
3327 /* Return true iff PARM is a DECL representing a type template
3328 parameter. */
3329
3330 bool
3331 template_type_parameter_p (const_tree parm)
3332 {
3333 return (parm
3334 && (TREE_CODE (parm) == TYPE_DECL
3335 || TREE_CODE (parm) == TEMPLATE_DECL)
3336 && DECL_TEMPLATE_PARM_P (parm));
3337 }
3338
3339 /* Return the template parameters of T if T is a
3340 primary template instantiation, NULL otherwise. */
3341
3342 tree
3343 get_primary_template_innermost_parameters (const_tree t)
3344 {
3345 tree parms = NULL, template_info = NULL;
3346
3347 if ((template_info = get_template_info (t))
3348 && primary_template_instantiation_p (t))
3349 parms = INNERMOST_TEMPLATE_PARMS
3350 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3351
3352 return parms;
3353 }
3354
3355 /* Return the template parameters of the LEVELth level from the full list
3356 of template parameters PARMS. */
3357
3358 tree
3359 get_template_parms_at_level (tree parms, int level)
3360 {
3361 tree p;
3362 if (!parms
3363 || TREE_CODE (parms) != TREE_LIST
3364 || level > TMPL_PARMS_DEPTH (parms))
3365 return NULL_TREE;
3366
3367 for (p = parms; p; p = TREE_CHAIN (p))
3368 if (TMPL_PARMS_DEPTH (p) == level)
3369 return p;
3370
3371 return NULL_TREE;
3372 }
3373
3374 /* Returns the template arguments of T if T is a template instantiation,
3375 NULL otherwise. */
3376
3377 tree
3378 get_template_innermost_arguments (const_tree t)
3379 {
3380 tree args = NULL, template_info = NULL;
3381
3382 if ((template_info = get_template_info (t))
3383 && TI_ARGS (template_info))
3384 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3385
3386 return args;
3387 }
3388
3389 /* Return the argument pack elements of T if T is a template argument pack,
3390 NULL otherwise. */
3391
3392 tree
3393 get_template_argument_pack_elems (const_tree t)
3394 {
3395 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3396 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3397 return NULL;
3398
3399 return ARGUMENT_PACK_ARGS (t);
3400 }
3401
3402 /* Structure used to track the progress of find_parameter_packs_r. */
3403 struct find_parameter_pack_data
3404 {
3405 /* TREE_LIST that will contain all of the parameter packs found by
3406 the traversal. */
3407 tree* parameter_packs;
3408
3409 /* Set of AST nodes that have been visited by the traversal. */
3410 hash_set<tree> *visited;
3411 };
3412
3413 /* Identifies all of the argument packs that occur in a template
3414 argument and appends them to the TREE_LIST inside DATA, which is a
3415 find_parameter_pack_data structure. This is a subroutine of
3416 make_pack_expansion and uses_parameter_packs. */
3417 static tree
3418 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3419 {
3420 tree t = *tp;
3421 struct find_parameter_pack_data* ppd =
3422 (struct find_parameter_pack_data*)data;
3423 bool parameter_pack_p = false;
3424
3425 /* Handle type aliases/typedefs. */
3426 if (TYPE_ALIAS_P (t))
3427 {
3428 if (TYPE_TEMPLATE_INFO (t))
3429 cp_walk_tree (&TYPE_TI_ARGS (t),
3430 &find_parameter_packs_r,
3431 ppd, ppd->visited);
3432 *walk_subtrees = 0;
3433 return NULL_TREE;
3434 }
3435
3436 /* Identify whether this is a parameter pack or not. */
3437 switch (TREE_CODE (t))
3438 {
3439 case TEMPLATE_PARM_INDEX:
3440 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3441 parameter_pack_p = true;
3442 break;
3443
3444 case TEMPLATE_TYPE_PARM:
3445 t = TYPE_MAIN_VARIANT (t);
3446 case TEMPLATE_TEMPLATE_PARM:
3447 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3448 parameter_pack_p = true;
3449 break;
3450
3451 case FIELD_DECL:
3452 case PARM_DECL:
3453 if (DECL_PACK_P (t))
3454 {
3455 /* We don't want to walk into the type of a PARM_DECL,
3456 because we don't want to see the type parameter pack. */
3457 *walk_subtrees = 0;
3458 parameter_pack_p = true;
3459 }
3460 break;
3461
3462 /* Look through a lambda capture proxy to the field pack. */
3463 case VAR_DECL:
3464 if (DECL_HAS_VALUE_EXPR_P (t))
3465 {
3466 tree v = DECL_VALUE_EXPR (t);
3467 cp_walk_tree (&v,
3468 &find_parameter_packs_r,
3469 ppd, ppd->visited);
3470 *walk_subtrees = 0;
3471 }
3472 else if (variable_template_specialization_p (t))
3473 {
3474 cp_walk_tree (&DECL_TI_ARGS (t),
3475 find_parameter_packs_r,
3476 ppd, ppd->visited);
3477 *walk_subtrees = 0;
3478 }
3479 break;
3480
3481 case BASES:
3482 parameter_pack_p = true;
3483 break;
3484 default:
3485 /* Not a parameter pack. */
3486 break;
3487 }
3488
3489 if (parameter_pack_p)
3490 {
3491 /* Add this parameter pack to the list. */
3492 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3493 }
3494
3495 if (TYPE_P (t))
3496 cp_walk_tree (&TYPE_CONTEXT (t),
3497 &find_parameter_packs_r, ppd, ppd->visited);
3498
3499 /* This switch statement will return immediately if we don't find a
3500 parameter pack. */
3501 switch (TREE_CODE (t))
3502 {
3503 case TEMPLATE_PARM_INDEX:
3504 return NULL_TREE;
3505
3506 case BOUND_TEMPLATE_TEMPLATE_PARM:
3507 /* Check the template itself. */
3508 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3509 &find_parameter_packs_r, ppd, ppd->visited);
3510 /* Check the template arguments. */
3511 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3512 ppd->visited);
3513 *walk_subtrees = 0;
3514 return NULL_TREE;
3515
3516 case TEMPLATE_TYPE_PARM:
3517 case TEMPLATE_TEMPLATE_PARM:
3518 return NULL_TREE;
3519
3520 case PARM_DECL:
3521 return NULL_TREE;
3522
3523 case RECORD_TYPE:
3524 if (TYPE_PTRMEMFUNC_P (t))
3525 return NULL_TREE;
3526 /* Fall through. */
3527
3528 case UNION_TYPE:
3529 case ENUMERAL_TYPE:
3530 if (TYPE_TEMPLATE_INFO (t))
3531 cp_walk_tree (&TYPE_TI_ARGS (t),
3532 &find_parameter_packs_r, ppd, ppd->visited);
3533
3534 *walk_subtrees = 0;
3535 return NULL_TREE;
3536
3537 case CONSTRUCTOR:
3538 case TEMPLATE_DECL:
3539 cp_walk_tree (&TREE_TYPE (t),
3540 &find_parameter_packs_r, ppd, ppd->visited);
3541 return NULL_TREE;
3542
3543 case TYPENAME_TYPE:
3544 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3545 ppd, ppd->visited);
3546 *walk_subtrees = 0;
3547 return NULL_TREE;
3548
3549 case TYPE_PACK_EXPANSION:
3550 case EXPR_PACK_EXPANSION:
3551 *walk_subtrees = 0;
3552 return NULL_TREE;
3553
3554 case INTEGER_TYPE:
3555 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3556 ppd, ppd->visited);
3557 *walk_subtrees = 0;
3558 return NULL_TREE;
3559
3560 case IDENTIFIER_NODE:
3561 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3562 ppd->visited);
3563 *walk_subtrees = 0;
3564 return NULL_TREE;
3565
3566 default:
3567 return NULL_TREE;
3568 }
3569
3570 return NULL_TREE;
3571 }
3572
3573 /* Determines if the expression or type T uses any parameter packs. */
3574 bool
3575 uses_parameter_packs (tree t)
3576 {
3577 tree parameter_packs = NULL_TREE;
3578 struct find_parameter_pack_data ppd;
3579 ppd.parameter_packs = &parameter_packs;
3580 ppd.visited = new hash_set<tree>;
3581 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3582 delete ppd.visited;
3583 return parameter_packs != NULL_TREE;
3584 }
3585
3586 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3587 representation a base-class initializer into a parameter pack
3588 expansion. If all goes well, the resulting node will be an
3589 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3590 respectively. */
3591 tree
3592 make_pack_expansion (tree arg)
3593 {
3594 tree result;
3595 tree parameter_packs = NULL_TREE;
3596 bool for_types = false;
3597 struct find_parameter_pack_data ppd;
3598
3599 if (!arg || arg == error_mark_node)
3600 return arg;
3601
3602 if (TREE_CODE (arg) == TREE_LIST && TREE_PURPOSE (arg))
3603 {
3604 /* A TREE_LIST with a non-null TREE_PURPOSE is for a base
3605 class initializer. In this case, the TREE_PURPOSE will be a
3606 _TYPE node (representing the base class expansion we're
3607 initializing) and the TREE_VALUE will be a TREE_LIST
3608 containing the initialization arguments.
3609
3610 The resulting expansion looks somewhat different from most
3611 expansions. Rather than returning just one _EXPANSION, we
3612 return a TREE_LIST whose TREE_PURPOSE is a
3613 TYPE_PACK_EXPANSION containing the bases that will be
3614 initialized. The TREE_VALUE will be identical to the
3615 original TREE_VALUE, which is a list of arguments that will
3616 be passed to each base. We do not introduce any new pack
3617 expansion nodes into the TREE_VALUE (although it is possible
3618 that some already exist), because the TREE_PURPOSE and
3619 TREE_VALUE all need to be expanded together with the same
3620 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3621 resulting TREE_PURPOSE will mention the parameter packs in
3622 both the bases and the arguments to the bases. */
3623 tree purpose;
3624 tree value;
3625 tree parameter_packs = NULL_TREE;
3626
3627 /* Determine which parameter packs will be used by the base
3628 class expansion. */
3629 ppd.visited = new hash_set<tree>;
3630 ppd.parameter_packs = &parameter_packs;
3631 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3632 &ppd, ppd.visited);
3633
3634 if (parameter_packs == NULL_TREE)
3635 {
3636 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3637 delete ppd.visited;
3638 return error_mark_node;
3639 }
3640
3641 if (TREE_VALUE (arg) != void_type_node)
3642 {
3643 /* Collect the sets of parameter packs used in each of the
3644 initialization arguments. */
3645 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3646 {
3647 /* Determine which parameter packs will be expanded in this
3648 argument. */
3649 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3650 &ppd, ppd.visited);
3651 }
3652 }
3653
3654 delete ppd.visited;
3655
3656 /* Create the pack expansion type for the base type. */
3657 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3658 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3659 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3660
3661 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3662 they will rarely be compared to anything. */
3663 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3664
3665 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3666 }
3667
3668 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3669 for_types = true;
3670
3671 /* Build the PACK_EXPANSION_* node. */
3672 result = for_types
3673 ? cxx_make_type (TYPE_PACK_EXPANSION)
3674 : make_node (EXPR_PACK_EXPANSION);
3675 SET_PACK_EXPANSION_PATTERN (result, arg);
3676 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3677 {
3678 /* Propagate type and const-expression information. */
3679 TREE_TYPE (result) = TREE_TYPE (arg);
3680 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3681 }
3682 else
3683 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3684 they will rarely be compared to anything. */
3685 SET_TYPE_STRUCTURAL_EQUALITY (result);
3686
3687 /* Determine which parameter packs will be expanded. */
3688 ppd.parameter_packs = &parameter_packs;
3689 ppd.visited = new hash_set<tree>;
3690 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3691 delete ppd.visited;
3692
3693 /* Make sure we found some parameter packs. */
3694 if (parameter_packs == NULL_TREE)
3695 {
3696 if (TYPE_P (arg))
3697 error ("expansion pattern %<%T%> contains no argument packs", arg);
3698 else
3699 error ("expansion pattern %<%E%> contains no argument packs", arg);
3700 return error_mark_node;
3701 }
3702 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3703
3704 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3705
3706 return result;
3707 }
3708
3709 /* Checks T for any "bare" parameter packs, which have not yet been
3710 expanded, and issues an error if any are found. This operation can
3711 only be done on full expressions or types (e.g., an expression
3712 statement, "if" condition, etc.), because we could have expressions like:
3713
3714 foo(f(g(h(args)))...)
3715
3716 where "args" is a parameter pack. check_for_bare_parameter_packs
3717 should not be called for the subexpressions args, h(args),
3718 g(h(args)), or f(g(h(args))), because we would produce erroneous
3719 error messages.
3720
3721 Returns TRUE and emits an error if there were bare parameter packs,
3722 returns FALSE otherwise. */
3723 bool
3724 check_for_bare_parameter_packs (tree t)
3725 {
3726 tree parameter_packs = NULL_TREE;
3727 struct find_parameter_pack_data ppd;
3728
3729 if (!processing_template_decl || !t || t == error_mark_node)
3730 return false;
3731
3732 if (TREE_CODE (t) == TYPE_DECL)
3733 t = TREE_TYPE (t);
3734
3735 ppd.parameter_packs = &parameter_packs;
3736 ppd.visited = new hash_set<tree>;
3737 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3738 delete ppd.visited;
3739
3740 if (parameter_packs)
3741 {
3742 error ("parameter packs not expanded with %<...%>:");
3743 while (parameter_packs)
3744 {
3745 tree pack = TREE_VALUE (parameter_packs);
3746 tree name = NULL_TREE;
3747
3748 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3749 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3750 name = TYPE_NAME (pack);
3751 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3752 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3753 else
3754 name = DECL_NAME (pack);
3755
3756 if (name)
3757 inform (input_location, " %qD", name);
3758 else
3759 inform (input_location, " <anonymous>");
3760
3761 parameter_packs = TREE_CHAIN (parameter_packs);
3762 }
3763
3764 return true;
3765 }
3766
3767 return false;
3768 }
3769
3770 /* Expand any parameter packs that occur in the template arguments in
3771 ARGS. */
3772 tree
3773 expand_template_argument_pack (tree args)
3774 {
3775 tree result_args = NULL_TREE;
3776 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3777 int num_result_args = -1;
3778 int non_default_args_count = -1;
3779
3780 /* First, determine if we need to expand anything, and the number of
3781 slots we'll need. */
3782 for (in_arg = 0; in_arg < nargs; ++in_arg)
3783 {
3784 tree arg = TREE_VEC_ELT (args, in_arg);
3785 if (arg == NULL_TREE)
3786 return args;
3787 if (ARGUMENT_PACK_P (arg))
3788 {
3789 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3790 if (num_result_args < 0)
3791 num_result_args = in_arg + num_packed;
3792 else
3793 num_result_args += num_packed;
3794 }
3795 else
3796 {
3797 if (num_result_args >= 0)
3798 num_result_args++;
3799 }
3800 }
3801
3802 /* If no expansion is necessary, we're done. */
3803 if (num_result_args < 0)
3804 return args;
3805
3806 /* Expand arguments. */
3807 result_args = make_tree_vec (num_result_args);
3808 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3809 non_default_args_count =
3810 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3811 for (in_arg = 0; in_arg < nargs; ++in_arg)
3812 {
3813 tree arg = TREE_VEC_ELT (args, in_arg);
3814 if (ARGUMENT_PACK_P (arg))
3815 {
3816 tree packed = ARGUMENT_PACK_ARGS (arg);
3817 int i, num_packed = TREE_VEC_LENGTH (packed);
3818 for (i = 0; i < num_packed; ++i, ++out_arg)
3819 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3820 if (non_default_args_count > 0)
3821 non_default_args_count += num_packed - 1;
3822 }
3823 else
3824 {
3825 TREE_VEC_ELT (result_args, out_arg) = arg;
3826 ++out_arg;
3827 }
3828 }
3829 if (non_default_args_count >= 0)
3830 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3831 return result_args;
3832 }
3833
3834 /* Checks if DECL shadows a template parameter.
3835
3836 [temp.local]: A template-parameter shall not be redeclared within its
3837 scope (including nested scopes).
3838
3839 Emits an error and returns TRUE if the DECL shadows a parameter,
3840 returns FALSE otherwise. */
3841
3842 bool
3843 check_template_shadow (tree decl)
3844 {
3845 tree olddecl;
3846
3847 /* If we're not in a template, we can't possibly shadow a template
3848 parameter. */
3849 if (!current_template_parms)
3850 return true;
3851
3852 /* Figure out what we're shadowing. */
3853 if (TREE_CODE (decl) == OVERLOAD)
3854 decl = OVL_CURRENT (decl);
3855 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3856
3857 /* If there's no previous binding for this name, we're not shadowing
3858 anything, let alone a template parameter. */
3859 if (!olddecl)
3860 return true;
3861
3862 /* If we're not shadowing a template parameter, we're done. Note
3863 that OLDDECL might be an OVERLOAD (or perhaps even an
3864 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3865 node. */
3866 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3867 return true;
3868
3869 /* We check for decl != olddecl to avoid bogus errors for using a
3870 name inside a class. We check TPFI to avoid duplicate errors for
3871 inline member templates. */
3872 if (decl == olddecl
3873 || (DECL_TEMPLATE_PARM_P (decl)
3874 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3875 return true;
3876
3877 /* Don't complain about the injected class name, as we've already
3878 complained about the class itself. */
3879 if (DECL_SELF_REFERENCE_P (decl))
3880 return false;
3881
3882 if (DECL_TEMPLATE_PARM_P (decl))
3883 error ("declaration of template parameter %q+D shadows "
3884 "template parameter", decl);
3885 else
3886 error ("declaration of %q+#D shadows template parameter", decl);
3887 inform (DECL_SOURCE_LOCATION (olddecl),
3888 "template parameter %qD declared here", olddecl);
3889 return false;
3890 }
3891
3892 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3893 ORIG_LEVEL, DECL, and TYPE. */
3894
3895 static tree
3896 build_template_parm_index (int index,
3897 int level,
3898 int orig_level,
3899 tree decl,
3900 tree type)
3901 {
3902 tree t = make_node (TEMPLATE_PARM_INDEX);
3903 TEMPLATE_PARM_IDX (t) = index;
3904 TEMPLATE_PARM_LEVEL (t) = level;
3905 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3906 TEMPLATE_PARM_DECL (t) = decl;
3907 TREE_TYPE (t) = type;
3908 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3909 TREE_READONLY (t) = TREE_READONLY (decl);
3910
3911 return t;
3912 }
3913
3914 /* Find the canonical type parameter for the given template type
3915 parameter. Returns the canonical type parameter, which may be TYPE
3916 if no such parameter existed. */
3917
3918 static tree
3919 canonical_type_parameter (tree type)
3920 {
3921 tree list;
3922 int idx = TEMPLATE_TYPE_IDX (type);
3923 if (!canonical_template_parms)
3924 vec_alloc (canonical_template_parms, idx+1);
3925
3926 while (canonical_template_parms->length () <= (unsigned)idx)
3927 vec_safe_push (canonical_template_parms, NULL_TREE);
3928
3929 list = (*canonical_template_parms)[idx];
3930 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3931 list = TREE_CHAIN (list);
3932
3933 if (list)
3934 return TREE_VALUE (list);
3935 else
3936 {
3937 (*canonical_template_parms)[idx]
3938 = tree_cons (NULL_TREE, type,
3939 (*canonical_template_parms)[idx]);
3940 return type;
3941 }
3942 }
3943
3944 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3945 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3946 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3947 new one is created. */
3948
3949 static tree
3950 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3951 tsubst_flags_t complain)
3952 {
3953 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3954 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3955 != TEMPLATE_PARM_LEVEL (index) - levels)
3956 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3957 {
3958 tree orig_decl = TEMPLATE_PARM_DECL (index);
3959 tree decl, t;
3960
3961 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3962 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3963 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3964 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3965 DECL_ARTIFICIAL (decl) = 1;
3966 SET_DECL_TEMPLATE_PARM_P (decl);
3967
3968 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3969 TEMPLATE_PARM_LEVEL (index) - levels,
3970 TEMPLATE_PARM_ORIG_LEVEL (index),
3971 decl, type);
3972 TEMPLATE_PARM_DESCENDANTS (index) = t;
3973 TEMPLATE_PARM_PARAMETER_PACK (t)
3974 = TEMPLATE_PARM_PARAMETER_PACK (index);
3975
3976 /* Template template parameters need this. */
3977 if (TREE_CODE (decl) == TEMPLATE_DECL)
3978 {
3979 DECL_TEMPLATE_RESULT (decl)
3980 = build_decl (DECL_SOURCE_LOCATION (decl),
3981 TYPE_DECL, DECL_NAME (decl), type);
3982 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (decl)) = true;
3983 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3984 (DECL_TEMPLATE_PARMS (orig_decl), args, complain);
3985 }
3986 }
3987
3988 return TEMPLATE_PARM_DESCENDANTS (index);
3989 }
3990
3991 /* Process information from new template parameter PARM and append it
3992 to the LIST being built. This new parameter is a non-type
3993 parameter iff IS_NON_TYPE is true. This new parameter is a
3994 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
3995 is in PARM_LOC. */
3996
3997 tree
3998 process_template_parm (tree list, location_t parm_loc, tree parm,
3999 bool is_non_type, bool is_parameter_pack)
4000 {
4001 tree decl = 0;
4002 int idx = 0;
4003
4004 gcc_assert (TREE_CODE (parm) == TREE_LIST);
4005 tree defval = TREE_PURPOSE (parm);
4006 tree constr = TREE_TYPE (parm);
4007
4008 if (list)
4009 {
4010 tree p = tree_last (list);
4011
4012 if (p && TREE_VALUE (p) != error_mark_node)
4013 {
4014 p = TREE_VALUE (p);
4015 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
4016 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
4017 else
4018 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
4019 }
4020
4021 ++idx;
4022 }
4023
4024 if (is_non_type)
4025 {
4026 parm = TREE_VALUE (parm);
4027
4028 SET_DECL_TEMPLATE_PARM_P (parm);
4029
4030 if (TREE_TYPE (parm) != error_mark_node)
4031 {
4032 /* [temp.param]
4033
4034 The top-level cv-qualifiers on the template-parameter are
4035 ignored when determining its type. */
4036 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
4037 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
4038 TREE_TYPE (parm) = error_mark_node;
4039 else if (uses_parameter_packs (TREE_TYPE (parm))
4040 && !is_parameter_pack
4041 /* If we're in a nested template parameter list, the template
4042 template parameter could be a parameter pack. */
4043 && processing_template_parmlist == 1)
4044 {
4045 /* This template parameter is not a parameter pack, but it
4046 should be. Complain about "bare" parameter packs. */
4047 check_for_bare_parameter_packs (TREE_TYPE (parm));
4048
4049 /* Recover by calling this a parameter pack. */
4050 is_parameter_pack = true;
4051 }
4052 }
4053
4054 /* A template parameter is not modifiable. */
4055 TREE_CONSTANT (parm) = 1;
4056 TREE_READONLY (parm) = 1;
4057 decl = build_decl (parm_loc,
4058 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
4059 TREE_CONSTANT (decl) = 1;
4060 TREE_READONLY (decl) = 1;
4061 DECL_INITIAL (parm) = DECL_INITIAL (decl)
4062 = build_template_parm_index (idx, processing_template_decl,
4063 processing_template_decl,
4064 decl, TREE_TYPE (parm));
4065
4066 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
4067 = is_parameter_pack;
4068 }
4069 else
4070 {
4071 tree t;
4072 parm = TREE_VALUE (TREE_VALUE (parm));
4073
4074 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
4075 {
4076 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
4077 /* This is for distinguishing between real templates and template
4078 template parameters */
4079 TREE_TYPE (parm) = t;
4080 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
4081 decl = parm;
4082 }
4083 else
4084 {
4085 t = cxx_make_type (TEMPLATE_TYPE_PARM);
4086 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
4087 decl = build_decl (parm_loc,
4088 TYPE_DECL, parm, t);
4089 }
4090
4091 TYPE_NAME (t) = decl;
4092 TYPE_STUB_DECL (t) = decl;
4093 parm = decl;
4094 TEMPLATE_TYPE_PARM_INDEX (t)
4095 = build_template_parm_index (idx, processing_template_decl,
4096 processing_template_decl,
4097 decl, TREE_TYPE (parm));
4098 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
4099 TYPE_CANONICAL (t) = canonical_type_parameter (t);
4100 }
4101 DECL_ARTIFICIAL (decl) = 1;
4102 SET_DECL_TEMPLATE_PARM_P (decl);
4103
4104 /* Build requirements for the type/template parameter.
4105 This must be done after SET_DECL_TEMPLATE_PARM_P or
4106 process_template_parm could fail. */
4107 tree reqs = finish_shorthand_constraint (parm, constr);
4108
4109 pushdecl (decl);
4110
4111 /* Build the parameter node linking the parameter declaration,
4112 its default argument (if any), and its constraints (if any). */
4113 parm = build_tree_list (defval, parm);
4114 TEMPLATE_PARM_CONSTRAINTS (parm) = reqs;
4115
4116 return chainon (list, parm);
4117 }
4118
4119 /* The end of a template parameter list has been reached. Process the
4120 tree list into a parameter vector, converting each parameter into a more
4121 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
4122 as PARM_DECLs. */
4123
4124 tree
4125 end_template_parm_list (tree parms)
4126 {
4127 int nparms;
4128 tree parm, next;
4129 tree saved_parmlist = make_tree_vec (list_length (parms));
4130
4131 /* Pop the dummy parameter level and add the real one. */
4132 current_template_parms = TREE_CHAIN (current_template_parms);
4133
4134 current_template_parms
4135 = tree_cons (size_int (processing_template_decl),
4136 saved_parmlist, current_template_parms);
4137
4138 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
4139 {
4140 next = TREE_CHAIN (parm);
4141 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
4142 TREE_CHAIN (parm) = NULL_TREE;
4143 }
4144
4145 --processing_template_parmlist;
4146
4147 return saved_parmlist;
4148 }
4149
4150 // Explicitly indicate the end of the template parameter list. We assume
4151 // that the current template parameters have been constructed and/or
4152 // managed explicitly, as when creating new template template parameters
4153 // from a shorthand constraint.
4154 void
4155 end_template_parm_list ()
4156 {
4157 --processing_template_parmlist;
4158 }
4159
4160 /* end_template_decl is called after a template declaration is seen. */
4161
4162 void
4163 end_template_decl (void)
4164 {
4165 reset_specialization ();
4166
4167 if (! processing_template_decl)
4168 return;
4169
4170 /* This matches the pushlevel in begin_template_parm_list. */
4171 finish_scope ();
4172
4173 --processing_template_decl;
4174 current_template_parms = TREE_CHAIN (current_template_parms);
4175 }
4176
4177 /* Takes a TREE_LIST representing a template parameter and convert it
4178 into an argument suitable to be passed to the type substitution
4179 functions. Note that If the TREE_LIST contains an error_mark
4180 node, the returned argument is error_mark_node. */
4181
4182 tree
4183 template_parm_to_arg (tree t)
4184 {
4185
4186 if (t == NULL_TREE
4187 || TREE_CODE (t) != TREE_LIST)
4188 return t;
4189
4190 if (error_operand_p (TREE_VALUE (t)))
4191 return error_mark_node;
4192
4193 t = TREE_VALUE (t);
4194
4195 if (TREE_CODE (t) == TYPE_DECL
4196 || TREE_CODE (t) == TEMPLATE_DECL)
4197 {
4198 t = TREE_TYPE (t);
4199
4200 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
4201 {
4202 /* Turn this argument into a TYPE_ARGUMENT_PACK
4203 with a single element, which expands T. */
4204 tree vec = make_tree_vec (1);
4205 #ifdef ENABLE_CHECKING
4206 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
4207 (vec, TREE_VEC_LENGTH (vec));
4208 #endif
4209 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4210
4211 t = cxx_make_type (TYPE_ARGUMENT_PACK);
4212 SET_ARGUMENT_PACK_ARGS (t, vec);
4213 }
4214 }
4215 else
4216 {
4217 t = DECL_INITIAL (t);
4218
4219 if (TEMPLATE_PARM_PARAMETER_PACK (t))
4220 {
4221 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
4222 with a single element, which expands T. */
4223 tree vec = make_tree_vec (1);
4224 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
4225 #ifdef ENABLE_CHECKING
4226 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
4227 (vec, TREE_VEC_LENGTH (vec));
4228 #endif
4229 t = convert_from_reference (t);
4230 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4231
4232 t = make_node (NONTYPE_ARGUMENT_PACK);
4233 SET_ARGUMENT_PACK_ARGS (t, vec);
4234 TREE_TYPE (t) = type;
4235 }
4236 else
4237 t = convert_from_reference (t);
4238 }
4239 return t;
4240 }
4241
4242 /* Given a set of template parameters, return them as a set of template
4243 arguments. The template parameters are represented as a TREE_VEC, in
4244 the form documented in cp-tree.h for template arguments. */
4245
4246 static tree
4247 template_parms_to_args (tree parms)
4248 {
4249 tree header;
4250 tree args = NULL_TREE;
4251 int length = TMPL_PARMS_DEPTH (parms);
4252 int l = length;
4253
4254 /* If there is only one level of template parameters, we do not
4255 create a TREE_VEC of TREE_VECs. Instead, we return a single
4256 TREE_VEC containing the arguments. */
4257 if (length > 1)
4258 args = make_tree_vec (length);
4259
4260 for (header = parms; header; header = TREE_CHAIN (header))
4261 {
4262 tree a = copy_node (TREE_VALUE (header));
4263 int i;
4264
4265 TREE_TYPE (a) = NULL_TREE;
4266 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
4267 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
4268
4269 #ifdef ENABLE_CHECKING
4270 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
4271 #endif
4272
4273 if (length > 1)
4274 TREE_VEC_ELT (args, --l) = a;
4275 else
4276 args = a;
4277 }
4278
4279 return args;
4280 }
4281
4282 /* Within the declaration of a template, return the currently active
4283 template parameters as an argument TREE_VEC. */
4284
4285 static tree
4286 current_template_args (void)
4287 {
4288 return template_parms_to_args (current_template_parms);
4289 }
4290
4291 /* Update the declared TYPE by doing any lookups which were thought to be
4292 dependent, but are not now that we know the SCOPE of the declarator. */
4293
4294 tree
4295 maybe_update_decl_type (tree orig_type, tree scope)
4296 {
4297 tree type = orig_type;
4298
4299 if (type == NULL_TREE)
4300 return type;
4301
4302 if (TREE_CODE (orig_type) == TYPE_DECL)
4303 type = TREE_TYPE (type);
4304
4305 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4306 && dependent_type_p (type)
4307 /* Don't bother building up the args in this case. */
4308 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4309 {
4310 /* tsubst in the args corresponding to the template parameters,
4311 including auto if present. Most things will be unchanged, but
4312 make_typename_type and tsubst_qualified_id will resolve
4313 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4314 tree args = current_template_args ();
4315 tree auto_node = type_uses_auto (type);
4316 tree pushed;
4317 if (auto_node)
4318 {
4319 tree auto_vec = make_tree_vec (1);
4320 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4321 args = add_to_template_args (args, auto_vec);
4322 }
4323 pushed = push_scope (scope);
4324 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4325 if (pushed)
4326 pop_scope (scope);
4327 }
4328
4329 if (type == error_mark_node)
4330 return orig_type;
4331
4332 if (TREE_CODE (orig_type) == TYPE_DECL)
4333 {
4334 if (same_type_p (type, TREE_TYPE (orig_type)))
4335 type = orig_type;
4336 else
4337 type = TYPE_NAME (type);
4338 }
4339 return type;
4340 }
4341
4342 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4343 template PARMS and constraints, CONSTR. If MEMBER_TEMPLATE_P is true,
4344 the new template is a member template. */
4345
4346 tree
4347 build_template_decl (tree decl, tree parms, bool member_template_p)
4348 {
4349 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4350 DECL_TEMPLATE_PARMS (tmpl) = parms;
4351 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4352 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4353 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4354
4355 return tmpl;
4356 }
4357
4358 struct template_parm_data
4359 {
4360 /* The level of the template parameters we are currently
4361 processing. */
4362 int level;
4363
4364 /* The index of the specialization argument we are currently
4365 processing. */
4366 int current_arg;
4367
4368 /* An array whose size is the number of template parameters. The
4369 elements are nonzero if the parameter has been used in any one
4370 of the arguments processed so far. */
4371 int* parms;
4372
4373 /* An array whose size is the number of template arguments. The
4374 elements are nonzero if the argument makes use of template
4375 parameters of this level. */
4376 int* arg_uses_template_parms;
4377 };
4378
4379 /* Subroutine of push_template_decl used to see if each template
4380 parameter in a partial specialization is used in the explicit
4381 argument list. If T is of the LEVEL given in DATA (which is
4382 treated as a template_parm_data*), then DATA->PARMS is marked
4383 appropriately. */
4384
4385 static int
4386 mark_template_parm (tree t, void* data)
4387 {
4388 int level;
4389 int idx;
4390 struct template_parm_data* tpd = (struct template_parm_data*) data;
4391
4392 template_parm_level_and_index (t, &level, &idx);
4393
4394 if (level == tpd->level)
4395 {
4396 tpd->parms[idx] = 1;
4397 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4398 }
4399
4400 /* Return zero so that for_each_template_parm will continue the
4401 traversal of the tree; we want to mark *every* template parm. */
4402 return 0;
4403 }
4404
4405 /* Process the partial specialization DECL. */
4406
4407 static tree
4408 process_partial_specialization (tree decl)
4409 {
4410 tree type = TREE_TYPE (decl);
4411 tree tinfo = get_template_info (decl);
4412 tree maintmpl = TI_TEMPLATE (tinfo);
4413 tree specargs = TI_ARGS (tinfo);
4414 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4415 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4416 tree inner_parms;
4417 tree inst;
4418 int nargs = TREE_VEC_LENGTH (inner_args);
4419 int ntparms;
4420 int i;
4421 bool did_error_intro = false;
4422 struct template_parm_data tpd;
4423 struct template_parm_data tpd2;
4424
4425 gcc_assert (current_template_parms);
4426
4427 /* A concept cannot be specialized. */
4428 if (flag_concepts && variable_concept_p (maintmpl))
4429 {
4430 error ("specialization of variable concept %q#D", maintmpl);
4431 return error_mark_node;
4432 }
4433
4434 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4435 ntparms = TREE_VEC_LENGTH (inner_parms);
4436
4437 /* We check that each of the template parameters given in the
4438 partial specialization is used in the argument list to the
4439 specialization. For example:
4440
4441 template <class T> struct S;
4442 template <class T> struct S<T*>;
4443
4444 The second declaration is OK because `T*' uses the template
4445 parameter T, whereas
4446
4447 template <class T> struct S<int>;
4448
4449 is no good. Even trickier is:
4450
4451 template <class T>
4452 struct S1
4453 {
4454 template <class U>
4455 struct S2;
4456 template <class U>
4457 struct S2<T>;
4458 };
4459
4460 The S2<T> declaration is actually invalid; it is a
4461 full-specialization. Of course,
4462
4463 template <class U>
4464 struct S2<T (*)(U)>;
4465
4466 or some such would have been OK. */
4467 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4468 tpd.parms = XALLOCAVEC (int, ntparms);
4469 memset (tpd.parms, 0, sizeof (int) * ntparms);
4470
4471 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4472 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4473 for (i = 0; i < nargs; ++i)
4474 {
4475 tpd.current_arg = i;
4476 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4477 &mark_template_parm,
4478 &tpd,
4479 NULL,
4480 /*include_nondeduced_p=*/false);
4481 }
4482 for (i = 0; i < ntparms; ++i)
4483 if (tpd.parms[i] == 0)
4484 {
4485 /* One of the template parms was not used in a deduced context in the
4486 specialization. */
4487 if (!did_error_intro)
4488 {
4489 error ("template parameters not deducible in "
4490 "partial specialization:");
4491 did_error_intro = true;
4492 }
4493
4494 inform (input_location, " %qD",
4495 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4496 }
4497
4498 if (did_error_intro)
4499 return error_mark_node;
4500
4501 /* [temp.class.spec]
4502
4503 The argument list of the specialization shall not be identical to
4504 the implicit argument list of the primary template. */
4505 tree main_args
4506 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl)));
4507 if (comp_template_args (inner_args, INNERMOST_TEMPLATE_ARGS (main_args))
4508 && (!flag_concepts
4509 || !subsumes_constraints (current_template_constraints (),
4510 get_constraints (maintmpl))))
4511 {
4512 if (!flag_concepts)
4513 error ("partial specialization %q+D does not specialize "
4514 "any template arguments", decl);
4515 else
4516 error ("partial specialization %q+D does not specialize any "
4517 "template arguments and is not more constrained than", decl);
4518 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4519 }
4520
4521 /* A partial specialization that replaces multiple parameters of the
4522 primary template with a pack expansion is less specialized for those
4523 parameters. */
4524 if (nargs < DECL_NTPARMS (maintmpl))
4525 {
4526 error ("partial specialization is not more specialized than the "
4527 "primary template because it replaces multiple parameters "
4528 "with a pack expansion");
4529 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4530 return decl;
4531 }
4532
4533 /* [temp.class.spec]
4534
4535 A partially specialized non-type argument expression shall not
4536 involve template parameters of the partial specialization except
4537 when the argument expression is a simple identifier.
4538
4539 The type of a template parameter corresponding to a specialized
4540 non-type argument shall not be dependent on a parameter of the
4541 specialization.
4542
4543 Also, we verify that pack expansions only occur at the
4544 end of the argument list. */
4545 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4546 tpd2.parms = 0;
4547 for (i = 0; i < nargs; ++i)
4548 {
4549 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4550 tree arg = TREE_VEC_ELT (inner_args, i);
4551 tree packed_args = NULL_TREE;
4552 int j, len = 1;
4553
4554 if (ARGUMENT_PACK_P (arg))
4555 {
4556 /* Extract the arguments from the argument pack. We'll be
4557 iterating over these in the following loop. */
4558 packed_args = ARGUMENT_PACK_ARGS (arg);
4559 len = TREE_VEC_LENGTH (packed_args);
4560 }
4561
4562 for (j = 0; j < len; j++)
4563 {
4564 if (packed_args)
4565 /* Get the Jth argument in the parameter pack. */
4566 arg = TREE_VEC_ELT (packed_args, j);
4567
4568 if (PACK_EXPANSION_P (arg))
4569 {
4570 /* Pack expansions must come at the end of the
4571 argument list. */
4572 if ((packed_args && j < len - 1)
4573 || (!packed_args && i < nargs - 1))
4574 {
4575 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4576 error ("parameter pack argument %qE must be at the "
4577 "end of the template argument list", arg);
4578 else
4579 error ("parameter pack argument %qT must be at the "
4580 "end of the template argument list", arg);
4581 }
4582 }
4583
4584 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4585 /* We only care about the pattern. */
4586 arg = PACK_EXPANSION_PATTERN (arg);
4587
4588 if (/* These first two lines are the `non-type' bit. */
4589 !TYPE_P (arg)
4590 && TREE_CODE (arg) != TEMPLATE_DECL
4591 /* This next two lines are the `argument expression is not just a
4592 simple identifier' condition and also the `specialized
4593 non-type argument' bit. */
4594 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4595 && !(REFERENCE_REF_P (arg)
4596 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4597 {
4598 if ((!packed_args && tpd.arg_uses_template_parms[i])
4599 || (packed_args && uses_template_parms (arg)))
4600 error ("template argument %qE involves template parameter(s)",
4601 arg);
4602 else
4603 {
4604 /* Look at the corresponding template parameter,
4605 marking which template parameters its type depends
4606 upon. */
4607 tree type = TREE_TYPE (parm);
4608
4609 if (!tpd2.parms)
4610 {
4611 /* We haven't yet initialized TPD2. Do so now. */
4612 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4613 /* The number of parameters here is the number in the
4614 main template, which, as checked in the assertion
4615 above, is NARGS. */
4616 tpd2.parms = XALLOCAVEC (int, nargs);
4617 tpd2.level =
4618 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4619 }
4620
4621 /* Mark the template parameters. But this time, we're
4622 looking for the template parameters of the main
4623 template, not in the specialization. */
4624 tpd2.current_arg = i;
4625 tpd2.arg_uses_template_parms[i] = 0;
4626 memset (tpd2.parms, 0, sizeof (int) * nargs);
4627 for_each_template_parm (type,
4628 &mark_template_parm,
4629 &tpd2,
4630 NULL,
4631 /*include_nondeduced_p=*/false);
4632
4633 if (tpd2.arg_uses_template_parms [i])
4634 {
4635 /* The type depended on some template parameters.
4636 If they are fully specialized in the
4637 specialization, that's OK. */
4638 int j;
4639 int count = 0;
4640 for (j = 0; j < nargs; ++j)
4641 if (tpd2.parms[j] != 0
4642 && tpd.arg_uses_template_parms [j])
4643 ++count;
4644 if (count != 0)
4645 error_n (input_location, count,
4646 "type %qT of template argument %qE depends "
4647 "on a template parameter",
4648 "type %qT of template argument %qE depends "
4649 "on template parameters",
4650 type,
4651 arg);
4652 }
4653 }
4654 }
4655 }
4656 }
4657
4658 /* We should only get here once. */
4659 if (TREE_CODE (decl) == TYPE_DECL)
4660 gcc_assert (!COMPLETE_TYPE_P (type));
4661
4662 // Build the template decl.
4663 tree tmpl = build_template_decl (decl, current_template_parms,
4664 DECL_MEMBER_TEMPLATE_P (maintmpl));
4665 TREE_TYPE (tmpl) = type;
4666 DECL_TEMPLATE_RESULT (tmpl) = decl;
4667 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4668 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4669 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4670
4671 if (VAR_P (decl))
4672 /* We didn't register this in check_explicit_specialization so we could
4673 wait until the constraints were set. */
4674 decl = register_specialization (decl, maintmpl, specargs, false, 0);
4675 else
4676 associate_classtype_constraints (type);
4677
4678 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4679 = tree_cons (specargs, tmpl,
4680 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4681 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4682
4683 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4684 inst = TREE_CHAIN (inst))
4685 {
4686 tree instance = TREE_VALUE (inst);
4687 if (TYPE_P (instance)
4688 ? (COMPLETE_TYPE_P (instance)
4689 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance))
4690 : DECL_TEMPLATE_INSTANTIATION (instance))
4691 {
4692 tree spec = most_specialized_partial_spec (instance, tf_none);
4693 if (spec && TREE_VALUE (spec) == tmpl)
4694 {
4695 tree inst_decl = (DECL_P (instance)
4696 ? instance : TYPE_NAME (instance));
4697 permerror (input_location,
4698 "partial specialization of %qD after instantiation "
4699 "of %qD", decl, inst_decl);
4700 }
4701 }
4702 }
4703
4704 return decl;
4705 }
4706
4707 /* PARM is a template parameter of some form; return the corresponding
4708 TEMPLATE_PARM_INDEX. */
4709
4710 static tree
4711 get_template_parm_index (tree parm)
4712 {
4713 if (TREE_CODE (parm) == PARM_DECL
4714 || TREE_CODE (parm) == CONST_DECL)
4715 parm = DECL_INITIAL (parm);
4716 else if (TREE_CODE (parm) == TYPE_DECL
4717 || TREE_CODE (parm) == TEMPLATE_DECL)
4718 parm = TREE_TYPE (parm);
4719 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4720 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM
4721 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4722 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4723 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4724 return parm;
4725 }
4726
4727 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4728 parameter packs used by the template parameter PARM. */
4729
4730 static void
4731 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4732 {
4733 /* A type parm can't refer to another parm. */
4734 if (TREE_CODE (parm) == TYPE_DECL)
4735 return;
4736 else if (TREE_CODE (parm) == PARM_DECL)
4737 {
4738 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4739 ppd, ppd->visited);
4740 return;
4741 }
4742
4743 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4744
4745 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4746 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4747 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4748 }
4749
4750 /* PARM is a template parameter pack. Return any parameter packs used in
4751 its type or the type of any of its template parameters. If there are
4752 any such packs, it will be instantiated into a fixed template parameter
4753 list by partial instantiation rather than be fully deduced. */
4754
4755 tree
4756 fixed_parameter_pack_p (tree parm)
4757 {
4758 /* This can only be true in a member template. */
4759 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4760 return NULL_TREE;
4761 /* This can only be true for a parameter pack. */
4762 if (!template_parameter_pack_p (parm))
4763 return NULL_TREE;
4764 /* A type parm can't refer to another parm. */
4765 if (TREE_CODE (parm) == TYPE_DECL)
4766 return NULL_TREE;
4767
4768 tree parameter_packs = NULL_TREE;
4769 struct find_parameter_pack_data ppd;
4770 ppd.parameter_packs = &parameter_packs;
4771 ppd.visited = new hash_set<tree>;
4772
4773 fixed_parameter_pack_p_1 (parm, &ppd);
4774
4775 delete ppd.visited;
4776 return parameter_packs;
4777 }
4778
4779 /* Check that a template declaration's use of default arguments and
4780 parameter packs is not invalid. Here, PARMS are the template
4781 parameters. IS_PRIMARY is true if DECL is the thing declared by
4782 a primary template. IS_PARTIAL is true if DECL is a partial
4783 specialization.
4784
4785 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4786 declaration (but not a definition); 1 indicates a declaration, 2
4787 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4788 emitted for extraneous default arguments.
4789
4790 Returns TRUE if there were no errors found, FALSE otherwise. */
4791
4792 bool
4793 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4794 bool is_partial, int is_friend_decl)
4795 {
4796 const char *msg;
4797 int last_level_to_check;
4798 tree parm_level;
4799 bool no_errors = true;
4800
4801 /* [temp.param]
4802
4803 A default template-argument shall not be specified in a
4804 function template declaration or a function template definition, nor
4805 in the template-parameter-list of the definition of a member of a
4806 class template. */
4807
4808 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
4809 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
4810 /* You can't have a function template declaration in a local
4811 scope, nor you can you define a member of a class template in a
4812 local scope. */
4813 return true;
4814
4815 if ((TREE_CODE (decl) == TYPE_DECL
4816 && TREE_TYPE (decl)
4817 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4818 || (TREE_CODE (decl) == FUNCTION_DECL
4819 && LAMBDA_FUNCTION_P (decl)))
4820 /* A lambda doesn't have an explicit declaration; don't complain
4821 about the parms of the enclosing class. */
4822 return true;
4823
4824 if (current_class_type
4825 && !TYPE_BEING_DEFINED (current_class_type)
4826 && DECL_LANG_SPECIFIC (decl)
4827 && DECL_DECLARES_FUNCTION_P (decl)
4828 /* If this is either a friend defined in the scope of the class
4829 or a member function. */
4830 && (DECL_FUNCTION_MEMBER_P (decl)
4831 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4832 : DECL_FRIEND_CONTEXT (decl)
4833 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4834 : false)
4835 /* And, if it was a member function, it really was defined in
4836 the scope of the class. */
4837 && (!DECL_FUNCTION_MEMBER_P (decl)
4838 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4839 /* We already checked these parameters when the template was
4840 declared, so there's no need to do it again now. This function
4841 was defined in class scope, but we're processing its body now
4842 that the class is complete. */
4843 return true;
4844
4845 /* Core issue 226 (C++0x only): the following only applies to class
4846 templates. */
4847 if (is_primary
4848 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4849 {
4850 /* [temp.param]
4851
4852 If a template-parameter has a default template-argument, all
4853 subsequent template-parameters shall have a default
4854 template-argument supplied. */
4855 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4856 {
4857 tree inner_parms = TREE_VALUE (parm_level);
4858 int ntparms = TREE_VEC_LENGTH (inner_parms);
4859 int seen_def_arg_p = 0;
4860 int i;
4861
4862 for (i = 0; i < ntparms; ++i)
4863 {
4864 tree parm = TREE_VEC_ELT (inner_parms, i);
4865
4866 if (parm == error_mark_node)
4867 continue;
4868
4869 if (TREE_PURPOSE (parm))
4870 seen_def_arg_p = 1;
4871 else if (seen_def_arg_p
4872 && !template_parameter_pack_p (TREE_VALUE (parm)))
4873 {
4874 error ("no default argument for %qD", TREE_VALUE (parm));
4875 /* For better subsequent error-recovery, we indicate that
4876 there should have been a default argument. */
4877 TREE_PURPOSE (parm) = error_mark_node;
4878 no_errors = false;
4879 }
4880 else if (!is_partial
4881 && !is_friend_decl
4882 /* Don't complain about an enclosing partial
4883 specialization. */
4884 && parm_level == parms
4885 && TREE_CODE (decl) == TYPE_DECL
4886 && i < ntparms - 1
4887 && template_parameter_pack_p (TREE_VALUE (parm))
4888 /* A fixed parameter pack will be partially
4889 instantiated into a fixed length list. */
4890 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
4891 {
4892 /* A primary class template can only have one
4893 parameter pack, at the end of the template
4894 parameter list. */
4895
4896 error ("parameter pack %q+D must be at the end of the"
4897 " template parameter list", TREE_VALUE (parm));
4898
4899 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4900 = error_mark_node;
4901 no_errors = false;
4902 }
4903 }
4904 }
4905 }
4906
4907 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4908 || is_partial
4909 || !is_primary
4910 || is_friend_decl)
4911 /* For an ordinary class template, default template arguments are
4912 allowed at the innermost level, e.g.:
4913 template <class T = int>
4914 struct S {};
4915 but, in a partial specialization, they're not allowed even
4916 there, as we have in [temp.class.spec]:
4917
4918 The template parameter list of a specialization shall not
4919 contain default template argument values.
4920
4921 So, for a partial specialization, or for a function template
4922 (in C++98/C++03), we look at all of them. */
4923 ;
4924 else
4925 /* But, for a primary class template that is not a partial
4926 specialization we look at all template parameters except the
4927 innermost ones. */
4928 parms = TREE_CHAIN (parms);
4929
4930 /* Figure out what error message to issue. */
4931 if (is_friend_decl == 2)
4932 msg = G_("default template arguments may not be used in function template "
4933 "friend re-declaration");
4934 else if (is_friend_decl)
4935 msg = G_("default template arguments may not be used in function template "
4936 "friend declarations");
4937 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4938 msg = G_("default template arguments may not be used in function templates "
4939 "without -std=c++11 or -std=gnu++11");
4940 else if (is_partial)
4941 msg = G_("default template arguments may not be used in "
4942 "partial specializations");
4943 else
4944 msg = G_("default argument for template parameter for class enclosing %qD");
4945
4946 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4947 /* If we're inside a class definition, there's no need to
4948 examine the parameters to the class itself. On the one
4949 hand, they will be checked when the class is defined, and,
4950 on the other, default arguments are valid in things like:
4951 template <class T = double>
4952 struct S { template <class U> void f(U); };
4953 Here the default argument for `S' has no bearing on the
4954 declaration of `f'. */
4955 last_level_to_check = template_class_depth (current_class_type) + 1;
4956 else
4957 /* Check everything. */
4958 last_level_to_check = 0;
4959
4960 for (parm_level = parms;
4961 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4962 parm_level = TREE_CHAIN (parm_level))
4963 {
4964 tree inner_parms = TREE_VALUE (parm_level);
4965 int i;
4966 int ntparms;
4967
4968 ntparms = TREE_VEC_LENGTH (inner_parms);
4969 for (i = 0; i < ntparms; ++i)
4970 {
4971 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4972 continue;
4973
4974 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4975 {
4976 if (msg)
4977 {
4978 no_errors = false;
4979 if (is_friend_decl == 2)
4980 return no_errors;
4981
4982 error (msg, decl);
4983 msg = 0;
4984 }
4985
4986 /* Clear out the default argument so that we are not
4987 confused later. */
4988 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
4989 }
4990 }
4991
4992 /* At this point, if we're still interested in issuing messages,
4993 they must apply to classes surrounding the object declared. */
4994 if (msg)
4995 msg = G_("default argument for template parameter for class "
4996 "enclosing %qD");
4997 }
4998
4999 return no_errors;
5000 }
5001
5002 /* Worker for push_template_decl_real, called via
5003 for_each_template_parm. DATA is really an int, indicating the
5004 level of the parameters we are interested in. If T is a template
5005 parameter of that level, return nonzero. */
5006
5007 static int
5008 template_parm_this_level_p (tree t, void* data)
5009 {
5010 int this_level = *(int *)data;
5011 int level;
5012
5013 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
5014 level = TEMPLATE_PARM_LEVEL (t);
5015 else
5016 level = TEMPLATE_TYPE_LEVEL (t);
5017 return level == this_level;
5018 }
5019
5020 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
5021 parameters given by current_template_args, or reuses a
5022 previously existing one, if appropriate. Returns the DECL, or an
5023 equivalent one, if it is replaced via a call to duplicate_decls.
5024
5025 If IS_FRIEND is true, DECL is a friend declaration. */
5026
5027 tree
5028 push_template_decl_real (tree decl, bool is_friend)
5029 {
5030 tree tmpl;
5031 tree args;
5032 tree info;
5033 tree ctx;
5034 bool is_primary;
5035 bool is_partial;
5036 int new_template_p = 0;
5037 /* True if the template is a member template, in the sense of
5038 [temp.mem]. */
5039 bool member_template_p = false;
5040
5041 if (decl == error_mark_node || !current_template_parms)
5042 return error_mark_node;
5043
5044 /* See if this is a partial specialization. */
5045 is_partial = ((DECL_IMPLICIT_TYPEDEF_P (decl)
5046 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
5047 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
5048 || (VAR_P (decl)
5049 && DECL_LANG_SPECIFIC (decl)
5050 && DECL_TEMPLATE_SPECIALIZATION (decl)
5051 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl))));
5052
5053 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
5054 is_friend = true;
5055
5056 if (is_friend)
5057 /* For a friend, we want the context of the friend function, not
5058 the type of which it is a friend. */
5059 ctx = CP_DECL_CONTEXT (decl);
5060 else if (CP_DECL_CONTEXT (decl)
5061 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
5062 /* In the case of a virtual function, we want the class in which
5063 it is defined. */
5064 ctx = CP_DECL_CONTEXT (decl);
5065 else
5066 /* Otherwise, if we're currently defining some class, the DECL
5067 is assumed to be a member of the class. */
5068 ctx = current_scope ();
5069
5070 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
5071 ctx = NULL_TREE;
5072
5073 if (!DECL_CONTEXT (decl))
5074 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5075
5076 /* See if this is a primary template. */
5077 if (is_friend && ctx
5078 && uses_template_parms_level (ctx, processing_template_decl))
5079 /* A friend template that specifies a class context, i.e.
5080 template <typename T> friend void A<T>::f();
5081 is not primary. */
5082 is_primary = false;
5083 else if (TREE_CODE (decl) == TYPE_DECL
5084 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5085 is_primary = false;
5086 else
5087 is_primary = template_parm_scope_p ();
5088
5089 if (is_primary)
5090 {
5091 if (DECL_CLASS_SCOPE_P (decl))
5092 member_template_p = true;
5093 if (TREE_CODE (decl) == TYPE_DECL
5094 && anon_aggrname_p (DECL_NAME (decl)))
5095 {
5096 error ("template class without a name");
5097 return error_mark_node;
5098 }
5099 else if (TREE_CODE (decl) == FUNCTION_DECL)
5100 {
5101 if (member_template_p)
5102 {
5103 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
5104 error ("member template %qD may not have virt-specifiers", decl);
5105 }
5106 if (DECL_DESTRUCTOR_P (decl))
5107 {
5108 /* [temp.mem]
5109
5110 A destructor shall not be a member template. */
5111 error ("destructor %qD declared as member template", decl);
5112 return error_mark_node;
5113 }
5114 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
5115 && (!prototype_p (TREE_TYPE (decl))
5116 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
5117 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
5118 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
5119 == void_list_node)))
5120 {
5121 /* [basic.stc.dynamic.allocation]
5122
5123 An allocation function can be a function
5124 template. ... Template allocation functions shall
5125 have two or more parameters. */
5126 error ("invalid template declaration of %qD", decl);
5127 return error_mark_node;
5128 }
5129 }
5130 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5131 && CLASS_TYPE_P (TREE_TYPE (decl)))
5132 /* OK */;
5133 else if (TREE_CODE (decl) == TYPE_DECL
5134 && TYPE_DECL_ALIAS_P (decl))
5135 /* alias-declaration */
5136 gcc_assert (!DECL_ARTIFICIAL (decl));
5137 else if (VAR_P (decl))
5138 /* C++14 variable template. */;
5139 else
5140 {
5141 error ("template declaration of %q#D", decl);
5142 return error_mark_node;
5143 }
5144 }
5145
5146 /* Check to see that the rules regarding the use of default
5147 arguments are not being violated. */
5148 check_default_tmpl_args (decl, current_template_parms,
5149 is_primary, is_partial, /*is_friend_decl=*/0);
5150
5151 /* Ensure that there are no parameter packs in the type of this
5152 declaration that have not been expanded. */
5153 if (TREE_CODE (decl) == FUNCTION_DECL)
5154 {
5155 /* Check each of the arguments individually to see if there are
5156 any bare parameter packs. */
5157 tree type = TREE_TYPE (decl);
5158 tree arg = DECL_ARGUMENTS (decl);
5159 tree argtype = TYPE_ARG_TYPES (type);
5160
5161 while (arg && argtype)
5162 {
5163 if (!DECL_PACK_P (arg)
5164 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
5165 {
5166 /* This is a PARM_DECL that contains unexpanded parameter
5167 packs. We have already complained about this in the
5168 check_for_bare_parameter_packs call, so just replace
5169 these types with ERROR_MARK_NODE. */
5170 TREE_TYPE (arg) = error_mark_node;
5171 TREE_VALUE (argtype) = error_mark_node;
5172 }
5173
5174 arg = DECL_CHAIN (arg);
5175 argtype = TREE_CHAIN (argtype);
5176 }
5177
5178 /* Check for bare parameter packs in the return type and the
5179 exception specifiers. */
5180 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
5181 /* Errors were already issued, set return type to int
5182 as the frontend doesn't expect error_mark_node as
5183 the return type. */
5184 TREE_TYPE (type) = integer_type_node;
5185 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
5186 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
5187 }
5188 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
5189 && TYPE_DECL_ALIAS_P (decl))
5190 ? DECL_ORIGINAL_TYPE (decl)
5191 : TREE_TYPE (decl)))
5192 {
5193 TREE_TYPE (decl) = error_mark_node;
5194 return error_mark_node;
5195 }
5196
5197 if (is_partial)
5198 return process_partial_specialization (decl);
5199
5200 args = current_template_args ();
5201
5202 if (!ctx
5203 || TREE_CODE (ctx) == FUNCTION_DECL
5204 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
5205 || (TREE_CODE (decl) == TYPE_DECL
5206 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5207 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
5208 {
5209 if (DECL_LANG_SPECIFIC (decl)
5210 && DECL_TEMPLATE_INFO (decl)
5211 && DECL_TI_TEMPLATE (decl))
5212 tmpl = DECL_TI_TEMPLATE (decl);
5213 /* If DECL is a TYPE_DECL for a class-template, then there won't
5214 be DECL_LANG_SPECIFIC. The information equivalent to
5215 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
5216 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5217 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
5218 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
5219 {
5220 /* Since a template declaration already existed for this
5221 class-type, we must be redeclaring it here. Make sure
5222 that the redeclaration is valid. */
5223 redeclare_class_template (TREE_TYPE (decl),
5224 current_template_parms,
5225 current_template_constraints ());
5226 /* We don't need to create a new TEMPLATE_DECL; just use the
5227 one we already had. */
5228 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
5229 }
5230 else
5231 {
5232 tmpl = build_template_decl (decl, current_template_parms,
5233 member_template_p);
5234 new_template_p = 1;
5235
5236 if (DECL_LANG_SPECIFIC (decl)
5237 && DECL_TEMPLATE_SPECIALIZATION (decl))
5238 {
5239 /* A specialization of a member template of a template
5240 class. */
5241 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
5242 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
5243 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
5244 }
5245 }
5246 }
5247 else
5248 {
5249 tree a, t, current, parms;
5250 int i;
5251 tree tinfo = get_template_info (decl);
5252
5253 if (!tinfo)
5254 {
5255 error ("template definition of non-template %q#D", decl);
5256 return error_mark_node;
5257 }
5258
5259 tmpl = TI_TEMPLATE (tinfo);
5260
5261 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
5262 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
5263 && DECL_TEMPLATE_SPECIALIZATION (decl)
5264 && DECL_MEMBER_TEMPLATE_P (tmpl))
5265 {
5266 tree new_tmpl;
5267
5268 /* The declaration is a specialization of a member
5269 template, declared outside the class. Therefore, the
5270 innermost template arguments will be NULL, so we
5271 replace them with the arguments determined by the
5272 earlier call to check_explicit_specialization. */
5273 args = DECL_TI_ARGS (decl);
5274
5275 new_tmpl
5276 = build_template_decl (decl, current_template_parms,
5277 member_template_p);
5278 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
5279 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
5280 DECL_TI_TEMPLATE (decl) = new_tmpl;
5281 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
5282 DECL_TEMPLATE_INFO (new_tmpl)
5283 = build_template_info (tmpl, args);
5284
5285 register_specialization (new_tmpl,
5286 most_general_template (tmpl),
5287 args,
5288 is_friend, 0);
5289 return decl;
5290 }
5291
5292 /* Make sure the template headers we got make sense. */
5293
5294 parms = DECL_TEMPLATE_PARMS (tmpl);
5295 i = TMPL_PARMS_DEPTH (parms);
5296 if (TMPL_ARGS_DEPTH (args) != i)
5297 {
5298 error ("expected %d levels of template parms for %q#D, got %d",
5299 i, decl, TMPL_ARGS_DEPTH (args));
5300 DECL_INTERFACE_KNOWN (decl) = 1;
5301 return error_mark_node;
5302 }
5303 else
5304 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
5305 {
5306 a = TMPL_ARGS_LEVEL (args, i);
5307 t = INNERMOST_TEMPLATE_PARMS (parms);
5308
5309 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
5310 {
5311 if (current == decl)
5312 error ("got %d template parameters for %q#D",
5313 TREE_VEC_LENGTH (a), decl);
5314 else
5315 error ("got %d template parameters for %q#T",
5316 TREE_VEC_LENGTH (a), current);
5317 error (" but %d required", TREE_VEC_LENGTH (t));
5318 /* Avoid crash in import_export_decl. */
5319 DECL_INTERFACE_KNOWN (decl) = 1;
5320 return error_mark_node;
5321 }
5322
5323 if (current == decl)
5324 current = ctx;
5325 else if (current == NULL_TREE)
5326 /* Can happen in erroneous input. */
5327 break;
5328 else
5329 current = get_containing_scope (current);
5330 }
5331
5332 /* Check that the parms are used in the appropriate qualifying scopes
5333 in the declarator. */
5334 if (!comp_template_args
5335 (TI_ARGS (tinfo),
5336 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5337 {
5338 error ("\
5339 template arguments to %qD do not match original template %qD",
5340 decl, DECL_TEMPLATE_RESULT (tmpl));
5341 if (!uses_template_parms (TI_ARGS (tinfo)))
5342 inform (input_location, "use template<> for an explicit specialization");
5343 /* Avoid crash in import_export_decl. */
5344 DECL_INTERFACE_KNOWN (decl) = 1;
5345 return error_mark_node;
5346 }
5347 }
5348
5349 DECL_TEMPLATE_RESULT (tmpl) = decl;
5350 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5351
5352 /* Push template declarations for global functions and types. Note
5353 that we do not try to push a global template friend declared in a
5354 template class; such a thing may well depend on the template
5355 parameters of the class. */
5356 if (new_template_p && !ctx
5357 && !(is_friend && template_class_depth (current_class_type) > 0))
5358 {
5359 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5360 if (tmpl == error_mark_node)
5361 return error_mark_node;
5362
5363 /* Hide template friend classes that haven't been declared yet. */
5364 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5365 {
5366 DECL_ANTICIPATED (tmpl) = 1;
5367 DECL_FRIEND_P (tmpl) = 1;
5368 }
5369 }
5370
5371 if (is_primary)
5372 {
5373 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5374 int i;
5375
5376 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5377 if (DECL_CONV_FN_P (tmpl))
5378 {
5379 int depth = TMPL_PARMS_DEPTH (parms);
5380
5381 /* It is a conversion operator. See if the type converted to
5382 depends on innermost template operands. */
5383
5384 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5385 depth))
5386 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5387 }
5388
5389 /* Give template template parms a DECL_CONTEXT of the template
5390 for which they are a parameter. */
5391 parms = INNERMOST_TEMPLATE_PARMS (parms);
5392 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5393 {
5394 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5395 if (TREE_CODE (parm) == TEMPLATE_DECL)
5396 DECL_CONTEXT (parm) = tmpl;
5397 }
5398
5399 if (TREE_CODE (decl) == TYPE_DECL
5400 && TYPE_DECL_ALIAS_P (decl)
5401 && complex_alias_template_p (tmpl))
5402 TEMPLATE_DECL_COMPLEX_ALIAS_P (tmpl) = true;
5403 }
5404
5405 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5406 back to its most general template. If TMPL is a specialization,
5407 ARGS may only have the innermost set of arguments. Add the missing
5408 argument levels if necessary. */
5409 if (DECL_TEMPLATE_INFO (tmpl))
5410 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5411
5412 info = build_template_info (tmpl, args);
5413
5414 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5415 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5416 else
5417 {
5418 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5419 retrofit_lang_decl (decl);
5420 if (DECL_LANG_SPECIFIC (decl))
5421 DECL_TEMPLATE_INFO (decl) = info;
5422 }
5423
5424 if (flag_implicit_templates
5425 && !is_friend
5426 && TREE_PUBLIC (decl)
5427 && VAR_OR_FUNCTION_DECL_P (decl))
5428 /* Set DECL_COMDAT on template instantiations; if we force
5429 them to be emitted by explicit instantiation or -frepo,
5430 mark_needed will tell cgraph to do the right thing. */
5431 DECL_COMDAT (decl) = true;
5432
5433 return DECL_TEMPLATE_RESULT (tmpl);
5434 }
5435
5436 tree
5437 push_template_decl (tree decl)
5438 {
5439 return push_template_decl_real (decl, false);
5440 }
5441
5442 /* FN is an inheriting constructor that inherits from the constructor
5443 template INHERITED; turn FN into a constructor template with a matching
5444 template header. */
5445
5446 tree
5447 add_inherited_template_parms (tree fn, tree inherited)
5448 {
5449 tree inner_parms
5450 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5451 inner_parms = copy_node (inner_parms);
5452 tree parms
5453 = tree_cons (size_int (processing_template_decl + 1),
5454 inner_parms, current_template_parms);
5455 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5456 tree args = template_parms_to_args (parms);
5457 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5458 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5459 DECL_TEMPLATE_RESULT (tmpl) = fn;
5460 DECL_ARTIFICIAL (tmpl) = true;
5461 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5462 return tmpl;
5463 }
5464
5465 /* Called when a class template TYPE is redeclared with the indicated
5466 template PARMS, e.g.:
5467
5468 template <class T> struct S;
5469 template <class T> struct S {}; */
5470
5471 bool
5472 redeclare_class_template (tree type, tree parms, tree cons)
5473 {
5474 tree tmpl;
5475 tree tmpl_parms;
5476 int i;
5477
5478 if (!TYPE_TEMPLATE_INFO (type))
5479 {
5480 error ("%qT is not a template type", type);
5481 return false;
5482 }
5483
5484 tmpl = TYPE_TI_TEMPLATE (type);
5485 if (!PRIMARY_TEMPLATE_P (tmpl))
5486 /* The type is nested in some template class. Nothing to worry
5487 about here; there are no new template parameters for the nested
5488 type. */
5489 return true;
5490
5491 if (!parms)
5492 {
5493 error ("template specifiers not specified in declaration of %qD",
5494 tmpl);
5495 return false;
5496 }
5497
5498 parms = INNERMOST_TEMPLATE_PARMS (parms);
5499 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5500
5501 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5502 {
5503 error_n (input_location, TREE_VEC_LENGTH (parms),
5504 "redeclared with %d template parameter",
5505 "redeclared with %d template parameters",
5506 TREE_VEC_LENGTH (parms));
5507 inform_n (DECL_SOURCE_LOCATION (tmpl), TREE_VEC_LENGTH (tmpl_parms),
5508 "previous declaration %qD used %d template parameter",
5509 "previous declaration %qD used %d template parameters",
5510 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5511 return false;
5512 }
5513
5514 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5515 {
5516 tree tmpl_parm;
5517 tree parm;
5518 tree tmpl_default;
5519 tree parm_default;
5520
5521 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5522 || TREE_VEC_ELT (parms, i) == error_mark_node)
5523 continue;
5524
5525 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5526 if (error_operand_p (tmpl_parm))
5527 return false;
5528
5529 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5530 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5531 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5532
5533 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5534 TEMPLATE_DECL. */
5535 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5536 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5537 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5538 || (TREE_CODE (tmpl_parm) != PARM_DECL
5539 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5540 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5541 || (TREE_CODE (tmpl_parm) == PARM_DECL
5542 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5543 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5544 {
5545 error ("template parameter %q+#D", tmpl_parm);
5546 error ("redeclared here as %q#D", parm);
5547 return false;
5548 }
5549
5550 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5551 {
5552 /* We have in [temp.param]:
5553
5554 A template-parameter may not be given default arguments
5555 by two different declarations in the same scope. */
5556 error_at (input_location, "redefinition of default argument for %q#D", parm);
5557 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5558 "original definition appeared here");
5559 return false;
5560 }
5561
5562 if (parm_default != NULL_TREE)
5563 /* Update the previous template parameters (which are the ones
5564 that will really count) with the new default value. */
5565 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5566 else if (tmpl_default != NULL_TREE)
5567 /* Update the new parameters, too; they'll be used as the
5568 parameters for any members. */
5569 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5570
5571 /* Give each template template parm in this redeclaration a
5572 DECL_CONTEXT of the template for which they are a parameter. */
5573 if (TREE_CODE (parm) == TEMPLATE_DECL)
5574 {
5575 gcc_assert (DECL_CONTEXT (parm) == NULL_TREE);
5576 DECL_CONTEXT (parm) = tmpl;
5577 }
5578 }
5579
5580 // Cannot redeclare a class template with a different set of constraints.
5581 if (!equivalent_constraints (get_constraints (tmpl), cons))
5582 {
5583 error_at (input_location, "redeclaration %q#D with different "
5584 "constraints", tmpl);
5585 inform (DECL_SOURCE_LOCATION (tmpl),
5586 "original declaration appeared here");
5587 }
5588
5589 return true;
5590 }
5591
5592 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5593 to be used when the caller has already checked
5594 (processing_template_decl
5595 && !instantiation_dependent_expression_p (expr)
5596 && potential_constant_expression (expr))
5597 and cleared processing_template_decl. */
5598
5599 tree
5600 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
5601 {
5602 return tsubst_copy_and_build (expr,
5603 /*args=*/NULL_TREE,
5604 complain,
5605 /*in_decl=*/NULL_TREE,
5606 /*function_p=*/false,
5607 /*integral_constant_expression_p=*/true);
5608 }
5609
5610 /* Simplify EXPR if it is a non-dependent expression. Returns the
5611 (possibly simplified) expression. */
5612
5613 tree
5614 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5615 {
5616 if (expr == NULL_TREE)
5617 return NULL_TREE;
5618
5619 /* If we're in a template, but EXPR isn't value dependent, simplify
5620 it. We're supposed to treat:
5621
5622 template <typename T> void f(T[1 + 1]);
5623 template <typename T> void f(T[2]);
5624
5625 as two declarations of the same function, for example. */
5626 if (processing_template_decl
5627 && !instantiation_dependent_expression_p (expr)
5628 && potential_constant_expression (expr))
5629 {
5630 processing_template_decl_sentinel s;
5631 expr = instantiate_non_dependent_expr_internal (expr, complain);
5632 }
5633 return expr;
5634 }
5635
5636 tree
5637 instantiate_non_dependent_expr (tree expr)
5638 {
5639 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
5640 }
5641
5642 /* True iff T is a specialization of a variable template. */
5643
5644 bool
5645 variable_template_specialization_p (tree t)
5646 {
5647 if (!VAR_P (t) || !DECL_LANG_SPECIFIC (t) || !DECL_TEMPLATE_INFO (t))
5648 return false;
5649 tree tmpl = DECL_TI_TEMPLATE (t);
5650 return variable_template_p (tmpl);
5651 }
5652
5653 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5654 template declaration, or a TYPE_DECL for an alias declaration. */
5655
5656 bool
5657 alias_type_or_template_p (tree t)
5658 {
5659 if (t == NULL_TREE)
5660 return false;
5661 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5662 || (TYPE_P (t)
5663 && TYPE_NAME (t)
5664 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5665 || DECL_ALIAS_TEMPLATE_P (t));
5666 }
5667
5668 /* Return TRUE iff T is a specialization of an alias template. */
5669
5670 bool
5671 alias_template_specialization_p (const_tree t)
5672 {
5673 /* It's an alias template specialization if it's an alias and its
5674 TYPE_NAME is a specialization of a primary template. */
5675 if (TYPE_ALIAS_P (t))
5676 {
5677 tree name = TYPE_NAME (t);
5678 if (DECL_LANG_SPECIFIC (name))
5679 if (tree ti = DECL_TEMPLATE_INFO (name))
5680 {
5681 tree tmpl = TI_TEMPLATE (ti);
5682 return PRIMARY_TEMPLATE_P (tmpl);
5683 }
5684 }
5685 return false;
5686 }
5687
5688 /* An alias template is complex from a SFINAE perspective if a template-id
5689 using that alias can be ill-formed when the expansion is not, as with
5690 the void_t template. We determine this by checking whether the
5691 expansion for the alias template uses all its template parameters. */
5692
5693 struct uses_all_template_parms_data
5694 {
5695 int level;
5696 bool *seen;
5697 };
5698
5699 static int
5700 uses_all_template_parms_r (tree t, void *data_)
5701 {
5702 struct uses_all_template_parms_data &data
5703 = *(struct uses_all_template_parms_data*)data_;
5704 tree idx = get_template_parm_index (t);
5705
5706 if (TEMPLATE_PARM_LEVEL (idx) == data.level)
5707 data.seen[TEMPLATE_PARM_IDX (idx)] = true;
5708 return 0;
5709 }
5710
5711 static bool
5712 complex_alias_template_p (const_tree tmpl)
5713 {
5714 struct uses_all_template_parms_data data;
5715 tree pat = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5716 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5717 data.level = TMPL_PARMS_DEPTH (parms);
5718 int len = TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS (parms));
5719 data.seen = XALLOCAVEC (bool, len);
5720 for (int i = 0; i < len; ++i)
5721 data.seen[i] = false;
5722
5723 for_each_template_parm (pat, uses_all_template_parms_r, &data, NULL, true);
5724 for (int i = 0; i < len; ++i)
5725 if (!data.seen[i])
5726 return true;
5727 return false;
5728 }
5729
5730 /* Return TRUE iff T is a specialization of a complex alias template with
5731 dependent template-arguments. */
5732
5733 bool
5734 dependent_alias_template_spec_p (const_tree t)
5735 {
5736 return (alias_template_specialization_p (t)
5737 && TEMPLATE_DECL_COMPLEX_ALIAS_P (DECL_TI_TEMPLATE (TYPE_NAME (t)))
5738 && (any_dependent_template_arguments_p
5739 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (t)))));
5740 }
5741
5742 /* Return the number of innermost template parameters in TMPL. */
5743
5744 static int
5745 num_innermost_template_parms (tree tmpl)
5746 {
5747 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5748 return TREE_VEC_LENGTH (parms);
5749 }
5750
5751 /* Return either TMPL or another template that it is equivalent to under DR
5752 1286: An alias that just changes the name of a template is equivalent to
5753 the other template. */
5754
5755 static tree
5756 get_underlying_template (tree tmpl)
5757 {
5758 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5759 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5760 {
5761 tree result = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5762 if (TYPE_TEMPLATE_INFO (result))
5763 {
5764 tree sub = TYPE_TI_TEMPLATE (result);
5765 if (PRIMARY_TEMPLATE_P (sub)
5766 && (num_innermost_template_parms (tmpl)
5767 == num_innermost_template_parms (sub)))
5768 {
5769 tree alias_args = INNERMOST_TEMPLATE_ARGS
5770 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5771 if (!comp_template_args (TYPE_TI_ARGS (result), alias_args))
5772 break;
5773 /* The alias type is equivalent to the pattern of the
5774 underlying template, so strip the alias. */
5775 tmpl = sub;
5776 continue;
5777 }
5778 }
5779 break;
5780 }
5781 return tmpl;
5782 }
5783
5784 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5785 must be a function or a pointer-to-function type, as specified
5786 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5787 and check that the resulting function has external linkage. */
5788
5789 static tree
5790 convert_nontype_argument_function (tree type, tree expr,
5791 tsubst_flags_t complain)
5792 {
5793 tree fns = expr;
5794 tree fn, fn_no_ptr;
5795 linkage_kind linkage;
5796
5797 fn = instantiate_type (type, fns, tf_none);
5798 if (fn == error_mark_node)
5799 return error_mark_node;
5800
5801 fn_no_ptr = fn;
5802 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5803 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5804 if (BASELINK_P (fn_no_ptr))
5805 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5806
5807 /* [temp.arg.nontype]/1
5808
5809 A template-argument for a non-type, non-template template-parameter
5810 shall be one of:
5811 [...]
5812 -- the address of an object or function with external [C++11: or
5813 internal] linkage. */
5814
5815 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5816 {
5817 if (complain & tf_error)
5818 {
5819 error ("%qE is not a valid template argument for type %qT",
5820 expr, type);
5821 if (TYPE_PTR_P (type))
5822 error ("it must be the address of a function with "
5823 "external linkage");
5824 else
5825 error ("it must be the name of a function with "
5826 "external linkage");
5827 }
5828 return NULL_TREE;
5829 }
5830
5831 linkage = decl_linkage (fn_no_ptr);
5832 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
5833 {
5834 if (complain & tf_error)
5835 {
5836 if (cxx_dialect >= cxx11)
5837 error ("%qE is not a valid template argument for type %qT "
5838 "because %qD has no linkage",
5839 expr, type, fn_no_ptr);
5840 else
5841 error ("%qE is not a valid template argument for type %qT "
5842 "because %qD does not have external linkage",
5843 expr, type, fn_no_ptr);
5844 }
5845 return NULL_TREE;
5846 }
5847
5848 return fn;
5849 }
5850
5851 /* Subroutine of convert_nontype_argument.
5852 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5853 Emit an error otherwise. */
5854
5855 static bool
5856 check_valid_ptrmem_cst_expr (tree type, tree expr,
5857 tsubst_flags_t complain)
5858 {
5859 STRIP_NOPS (expr);
5860 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5861 return true;
5862 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
5863 return true;
5864 if (processing_template_decl
5865 && TREE_CODE (expr) == ADDR_EXPR
5866 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
5867 return true;
5868 if (complain & tf_error)
5869 {
5870 error ("%qE is not a valid template argument for type %qT",
5871 expr, type);
5872 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5873 }
5874 return false;
5875 }
5876
5877 /* Returns TRUE iff the address of OP is value-dependent.
5878
5879 14.6.2.4 [temp.dep.temp]:
5880 A non-integral non-type template-argument is dependent if its type is
5881 dependent or it has either of the following forms
5882 qualified-id
5883 & qualified-id
5884 and contains a nested-name-specifier which specifies a class-name that
5885 names a dependent type.
5886
5887 We generalize this to just say that the address of a member of a
5888 dependent class is value-dependent; the above doesn't cover the
5889 address of a static data member named with an unqualified-id. */
5890
5891 static bool
5892 has_value_dependent_address (tree op)
5893 {
5894 /* We could use get_inner_reference here, but there's no need;
5895 this is only relevant for template non-type arguments, which
5896 can only be expressed as &id-expression. */
5897 if (DECL_P (op))
5898 {
5899 tree ctx = CP_DECL_CONTEXT (op);
5900 if (TYPE_P (ctx) && dependent_type_p (ctx))
5901 return true;
5902 }
5903
5904 return false;
5905 }
5906
5907 /* The next set of functions are used for providing helpful explanatory
5908 diagnostics for failed overload resolution. Their messages should be
5909 indented by two spaces for consistency with the messages in
5910 call.c */
5911
5912 static int
5913 unify_success (bool /*explain_p*/)
5914 {
5915 return 0;
5916 }
5917
5918 static int
5919 unify_parameter_deduction_failure (bool explain_p, tree parm)
5920 {
5921 if (explain_p)
5922 inform (input_location,
5923 " couldn't deduce template parameter %qD", parm);
5924 return 1;
5925 }
5926
5927 static int
5928 unify_invalid (bool /*explain_p*/)
5929 {
5930 return 1;
5931 }
5932
5933 static int
5934 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5935 {
5936 if (explain_p)
5937 inform (input_location,
5938 " types %qT and %qT have incompatible cv-qualifiers",
5939 parm, arg);
5940 return 1;
5941 }
5942
5943 static int
5944 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5945 {
5946 if (explain_p)
5947 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5948 return 1;
5949 }
5950
5951 static int
5952 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
5953 {
5954 if (explain_p)
5955 inform (input_location,
5956 " template parameter %qD is not a parameter pack, but "
5957 "argument %qD is",
5958 parm, arg);
5959 return 1;
5960 }
5961
5962 static int
5963 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
5964 {
5965 if (explain_p)
5966 inform (input_location,
5967 " template argument %qE does not match "
5968 "pointer-to-member constant %qE",
5969 arg, parm);
5970 return 1;
5971 }
5972
5973 static int
5974 unify_expression_unequal (bool explain_p, tree parm, tree arg)
5975 {
5976 if (explain_p)
5977 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
5978 return 1;
5979 }
5980
5981 static int
5982 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
5983 {
5984 if (explain_p)
5985 inform (input_location,
5986 " inconsistent parameter pack deduction with %qT and %qT",
5987 old_arg, new_arg);
5988 return 1;
5989 }
5990
5991 static int
5992 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
5993 {
5994 if (explain_p)
5995 {
5996 if (TYPE_P (parm))
5997 inform (input_location,
5998 " deduced conflicting types for parameter %qT (%qT and %qT)",
5999 parm, first, second);
6000 else
6001 inform (input_location,
6002 " deduced conflicting values for non-type parameter "
6003 "%qE (%qE and %qE)", parm, first, second);
6004 }
6005 return 1;
6006 }
6007
6008 static int
6009 unify_vla_arg (bool explain_p, tree arg)
6010 {
6011 if (explain_p)
6012 inform (input_location,
6013 " variable-sized array type %qT is not "
6014 "a valid template argument",
6015 arg);
6016 return 1;
6017 }
6018
6019 static int
6020 unify_method_type_error (bool explain_p, tree arg)
6021 {
6022 if (explain_p)
6023 inform (input_location,
6024 " member function type %qT is not a valid template argument",
6025 arg);
6026 return 1;
6027 }
6028
6029 static int
6030 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
6031 {
6032 if (explain_p)
6033 {
6034 if (least_p)
6035 inform_n (input_location, wanted,
6036 " candidate expects at least %d argument, %d provided",
6037 " candidate expects at least %d arguments, %d provided",
6038 wanted, have);
6039 else
6040 inform_n (input_location, wanted,
6041 " candidate expects %d argument, %d provided",
6042 " candidate expects %d arguments, %d provided",
6043 wanted, have);
6044 }
6045 return 1;
6046 }
6047
6048 static int
6049 unify_too_many_arguments (bool explain_p, int have, int wanted)
6050 {
6051 return unify_arity (explain_p, have, wanted);
6052 }
6053
6054 static int
6055 unify_too_few_arguments (bool explain_p, int have, int wanted,
6056 bool least_p = false)
6057 {
6058 return unify_arity (explain_p, have, wanted, least_p);
6059 }
6060
6061 static int
6062 unify_arg_conversion (bool explain_p, tree to_type,
6063 tree from_type, tree arg)
6064 {
6065 if (explain_p)
6066 inform (EXPR_LOC_OR_LOC (arg, input_location),
6067 " cannot convert %qE (type %qT) to type %qT",
6068 arg, from_type, to_type);
6069 return 1;
6070 }
6071
6072 static int
6073 unify_no_common_base (bool explain_p, enum template_base_result r,
6074 tree parm, tree arg)
6075 {
6076 if (explain_p)
6077 switch (r)
6078 {
6079 case tbr_ambiguous_baseclass:
6080 inform (input_location, " %qT is an ambiguous base class of %qT",
6081 parm, arg);
6082 break;
6083 default:
6084 inform (input_location, " %qT is not derived from %qT", arg, parm);
6085 break;
6086 }
6087 return 1;
6088 }
6089
6090 static int
6091 unify_inconsistent_template_template_parameters (bool explain_p)
6092 {
6093 if (explain_p)
6094 inform (input_location,
6095 " template parameters of a template template argument are "
6096 "inconsistent with other deduced template arguments");
6097 return 1;
6098 }
6099
6100 static int
6101 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
6102 {
6103 if (explain_p)
6104 inform (input_location,
6105 " can't deduce a template for %qT from non-template type %qT",
6106 parm, arg);
6107 return 1;
6108 }
6109
6110 static int
6111 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
6112 {
6113 if (explain_p)
6114 inform (input_location,
6115 " template argument %qE does not match %qD", arg, parm);
6116 return 1;
6117 }
6118
6119 static int
6120 unify_overload_resolution_failure (bool explain_p, tree arg)
6121 {
6122 if (explain_p)
6123 inform (input_location,
6124 " could not resolve address from overloaded function %qE",
6125 arg);
6126 return 1;
6127 }
6128
6129 /* Attempt to convert the non-type template parameter EXPR to the
6130 indicated TYPE. If the conversion is successful, return the
6131 converted value. If the conversion is unsuccessful, return
6132 NULL_TREE if we issued an error message, or error_mark_node if we
6133 did not. We issue error messages for out-and-out bad template
6134 parameters, but not simply because the conversion failed, since we
6135 might be just trying to do argument deduction. Both TYPE and EXPR
6136 must be non-dependent.
6137
6138 The conversion follows the special rules described in
6139 [temp.arg.nontype], and it is much more strict than an implicit
6140 conversion.
6141
6142 This function is called twice for each template argument (see
6143 lookup_template_class for a more accurate description of this
6144 problem). This means that we need to handle expressions which
6145 are not valid in a C++ source, but can be created from the
6146 first call (for instance, casts to perform conversions). These
6147 hacks can go away after we fix the double coercion problem. */
6148
6149 static tree
6150 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
6151 {
6152 tree expr_type;
6153
6154 /* Detect immediately string literals as invalid non-type argument.
6155 This special-case is not needed for correctness (we would easily
6156 catch this later), but only to provide better diagnostic for this
6157 common user mistake. As suggested by DR 100, we do not mention
6158 linkage issues in the diagnostic as this is not the point. */
6159 /* FIXME we're making this OK. */
6160 if (TREE_CODE (expr) == STRING_CST)
6161 {
6162 if (complain & tf_error)
6163 error ("%qE is not a valid template argument for type %qT "
6164 "because string literals can never be used in this context",
6165 expr, type);
6166 return NULL_TREE;
6167 }
6168
6169 /* Add the ADDR_EXPR now for the benefit of
6170 value_dependent_expression_p. */
6171 if (TYPE_PTROBV_P (type)
6172 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
6173 {
6174 expr = decay_conversion (expr, complain);
6175 if (expr == error_mark_node)
6176 return error_mark_node;
6177 }
6178
6179 /* If we are in a template, EXPR may be non-dependent, but still
6180 have a syntactic, rather than semantic, form. For example, EXPR
6181 might be a SCOPE_REF, rather than the VAR_DECL to which the
6182 SCOPE_REF refers. Preserving the qualifying scope is necessary
6183 so that access checking can be performed when the template is
6184 instantiated -- but here we need the resolved form so that we can
6185 convert the argument. */
6186 bool non_dep = false;
6187 if (TYPE_REF_OBJ_P (type)
6188 && has_value_dependent_address (expr))
6189 /* If we want the address and it's value-dependent, don't fold. */;
6190 else if (!type_unknown_p (expr)
6191 && processing_template_decl
6192 && !instantiation_dependent_expression_p (expr)
6193 && potential_constant_expression (expr))
6194 non_dep = true;
6195 if (error_operand_p (expr))
6196 return error_mark_node;
6197 expr_type = TREE_TYPE (expr);
6198 if (TREE_CODE (type) == REFERENCE_TYPE)
6199 expr = mark_lvalue_use (expr);
6200 else
6201 expr = mark_rvalue_use (expr);
6202
6203 /* If the argument is non-dependent, perform any conversions in
6204 non-dependent context as well. */
6205 processing_template_decl_sentinel s (non_dep);
6206 if (non_dep)
6207 expr = instantiate_non_dependent_expr_internal (expr, complain);
6208
6209 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
6210 to a non-type argument of "nullptr". */
6211 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
6212 expr = convert (type, expr);
6213
6214 /* In C++11, integral or enumeration non-type template arguments can be
6215 arbitrary constant expressions. Pointer and pointer to
6216 member arguments can be general constant expressions that evaluate
6217 to a null value, but otherwise still need to be of a specific form. */
6218 if (cxx_dialect >= cxx11)
6219 {
6220 if (TREE_CODE (expr) == PTRMEM_CST)
6221 /* A PTRMEM_CST is already constant, and a valid template
6222 argument for a parameter of pointer to member type, we just want
6223 to leave it in that form rather than lower it to a
6224 CONSTRUCTOR. */;
6225 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6226 expr = maybe_constant_value (expr);
6227 else if (TYPE_PTR_OR_PTRMEM_P (type))
6228 {
6229 tree folded = maybe_constant_value (expr);
6230 if (TYPE_PTR_P (type) ? integer_zerop (folded)
6231 : null_member_pointer_value_p (folded))
6232 expr = folded;
6233 }
6234 }
6235
6236 /* HACK: Due to double coercion, we can get a
6237 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
6238 which is the tree that we built on the first call (see
6239 below when coercing to reference to object or to reference to
6240 function). We just strip everything and get to the arg.
6241 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
6242 for examples. */
6243 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
6244 {
6245 tree probe_type, probe = expr;
6246 if (REFERENCE_REF_P (probe))
6247 probe = TREE_OPERAND (probe, 0);
6248 probe_type = TREE_TYPE (probe);
6249 if (TREE_CODE (probe) == NOP_EXPR)
6250 {
6251 /* ??? Maybe we could use convert_from_reference here, but we
6252 would need to relax its constraints because the NOP_EXPR
6253 could actually change the type to something more cv-qualified,
6254 and this is not folded by convert_from_reference. */
6255 tree addr = TREE_OPERAND (probe, 0);
6256 if (TREE_CODE (probe_type) == REFERENCE_TYPE
6257 && TREE_CODE (addr) == ADDR_EXPR
6258 && TYPE_PTR_P (TREE_TYPE (addr))
6259 && (same_type_ignoring_top_level_qualifiers_p
6260 (TREE_TYPE (probe_type),
6261 TREE_TYPE (TREE_TYPE (addr)))))
6262 {
6263 expr = TREE_OPERAND (addr, 0);
6264 expr_type = TREE_TYPE (probe_type);
6265 }
6266 }
6267 }
6268
6269 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
6270 parameter is a pointer to object, through decay and
6271 qualification conversion. Let's strip everything. */
6272 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
6273 {
6274 tree probe = expr;
6275 STRIP_NOPS (probe);
6276 if (TREE_CODE (probe) == ADDR_EXPR
6277 && TYPE_PTR_P (TREE_TYPE (probe)))
6278 {
6279 /* Skip the ADDR_EXPR only if it is part of the decay for
6280 an array. Otherwise, it is part of the original argument
6281 in the source code. */
6282 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
6283 probe = TREE_OPERAND (probe, 0);
6284 expr = probe;
6285 expr_type = TREE_TYPE (expr);
6286 }
6287 }
6288
6289 /* [temp.arg.nontype]/5, bullet 1
6290
6291 For a non-type template-parameter of integral or enumeration type,
6292 integral promotions (_conv.prom_) and integral conversions
6293 (_conv.integral_) are applied. */
6294 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6295 {
6296 tree t = build_integral_nontype_arg_conv (type, expr, complain);
6297 t = maybe_constant_value (t);
6298 if (t != error_mark_node)
6299 expr = t;
6300
6301 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
6302 return error_mark_node;
6303
6304 /* Notice that there are constant expressions like '4 % 0' which
6305 do not fold into integer constants. */
6306 if (TREE_CODE (expr) != INTEGER_CST)
6307 {
6308 if (complain & tf_error)
6309 {
6310 int errs = errorcount, warns = warningcount + werrorcount;
6311 if (processing_template_decl
6312 && !require_potential_constant_expression (expr))
6313 return NULL_TREE;
6314 expr = cxx_constant_value (expr);
6315 if (errorcount > errs || warningcount + werrorcount > warns)
6316 inform (EXPR_LOC_OR_LOC (expr, input_location),
6317 "in template argument for type %qT ", type);
6318 if (expr == error_mark_node)
6319 return NULL_TREE;
6320 /* else cxx_constant_value complained but gave us
6321 a real constant, so go ahead. */
6322 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
6323 }
6324 else
6325 return NULL_TREE;
6326 }
6327
6328 /* Avoid typedef problems. */
6329 if (TREE_TYPE (expr) != type)
6330 expr = fold_convert (type, expr);
6331 }
6332 /* [temp.arg.nontype]/5, bullet 2
6333
6334 For a non-type template-parameter of type pointer to object,
6335 qualification conversions (_conv.qual_) and the array-to-pointer
6336 conversion (_conv.array_) are applied. */
6337 else if (TYPE_PTROBV_P (type))
6338 {
6339 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
6340
6341 A template-argument for a non-type, non-template template-parameter
6342 shall be one of: [...]
6343
6344 -- the name of a non-type template-parameter;
6345 -- the address of an object or function with external linkage, [...]
6346 expressed as "& id-expression" where the & is optional if the name
6347 refers to a function or array, or if the corresponding
6348 template-parameter is a reference.
6349
6350 Here, we do not care about functions, as they are invalid anyway
6351 for a parameter of type pointer-to-object. */
6352
6353 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
6354 /* Non-type template parameters are OK. */
6355 ;
6356 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
6357 /* Null pointer values are OK in C++11. */;
6358 else if (TREE_CODE (expr) != ADDR_EXPR
6359 && TREE_CODE (expr_type) != ARRAY_TYPE)
6360 {
6361 if (VAR_P (expr))
6362 {
6363 if (complain & tf_error)
6364 error ("%qD is not a valid template argument "
6365 "because %qD is a variable, not the address of "
6366 "a variable", expr, expr);
6367 return NULL_TREE;
6368 }
6369 if (POINTER_TYPE_P (expr_type))
6370 {
6371 if (complain & tf_error)
6372 error ("%qE is not a valid template argument for %qT "
6373 "because it is not the address of a variable",
6374 expr, type);
6375 return NULL_TREE;
6376 }
6377 /* Other values, like integer constants, might be valid
6378 non-type arguments of some other type. */
6379 return error_mark_node;
6380 }
6381 else
6382 {
6383 tree decl;
6384
6385 decl = ((TREE_CODE (expr) == ADDR_EXPR)
6386 ? TREE_OPERAND (expr, 0) : expr);
6387 if (!VAR_P (decl))
6388 {
6389 if (complain & tf_error)
6390 error ("%qE is not a valid template argument of type %qT "
6391 "because %qE is not a variable", expr, type, decl);
6392 return NULL_TREE;
6393 }
6394 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
6395 {
6396 if (complain & tf_error)
6397 error ("%qE is not a valid template argument of type %qT "
6398 "because %qD does not have external linkage",
6399 expr, type, decl);
6400 return NULL_TREE;
6401 }
6402 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
6403 {
6404 if (complain & tf_error)
6405 error ("%qE is not a valid template argument of type %qT "
6406 "because %qD has no linkage", expr, type, decl);
6407 return NULL_TREE;
6408 }
6409 }
6410
6411 expr = decay_conversion (expr, complain);
6412 if (expr == error_mark_node)
6413 return error_mark_node;
6414
6415 expr = perform_qualification_conversions (type, expr);
6416 if (expr == error_mark_node)
6417 return error_mark_node;
6418 }
6419 /* [temp.arg.nontype]/5, bullet 3
6420
6421 For a non-type template-parameter of type reference to object, no
6422 conversions apply. The type referred to by the reference may be more
6423 cv-qualified than the (otherwise identical) type of the
6424 template-argument. The template-parameter is bound directly to the
6425 template-argument, which must be an lvalue. */
6426 else if (TYPE_REF_OBJ_P (type))
6427 {
6428 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
6429 expr_type))
6430 return error_mark_node;
6431
6432 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
6433 {
6434 if (complain & tf_error)
6435 error ("%qE is not a valid template argument for type %qT "
6436 "because of conflicts in cv-qualification", expr, type);
6437 return NULL_TREE;
6438 }
6439
6440 if (!real_lvalue_p (expr))
6441 {
6442 if (complain & tf_error)
6443 error ("%qE is not a valid template argument for type %qT "
6444 "because it is not an lvalue", expr, type);
6445 return NULL_TREE;
6446 }
6447
6448 /* [temp.arg.nontype]/1
6449
6450 A template-argument for a non-type, non-template template-parameter
6451 shall be one of: [...]
6452
6453 -- the address of an object or function with external linkage. */
6454 if (INDIRECT_REF_P (expr)
6455 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
6456 {
6457 expr = TREE_OPERAND (expr, 0);
6458 if (DECL_P (expr))
6459 {
6460 if (complain & tf_error)
6461 error ("%q#D is not a valid template argument for type %qT "
6462 "because a reference variable does not have a constant "
6463 "address", expr, type);
6464 return NULL_TREE;
6465 }
6466 }
6467
6468 if (!DECL_P (expr))
6469 {
6470 if (complain & tf_error)
6471 error ("%qE is not a valid template argument for type %qT "
6472 "because it is not an object with linkage",
6473 expr, type);
6474 return NULL_TREE;
6475 }
6476
6477 /* DR 1155 allows internal linkage in C++11 and up. */
6478 linkage_kind linkage = decl_linkage (expr);
6479 if (linkage < (cxx_dialect >= cxx11 ? lk_internal : lk_external))
6480 {
6481 if (complain & tf_error)
6482 error ("%qE is not a valid template argument for type %qT "
6483 "because object %qD does not have linkage",
6484 expr, type, expr);
6485 return NULL_TREE;
6486 }
6487
6488 expr = build_nop (type, build_address (expr));
6489 }
6490 /* [temp.arg.nontype]/5, bullet 4
6491
6492 For a non-type template-parameter of type pointer to function, only
6493 the function-to-pointer conversion (_conv.func_) is applied. If the
6494 template-argument represents a set of overloaded functions (or a
6495 pointer to such), the matching function is selected from the set
6496 (_over.over_). */
6497 else if (TYPE_PTRFN_P (type))
6498 {
6499 /* If the argument is a template-id, we might not have enough
6500 context information to decay the pointer. */
6501 if (!type_unknown_p (expr_type))
6502 {
6503 expr = decay_conversion (expr, complain);
6504 if (expr == error_mark_node)
6505 return error_mark_node;
6506 }
6507
6508 if (cxx_dialect >= cxx11 && integer_zerop (expr))
6509 /* Null pointer values are OK in C++11. */
6510 return perform_qualification_conversions (type, expr);
6511
6512 expr = convert_nontype_argument_function (type, expr, complain);
6513 if (!expr || expr == error_mark_node)
6514 return expr;
6515 }
6516 /* [temp.arg.nontype]/5, bullet 5
6517
6518 For a non-type template-parameter of type reference to function, no
6519 conversions apply. If the template-argument represents a set of
6520 overloaded functions, the matching function is selected from the set
6521 (_over.over_). */
6522 else if (TYPE_REFFN_P (type))
6523 {
6524 if (TREE_CODE (expr) == ADDR_EXPR)
6525 {
6526 if (complain & tf_error)
6527 {
6528 error ("%qE is not a valid template argument for type %qT "
6529 "because it is a pointer", expr, type);
6530 inform (input_location, "try using %qE instead",
6531 TREE_OPERAND (expr, 0));
6532 }
6533 return NULL_TREE;
6534 }
6535
6536 expr = convert_nontype_argument_function (type, expr, complain);
6537 if (!expr || expr == error_mark_node)
6538 return expr;
6539
6540 expr = build_nop (type, build_address (expr));
6541 }
6542 /* [temp.arg.nontype]/5, bullet 6
6543
6544 For a non-type template-parameter of type pointer to member function,
6545 no conversions apply. If the template-argument represents a set of
6546 overloaded member functions, the matching member function is selected
6547 from the set (_over.over_). */
6548 else if (TYPE_PTRMEMFUNC_P (type))
6549 {
6550 expr = instantiate_type (type, expr, tf_none);
6551 if (expr == error_mark_node)
6552 return error_mark_node;
6553
6554 /* [temp.arg.nontype] bullet 1 says the pointer to member
6555 expression must be a pointer-to-member constant. */
6556 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6557 return error_mark_node;
6558
6559 /* There is no way to disable standard conversions in
6560 resolve_address_of_overloaded_function (called by
6561 instantiate_type). It is possible that the call succeeded by
6562 converting &B::I to &D::I (where B is a base of D), so we need
6563 to reject this conversion here.
6564
6565 Actually, even if there was a way to disable standard conversions,
6566 it would still be better to reject them here so that we can
6567 provide a superior diagnostic. */
6568 if (!same_type_p (TREE_TYPE (expr), type))
6569 {
6570 if (complain & tf_error)
6571 {
6572 error ("%qE is not a valid template argument for type %qT "
6573 "because it is of type %qT", expr, type,
6574 TREE_TYPE (expr));
6575 /* If we are just one standard conversion off, explain. */
6576 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6577 inform (input_location,
6578 "standard conversions are not allowed in this context");
6579 }
6580 return NULL_TREE;
6581 }
6582 }
6583 /* [temp.arg.nontype]/5, bullet 7
6584
6585 For a non-type template-parameter of type pointer to data member,
6586 qualification conversions (_conv.qual_) are applied. */
6587 else if (TYPE_PTRDATAMEM_P (type))
6588 {
6589 /* [temp.arg.nontype] bullet 1 says the pointer to member
6590 expression must be a pointer-to-member constant. */
6591 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6592 return error_mark_node;
6593
6594 expr = perform_qualification_conversions (type, expr);
6595 if (expr == error_mark_node)
6596 return expr;
6597 }
6598 else if (NULLPTR_TYPE_P (type))
6599 {
6600 if (expr != nullptr_node)
6601 {
6602 if (complain & tf_error)
6603 error ("%qE is not a valid template argument for type %qT "
6604 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6605 return NULL_TREE;
6606 }
6607 return expr;
6608 }
6609 /* A template non-type parameter must be one of the above. */
6610 else
6611 gcc_unreachable ();
6612
6613 /* Sanity check: did we actually convert the argument to the
6614 right type? */
6615 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6616 (type, TREE_TYPE (expr)));
6617 return convert_from_reference (expr);
6618 }
6619
6620 /* Subroutine of coerce_template_template_parms, which returns 1 if
6621 PARM_PARM and ARG_PARM match using the rule for the template
6622 parameters of template template parameters. Both PARM and ARG are
6623 template parameters; the rest of the arguments are the same as for
6624 coerce_template_template_parms.
6625 */
6626 static int
6627 coerce_template_template_parm (tree parm,
6628 tree arg,
6629 tsubst_flags_t complain,
6630 tree in_decl,
6631 tree outer_args)
6632 {
6633 if (arg == NULL_TREE || error_operand_p (arg)
6634 || parm == NULL_TREE || error_operand_p (parm))
6635 return 0;
6636
6637 if (TREE_CODE (arg) != TREE_CODE (parm))
6638 return 0;
6639
6640 switch (TREE_CODE (parm))
6641 {
6642 case TEMPLATE_DECL:
6643 /* We encounter instantiations of templates like
6644 template <template <template <class> class> class TT>
6645 class C; */
6646 {
6647 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6648 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6649
6650 if (!coerce_template_template_parms
6651 (parmparm, argparm, complain, in_decl, outer_args))
6652 return 0;
6653 }
6654 /* Fall through. */
6655
6656 case TYPE_DECL:
6657 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6658 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6659 /* Argument is a parameter pack but parameter is not. */
6660 return 0;
6661 break;
6662
6663 case PARM_DECL:
6664 /* The tsubst call is used to handle cases such as
6665
6666 template <int> class C {};
6667 template <class T, template <T> class TT> class D {};
6668 D<int, C> d;
6669
6670 i.e. the parameter list of TT depends on earlier parameters. */
6671 if (!uses_template_parms (TREE_TYPE (arg)))
6672 {
6673 tree t = tsubst (TREE_TYPE (parm), outer_args, complain, in_decl);
6674 if (!uses_template_parms (t)
6675 && !same_type_p (t, TREE_TYPE (arg)))
6676 return 0;
6677 }
6678
6679 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6680 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6681 /* Argument is a parameter pack but parameter is not. */
6682 return 0;
6683
6684 break;
6685
6686 default:
6687 gcc_unreachable ();
6688 }
6689
6690 return 1;
6691 }
6692
6693
6694 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6695 template template parameters. Both PARM_PARMS and ARG_PARMS are
6696 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6697 or PARM_DECL.
6698
6699 Consider the example:
6700 template <class T> class A;
6701 template<template <class U> class TT> class B;
6702
6703 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6704 the parameters to A, and OUTER_ARGS contains A. */
6705
6706 static int
6707 coerce_template_template_parms (tree parm_parms,
6708 tree arg_parms,
6709 tsubst_flags_t complain,
6710 tree in_decl,
6711 tree outer_args)
6712 {
6713 int nparms, nargs, i;
6714 tree parm, arg;
6715 int variadic_p = 0;
6716
6717 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
6718 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
6719
6720 nparms = TREE_VEC_LENGTH (parm_parms);
6721 nargs = TREE_VEC_LENGTH (arg_parms);
6722
6723 /* Determine whether we have a parameter pack at the end of the
6724 template template parameter's template parameter list. */
6725 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
6726 {
6727 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
6728
6729 if (error_operand_p (parm))
6730 return 0;
6731
6732 switch (TREE_CODE (parm))
6733 {
6734 case TEMPLATE_DECL:
6735 case TYPE_DECL:
6736 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6737 variadic_p = 1;
6738 break;
6739
6740 case PARM_DECL:
6741 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6742 variadic_p = 1;
6743 break;
6744
6745 default:
6746 gcc_unreachable ();
6747 }
6748 }
6749
6750 if (nargs != nparms
6751 && !(variadic_p && nargs >= nparms - 1))
6752 return 0;
6753
6754 /* Check all of the template parameters except the parameter pack at
6755 the end (if any). */
6756 for (i = 0; i < nparms - variadic_p; ++i)
6757 {
6758 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6759 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6760 continue;
6761
6762 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6763 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6764
6765 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6766 outer_args))
6767 return 0;
6768
6769 }
6770
6771 if (variadic_p)
6772 {
6773 /* Check each of the template parameters in the template
6774 argument against the template parameter pack at the end of
6775 the template template parameter. */
6776 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6777 return 0;
6778
6779 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6780
6781 for (; i < nargs; ++i)
6782 {
6783 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6784 continue;
6785
6786 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6787
6788 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6789 outer_args))
6790 return 0;
6791 }
6792 }
6793
6794 return 1;
6795 }
6796
6797 /* Verifies that the deduced template arguments (in TARGS) for the
6798 template template parameters (in TPARMS) represent valid bindings,
6799 by comparing the template parameter list of each template argument
6800 to the template parameter list of its corresponding template
6801 template parameter, in accordance with DR150. This
6802 routine can only be called after all template arguments have been
6803 deduced. It will return TRUE if all of the template template
6804 parameter bindings are okay, FALSE otherwise. */
6805 bool
6806 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6807 {
6808 int i, ntparms = TREE_VEC_LENGTH (tparms);
6809 bool ret = true;
6810
6811 /* We're dealing with template parms in this process. */
6812 ++processing_template_decl;
6813
6814 targs = INNERMOST_TEMPLATE_ARGS (targs);
6815
6816 for (i = 0; i < ntparms; ++i)
6817 {
6818 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6819 tree targ = TREE_VEC_ELT (targs, i);
6820
6821 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6822 {
6823 tree packed_args = NULL_TREE;
6824 int idx, len = 1;
6825
6826 if (ARGUMENT_PACK_P (targ))
6827 {
6828 /* Look inside the argument pack. */
6829 packed_args = ARGUMENT_PACK_ARGS (targ);
6830 len = TREE_VEC_LENGTH (packed_args);
6831 }
6832
6833 for (idx = 0; idx < len; ++idx)
6834 {
6835 tree targ_parms = NULL_TREE;
6836
6837 if (packed_args)
6838 /* Extract the next argument from the argument
6839 pack. */
6840 targ = TREE_VEC_ELT (packed_args, idx);
6841
6842 if (PACK_EXPANSION_P (targ))
6843 /* Look at the pattern of the pack expansion. */
6844 targ = PACK_EXPANSION_PATTERN (targ);
6845
6846 /* Extract the template parameters from the template
6847 argument. */
6848 if (TREE_CODE (targ) == TEMPLATE_DECL)
6849 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6850 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6851 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6852
6853 /* Verify that we can coerce the template template
6854 parameters from the template argument to the template
6855 parameter. This requires an exact match. */
6856 if (targ_parms
6857 && !coerce_template_template_parms
6858 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6859 targ_parms,
6860 tf_none,
6861 tparm,
6862 targs))
6863 {
6864 ret = false;
6865 goto out;
6866 }
6867 }
6868 }
6869 }
6870
6871 out:
6872
6873 --processing_template_decl;
6874 return ret;
6875 }
6876
6877 /* Since type attributes aren't mangled, we need to strip them from
6878 template type arguments. */
6879
6880 static tree
6881 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6882 {
6883 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6884 return arg;
6885 bool removed_attributes = false;
6886 tree canon = strip_typedefs (arg, &removed_attributes);
6887 if (removed_attributes
6888 && (complain & tf_warning))
6889 warning (0, "ignoring attributes on template argument %qT", arg);
6890 return canon;
6891 }
6892
6893 // A template declaration can be substituted for a constrained
6894 // template template parameter only when the argument is more
6895 // constrained than the parameter.
6896 static bool
6897 is_compatible_template_arg (tree parm, tree arg)
6898 {
6899 tree parm_cons = get_constraints (parm);
6900
6901 /* For now, allow constrained template template arguments
6902 and unconstrained template template parameters. */
6903 if (parm_cons == NULL_TREE)
6904 return true;
6905
6906 tree arg_cons = get_constraints (arg);
6907
6908 // If the template parameter is constrained, we need to rewrite its
6909 // constraints in terms of the ARG's template parameters. This ensures
6910 // that all of the template parameter types will have the same depth.
6911 //
6912 // Note that this is only valid when coerce_template_template_parm is
6913 // true for the innermost template parameters of PARM and ARG. In other
6914 // words, because coercion is successful, this conversion will be valid.
6915 if (parm_cons)
6916 {
6917 tree args = template_parms_to_args (DECL_TEMPLATE_PARMS (arg));
6918 parm_cons = tsubst_constraint_info (parm_cons,
6919 INNERMOST_TEMPLATE_ARGS (args),
6920 tf_none, NULL_TREE);
6921 if (parm_cons == error_mark_node)
6922 return false;
6923 }
6924
6925 return subsumes (parm_cons, arg_cons);
6926 }
6927
6928 // Convert a placeholder argument into a binding to the original
6929 // parameter. The original parameter is saved as the TREE_TYPE of
6930 // ARG.
6931 static inline tree
6932 convert_wildcard_argument (tree parm, tree arg)
6933 {
6934 TREE_TYPE (arg) = parm;
6935 return arg;
6936 }
6937
6938 /* Convert the indicated template ARG as necessary to match the
6939 indicated template PARM. Returns the converted ARG, or
6940 error_mark_node if the conversion was unsuccessful. Error and
6941 warning messages are issued under control of COMPLAIN. This
6942 conversion is for the Ith parameter in the parameter list. ARGS is
6943 the full set of template arguments deduced so far. */
6944
6945 static tree
6946 convert_template_argument (tree parm,
6947 tree arg,
6948 tree args,
6949 tsubst_flags_t complain,
6950 int i,
6951 tree in_decl)
6952 {
6953 tree orig_arg;
6954 tree val;
6955 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
6956
6957 if (parm == error_mark_node)
6958 return error_mark_node;
6959
6960 /* Trivially convert placeholders. */
6961 if (TREE_CODE (arg) == WILDCARD_DECL)
6962 return convert_wildcard_argument (parm, arg);
6963
6964 if (TREE_CODE (arg) == TREE_LIST
6965 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
6966 {
6967 /* The template argument was the name of some
6968 member function. That's usually
6969 invalid, but static members are OK. In any
6970 case, grab the underlying fields/functions
6971 and issue an error later if required. */
6972 orig_arg = TREE_VALUE (arg);
6973 TREE_TYPE (arg) = unknown_type_node;
6974 }
6975
6976 orig_arg = arg;
6977
6978 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
6979 requires_type = (TREE_CODE (parm) == TYPE_DECL
6980 || requires_tmpl_type);
6981
6982 /* When determining whether an argument pack expansion is a template,
6983 look at the pattern. */
6984 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
6985 arg = PACK_EXPANSION_PATTERN (arg);
6986
6987 /* Deal with an injected-class-name used as a template template arg. */
6988 if (requires_tmpl_type && CLASS_TYPE_P (arg))
6989 {
6990 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
6991 if (TREE_CODE (t) == TEMPLATE_DECL)
6992 {
6993 if (cxx_dialect >= cxx11)
6994 /* OK under DR 1004. */;
6995 else if (complain & tf_warning_or_error)
6996 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
6997 " used as template template argument", TYPE_NAME (arg));
6998 else if (flag_pedantic_errors)
6999 t = arg;
7000
7001 arg = t;
7002 }
7003 }
7004
7005 is_tmpl_type =
7006 ((TREE_CODE (arg) == TEMPLATE_DECL
7007 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
7008 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
7009 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7010 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
7011
7012 if (is_tmpl_type
7013 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7014 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
7015 arg = TYPE_STUB_DECL (arg);
7016
7017 is_type = TYPE_P (arg) || is_tmpl_type;
7018
7019 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
7020 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
7021 {
7022 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
7023 {
7024 if (complain & tf_error)
7025 error ("invalid use of destructor %qE as a type", orig_arg);
7026 return error_mark_node;
7027 }
7028
7029 permerror (input_location,
7030 "to refer to a type member of a template parameter, "
7031 "use %<typename %E%>", orig_arg);
7032
7033 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
7034 TREE_OPERAND (arg, 1),
7035 typename_type,
7036 complain);
7037 arg = orig_arg;
7038 is_type = 1;
7039 }
7040 if (is_type != requires_type)
7041 {
7042 if (in_decl)
7043 {
7044 if (complain & tf_error)
7045 {
7046 error ("type/value mismatch at argument %d in template "
7047 "parameter list for %qD",
7048 i + 1, in_decl);
7049 if (is_type)
7050 inform (input_location,
7051 " expected a constant of type %qT, got %qT",
7052 TREE_TYPE (parm),
7053 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
7054 else if (requires_tmpl_type)
7055 inform (input_location,
7056 " expected a class template, got %qE", orig_arg);
7057 else
7058 inform (input_location,
7059 " expected a type, got %qE", orig_arg);
7060 }
7061 }
7062 return error_mark_node;
7063 }
7064 if (is_tmpl_type ^ requires_tmpl_type)
7065 {
7066 if (in_decl && (complain & tf_error))
7067 {
7068 error ("type/value mismatch at argument %d in template "
7069 "parameter list for %qD",
7070 i + 1, in_decl);
7071 if (is_tmpl_type)
7072 inform (input_location,
7073 " expected a type, got %qT", DECL_NAME (arg));
7074 else
7075 inform (input_location,
7076 " expected a class template, got %qT", orig_arg);
7077 }
7078 return error_mark_node;
7079 }
7080
7081 if (is_type)
7082 {
7083 if (requires_tmpl_type)
7084 {
7085 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7086 val = orig_arg;
7087 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
7088 /* The number of argument required is not known yet.
7089 Just accept it for now. */
7090 val = TREE_TYPE (arg);
7091 else
7092 {
7093 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
7094 tree argparm;
7095
7096 /* Strip alias templates that are equivalent to another
7097 template. */
7098 arg = get_underlying_template (arg);
7099 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
7100
7101 if (coerce_template_template_parms (parmparm, argparm,
7102 complain, in_decl,
7103 args))
7104 {
7105 val = arg;
7106
7107 /* TEMPLATE_TEMPLATE_PARM node is preferred over
7108 TEMPLATE_DECL. */
7109 if (val != error_mark_node)
7110 {
7111 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
7112 val = TREE_TYPE (val);
7113 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
7114 val = make_pack_expansion (val);
7115 }
7116 }
7117 else
7118 {
7119 if (in_decl && (complain & tf_error))
7120 {
7121 error ("type/value mismatch at argument %d in "
7122 "template parameter list for %qD",
7123 i + 1, in_decl);
7124 inform (input_location,
7125 " expected a template of type %qD, got %qT",
7126 parm, orig_arg);
7127 }
7128
7129 val = error_mark_node;
7130 }
7131
7132 // Check that the constraints are compatible before allowing the
7133 // substitution.
7134 if (val != error_mark_node)
7135 if (!is_compatible_template_arg (parm, arg))
7136 {
7137 if (in_decl && (complain & tf_error))
7138 {
7139 error ("constraint mismatch at argument %d in "
7140 "template parameter list for %qD",
7141 i + 1, in_decl);
7142 inform (input_location, " expected %qD but got %qD",
7143 parm, arg);
7144 }
7145 val = error_mark_node;
7146 }
7147 }
7148 }
7149 else
7150 val = orig_arg;
7151 /* We only form one instance of each template specialization.
7152 Therefore, if we use a non-canonical variant (i.e., a
7153 typedef), any future messages referring to the type will use
7154 the typedef, which is confusing if those future uses do not
7155 themselves also use the typedef. */
7156 if (TYPE_P (val))
7157 val = canonicalize_type_argument (val, complain);
7158 }
7159 else
7160 {
7161 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
7162
7163 if (invalid_nontype_parm_type_p (t, complain))
7164 return error_mark_node;
7165
7166 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7167 {
7168 if (same_type_p (t, TREE_TYPE (orig_arg)))
7169 val = orig_arg;
7170 else
7171 {
7172 /* Not sure if this is reachable, but it doesn't hurt
7173 to be robust. */
7174 error ("type mismatch in nontype parameter pack");
7175 val = error_mark_node;
7176 }
7177 }
7178 else if (!dependent_template_arg_p (orig_arg)
7179 && !uses_template_parms (t))
7180 /* We used to call digest_init here. However, digest_init
7181 will report errors, which we don't want when complain
7182 is zero. More importantly, digest_init will try too
7183 hard to convert things: for example, `0' should not be
7184 converted to pointer type at this point according to
7185 the standard. Accepting this is not merely an
7186 extension, since deciding whether or not these
7187 conversions can occur is part of determining which
7188 function template to call, or whether a given explicit
7189 argument specification is valid. */
7190 val = convert_nontype_argument (t, orig_arg, complain);
7191 else
7192 {
7193 bool removed_attr = false;
7194 val = strip_typedefs_expr (orig_arg, &removed_attr);
7195 }
7196
7197 if (val == NULL_TREE)
7198 val = error_mark_node;
7199 else if (val == error_mark_node && (complain & tf_error))
7200 error ("could not convert template argument %qE to %qT", orig_arg, t);
7201
7202 if (TREE_CODE (val) == SCOPE_REF)
7203 {
7204 /* Strip typedefs from the SCOPE_REF. */
7205 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
7206 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
7207 complain);
7208 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
7209 QUALIFIED_NAME_IS_TEMPLATE (val));
7210 }
7211 }
7212
7213 return val;
7214 }
7215
7216 /* Coerces the remaining template arguments in INNER_ARGS (from
7217 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
7218 Returns the coerced argument pack. PARM_IDX is the position of this
7219 parameter in the template parameter list. ARGS is the original
7220 template argument list. */
7221 static tree
7222 coerce_template_parameter_pack (tree parms,
7223 int parm_idx,
7224 tree args,
7225 tree inner_args,
7226 int arg_idx,
7227 tree new_args,
7228 int* lost,
7229 tree in_decl,
7230 tsubst_flags_t complain)
7231 {
7232 tree parm = TREE_VEC_ELT (parms, parm_idx);
7233 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7234 tree packed_args;
7235 tree argument_pack;
7236 tree packed_parms = NULL_TREE;
7237
7238 if (arg_idx > nargs)
7239 arg_idx = nargs;
7240
7241 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
7242 {
7243 /* When the template parameter is a non-type template parameter pack
7244 or template template parameter pack whose type or template
7245 parameters use parameter packs, we know exactly how many arguments
7246 we are looking for. Build a vector of the instantiated decls for
7247 these template parameters in PACKED_PARMS. */
7248 /* We can't use make_pack_expansion here because it would interpret a
7249 _DECL as a use rather than a declaration. */
7250 tree decl = TREE_VALUE (parm);
7251 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
7252 SET_PACK_EXPANSION_PATTERN (exp, decl);
7253 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
7254 SET_TYPE_STRUCTURAL_EQUALITY (exp);
7255
7256 TREE_VEC_LENGTH (args)--;
7257 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
7258 TREE_VEC_LENGTH (args)++;
7259
7260 if (packed_parms == error_mark_node)
7261 return error_mark_node;
7262
7263 /* If we're doing a partial instantiation of a member template,
7264 verify that all of the types used for the non-type
7265 template parameter pack are, in fact, valid for non-type
7266 template parameters. */
7267 if (arg_idx < nargs
7268 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
7269 {
7270 int j, len = TREE_VEC_LENGTH (packed_parms);
7271 for (j = 0; j < len; ++j)
7272 {
7273 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
7274 if (invalid_nontype_parm_type_p (t, complain))
7275 return error_mark_node;
7276 }
7277 /* We don't know how many args we have yet, just
7278 use the unconverted ones for now. */
7279 return NULL_TREE;
7280 }
7281
7282 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
7283 }
7284 /* Check if we have a placeholder pack, which indicates we're
7285 in the context of a introduction list. In that case we want
7286 to match this pack to the single placeholder. */
7287 else if (arg_idx < nargs
7288 && TREE_CODE (TREE_VEC_ELT (inner_args, arg_idx)) == WILDCARD_DECL
7289 && WILDCARD_PACK_P (TREE_VEC_ELT (inner_args, arg_idx)))
7290 {
7291 nargs = arg_idx + 1;
7292 packed_args = make_tree_vec (1);
7293 }
7294 else
7295 packed_args = make_tree_vec (nargs - arg_idx);
7296
7297 /* Convert the remaining arguments, which will be a part of the
7298 parameter pack "parm". */
7299 for (; arg_idx < nargs; ++arg_idx)
7300 {
7301 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
7302 tree actual_parm = TREE_VALUE (parm);
7303 int pack_idx = arg_idx - parm_idx;
7304
7305 if (packed_parms)
7306 {
7307 /* Once we've packed as many args as we have types, stop. */
7308 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
7309 break;
7310 else if (PACK_EXPANSION_P (arg))
7311 /* We don't know how many args we have yet, just
7312 use the unconverted ones for now. */
7313 return NULL_TREE;
7314 else
7315 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
7316 }
7317
7318 if (arg == error_mark_node)
7319 {
7320 if (complain & tf_error)
7321 error ("template argument %d is invalid", arg_idx + 1);
7322 }
7323 else
7324 arg = convert_template_argument (actual_parm,
7325 arg, new_args, complain, parm_idx,
7326 in_decl);
7327 if (arg == error_mark_node)
7328 (*lost)++;
7329 TREE_VEC_ELT (packed_args, pack_idx) = arg;
7330 }
7331
7332 if (arg_idx - parm_idx < TREE_VEC_LENGTH (packed_args)
7333 && TREE_VEC_LENGTH (packed_args) > 0)
7334 {
7335 if (complain & tf_error)
7336 error ("wrong number of template arguments (%d, should be %d)",
7337 arg_idx - parm_idx, TREE_VEC_LENGTH (packed_args));
7338 return error_mark_node;
7339 }
7340
7341 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
7342 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
7343 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
7344 else
7345 {
7346 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
7347 TREE_TYPE (argument_pack)
7348 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
7349 TREE_CONSTANT (argument_pack) = 1;
7350 }
7351
7352 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
7353 #ifdef ENABLE_CHECKING
7354 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
7355 TREE_VEC_LENGTH (packed_args));
7356 #endif
7357 return argument_pack;
7358 }
7359
7360 /* Returns the number of pack expansions in the template argument vector
7361 ARGS. */
7362
7363 static int
7364 pack_expansion_args_count (tree args)
7365 {
7366 int i;
7367 int count = 0;
7368 if (args)
7369 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
7370 {
7371 tree elt = TREE_VEC_ELT (args, i);
7372 if (elt && PACK_EXPANSION_P (elt))
7373 ++count;
7374 }
7375 return count;
7376 }
7377
7378 /* Convert all template arguments to their appropriate types, and
7379 return a vector containing the innermost resulting template
7380 arguments. If any error occurs, return error_mark_node. Error and
7381 warning messages are issued under control of COMPLAIN.
7382
7383 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
7384 for arguments not specified in ARGS. Otherwise, if
7385 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
7386 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
7387 USE_DEFAULT_ARGS is false, then all arguments must be specified in
7388 ARGS. */
7389
7390 static tree
7391 coerce_template_parms (tree parms,
7392 tree args,
7393 tree in_decl,
7394 tsubst_flags_t complain,
7395 bool require_all_args,
7396 bool use_default_args)
7397 {
7398 int nparms, nargs, parm_idx, arg_idx, lost = 0;
7399 tree orig_inner_args;
7400 tree inner_args;
7401 tree new_args;
7402 tree new_inner_args;
7403 int saved_unevaluated_operand;
7404 int saved_inhibit_evaluation_warnings;
7405
7406 /* When used as a boolean value, indicates whether this is a
7407 variadic template parameter list. Since it's an int, we can also
7408 subtract it from nparms to get the number of non-variadic
7409 parameters. */
7410 int variadic_p = 0;
7411 int variadic_args_p = 0;
7412 int post_variadic_parms = 0;
7413
7414 /* Likewise for parameters with default arguments. */
7415 int default_p = 0;
7416
7417 if (args == error_mark_node)
7418 return error_mark_node;
7419
7420 nparms = TREE_VEC_LENGTH (parms);
7421
7422 /* Determine if there are any parameter packs or default arguments. */
7423 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
7424 {
7425 tree parm = TREE_VEC_ELT (parms, parm_idx);
7426 if (variadic_p)
7427 ++post_variadic_parms;
7428 if (template_parameter_pack_p (TREE_VALUE (parm)))
7429 ++variadic_p;
7430 if (TREE_PURPOSE (parm))
7431 ++default_p;
7432 }
7433
7434 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
7435 /* If there are no parameters that follow a parameter pack, we need to
7436 expand any argument packs so that we can deduce a parameter pack from
7437 some non-packed args followed by an argument pack, as in variadic85.C.
7438 If there are such parameters, we need to leave argument packs intact
7439 so the arguments are assigned properly. This can happen when dealing
7440 with a nested class inside a partial specialization of a class
7441 template, as in variadic92.C, or when deducing a template parameter pack
7442 from a sub-declarator, as in variadic114.C. */
7443 if (!post_variadic_parms)
7444 inner_args = expand_template_argument_pack (inner_args);
7445
7446 /* Count any pack expansion args. */
7447 variadic_args_p = pack_expansion_args_count (inner_args);
7448
7449 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7450 if ((nargs > nparms && !variadic_p)
7451 || (nargs < nparms - variadic_p
7452 && require_all_args
7453 && !variadic_args_p
7454 && (!use_default_args
7455 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
7456 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
7457 {
7458 if (complain & tf_error)
7459 {
7460 if (variadic_p || default_p)
7461 {
7462 nparms -= variadic_p + default_p;
7463 error ("wrong number of template arguments "
7464 "(%d, should be at least %d)", nargs, nparms);
7465 }
7466 else
7467 error ("wrong number of template arguments "
7468 "(%d, should be %d)", nargs, nparms);
7469
7470 if (in_decl)
7471 inform (DECL_SOURCE_LOCATION (in_decl),
7472 "provided for %qD", in_decl);
7473 }
7474
7475 return error_mark_node;
7476 }
7477 /* We can't pass a pack expansion to a non-pack parameter of an alias
7478 template (DR 1430). */
7479 else if (in_decl
7480 && (DECL_ALIAS_TEMPLATE_P (in_decl)
7481 || concept_template_p (in_decl))
7482 && variadic_args_p
7483 && nargs - variadic_args_p < nparms - variadic_p)
7484 {
7485 if (complain & tf_error)
7486 {
7487 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
7488 {
7489 tree arg = TREE_VEC_ELT (inner_args, i);
7490 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
7491
7492 if (PACK_EXPANSION_P (arg)
7493 && !template_parameter_pack_p (parm))
7494 {
7495 if (DECL_ALIAS_TEMPLATE_P (in_decl))
7496 error_at (location_of (arg),
7497 "pack expansion argument for non-pack parameter "
7498 "%qD of alias template %qD", parm, in_decl);
7499 else
7500 error_at (location_of (arg),
7501 "pack expansion argument for non-pack parameter "
7502 "%qD of concept %qD", parm, in_decl);
7503 inform (DECL_SOURCE_LOCATION (parm), "declared here");
7504 goto found;
7505 }
7506 }
7507 gcc_unreachable ();
7508 found:;
7509 }
7510 return error_mark_node;
7511 }
7512
7513 /* We need to evaluate the template arguments, even though this
7514 template-id may be nested within a "sizeof". */
7515 saved_unevaluated_operand = cp_unevaluated_operand;
7516 cp_unevaluated_operand = 0;
7517 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
7518 c_inhibit_evaluation_warnings = 0;
7519 new_inner_args = make_tree_vec (nparms);
7520 new_args = add_outermost_template_args (args, new_inner_args);
7521 int pack_adjust = 0;
7522 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
7523 {
7524 tree arg;
7525 tree parm;
7526
7527 /* Get the Ith template parameter. */
7528 parm = TREE_VEC_ELT (parms, parm_idx);
7529
7530 if (parm == error_mark_node)
7531 {
7532 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
7533 continue;
7534 }
7535
7536 /* Calculate the next argument. */
7537 if (arg_idx < nargs)
7538 arg = TREE_VEC_ELT (inner_args, arg_idx);
7539 else
7540 arg = NULL_TREE;
7541
7542 if (template_parameter_pack_p (TREE_VALUE (parm))
7543 && !(arg && ARGUMENT_PACK_P (arg)))
7544 {
7545 /* Some arguments will be placed in the
7546 template parameter pack PARM. */
7547 arg = coerce_template_parameter_pack (parms, parm_idx, args,
7548 inner_args, arg_idx,
7549 new_args, &lost,
7550 in_decl, complain);
7551
7552 if (arg == NULL_TREE)
7553 {
7554 /* We don't know how many args we have yet, just use the
7555 unconverted (and still packed) ones for now. */
7556 new_inner_args = orig_inner_args;
7557 arg_idx = nargs;
7558 break;
7559 }
7560
7561 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
7562
7563 /* Store this argument. */
7564 if (arg == error_mark_node)
7565 {
7566 lost++;
7567 /* We are done with all of the arguments. */
7568 arg_idx = nargs;
7569 }
7570 else
7571 {
7572 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
7573 arg_idx += pack_adjust;
7574 }
7575
7576 continue;
7577 }
7578 else if (arg)
7579 {
7580 if (PACK_EXPANSION_P (arg))
7581 {
7582 /* "If every valid specialization of a variadic template
7583 requires an empty template parameter pack, the template is
7584 ill-formed, no diagnostic required." So check that the
7585 pattern works with this parameter. */
7586 tree pattern = PACK_EXPANSION_PATTERN (arg);
7587 tree conv = convert_template_argument (TREE_VALUE (parm),
7588 pattern, new_args,
7589 complain, parm_idx,
7590 in_decl);
7591 if (conv == error_mark_node)
7592 {
7593 inform (input_location, "so any instantiation with a "
7594 "non-empty parameter pack would be ill-formed");
7595 ++lost;
7596 }
7597 else if (TYPE_P (conv) && !TYPE_P (pattern))
7598 /* Recover from missing typename. */
7599 TREE_VEC_ELT (inner_args, arg_idx)
7600 = make_pack_expansion (conv);
7601
7602 /* We don't know how many args we have yet, just
7603 use the unconverted ones for now. */
7604 new_inner_args = inner_args;
7605 arg_idx = nargs;
7606 break;
7607 }
7608 }
7609 else if (require_all_args)
7610 {
7611 /* There must be a default arg in this case. */
7612 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
7613 complain, in_decl);
7614 /* The position of the first default template argument,
7615 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
7616 Record that. */
7617 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7618 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7619 arg_idx - pack_adjust);
7620 }
7621 else
7622 break;
7623
7624 if (arg == error_mark_node)
7625 {
7626 if (complain & tf_error)
7627 error ("template argument %d is invalid", arg_idx + 1);
7628 }
7629 else if (!arg)
7630 /* This only occurs if there was an error in the template
7631 parameter list itself (which we would already have
7632 reported) that we are trying to recover from, e.g., a class
7633 template with a parameter list such as
7634 template<typename..., typename>. */
7635 ++lost;
7636 else
7637 arg = convert_template_argument (TREE_VALUE (parm),
7638 arg, new_args, complain,
7639 parm_idx, in_decl);
7640
7641 if (arg == error_mark_node)
7642 lost++;
7643 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
7644 }
7645 cp_unevaluated_operand = saved_unevaluated_operand;
7646 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
7647
7648 if (variadic_p && arg_idx < nargs)
7649 {
7650 if (complain & tf_error)
7651 {
7652 error ("wrong number of template arguments "
7653 "(%d, should be %d)", nargs, arg_idx);
7654 if (in_decl)
7655 error ("provided for %q+D", in_decl);
7656 }
7657 return error_mark_node;
7658 }
7659
7660 if (lost)
7661 return error_mark_node;
7662
7663 #ifdef ENABLE_CHECKING
7664 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7665 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7666 TREE_VEC_LENGTH (new_inner_args));
7667 #endif
7668
7669 return new_inner_args;
7670 }
7671
7672 /* Convert all template arguments to their appropriate types, and
7673 return a vector containing the innermost resulting template
7674 arguments. If any error occurs, return error_mark_node. Error and
7675 warning messages are not issued.
7676
7677 Note that no function argument deduction is performed, and default
7678 arguments are used to fill in unspecified arguments. */
7679 tree
7680 coerce_template_parms (tree parms, tree args, tree in_decl)
7681 {
7682 return coerce_template_parms (parms, args, in_decl, tf_none, true, true);
7683 }
7684
7685 /* Convert all template arguments to their appropriate type, and
7686 instantiate default arguments as needed. This returns a vector
7687 containing the innermost resulting template arguments, or
7688 error_mark_node if unsuccessful. */
7689 tree
7690 coerce_template_parms (tree parms, tree args, tree in_decl,
7691 tsubst_flags_t complain)
7692 {
7693 return coerce_template_parms (parms, args, in_decl, complain, true, true);
7694 }
7695
7696 /* Like coerce_template_parms. If PARMS represents all template
7697 parameters levels, this function returns a vector of vectors
7698 representing all the resulting argument levels. Note that in this
7699 case, only the innermost arguments are coerced because the
7700 outermost ones are supposed to have been coerced already.
7701
7702 Otherwise, if PARMS represents only (the innermost) vector of
7703 parameters, this function returns a vector containing just the
7704 innermost resulting arguments. */
7705
7706 static tree
7707 coerce_innermost_template_parms (tree parms,
7708 tree args,
7709 tree in_decl,
7710 tsubst_flags_t complain,
7711 bool require_all_args,
7712 bool use_default_args)
7713 {
7714 int parms_depth = TMPL_PARMS_DEPTH (parms);
7715 int args_depth = TMPL_ARGS_DEPTH (args);
7716 tree coerced_args;
7717
7718 if (parms_depth > 1)
7719 {
7720 coerced_args = make_tree_vec (parms_depth);
7721 tree level;
7722 int cur_depth;
7723
7724 for (level = parms, cur_depth = parms_depth;
7725 parms_depth > 0 && level != NULL_TREE;
7726 level = TREE_CHAIN (level), --cur_depth)
7727 {
7728 tree l;
7729 if (cur_depth == args_depth)
7730 l = coerce_template_parms (TREE_VALUE (level),
7731 args, in_decl, complain,
7732 require_all_args,
7733 use_default_args);
7734 else
7735 l = TMPL_ARGS_LEVEL (args, cur_depth);
7736
7737 if (l == error_mark_node)
7738 return error_mark_node;
7739
7740 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
7741 }
7742 }
7743 else
7744 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
7745 args, in_decl, complain,
7746 require_all_args,
7747 use_default_args);
7748 return coerced_args;
7749 }
7750
7751 /* Returns 1 if template args OT and NT are equivalent. */
7752
7753 static int
7754 template_args_equal (tree ot, tree nt)
7755 {
7756 if (nt == ot)
7757 return 1;
7758 if (nt == NULL_TREE || ot == NULL_TREE)
7759 return false;
7760
7761 if (TREE_CODE (nt) == TREE_VEC)
7762 /* For member templates */
7763 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
7764 else if (PACK_EXPANSION_P (ot))
7765 return (PACK_EXPANSION_P (nt)
7766 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
7767 PACK_EXPANSION_PATTERN (nt))
7768 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
7769 PACK_EXPANSION_EXTRA_ARGS (nt)));
7770 else if (ARGUMENT_PACK_P (ot))
7771 {
7772 int i, len;
7773 tree opack, npack;
7774
7775 if (!ARGUMENT_PACK_P (nt))
7776 return 0;
7777
7778 opack = ARGUMENT_PACK_ARGS (ot);
7779 npack = ARGUMENT_PACK_ARGS (nt);
7780 len = TREE_VEC_LENGTH (opack);
7781 if (TREE_VEC_LENGTH (npack) != len)
7782 return 0;
7783 for (i = 0; i < len; ++i)
7784 if (!template_args_equal (TREE_VEC_ELT (opack, i),
7785 TREE_VEC_ELT (npack, i)))
7786 return 0;
7787 return 1;
7788 }
7789 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
7790 {
7791 /* We get here probably because we are in the middle of substituting
7792 into the pattern of a pack expansion. In that case the
7793 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
7794 interested in. So we want to use the initial pack argument for
7795 the comparison. */
7796 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
7797 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
7798 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
7799 return template_args_equal (ot, nt);
7800 }
7801 else if (TYPE_P (nt))
7802 {
7803 if (!TYPE_P (ot))
7804 return false;
7805 /* Don't treat an alias template specialization with dependent
7806 arguments as equivalent to its underlying type when used as a
7807 template argument; we need them to be distinct so that we
7808 substitute into the specialization arguments at instantiation
7809 time. And aliases can't be equivalent without being ==, so
7810 we don't need to look any deeper. */
7811 if (TYPE_ALIAS_P (nt) || TYPE_ALIAS_P (ot))
7812 return false;
7813 else
7814 return same_type_p (ot, nt);
7815 }
7816 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
7817 return 0;
7818 else
7819 {
7820 /* Try to treat a template non-type argument that has been converted
7821 to the parameter type as equivalent to one that hasn't yet. */
7822 for (enum tree_code code1 = TREE_CODE (ot);
7823 CONVERT_EXPR_CODE_P (code1)
7824 || code1 == NON_LVALUE_EXPR;
7825 code1 = TREE_CODE (ot))
7826 ot = TREE_OPERAND (ot, 0);
7827 for (enum tree_code code2 = TREE_CODE (nt);
7828 CONVERT_EXPR_CODE_P (code2)
7829 || code2 == NON_LVALUE_EXPR;
7830 code2 = TREE_CODE (nt))
7831 nt = TREE_OPERAND (nt, 0);
7832
7833 return cp_tree_equal (ot, nt);
7834 }
7835 }
7836
7837 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
7838 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
7839 NEWARG_PTR with the offending arguments if they are non-NULL. */
7840
7841 static int
7842 comp_template_args_with_info (tree oldargs, tree newargs,
7843 tree *oldarg_ptr, tree *newarg_ptr)
7844 {
7845 int i;
7846
7847 if (oldargs == newargs)
7848 return 1;
7849
7850 if (!oldargs || !newargs)
7851 return 0;
7852
7853 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
7854 return 0;
7855
7856 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
7857 {
7858 tree nt = TREE_VEC_ELT (newargs, i);
7859 tree ot = TREE_VEC_ELT (oldargs, i);
7860
7861 if (! template_args_equal (ot, nt))
7862 {
7863 if (oldarg_ptr != NULL)
7864 *oldarg_ptr = ot;
7865 if (newarg_ptr != NULL)
7866 *newarg_ptr = nt;
7867 return 0;
7868 }
7869 }
7870 return 1;
7871 }
7872
7873 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
7874 of template arguments. Returns 0 otherwise. */
7875
7876 int
7877 comp_template_args (tree oldargs, tree newargs)
7878 {
7879 return comp_template_args_with_info (oldargs, newargs, NULL, NULL);
7880 }
7881
7882 static void
7883 add_pending_template (tree d)
7884 {
7885 tree ti = (TYPE_P (d)
7886 ? CLASSTYPE_TEMPLATE_INFO (d)
7887 : DECL_TEMPLATE_INFO (d));
7888 struct pending_template *pt;
7889 int level;
7890
7891 if (TI_PENDING_TEMPLATE_FLAG (ti))
7892 return;
7893
7894 /* We are called both from instantiate_decl, where we've already had a
7895 tinst_level pushed, and instantiate_template, where we haven't.
7896 Compensate. */
7897 level = !current_tinst_level || current_tinst_level->decl != d;
7898
7899 if (level)
7900 push_tinst_level (d);
7901
7902 pt = ggc_alloc<pending_template> ();
7903 pt->next = NULL;
7904 pt->tinst = current_tinst_level;
7905 if (last_pending_template)
7906 last_pending_template->next = pt;
7907 else
7908 pending_templates = pt;
7909
7910 last_pending_template = pt;
7911
7912 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
7913
7914 if (level)
7915 pop_tinst_level ();
7916 }
7917
7918
7919 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
7920 ARGLIST. Valid choices for FNS are given in the cp-tree.def
7921 documentation for TEMPLATE_ID_EXPR. */
7922
7923 tree
7924 lookup_template_function (tree fns, tree arglist)
7925 {
7926 tree type;
7927
7928 if (fns == error_mark_node || arglist == error_mark_node)
7929 return error_mark_node;
7930
7931 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
7932
7933 if (!is_overloaded_fn (fns) && !identifier_p (fns))
7934 {
7935 error ("%q#D is not a function template", fns);
7936 return error_mark_node;
7937 }
7938
7939 if (BASELINK_P (fns))
7940 {
7941 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
7942 unknown_type_node,
7943 BASELINK_FUNCTIONS (fns),
7944 arglist);
7945 return fns;
7946 }
7947
7948 type = TREE_TYPE (fns);
7949 if (TREE_CODE (fns) == OVERLOAD || !type)
7950 type = unknown_type_node;
7951
7952 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
7953 }
7954
7955 /* Within the scope of a template class S<T>, the name S gets bound
7956 (in build_self_reference) to a TYPE_DECL for the class, not a
7957 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
7958 or one of its enclosing classes, and that type is a template,
7959 return the associated TEMPLATE_DECL. Otherwise, the original
7960 DECL is returned.
7961
7962 Also handle the case when DECL is a TREE_LIST of ambiguous
7963 injected-class-names from different bases. */
7964
7965 tree
7966 maybe_get_template_decl_from_type_decl (tree decl)
7967 {
7968 if (decl == NULL_TREE)
7969 return decl;
7970
7971 /* DR 176: A lookup that finds an injected-class-name (10.2
7972 [class.member.lookup]) can result in an ambiguity in certain cases
7973 (for example, if it is found in more than one base class). If all of
7974 the injected-class-names that are found refer to specializations of
7975 the same class template, and if the name is followed by a
7976 template-argument-list, the reference refers to the class template
7977 itself and not a specialization thereof, and is not ambiguous. */
7978 if (TREE_CODE (decl) == TREE_LIST)
7979 {
7980 tree t, tmpl = NULL_TREE;
7981 for (t = decl; t; t = TREE_CHAIN (t))
7982 {
7983 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
7984 if (!tmpl)
7985 tmpl = elt;
7986 else if (tmpl != elt)
7987 break;
7988 }
7989 if (tmpl && t == NULL_TREE)
7990 return tmpl;
7991 else
7992 return decl;
7993 }
7994
7995 return (decl != NULL_TREE
7996 && DECL_SELF_REFERENCE_P (decl)
7997 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
7998 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
7999 }
8000
8001 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
8002 parameters, find the desired type.
8003
8004 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
8005
8006 IN_DECL, if non-NULL, is the template declaration we are trying to
8007 instantiate.
8008
8009 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
8010 the class we are looking up.
8011
8012 Issue error and warning messages under control of COMPLAIN.
8013
8014 If the template class is really a local class in a template
8015 function, then the FUNCTION_CONTEXT is the function in which it is
8016 being instantiated.
8017
8018 ??? Note that this function is currently called *twice* for each
8019 template-id: the first time from the parser, while creating the
8020 incomplete type (finish_template_type), and the second type during the
8021 real instantiation (instantiate_template_class). This is surely something
8022 that we want to avoid. It also causes some problems with argument
8023 coercion (see convert_nontype_argument for more information on this). */
8024
8025 static tree
8026 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
8027 int entering_scope, tsubst_flags_t complain)
8028 {
8029 tree templ = NULL_TREE, parmlist;
8030 tree t;
8031 spec_entry **slot;
8032 spec_entry *entry;
8033 spec_entry elt;
8034 hashval_t hash;
8035
8036 if (identifier_p (d1))
8037 {
8038 tree value = innermost_non_namespace_value (d1);
8039 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
8040 templ = value;
8041 else
8042 {
8043 if (context)
8044 push_decl_namespace (context);
8045 templ = lookup_name (d1);
8046 templ = maybe_get_template_decl_from_type_decl (templ);
8047 if (context)
8048 pop_decl_namespace ();
8049 }
8050 if (templ)
8051 context = DECL_CONTEXT (templ);
8052 }
8053 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
8054 {
8055 tree type = TREE_TYPE (d1);
8056
8057 /* If we are declaring a constructor, say A<T>::A<T>, we will get
8058 an implicit typename for the second A. Deal with it. */
8059 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
8060 type = TREE_TYPE (type);
8061
8062 if (CLASSTYPE_TEMPLATE_INFO (type))
8063 {
8064 templ = CLASSTYPE_TI_TEMPLATE (type);
8065 d1 = DECL_NAME (templ);
8066 }
8067 }
8068 else if (TREE_CODE (d1) == ENUMERAL_TYPE
8069 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
8070 {
8071 templ = TYPE_TI_TEMPLATE (d1);
8072 d1 = DECL_NAME (templ);
8073 }
8074 else if (DECL_TYPE_TEMPLATE_P (d1))
8075 {
8076 templ = d1;
8077 d1 = DECL_NAME (templ);
8078 context = DECL_CONTEXT (templ);
8079 }
8080 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
8081 {
8082 templ = d1;
8083 d1 = DECL_NAME (templ);
8084 }
8085
8086 /* Issue an error message if we didn't find a template. */
8087 if (! templ)
8088 {
8089 if (complain & tf_error)
8090 error ("%qT is not a template", d1);
8091 return error_mark_node;
8092 }
8093
8094 if (TREE_CODE (templ) != TEMPLATE_DECL
8095 /* Make sure it's a user visible template, if it was named by
8096 the user. */
8097 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
8098 && !PRIMARY_TEMPLATE_P (templ)))
8099 {
8100 if (complain & tf_error)
8101 {
8102 error ("non-template type %qT used as a template", d1);
8103 if (in_decl)
8104 error ("for template declaration %q+D", in_decl);
8105 }
8106 return error_mark_node;
8107 }
8108
8109 complain &= ~tf_user;
8110
8111 /* An alias that just changes the name of a template is equivalent to the
8112 other template, so if any of the arguments are pack expansions, strip
8113 the alias to avoid problems with a pack expansion passed to a non-pack
8114 alias template parameter (DR 1430). */
8115 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
8116 templ = get_underlying_template (templ);
8117
8118 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
8119 {
8120 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
8121 template arguments */
8122
8123 tree parm;
8124 tree arglist2;
8125 tree outer;
8126
8127 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
8128
8129 /* Consider an example where a template template parameter declared as
8130
8131 template <class T, class U = std::allocator<T> > class TT
8132
8133 The template parameter level of T and U are one level larger than
8134 of TT. To proper process the default argument of U, say when an
8135 instantiation `TT<int>' is seen, we need to build the full
8136 arguments containing {int} as the innermost level. Outer levels,
8137 available when not appearing as default template argument, can be
8138 obtained from the arguments of the enclosing template.
8139
8140 Suppose that TT is later substituted with std::vector. The above
8141 instantiation is `TT<int, std::allocator<T> >' with TT at
8142 level 1, and T at level 2, while the template arguments at level 1
8143 becomes {std::vector} and the inner level 2 is {int}. */
8144
8145 outer = DECL_CONTEXT (templ);
8146 if (outer)
8147 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
8148 else if (current_template_parms)
8149 {
8150 /* This is an argument of the current template, so we haven't set
8151 DECL_CONTEXT yet. */
8152 tree relevant_template_parms;
8153
8154 /* Parameter levels that are greater than the level of the given
8155 template template parm are irrelevant. */
8156 relevant_template_parms = current_template_parms;
8157 while (TMPL_PARMS_DEPTH (relevant_template_parms)
8158 != TEMPLATE_TYPE_LEVEL (TREE_TYPE (templ)))
8159 relevant_template_parms = TREE_CHAIN (relevant_template_parms);
8160
8161 outer = template_parms_to_args (relevant_template_parms);
8162 }
8163
8164 if (outer)
8165 arglist = add_to_template_args (outer, arglist);
8166
8167 arglist2 = coerce_template_parms (parmlist, arglist, templ,
8168 complain,
8169 /*require_all_args=*/true,
8170 /*use_default_args=*/true);
8171 if (arglist2 == error_mark_node
8172 || (!uses_template_parms (arglist2)
8173 && check_instantiated_args (templ, arglist2, complain)))
8174 return error_mark_node;
8175
8176 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
8177 return parm;
8178 }
8179 else
8180 {
8181 tree template_type = TREE_TYPE (templ);
8182 tree gen_tmpl;
8183 tree type_decl;
8184 tree found = NULL_TREE;
8185 int arg_depth;
8186 int parm_depth;
8187 int is_dependent_type;
8188 int use_partial_inst_tmpl = false;
8189
8190 if (template_type == error_mark_node)
8191 /* An error occurred while building the template TEMPL, and a
8192 diagnostic has most certainly been emitted for that
8193 already. Let's propagate that error. */
8194 return error_mark_node;
8195
8196 gen_tmpl = most_general_template (templ);
8197 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
8198 parm_depth = TMPL_PARMS_DEPTH (parmlist);
8199 arg_depth = TMPL_ARGS_DEPTH (arglist);
8200
8201 if (arg_depth == 1 && parm_depth > 1)
8202 {
8203 /* We've been given an incomplete set of template arguments.
8204 For example, given:
8205
8206 template <class T> struct S1 {
8207 template <class U> struct S2 {};
8208 template <class U> struct S2<U*> {};
8209 };
8210
8211 we will be called with an ARGLIST of `U*', but the
8212 TEMPLATE will be `template <class T> template
8213 <class U> struct S1<T>::S2'. We must fill in the missing
8214 arguments. */
8215 arglist
8216 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
8217 arglist);
8218 arg_depth = TMPL_ARGS_DEPTH (arglist);
8219 }
8220
8221 /* Now we should have enough arguments. */
8222 gcc_assert (parm_depth == arg_depth);
8223
8224 /* From here on, we're only interested in the most general
8225 template. */
8226
8227 /* Calculate the BOUND_ARGS. These will be the args that are
8228 actually tsubst'd into the definition to create the
8229 instantiation. */
8230 arglist = coerce_innermost_template_parms (parmlist, arglist, gen_tmpl,
8231 complain,
8232 /*require_all_args=*/true,
8233 /*use_default_args=*/true);
8234
8235 if (arglist == error_mark_node)
8236 /* We were unable to bind the arguments. */
8237 return error_mark_node;
8238
8239 /* In the scope of a template class, explicit references to the
8240 template class refer to the type of the template, not any
8241 instantiation of it. For example, in:
8242
8243 template <class T> class C { void f(C<T>); }
8244
8245 the `C<T>' is just the same as `C'. Outside of the
8246 class, however, such a reference is an instantiation. */
8247 if ((entering_scope
8248 || !PRIMARY_TEMPLATE_P (gen_tmpl)
8249 || currently_open_class (template_type))
8250 /* comp_template_args is expensive, check it last. */
8251 && comp_template_args (TYPE_TI_ARGS (template_type),
8252 arglist))
8253 return template_type;
8254
8255 /* If we already have this specialization, return it. */
8256 elt.tmpl = gen_tmpl;
8257 elt.args = arglist;
8258 elt.spec = NULL_TREE;
8259 hash = spec_hasher::hash (&elt);
8260 entry = type_specializations->find_with_hash (&elt, hash);
8261
8262 if (entry)
8263 return entry->spec;
8264
8265 /* If the the template's constraints are not satisfied,
8266 then we cannot form a valid type.
8267
8268 Note that the check is deferred until after the hash
8269 lookup. This prevents redundant checks on previously
8270 instantiated specializations. */
8271 if (flag_concepts && !constraints_satisfied_p (gen_tmpl, arglist))
8272 {
8273 if (complain & tf_error)
8274 {
8275 error ("template constraint failure");
8276 diagnose_constraints (input_location, gen_tmpl, arglist);
8277 }
8278 return error_mark_node;
8279 }
8280
8281 is_dependent_type = uses_template_parms (arglist);
8282
8283 /* If the deduced arguments are invalid, then the binding
8284 failed. */
8285 if (!is_dependent_type
8286 && check_instantiated_args (gen_tmpl,
8287 INNERMOST_TEMPLATE_ARGS (arglist),
8288 complain))
8289 return error_mark_node;
8290
8291 if (!is_dependent_type
8292 && !PRIMARY_TEMPLATE_P (gen_tmpl)
8293 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
8294 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
8295 {
8296 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
8297 DECL_NAME (gen_tmpl),
8298 /*tag_scope=*/ts_global);
8299 return found;
8300 }
8301
8302 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
8303 complain, in_decl);
8304 if (context == error_mark_node)
8305 return error_mark_node;
8306
8307 if (!context)
8308 context = global_namespace;
8309
8310 /* Create the type. */
8311 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8312 {
8313 /* The user referred to a specialization of an alias
8314 template represented by GEN_TMPL.
8315
8316 [temp.alias]/2 says:
8317
8318 When a template-id refers to the specialization of an
8319 alias template, it is equivalent to the associated
8320 type obtained by substitution of its
8321 template-arguments for the template-parameters in the
8322 type-id of the alias template. */
8323
8324 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
8325 /* Note that the call above (by indirectly calling
8326 register_specialization in tsubst_decl) registers the
8327 TYPE_DECL representing the specialization of the alias
8328 template. So next time someone substitutes ARGLIST for
8329 the template parms into the alias template (GEN_TMPL),
8330 she'll get that TYPE_DECL back. */
8331
8332 if (t == error_mark_node)
8333 return t;
8334 }
8335 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
8336 {
8337 if (!is_dependent_type)
8338 {
8339 set_current_access_from_decl (TYPE_NAME (template_type));
8340 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
8341 tsubst (ENUM_UNDERLYING_TYPE (template_type),
8342 arglist, complain, in_decl),
8343 SCOPED_ENUM_P (template_type), NULL);
8344
8345 if (t == error_mark_node)
8346 return t;
8347 }
8348 else
8349 {
8350 /* We don't want to call start_enum for this type, since
8351 the values for the enumeration constants may involve
8352 template parameters. And, no one should be interested
8353 in the enumeration constants for such a type. */
8354 t = cxx_make_type (ENUMERAL_TYPE);
8355 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
8356 }
8357 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
8358 ENUM_FIXED_UNDERLYING_TYPE_P (t)
8359 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
8360 }
8361 else if (CLASS_TYPE_P (template_type))
8362 {
8363 t = make_class_type (TREE_CODE (template_type));
8364 CLASSTYPE_DECLARED_CLASS (t)
8365 = CLASSTYPE_DECLARED_CLASS (template_type);
8366 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
8367 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
8368
8369 /* A local class. Make sure the decl gets registered properly. */
8370 if (context == current_function_decl)
8371 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
8372
8373 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
8374 /* This instantiation is another name for the primary
8375 template type. Set the TYPE_CANONICAL field
8376 appropriately. */
8377 TYPE_CANONICAL (t) = template_type;
8378 else if (any_template_arguments_need_structural_equality_p (arglist))
8379 /* Some of the template arguments require structural
8380 equality testing, so this template class requires
8381 structural equality testing. */
8382 SET_TYPE_STRUCTURAL_EQUALITY (t);
8383 }
8384 else
8385 gcc_unreachable ();
8386
8387 /* If we called start_enum or pushtag above, this information
8388 will already be set up. */
8389 if (!TYPE_NAME (t))
8390 {
8391 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
8392
8393 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
8394 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
8395 DECL_SOURCE_LOCATION (type_decl)
8396 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
8397 }
8398 else
8399 type_decl = TYPE_NAME (t);
8400
8401 if (CLASS_TYPE_P (template_type))
8402 {
8403 TREE_PRIVATE (type_decl)
8404 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
8405 TREE_PROTECTED (type_decl)
8406 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
8407 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
8408 {
8409 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
8410 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
8411 }
8412 }
8413
8414 if (OVERLOAD_TYPE_P (t)
8415 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8416 {
8417 static const char *tags[] = {"abi_tag", "may_alias"};
8418
8419 for (unsigned ix = 0; ix != 2; ix++)
8420 {
8421 tree attributes
8422 = lookup_attribute (tags[ix], TYPE_ATTRIBUTES (template_type));
8423
8424 if (!attributes)
8425 ;
8426 else if (!TREE_CHAIN (attributes) && !TYPE_ATTRIBUTES (t))
8427 TYPE_ATTRIBUTES (t) = attributes;
8428 else
8429 TYPE_ATTRIBUTES (t)
8430 = tree_cons (TREE_PURPOSE (attributes),
8431 TREE_VALUE (attributes),
8432 TYPE_ATTRIBUTES (t));
8433 }
8434 }
8435
8436 /* Let's consider the explicit specialization of a member
8437 of a class template specialization that is implicitly instantiated,
8438 e.g.:
8439 template<class T>
8440 struct S
8441 {
8442 template<class U> struct M {}; //#0
8443 };
8444
8445 template<>
8446 template<>
8447 struct S<int>::M<char> //#1
8448 {
8449 int i;
8450 };
8451 [temp.expl.spec]/4 says this is valid.
8452
8453 In this case, when we write:
8454 S<int>::M<char> m;
8455
8456 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
8457 the one of #0.
8458
8459 When we encounter #1, we want to store the partial instantiation
8460 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
8461
8462 For all cases other than this "explicit specialization of member of a
8463 class template", we just want to store the most general template into
8464 the CLASSTYPE_TI_TEMPLATE of M.
8465
8466 This case of "explicit specialization of member of a class template"
8467 only happens when:
8468 1/ the enclosing class is an instantiation of, and therefore not
8469 the same as, the context of the most general template, and
8470 2/ we aren't looking at the partial instantiation itself, i.e.
8471 the innermost arguments are not the same as the innermost parms of
8472 the most general template.
8473
8474 So it's only when 1/ and 2/ happens that we want to use the partial
8475 instantiation of the member template in lieu of its most general
8476 template. */
8477
8478 if (PRIMARY_TEMPLATE_P (gen_tmpl)
8479 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
8480 /* the enclosing class must be an instantiation... */
8481 && CLASS_TYPE_P (context)
8482 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
8483 {
8484 tree partial_inst_args;
8485 TREE_VEC_LENGTH (arglist)--;
8486 ++processing_template_decl;
8487 partial_inst_args =
8488 tsubst (INNERMOST_TEMPLATE_ARGS
8489 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
8490 arglist, complain, NULL_TREE);
8491 --processing_template_decl;
8492 TREE_VEC_LENGTH (arglist)++;
8493 use_partial_inst_tmpl =
8494 /*...and we must not be looking at the partial instantiation
8495 itself. */
8496 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
8497 partial_inst_args);
8498 }
8499
8500 if (!use_partial_inst_tmpl)
8501 /* This case is easy; there are no member templates involved. */
8502 found = gen_tmpl;
8503 else
8504 {
8505 /* This is a full instantiation of a member template. Find
8506 the partial instantiation of which this is an instance. */
8507
8508 /* Temporarily reduce by one the number of levels in the ARGLIST
8509 so as to avoid comparing the last set of arguments. */
8510 TREE_VEC_LENGTH (arglist)--;
8511 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
8512 TREE_VEC_LENGTH (arglist)++;
8513 /* FOUND is either a proper class type, or an alias
8514 template specialization. In the later case, it's a
8515 TYPE_DECL, resulting from the substituting of arguments
8516 for parameters in the TYPE_DECL of the alias template
8517 done earlier. So be careful while getting the template
8518 of FOUND. */
8519 found = TREE_CODE (found) == TYPE_DECL
8520 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
8521 : CLASSTYPE_TI_TEMPLATE (found);
8522 }
8523
8524 // Build template info for the new specialization.
8525 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
8526
8527 elt.spec = t;
8528 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
8529 entry = ggc_alloc<spec_entry> ();
8530 *entry = elt;
8531 *slot = entry;
8532
8533 /* Note this use of the partial instantiation so we can check it
8534 later in maybe_process_partial_specialization. */
8535 DECL_TEMPLATE_INSTANTIATIONS (found)
8536 = tree_cons (arglist, t,
8537 DECL_TEMPLATE_INSTANTIATIONS (found));
8538
8539 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
8540 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8541 /* Now that the type has been registered on the instantiations
8542 list, we set up the enumerators. Because the enumeration
8543 constants may involve the enumeration type itself, we make
8544 sure to register the type first, and then create the
8545 constants. That way, doing tsubst_expr for the enumeration
8546 constants won't result in recursive calls here; we'll find
8547 the instantiation and exit above. */
8548 tsubst_enum (template_type, t, arglist);
8549
8550 if (CLASS_TYPE_P (template_type) && is_dependent_type)
8551 /* If the type makes use of template parameters, the
8552 code that generates debugging information will crash. */
8553 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
8554
8555 /* Possibly limit visibility based on template args. */
8556 TREE_PUBLIC (type_decl) = 1;
8557 determine_visibility (type_decl);
8558
8559 inherit_targ_abi_tags (t);
8560
8561 return t;
8562 }
8563 }
8564
8565 /* Wrapper for lookup_template_class_1. */
8566
8567 tree
8568 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
8569 int entering_scope, tsubst_flags_t complain)
8570 {
8571 tree ret;
8572 timevar_push (TV_TEMPLATE_INST);
8573 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
8574 entering_scope, complain);
8575 timevar_pop (TV_TEMPLATE_INST);
8576 return ret;
8577 }
8578
8579 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST. */
8580
8581 tree
8582 lookup_template_variable (tree templ, tree arglist)
8583 {
8584 /* The type of the expression is NULL_TREE since the template-id could refer
8585 to an explicit or partial specialization. */
8586 tree type = NULL_TREE;
8587 if (flag_concepts && variable_concept_p (templ))
8588 /* Except that concepts are always bool. */
8589 type = boolean_type_node;
8590 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
8591 }
8592
8593 /* Instantiate a variable declaration from a TEMPLATE_ID_EXPR for use. */
8594
8595 tree
8596 finish_template_variable (tree var, tsubst_flags_t complain)
8597 {
8598 tree templ = TREE_OPERAND (var, 0);
8599 tree arglist = TREE_OPERAND (var, 1);
8600
8601 /* We never want to return a VAR_DECL for a variable concept, since they
8602 aren't instantiated. In a template, leave the TEMPLATE_ID_EXPR alone. */
8603 bool concept_p = flag_concepts && variable_concept_p (templ);
8604 if (concept_p && processing_template_decl)
8605 return var;
8606
8607 tree tmpl_args = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (templ));
8608 arglist = add_outermost_template_args (tmpl_args, arglist);
8609
8610 tree parms = DECL_TEMPLATE_PARMS (templ);
8611 arglist = coerce_innermost_template_parms (parms, arglist, templ, complain,
8612 /*req_all*/true,
8613 /*use_default*/true);
8614
8615 if (flag_concepts && !constraints_satisfied_p (templ, arglist))
8616 {
8617 if (complain & tf_error)
8618 {
8619 error ("constraints for %qD not satisfied", templ);
8620 diagnose_constraints (location_of (var), templ, arglist);
8621 }
8622 return error_mark_node;
8623 }
8624
8625 /* If a template-id refers to a specialization of a variable
8626 concept, then the expression is true if and only if the
8627 concept's constraints are satisfied by the given template
8628 arguments.
8629
8630 NOTE: This is an extension of Concepts Lite TS that
8631 allows constraints to be used in expressions. */
8632 if (concept_p)
8633 {
8634 tree decl = DECL_TEMPLATE_RESULT (templ);
8635 return evaluate_variable_concept (decl, arglist);
8636 }
8637
8638 return instantiate_template (templ, arglist, complain);
8639 }
8640 \f
8641 struct pair_fn_data
8642 {
8643 tree_fn_t fn;
8644 void *data;
8645 /* True when we should also visit template parameters that occur in
8646 non-deduced contexts. */
8647 bool include_nondeduced_p;
8648 hash_set<tree> *visited;
8649 };
8650
8651 /* Called from for_each_template_parm via walk_tree. */
8652
8653 static tree
8654 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
8655 {
8656 tree t = *tp;
8657 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
8658 tree_fn_t fn = pfd->fn;
8659 void *data = pfd->data;
8660
8661 if (TYPE_P (t)
8662 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE)
8663 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited,
8664 pfd->include_nondeduced_p))
8665 return error_mark_node;
8666
8667 switch (TREE_CODE (t))
8668 {
8669 case RECORD_TYPE:
8670 if (TYPE_PTRMEMFUNC_P (t))
8671 break;
8672 /* Fall through. */
8673
8674 case UNION_TYPE:
8675 case ENUMERAL_TYPE:
8676 if (!TYPE_TEMPLATE_INFO (t))
8677 *walk_subtrees = 0;
8678 else if (for_each_template_parm (TYPE_TI_ARGS (t),
8679 fn, data, pfd->visited,
8680 pfd->include_nondeduced_p))
8681 return error_mark_node;
8682 break;
8683
8684 case INTEGER_TYPE:
8685 if (for_each_template_parm (TYPE_MIN_VALUE (t),
8686 fn, data, pfd->visited,
8687 pfd->include_nondeduced_p)
8688 || for_each_template_parm (TYPE_MAX_VALUE (t),
8689 fn, data, pfd->visited,
8690 pfd->include_nondeduced_p))
8691 return error_mark_node;
8692 break;
8693
8694 case METHOD_TYPE:
8695 /* Since we're not going to walk subtrees, we have to do this
8696 explicitly here. */
8697 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
8698 pfd->visited, pfd->include_nondeduced_p))
8699 return error_mark_node;
8700 /* Fall through. */
8701
8702 case FUNCTION_TYPE:
8703 /* Check the return type. */
8704 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
8705 pfd->include_nondeduced_p))
8706 return error_mark_node;
8707
8708 /* Check the parameter types. Since default arguments are not
8709 instantiated until they are needed, the TYPE_ARG_TYPES may
8710 contain expressions that involve template parameters. But,
8711 no-one should be looking at them yet. And, once they're
8712 instantiated, they don't contain template parameters, so
8713 there's no point in looking at them then, either. */
8714 {
8715 tree parm;
8716
8717 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
8718 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
8719 pfd->visited, pfd->include_nondeduced_p))
8720 return error_mark_node;
8721
8722 /* Since we've already handled the TYPE_ARG_TYPES, we don't
8723 want walk_tree walking into them itself. */
8724 *walk_subtrees = 0;
8725 }
8726 break;
8727
8728 case TYPEOF_TYPE:
8729 case UNDERLYING_TYPE:
8730 if (pfd->include_nondeduced_p
8731 && for_each_template_parm (TYPE_VALUES_RAW (t), fn, data,
8732 pfd->visited,
8733 pfd->include_nondeduced_p))
8734 return error_mark_node;
8735 break;
8736
8737 case FUNCTION_DECL:
8738 case VAR_DECL:
8739 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
8740 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
8741 pfd->visited, pfd->include_nondeduced_p))
8742 return error_mark_node;
8743 /* Fall through. */
8744
8745 case PARM_DECL:
8746 case CONST_DECL:
8747 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
8748 && for_each_template_parm (DECL_INITIAL (t), fn, data,
8749 pfd->visited, pfd->include_nondeduced_p))
8750 return error_mark_node;
8751 if (DECL_CONTEXT (t)
8752 && pfd->include_nondeduced_p
8753 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
8754 pfd->visited, pfd->include_nondeduced_p))
8755 return error_mark_node;
8756 break;
8757
8758 case BOUND_TEMPLATE_TEMPLATE_PARM:
8759 /* Record template parameters such as `T' inside `TT<T>'. */
8760 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited,
8761 pfd->include_nondeduced_p))
8762 return error_mark_node;
8763 /* Fall through. */
8764
8765 case TEMPLATE_TEMPLATE_PARM:
8766 case TEMPLATE_TYPE_PARM:
8767 case TEMPLATE_PARM_INDEX:
8768 if (fn && (*fn)(t, data))
8769 return error_mark_node;
8770 else if (!fn)
8771 return error_mark_node;
8772 break;
8773
8774 case TEMPLATE_DECL:
8775 /* A template template parameter is encountered. */
8776 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
8777 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
8778 pfd->include_nondeduced_p))
8779 return error_mark_node;
8780
8781 /* Already substituted template template parameter */
8782 *walk_subtrees = 0;
8783 break;
8784
8785 case TYPENAME_TYPE:
8786 if (!fn
8787 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
8788 data, pfd->visited,
8789 pfd->include_nondeduced_p))
8790 return error_mark_node;
8791 break;
8792
8793 case CONSTRUCTOR:
8794 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
8795 && pfd->include_nondeduced_p
8796 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
8797 (TREE_TYPE (t)), fn, data,
8798 pfd->visited, pfd->include_nondeduced_p))
8799 return error_mark_node;
8800 break;
8801
8802 case INDIRECT_REF:
8803 case COMPONENT_REF:
8804 /* If there's no type, then this thing must be some expression
8805 involving template parameters. */
8806 if (!fn && !TREE_TYPE (t))
8807 return error_mark_node;
8808 break;
8809
8810 case MODOP_EXPR:
8811 case CAST_EXPR:
8812 case IMPLICIT_CONV_EXPR:
8813 case REINTERPRET_CAST_EXPR:
8814 case CONST_CAST_EXPR:
8815 case STATIC_CAST_EXPR:
8816 case DYNAMIC_CAST_EXPR:
8817 case ARROW_EXPR:
8818 case DOTSTAR_EXPR:
8819 case TYPEID_EXPR:
8820 case PSEUDO_DTOR_EXPR:
8821 if (!fn)
8822 return error_mark_node;
8823 break;
8824
8825 default:
8826 break;
8827 }
8828
8829 /* We didn't find any template parameters we liked. */
8830 return NULL_TREE;
8831 }
8832
8833 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
8834 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
8835 call FN with the parameter and the DATA.
8836 If FN returns nonzero, the iteration is terminated, and
8837 for_each_template_parm returns 1. Otherwise, the iteration
8838 continues. If FN never returns a nonzero value, the value
8839 returned by for_each_template_parm is 0. If FN is NULL, it is
8840 considered to be the function which always returns 1.
8841
8842 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
8843 parameters that occur in non-deduced contexts. When false, only
8844 visits those template parameters that can be deduced. */
8845
8846 static int
8847 for_each_template_parm (tree t, tree_fn_t fn, void* data,
8848 hash_set<tree> *visited,
8849 bool include_nondeduced_p)
8850 {
8851 struct pair_fn_data pfd;
8852 int result;
8853
8854 /* Set up. */
8855 pfd.fn = fn;
8856 pfd.data = data;
8857 pfd.include_nondeduced_p = include_nondeduced_p;
8858
8859 /* Walk the tree. (Conceptually, we would like to walk without
8860 duplicates, but for_each_template_parm_r recursively calls
8861 for_each_template_parm, so we would need to reorganize a fair
8862 bit to use walk_tree_without_duplicates, so we keep our own
8863 visited list.) */
8864 if (visited)
8865 pfd.visited = visited;
8866 else
8867 pfd.visited = new hash_set<tree>;
8868 result = cp_walk_tree (&t,
8869 for_each_template_parm_r,
8870 &pfd,
8871 pfd.visited) != NULL_TREE;
8872
8873 /* Clean up. */
8874 if (!visited)
8875 {
8876 delete pfd.visited;
8877 pfd.visited = 0;
8878 }
8879
8880 return result;
8881 }
8882
8883 /* Returns true if T depends on any template parameter. */
8884
8885 int
8886 uses_template_parms (tree t)
8887 {
8888 if (t == NULL_TREE)
8889 return false;
8890
8891 bool dependent_p;
8892 int saved_processing_template_decl;
8893
8894 saved_processing_template_decl = processing_template_decl;
8895 if (!saved_processing_template_decl)
8896 processing_template_decl = 1;
8897 if (TYPE_P (t))
8898 dependent_p = dependent_type_p (t);
8899 else if (TREE_CODE (t) == TREE_VEC)
8900 dependent_p = any_dependent_template_arguments_p (t);
8901 else if (TREE_CODE (t) == TREE_LIST)
8902 dependent_p = (uses_template_parms (TREE_VALUE (t))
8903 || uses_template_parms (TREE_CHAIN (t)));
8904 else if (TREE_CODE (t) == TYPE_DECL)
8905 dependent_p = dependent_type_p (TREE_TYPE (t));
8906 else if (DECL_P (t)
8907 || EXPR_P (t)
8908 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
8909 || TREE_CODE (t) == OVERLOAD
8910 || BASELINK_P (t)
8911 || identifier_p (t)
8912 || TREE_CODE (t) == TRAIT_EXPR
8913 || TREE_CODE (t) == CONSTRUCTOR
8914 || CONSTANT_CLASS_P (t))
8915 dependent_p = (type_dependent_expression_p (t)
8916 || value_dependent_expression_p (t));
8917 else
8918 {
8919 gcc_assert (t == error_mark_node);
8920 dependent_p = false;
8921 }
8922
8923 processing_template_decl = saved_processing_template_decl;
8924
8925 return dependent_p;
8926 }
8927
8928 /* Returns true iff current_function_decl is an incompletely instantiated
8929 template. Useful instead of processing_template_decl because the latter
8930 is set to 0 during instantiate_non_dependent_expr. */
8931
8932 bool
8933 in_template_function (void)
8934 {
8935 tree fn = current_function_decl;
8936 bool ret;
8937 ++processing_template_decl;
8938 ret = (fn && DECL_LANG_SPECIFIC (fn)
8939 && DECL_TEMPLATE_INFO (fn)
8940 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
8941 --processing_template_decl;
8942 return ret;
8943 }
8944
8945 /* Returns true if T depends on any template parameter with level LEVEL. */
8946
8947 int
8948 uses_template_parms_level (tree t, int level)
8949 {
8950 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
8951 /*include_nondeduced_p=*/true);
8952 }
8953
8954 /* Returns TRUE iff INST is an instantiation we don't need to do in an
8955 ill-formed translation unit, i.e. a variable or function that isn't
8956 usable in a constant expression. */
8957
8958 static inline bool
8959 neglectable_inst_p (tree d)
8960 {
8961 return (DECL_P (d)
8962 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
8963 : decl_maybe_constant_var_p (d)));
8964 }
8965
8966 /* Returns TRUE iff we should refuse to instantiate DECL because it's
8967 neglectable and instantiated from within an erroneous instantiation. */
8968
8969 static bool
8970 limit_bad_template_recursion (tree decl)
8971 {
8972 struct tinst_level *lev = current_tinst_level;
8973 int errs = errorcount + sorrycount;
8974 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
8975 return false;
8976
8977 for (; lev; lev = lev->next)
8978 if (neglectable_inst_p (lev->decl))
8979 break;
8980
8981 return (lev && errs > lev->errors);
8982 }
8983
8984 static int tinst_depth;
8985 extern int max_tinst_depth;
8986 int depth_reached;
8987
8988 static GTY(()) struct tinst_level *last_error_tinst_level;
8989
8990 /* We're starting to instantiate D; record the template instantiation context
8991 for diagnostics and to restore it later. */
8992
8993 bool
8994 push_tinst_level (tree d)
8995 {
8996 return push_tinst_level_loc (d, input_location);
8997 }
8998
8999 /* We're starting to instantiate D; record the template instantiation context
9000 at LOC for diagnostics and to restore it later. */
9001
9002 bool
9003 push_tinst_level_loc (tree d, location_t loc)
9004 {
9005 struct tinst_level *new_level;
9006
9007 if (tinst_depth >= max_tinst_depth)
9008 {
9009 fatal_error (input_location,
9010 "template instantiation depth exceeds maximum of %d"
9011 " (use -ftemplate-depth= to increase the maximum)",
9012 max_tinst_depth);
9013 return false;
9014 }
9015
9016 /* If the current instantiation caused problems, don't let it instantiate
9017 anything else. Do allow deduction substitution and decls usable in
9018 constant expressions. */
9019 if (limit_bad_template_recursion (d))
9020 return false;
9021
9022 new_level = ggc_alloc<tinst_level> ();
9023 new_level->decl = d;
9024 new_level->locus = loc;
9025 new_level->errors = errorcount+sorrycount;
9026 new_level->in_system_header_p = in_system_header_at (input_location);
9027 new_level->next = current_tinst_level;
9028 current_tinst_level = new_level;
9029
9030 ++tinst_depth;
9031 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
9032 depth_reached = tinst_depth;
9033
9034 return true;
9035 }
9036
9037 /* We're done instantiating this template; return to the instantiation
9038 context. */
9039
9040 void
9041 pop_tinst_level (void)
9042 {
9043 /* Restore the filename and line number stashed away when we started
9044 this instantiation. */
9045 input_location = current_tinst_level->locus;
9046 current_tinst_level = current_tinst_level->next;
9047 --tinst_depth;
9048 }
9049
9050 /* We're instantiating a deferred template; restore the template
9051 instantiation context in which the instantiation was requested, which
9052 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
9053
9054 static tree
9055 reopen_tinst_level (struct tinst_level *level)
9056 {
9057 struct tinst_level *t;
9058
9059 tinst_depth = 0;
9060 for (t = level; t; t = t->next)
9061 ++tinst_depth;
9062
9063 current_tinst_level = level;
9064 pop_tinst_level ();
9065 if (current_tinst_level)
9066 current_tinst_level->errors = errorcount+sorrycount;
9067 return level->decl;
9068 }
9069
9070 /* Returns the TINST_LEVEL which gives the original instantiation
9071 context. */
9072
9073 struct tinst_level *
9074 outermost_tinst_level (void)
9075 {
9076 struct tinst_level *level = current_tinst_level;
9077 if (level)
9078 while (level->next)
9079 level = level->next;
9080 return level;
9081 }
9082
9083 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
9084 vector of template arguments, as for tsubst.
9085
9086 Returns an appropriate tsubst'd friend declaration. */
9087
9088 static tree
9089 tsubst_friend_function (tree decl, tree args)
9090 {
9091 tree new_friend;
9092
9093 if (TREE_CODE (decl) == FUNCTION_DECL
9094 && DECL_TEMPLATE_INSTANTIATION (decl)
9095 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
9096 /* This was a friend declared with an explicit template
9097 argument list, e.g.:
9098
9099 friend void f<>(T);
9100
9101 to indicate that f was a template instantiation, not a new
9102 function declaration. Now, we have to figure out what
9103 instantiation of what template. */
9104 {
9105 tree template_id, arglist, fns;
9106 tree new_args;
9107 tree tmpl;
9108 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
9109
9110 /* Friend functions are looked up in the containing namespace scope.
9111 We must enter that scope, to avoid finding member functions of the
9112 current class with same name. */
9113 push_nested_namespace (ns);
9114 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
9115 tf_warning_or_error, NULL_TREE,
9116 /*integral_constant_expression_p=*/false);
9117 pop_nested_namespace (ns);
9118 arglist = tsubst (DECL_TI_ARGS (decl), args,
9119 tf_warning_or_error, NULL_TREE);
9120 template_id = lookup_template_function (fns, arglist);
9121
9122 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9123 tmpl = determine_specialization (template_id, new_friend,
9124 &new_args,
9125 /*need_member_template=*/0,
9126 TREE_VEC_LENGTH (args),
9127 tsk_none);
9128 return instantiate_template (tmpl, new_args, tf_error);
9129 }
9130
9131 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9132
9133 /* The NEW_FRIEND will look like an instantiation, to the
9134 compiler, but is not an instantiation from the point of view of
9135 the language. For example, we might have had:
9136
9137 template <class T> struct S {
9138 template <class U> friend void f(T, U);
9139 };
9140
9141 Then, in S<int>, template <class U> void f(int, U) is not an
9142 instantiation of anything. */
9143 if (new_friend == error_mark_node)
9144 return error_mark_node;
9145
9146 DECL_USE_TEMPLATE (new_friend) = 0;
9147 if (TREE_CODE (decl) == TEMPLATE_DECL)
9148 {
9149 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
9150 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
9151 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
9152 }
9153
9154 /* The mangled name for the NEW_FRIEND is incorrect. The function
9155 is not a template instantiation and should not be mangled like
9156 one. Therefore, we forget the mangling here; we'll recompute it
9157 later if we need it. */
9158 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
9159 {
9160 SET_DECL_RTL (new_friend, NULL);
9161 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
9162 }
9163
9164 if (DECL_NAMESPACE_SCOPE_P (new_friend))
9165 {
9166 tree old_decl;
9167 tree new_friend_template_info;
9168 tree new_friend_result_template_info;
9169 tree ns;
9170 int new_friend_is_defn;
9171
9172 /* We must save some information from NEW_FRIEND before calling
9173 duplicate decls since that function will free NEW_FRIEND if
9174 possible. */
9175 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
9176 new_friend_is_defn =
9177 (DECL_INITIAL (DECL_TEMPLATE_RESULT
9178 (template_for_substitution (new_friend)))
9179 != NULL_TREE);
9180 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
9181 {
9182 /* This declaration is a `primary' template. */
9183 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
9184
9185 new_friend_result_template_info
9186 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
9187 }
9188 else
9189 new_friend_result_template_info = NULL_TREE;
9190
9191 /* Make the init_value nonzero so pushdecl knows this is a defn. */
9192 if (new_friend_is_defn)
9193 DECL_INITIAL (new_friend) = error_mark_node;
9194
9195 /* Inside pushdecl_namespace_level, we will push into the
9196 current namespace. However, the friend function should go
9197 into the namespace of the template. */
9198 ns = decl_namespace_context (new_friend);
9199 push_nested_namespace (ns);
9200 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
9201 pop_nested_namespace (ns);
9202
9203 if (old_decl == error_mark_node)
9204 return error_mark_node;
9205
9206 if (old_decl != new_friend)
9207 {
9208 /* This new friend declaration matched an existing
9209 declaration. For example, given:
9210
9211 template <class T> void f(T);
9212 template <class U> class C {
9213 template <class T> friend void f(T) {}
9214 };
9215
9216 the friend declaration actually provides the definition
9217 of `f', once C has been instantiated for some type. So,
9218 old_decl will be the out-of-class template declaration,
9219 while new_friend is the in-class definition.
9220
9221 But, if `f' was called before this point, the
9222 instantiation of `f' will have DECL_TI_ARGS corresponding
9223 to `T' but not to `U', references to which might appear
9224 in the definition of `f'. Previously, the most general
9225 template for an instantiation of `f' was the out-of-class
9226 version; now it is the in-class version. Therefore, we
9227 run through all specialization of `f', adding to their
9228 DECL_TI_ARGS appropriately. In particular, they need a
9229 new set of outer arguments, corresponding to the
9230 arguments for this class instantiation.
9231
9232 The same situation can arise with something like this:
9233
9234 friend void f(int);
9235 template <class T> class C {
9236 friend void f(T) {}
9237 };
9238
9239 when `C<int>' is instantiated. Now, `f(int)' is defined
9240 in the class. */
9241
9242 if (!new_friend_is_defn)
9243 /* On the other hand, if the in-class declaration does
9244 *not* provide a definition, then we don't want to alter
9245 existing definitions. We can just leave everything
9246 alone. */
9247 ;
9248 else
9249 {
9250 tree new_template = TI_TEMPLATE (new_friend_template_info);
9251 tree new_args = TI_ARGS (new_friend_template_info);
9252
9253 /* Overwrite whatever template info was there before, if
9254 any, with the new template information pertaining to
9255 the declaration. */
9256 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
9257
9258 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
9259 {
9260 /* We should have called reregister_specialization in
9261 duplicate_decls. */
9262 gcc_assert (retrieve_specialization (new_template,
9263 new_args, 0)
9264 == old_decl);
9265
9266 /* Instantiate it if the global has already been used. */
9267 if (DECL_ODR_USED (old_decl))
9268 instantiate_decl (old_decl, /*defer_ok=*/true,
9269 /*expl_inst_class_mem_p=*/false);
9270 }
9271 else
9272 {
9273 tree t;
9274
9275 /* Indicate that the old function template is a partial
9276 instantiation. */
9277 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
9278 = new_friend_result_template_info;
9279
9280 gcc_assert (new_template
9281 == most_general_template (new_template));
9282 gcc_assert (new_template != old_decl);
9283
9284 /* Reassign any specializations already in the hash table
9285 to the new more general template, and add the
9286 additional template args. */
9287 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
9288 t != NULL_TREE;
9289 t = TREE_CHAIN (t))
9290 {
9291 tree spec = TREE_VALUE (t);
9292 spec_entry elt;
9293
9294 elt.tmpl = old_decl;
9295 elt.args = DECL_TI_ARGS (spec);
9296 elt.spec = NULL_TREE;
9297
9298 decl_specializations->remove_elt (&elt);
9299
9300 DECL_TI_ARGS (spec)
9301 = add_outermost_template_args (new_args,
9302 DECL_TI_ARGS (spec));
9303
9304 register_specialization
9305 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
9306
9307 }
9308 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
9309 }
9310 }
9311
9312 /* The information from NEW_FRIEND has been merged into OLD_DECL
9313 by duplicate_decls. */
9314 new_friend = old_decl;
9315 }
9316 }
9317 else
9318 {
9319 tree context = DECL_CONTEXT (new_friend);
9320 bool dependent_p;
9321
9322 /* In the code
9323 template <class T> class C {
9324 template <class U> friend void C1<U>::f (); // case 1
9325 friend void C2<T>::f (); // case 2
9326 };
9327 we only need to make sure CONTEXT is a complete type for
9328 case 2. To distinguish between the two cases, we note that
9329 CONTEXT of case 1 remains dependent type after tsubst while
9330 this isn't true for case 2. */
9331 ++processing_template_decl;
9332 dependent_p = dependent_type_p (context);
9333 --processing_template_decl;
9334
9335 if (!dependent_p
9336 && !complete_type_or_else (context, NULL_TREE))
9337 return error_mark_node;
9338
9339 if (COMPLETE_TYPE_P (context))
9340 {
9341 tree fn = new_friend;
9342 /* do_friend adds the TEMPLATE_DECL for any member friend
9343 template even if it isn't a member template, i.e.
9344 template <class T> friend A<T>::f();
9345 Look through it in that case. */
9346 if (TREE_CODE (fn) == TEMPLATE_DECL
9347 && !PRIMARY_TEMPLATE_P (fn))
9348 fn = DECL_TEMPLATE_RESULT (fn);
9349 /* Check to see that the declaration is really present, and,
9350 possibly obtain an improved declaration. */
9351 fn = check_classfn (context, fn, NULL_TREE);
9352
9353 if (fn)
9354 new_friend = fn;
9355 }
9356 }
9357
9358 return new_friend;
9359 }
9360
9361 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
9362 template arguments, as for tsubst.
9363
9364 Returns an appropriate tsubst'd friend type or error_mark_node on
9365 failure. */
9366
9367 static tree
9368 tsubst_friend_class (tree friend_tmpl, tree args)
9369 {
9370 tree friend_type;
9371 tree tmpl;
9372 tree context;
9373
9374 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
9375 {
9376 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
9377 return TREE_TYPE (t);
9378 }
9379
9380 context = CP_DECL_CONTEXT (friend_tmpl);
9381
9382 if (context != global_namespace)
9383 {
9384 if (TREE_CODE (context) == NAMESPACE_DECL)
9385 push_nested_namespace (context);
9386 else
9387 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
9388 }
9389
9390 /* Look for a class template declaration. We look for hidden names
9391 because two friend declarations of the same template are the
9392 same. For example, in:
9393
9394 struct A {
9395 template <typename> friend class F;
9396 };
9397 template <typename> struct B {
9398 template <typename> friend class F;
9399 };
9400
9401 both F templates are the same. */
9402 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
9403 /*block_p=*/true, 0, LOOKUP_HIDDEN);
9404
9405 /* But, if we don't find one, it might be because we're in a
9406 situation like this:
9407
9408 template <class T>
9409 struct S {
9410 template <class U>
9411 friend struct S;
9412 };
9413
9414 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
9415 for `S<int>', not the TEMPLATE_DECL. */
9416 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
9417 {
9418 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
9419 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
9420 }
9421
9422 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
9423 {
9424 /* The friend template has already been declared. Just
9425 check to see that the declarations match, and install any new
9426 default parameters. We must tsubst the default parameters,
9427 of course. We only need the innermost template parameters
9428 because that is all that redeclare_class_template will look
9429 at. */
9430 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
9431 > TMPL_ARGS_DEPTH (args))
9432 {
9433 tree parms;
9434 location_t saved_input_location;
9435 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
9436 args, tf_warning_or_error);
9437
9438 saved_input_location = input_location;
9439 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
9440 tree cons = get_constraints (tmpl);
9441 redeclare_class_template (TREE_TYPE (tmpl), parms, cons);
9442 input_location = saved_input_location;
9443
9444 }
9445
9446 friend_type = TREE_TYPE (tmpl);
9447 }
9448 else
9449 {
9450 /* The friend template has not already been declared. In this
9451 case, the instantiation of the template class will cause the
9452 injection of this template into the global scope. */
9453 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
9454 if (tmpl == error_mark_node)
9455 return error_mark_node;
9456
9457 /* The new TMPL is not an instantiation of anything, so we
9458 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
9459 the new type because that is supposed to be the corresponding
9460 template decl, i.e., TMPL. */
9461 DECL_USE_TEMPLATE (tmpl) = 0;
9462 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
9463 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
9464 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
9465 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
9466
9467 /* Inject this template into the global scope. */
9468 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
9469 }
9470
9471 if (context != global_namespace)
9472 {
9473 if (TREE_CODE (context) == NAMESPACE_DECL)
9474 pop_nested_namespace (context);
9475 else
9476 pop_nested_class ();
9477 }
9478
9479 return friend_type;
9480 }
9481
9482 /* Returns zero if TYPE cannot be completed later due to circularity.
9483 Otherwise returns one. */
9484
9485 static int
9486 can_complete_type_without_circularity (tree type)
9487 {
9488 if (type == NULL_TREE || type == error_mark_node)
9489 return 0;
9490 else if (COMPLETE_TYPE_P (type))
9491 return 1;
9492 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
9493 return can_complete_type_without_circularity (TREE_TYPE (type));
9494 else if (CLASS_TYPE_P (type)
9495 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
9496 return 0;
9497 else
9498 return 1;
9499 }
9500
9501 static tree tsubst_omp_clauses (tree, bool, tree, tsubst_flags_t, tree);
9502
9503 /* Apply any attributes which had to be deferred until instantiation
9504 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
9505 ARGS, COMPLAIN, IN_DECL are as tsubst. */
9506
9507 static void
9508 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
9509 tree args, tsubst_flags_t complain, tree in_decl)
9510 {
9511 tree last_dep = NULL_TREE;
9512 tree t;
9513 tree *p;
9514
9515 for (t = attributes; t; t = TREE_CHAIN (t))
9516 if (ATTR_IS_DEPENDENT (t))
9517 {
9518 last_dep = t;
9519 attributes = copy_list (attributes);
9520 break;
9521 }
9522
9523 if (DECL_P (*decl_p))
9524 {
9525 if (TREE_TYPE (*decl_p) == error_mark_node)
9526 return;
9527 p = &DECL_ATTRIBUTES (*decl_p);
9528 }
9529 else
9530 p = &TYPE_ATTRIBUTES (*decl_p);
9531
9532 if (last_dep)
9533 {
9534 tree late_attrs = NULL_TREE;
9535 tree *q = &late_attrs;
9536
9537 for (*p = attributes; *p; )
9538 {
9539 t = *p;
9540 if (ATTR_IS_DEPENDENT (t))
9541 {
9542 *p = TREE_CHAIN (t);
9543 TREE_CHAIN (t) = NULL_TREE;
9544 if ((flag_openmp || flag_openmp_simd || flag_cilkplus)
9545 && is_attribute_p ("omp declare simd",
9546 get_attribute_name (t))
9547 && TREE_VALUE (t))
9548 {
9549 tree clauses = TREE_VALUE (TREE_VALUE (t));
9550 clauses = tsubst_omp_clauses (clauses, true, args,
9551 complain, in_decl);
9552 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
9553 clauses = finish_omp_clauses (clauses);
9554 tree parms = DECL_ARGUMENTS (*decl_p);
9555 clauses
9556 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
9557 if (clauses)
9558 TREE_VALUE (TREE_VALUE (t)) = clauses;
9559 else
9560 TREE_VALUE (t) = NULL_TREE;
9561 }
9562 /* If the first attribute argument is an identifier, don't
9563 pass it through tsubst. Attributes like mode, format,
9564 cleanup and several target specific attributes expect it
9565 unmodified. */
9566 else if (attribute_takes_identifier_p (get_attribute_name (t))
9567 && TREE_VALUE (t))
9568 {
9569 tree chain
9570 = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain,
9571 in_decl,
9572 /*integral_constant_expression_p=*/false);
9573 if (chain != TREE_CHAIN (TREE_VALUE (t)))
9574 TREE_VALUE (t)
9575 = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)),
9576 chain);
9577 }
9578 else if (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t)))
9579 {
9580 /* An attribute pack expansion. */
9581 tree purp = TREE_PURPOSE (t);
9582 tree pack = (tsubst_pack_expansion
9583 (TREE_VALUE (t), args, complain, in_decl));
9584 int len = TREE_VEC_LENGTH (pack);
9585 for (int i = 0; i < len; ++i)
9586 {
9587 tree elt = TREE_VEC_ELT (pack, i);
9588 *q = build_tree_list (purp, elt);
9589 q = &TREE_CHAIN (*q);
9590 }
9591 continue;
9592 }
9593 else
9594 TREE_VALUE (t)
9595 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
9596 /*integral_constant_expression_p=*/false);
9597 *q = t;
9598 q = &TREE_CHAIN (t);
9599 }
9600 else
9601 p = &TREE_CHAIN (t);
9602 }
9603
9604 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
9605 }
9606 }
9607
9608 /* Perform (or defer) access check for typedefs that were referenced
9609 from within the template TMPL code.
9610 This is a subroutine of instantiate_decl and instantiate_class_template.
9611 TMPL is the template to consider and TARGS is the list of arguments of
9612 that template. */
9613
9614 static void
9615 perform_typedefs_access_check (tree tmpl, tree targs)
9616 {
9617 location_t saved_location;
9618 unsigned i;
9619 qualified_typedef_usage_t *iter;
9620
9621 if (!tmpl
9622 || (!CLASS_TYPE_P (tmpl)
9623 && TREE_CODE (tmpl) != FUNCTION_DECL))
9624 return;
9625
9626 saved_location = input_location;
9627 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
9628 {
9629 tree type_decl = iter->typedef_decl;
9630 tree type_scope = iter->context;
9631
9632 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
9633 continue;
9634
9635 if (uses_template_parms (type_decl))
9636 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
9637 if (uses_template_parms (type_scope))
9638 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
9639
9640 /* Make access check error messages point to the location
9641 of the use of the typedef. */
9642 input_location = iter->locus;
9643 perform_or_defer_access_check (TYPE_BINFO (type_scope),
9644 type_decl, type_decl,
9645 tf_warning_or_error);
9646 }
9647 input_location = saved_location;
9648 }
9649
9650 static tree
9651 instantiate_class_template_1 (tree type)
9652 {
9653 tree templ, args, pattern, t, member;
9654 tree typedecl;
9655 tree pbinfo;
9656 tree base_list;
9657 unsigned int saved_maximum_field_alignment;
9658 tree fn_context;
9659
9660 if (type == error_mark_node)
9661 return error_mark_node;
9662
9663 if (COMPLETE_OR_OPEN_TYPE_P (type)
9664 || uses_template_parms (type))
9665 return type;
9666
9667 /* Figure out which template is being instantiated. */
9668 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
9669 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
9670
9671 /* Determine what specialization of the original template to
9672 instantiate. */
9673 t = most_specialized_partial_spec (type, tf_warning_or_error);
9674 if (t == error_mark_node)
9675 {
9676 TYPE_BEING_DEFINED (type) = 1;
9677 return error_mark_node;
9678 }
9679 else if (t)
9680 {
9681 /* This TYPE is actually an instantiation of a partial
9682 specialization. We replace the innermost set of ARGS with
9683 the arguments appropriate for substitution. For example,
9684 given:
9685
9686 template <class T> struct S {};
9687 template <class T> struct S<T*> {};
9688
9689 and supposing that we are instantiating S<int*>, ARGS will
9690 presently be {int*} -- but we need {int}. */
9691 pattern = TREE_TYPE (t);
9692 args = TREE_PURPOSE (t);
9693 }
9694 else
9695 {
9696 pattern = TREE_TYPE (templ);
9697 args = CLASSTYPE_TI_ARGS (type);
9698 }
9699
9700 /* If the template we're instantiating is incomplete, then clearly
9701 there's nothing we can do. */
9702 if (!COMPLETE_TYPE_P (pattern))
9703 return type;
9704
9705 /* If we've recursively instantiated too many templates, stop. */
9706 if (! push_tinst_level (type))
9707 return type;
9708
9709 /* Now we're really doing the instantiation. Mark the type as in
9710 the process of being defined. */
9711 TYPE_BEING_DEFINED (type) = 1;
9712
9713 /* We may be in the middle of deferred access check. Disable
9714 it now. */
9715 push_deferring_access_checks (dk_no_deferred);
9716
9717 int saved_unevaluated_operand = cp_unevaluated_operand;
9718 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
9719
9720 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
9721 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
9722 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
9723 fn_context = error_mark_node;
9724 if (!fn_context)
9725 push_to_top_level ();
9726 else
9727 {
9728 cp_unevaluated_operand = 0;
9729 c_inhibit_evaluation_warnings = 0;
9730 }
9731 /* Use #pragma pack from the template context. */
9732 saved_maximum_field_alignment = maximum_field_alignment;
9733 maximum_field_alignment = TYPE_PRECISION (pattern);
9734
9735 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
9736
9737 /* Set the input location to the most specialized template definition.
9738 This is needed if tsubsting causes an error. */
9739 typedecl = TYPE_MAIN_DECL (pattern);
9740 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
9741 DECL_SOURCE_LOCATION (typedecl);
9742
9743 TYPE_PACKED (type) = TYPE_PACKED (pattern);
9744 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
9745 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
9746 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
9747 if (ANON_AGGR_TYPE_P (pattern))
9748 SET_ANON_AGGR_TYPE_P (type);
9749 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
9750 {
9751 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
9752 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
9753 /* Adjust visibility for template arguments. */
9754 determine_visibility (TYPE_MAIN_DECL (type));
9755 }
9756 if (CLASS_TYPE_P (type))
9757 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
9758
9759 pbinfo = TYPE_BINFO (pattern);
9760
9761 /* We should never instantiate a nested class before its enclosing
9762 class; we need to look up the nested class by name before we can
9763 instantiate it, and that lookup should instantiate the enclosing
9764 class. */
9765 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
9766 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
9767
9768 base_list = NULL_TREE;
9769 if (BINFO_N_BASE_BINFOS (pbinfo))
9770 {
9771 tree pbase_binfo;
9772 tree pushed_scope;
9773 int i;
9774
9775 /* We must enter the scope containing the type, as that is where
9776 the accessibility of types named in dependent bases are
9777 looked up from. */
9778 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
9779
9780 /* Substitute into each of the bases to determine the actual
9781 basetypes. */
9782 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
9783 {
9784 tree base;
9785 tree access = BINFO_BASE_ACCESS (pbinfo, i);
9786 tree expanded_bases = NULL_TREE;
9787 int idx, len = 1;
9788
9789 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
9790 {
9791 expanded_bases =
9792 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
9793 args, tf_error, NULL_TREE);
9794 if (expanded_bases == error_mark_node)
9795 continue;
9796
9797 len = TREE_VEC_LENGTH (expanded_bases);
9798 }
9799
9800 for (idx = 0; idx < len; idx++)
9801 {
9802 if (expanded_bases)
9803 /* Extract the already-expanded base class. */
9804 base = TREE_VEC_ELT (expanded_bases, idx);
9805 else
9806 /* Substitute to figure out the base class. */
9807 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
9808 NULL_TREE);
9809
9810 if (base == error_mark_node)
9811 continue;
9812
9813 base_list = tree_cons (access, base, base_list);
9814 if (BINFO_VIRTUAL_P (pbase_binfo))
9815 TREE_TYPE (base_list) = integer_type_node;
9816 }
9817 }
9818
9819 /* The list is now in reverse order; correct that. */
9820 base_list = nreverse (base_list);
9821
9822 if (pushed_scope)
9823 pop_scope (pushed_scope);
9824 }
9825 /* Now call xref_basetypes to set up all the base-class
9826 information. */
9827 xref_basetypes (type, base_list);
9828
9829 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
9830 (int) ATTR_FLAG_TYPE_IN_PLACE,
9831 args, tf_error, NULL_TREE);
9832 fixup_attribute_variants (type);
9833
9834 /* Now that our base classes are set up, enter the scope of the
9835 class, so that name lookups into base classes, etc. will work
9836 correctly. This is precisely analogous to what we do in
9837 begin_class_definition when defining an ordinary non-template
9838 class, except we also need to push the enclosing classes. */
9839 push_nested_class (type);
9840
9841 /* Now members are processed in the order of declaration. */
9842 for (member = CLASSTYPE_DECL_LIST (pattern);
9843 member; member = TREE_CHAIN (member))
9844 {
9845 tree t = TREE_VALUE (member);
9846
9847 if (TREE_PURPOSE (member))
9848 {
9849 if (TYPE_P (t))
9850 {
9851 /* Build new CLASSTYPE_NESTED_UTDS. */
9852
9853 tree newtag;
9854 bool class_template_p;
9855
9856 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
9857 && TYPE_LANG_SPECIFIC (t)
9858 && CLASSTYPE_IS_TEMPLATE (t));
9859 /* If the member is a class template, then -- even after
9860 substitution -- there may be dependent types in the
9861 template argument list for the class. We increment
9862 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
9863 that function will assume that no types are dependent
9864 when outside of a template. */
9865 if (class_template_p)
9866 ++processing_template_decl;
9867 newtag = tsubst (t, args, tf_error, NULL_TREE);
9868 if (class_template_p)
9869 --processing_template_decl;
9870 if (newtag == error_mark_node)
9871 continue;
9872
9873 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
9874 {
9875 tree name = TYPE_IDENTIFIER (t);
9876
9877 if (class_template_p)
9878 /* Unfortunately, lookup_template_class sets
9879 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
9880 instantiation (i.e., for the type of a member
9881 template class nested within a template class.)
9882 This behavior is required for
9883 maybe_process_partial_specialization to work
9884 correctly, but is not accurate in this case;
9885 the TAG is not an instantiation of anything.
9886 (The corresponding TEMPLATE_DECL is an
9887 instantiation, but the TYPE is not.) */
9888 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
9889
9890 /* Now, we call pushtag to put this NEWTAG into the scope of
9891 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
9892 pushtag calling push_template_decl. We don't have to do
9893 this for enums because it will already have been done in
9894 tsubst_enum. */
9895 if (name)
9896 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
9897 pushtag (name, newtag, /*tag_scope=*/ts_current);
9898 }
9899 }
9900 else if (DECL_DECLARES_FUNCTION_P (t))
9901 {
9902 /* Build new TYPE_METHODS. */
9903 tree r;
9904
9905 if (TREE_CODE (t) == TEMPLATE_DECL)
9906 ++processing_template_decl;
9907 r = tsubst (t, args, tf_error, NULL_TREE);
9908 if (TREE_CODE (t) == TEMPLATE_DECL)
9909 --processing_template_decl;
9910 set_current_access_from_decl (r);
9911 finish_member_declaration (r);
9912 /* Instantiate members marked with attribute used. */
9913 if (r != error_mark_node && DECL_PRESERVE_P (r))
9914 mark_used (r);
9915 if (TREE_CODE (r) == FUNCTION_DECL
9916 && DECL_OMP_DECLARE_REDUCTION_P (r))
9917 cp_check_omp_declare_reduction (r);
9918 }
9919 else if (DECL_CLASS_TEMPLATE_P (t)
9920 && LAMBDA_TYPE_P (TREE_TYPE (t)))
9921 /* A closure type for a lambda in a default argument for a
9922 member template. Ignore it; it will be instantiated with
9923 the default argument. */;
9924 else
9925 {
9926 /* Build new TYPE_FIELDS. */
9927 if (TREE_CODE (t) == STATIC_ASSERT)
9928 {
9929 tree condition;
9930
9931 ++c_inhibit_evaluation_warnings;
9932 condition =
9933 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
9934 tf_warning_or_error, NULL_TREE,
9935 /*integral_constant_expression_p=*/true);
9936 --c_inhibit_evaluation_warnings;
9937
9938 finish_static_assert (condition,
9939 STATIC_ASSERT_MESSAGE (t),
9940 STATIC_ASSERT_SOURCE_LOCATION (t),
9941 /*member_p=*/true);
9942 }
9943 else if (TREE_CODE (t) != CONST_DECL)
9944 {
9945 tree r;
9946 tree vec = NULL_TREE;
9947 int len = 1;
9948
9949 /* The file and line for this declaration, to
9950 assist in error message reporting. Since we
9951 called push_tinst_level above, we don't need to
9952 restore these. */
9953 input_location = DECL_SOURCE_LOCATION (t);
9954
9955 if (TREE_CODE (t) == TEMPLATE_DECL)
9956 ++processing_template_decl;
9957 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
9958 if (TREE_CODE (t) == TEMPLATE_DECL)
9959 --processing_template_decl;
9960
9961 if (TREE_CODE (r) == TREE_VEC)
9962 {
9963 /* A capture pack became multiple fields. */
9964 vec = r;
9965 len = TREE_VEC_LENGTH (vec);
9966 }
9967
9968 for (int i = 0; i < len; ++i)
9969 {
9970 if (vec)
9971 r = TREE_VEC_ELT (vec, i);
9972 if (VAR_P (r))
9973 {
9974 /* In [temp.inst]:
9975
9976 [t]he initialization (and any associated
9977 side-effects) of a static data member does
9978 not occur unless the static data member is
9979 itself used in a way that requires the
9980 definition of the static data member to
9981 exist.
9982
9983 Therefore, we do not substitute into the
9984 initialized for the static data member here. */
9985 finish_static_data_member_decl
9986 (r,
9987 /*init=*/NULL_TREE,
9988 /*init_const_expr_p=*/false,
9989 /*asmspec_tree=*/NULL_TREE,
9990 /*flags=*/0);
9991 /* Instantiate members marked with attribute used. */
9992 if (r != error_mark_node && DECL_PRESERVE_P (r))
9993 mark_used (r);
9994 }
9995 else if (TREE_CODE (r) == FIELD_DECL)
9996 {
9997 /* Determine whether R has a valid type and can be
9998 completed later. If R is invalid, then its type
9999 is replaced by error_mark_node. */
10000 tree rtype = TREE_TYPE (r);
10001 if (can_complete_type_without_circularity (rtype))
10002 complete_type (rtype);
10003
10004 if (!COMPLETE_TYPE_P (rtype))
10005 {
10006 cxx_incomplete_type_error (r, rtype);
10007 TREE_TYPE (r) = error_mark_node;
10008 }
10009 }
10010
10011 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
10012 such a thing will already have been added to the field
10013 list by tsubst_enum in finish_member_declaration in the
10014 CLASSTYPE_NESTED_UTDS case above. */
10015 if (!(TREE_CODE (r) == TYPE_DECL
10016 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
10017 && DECL_ARTIFICIAL (r)))
10018 {
10019 set_current_access_from_decl (r);
10020 finish_member_declaration (r);
10021 }
10022 }
10023 }
10024 }
10025 }
10026 else
10027 {
10028 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
10029 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10030 {
10031 /* Build new CLASSTYPE_FRIEND_CLASSES. */
10032
10033 tree friend_type = t;
10034 bool adjust_processing_template_decl = false;
10035
10036 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10037 {
10038 /* template <class T> friend class C; */
10039 friend_type = tsubst_friend_class (friend_type, args);
10040 adjust_processing_template_decl = true;
10041 }
10042 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
10043 {
10044 /* template <class T> friend class C::D; */
10045 friend_type = tsubst (friend_type, args,
10046 tf_warning_or_error, NULL_TREE);
10047 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10048 friend_type = TREE_TYPE (friend_type);
10049 adjust_processing_template_decl = true;
10050 }
10051 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
10052 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
10053 {
10054 /* This could be either
10055
10056 friend class T::C;
10057
10058 when dependent_type_p is false or
10059
10060 template <class U> friend class T::C;
10061
10062 otherwise. */
10063 friend_type = tsubst (friend_type, args,
10064 tf_warning_or_error, NULL_TREE);
10065 /* Bump processing_template_decl for correct
10066 dependent_type_p calculation. */
10067 ++processing_template_decl;
10068 if (dependent_type_p (friend_type))
10069 adjust_processing_template_decl = true;
10070 --processing_template_decl;
10071 }
10072 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
10073 && hidden_name_p (TYPE_NAME (friend_type)))
10074 {
10075 /* friend class C;
10076
10077 where C hasn't been declared yet. Let's lookup name
10078 from namespace scope directly, bypassing any name that
10079 come from dependent base class. */
10080 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
10081
10082 /* The call to xref_tag_from_type does injection for friend
10083 classes. */
10084 push_nested_namespace (ns);
10085 friend_type =
10086 xref_tag_from_type (friend_type, NULL_TREE,
10087 /*tag_scope=*/ts_current);
10088 pop_nested_namespace (ns);
10089 }
10090 else if (uses_template_parms (friend_type))
10091 /* friend class C<T>; */
10092 friend_type = tsubst (friend_type, args,
10093 tf_warning_or_error, NULL_TREE);
10094 /* Otherwise it's
10095
10096 friend class C;
10097
10098 where C is already declared or
10099
10100 friend class C<int>;
10101
10102 We don't have to do anything in these cases. */
10103
10104 if (adjust_processing_template_decl)
10105 /* Trick make_friend_class into realizing that the friend
10106 we're adding is a template, not an ordinary class. It's
10107 important that we use make_friend_class since it will
10108 perform some error-checking and output cross-reference
10109 information. */
10110 ++processing_template_decl;
10111
10112 if (friend_type != error_mark_node)
10113 make_friend_class (type, friend_type, /*complain=*/false);
10114
10115 if (adjust_processing_template_decl)
10116 --processing_template_decl;
10117 }
10118 else
10119 {
10120 /* Build new DECL_FRIENDLIST. */
10121 tree r;
10122
10123 /* The file and line for this declaration, to
10124 assist in error message reporting. Since we
10125 called push_tinst_level above, we don't need to
10126 restore these. */
10127 input_location = DECL_SOURCE_LOCATION (t);
10128
10129 if (TREE_CODE (t) == TEMPLATE_DECL)
10130 {
10131 ++processing_template_decl;
10132 push_deferring_access_checks (dk_no_check);
10133 }
10134
10135 r = tsubst_friend_function (t, args);
10136 add_friend (type, r, /*complain=*/false);
10137 if (TREE_CODE (t) == TEMPLATE_DECL)
10138 {
10139 pop_deferring_access_checks ();
10140 --processing_template_decl;
10141 }
10142 }
10143 }
10144 }
10145
10146 if (fn_context)
10147 {
10148 /* Restore these before substituting into the lambda capture
10149 initializers. */
10150 cp_unevaluated_operand = saved_unevaluated_operand;
10151 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10152 }
10153
10154 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
10155 {
10156 tree decl = lambda_function (type);
10157 if (decl)
10158 {
10159 if (!DECL_TEMPLATE_INFO (decl)
10160 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
10161 instantiate_decl (decl, false, false);
10162
10163 /* We need to instantiate the capture list from the template
10164 after we've instantiated the closure members, but before we
10165 consider adding the conversion op. Also keep any captures
10166 that may have been added during instantiation of the op(). */
10167 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
10168 tree tmpl_cap
10169 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
10170 args, tf_warning_or_error, NULL_TREE,
10171 false, false);
10172
10173 LAMBDA_EXPR_CAPTURE_LIST (expr)
10174 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
10175
10176 maybe_add_lambda_conv_op (type);
10177 }
10178 else
10179 gcc_assert (errorcount);
10180 }
10181
10182 /* Set the file and line number information to whatever is given for
10183 the class itself. This puts error messages involving generated
10184 implicit functions at a predictable point, and the same point
10185 that would be used for non-template classes. */
10186 input_location = DECL_SOURCE_LOCATION (typedecl);
10187
10188 unreverse_member_declarations (type);
10189 finish_struct_1 (type);
10190 TYPE_BEING_DEFINED (type) = 0;
10191
10192 /* We don't instantiate default arguments for member functions. 14.7.1:
10193
10194 The implicit instantiation of a class template specialization causes
10195 the implicit instantiation of the declarations, but not of the
10196 definitions or default arguments, of the class member functions,
10197 member classes, static data members and member templates.... */
10198
10199 /* Some typedefs referenced from within the template code need to be access
10200 checked at template instantiation time, i.e now. These types were
10201 added to the template at parsing time. Let's get those and perform
10202 the access checks then. */
10203 perform_typedefs_access_check (pattern, args);
10204 perform_deferred_access_checks (tf_warning_or_error);
10205 pop_nested_class ();
10206 maximum_field_alignment = saved_maximum_field_alignment;
10207 if (!fn_context)
10208 pop_from_top_level ();
10209 pop_deferring_access_checks ();
10210 pop_tinst_level ();
10211
10212 /* The vtable for a template class can be emitted in any translation
10213 unit in which the class is instantiated. When there is no key
10214 method, however, finish_struct_1 will already have added TYPE to
10215 the keyed_classes list. */
10216 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
10217 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
10218
10219 return type;
10220 }
10221
10222 /* Wrapper for instantiate_class_template_1. */
10223
10224 tree
10225 instantiate_class_template (tree type)
10226 {
10227 tree ret;
10228 timevar_push (TV_TEMPLATE_INST);
10229 ret = instantiate_class_template_1 (type);
10230 timevar_pop (TV_TEMPLATE_INST);
10231 return ret;
10232 }
10233
10234 static tree
10235 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10236 {
10237 tree r;
10238
10239 if (!t)
10240 r = t;
10241 else if (TYPE_P (t))
10242 r = tsubst (t, args, complain, in_decl);
10243 else
10244 {
10245 if (!(complain & tf_warning))
10246 ++c_inhibit_evaluation_warnings;
10247 r = tsubst_expr (t, args, complain, in_decl,
10248 /*integral_constant_expression_p=*/true);
10249 if (!(complain & tf_warning))
10250 --c_inhibit_evaluation_warnings;
10251 }
10252 return r;
10253 }
10254
10255 /* Given a function parameter pack TMPL_PARM and some function parameters
10256 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
10257 and set *SPEC_P to point at the next point in the list. */
10258
10259 tree
10260 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
10261 {
10262 /* Collect all of the extra "packed" parameters into an
10263 argument pack. */
10264 tree parmvec;
10265 tree parmtypevec;
10266 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
10267 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
10268 tree spec_parm = *spec_p;
10269 int i, len;
10270
10271 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
10272 if (tmpl_parm
10273 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
10274 break;
10275
10276 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
10277 parmvec = make_tree_vec (len);
10278 parmtypevec = make_tree_vec (len);
10279 spec_parm = *spec_p;
10280 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
10281 {
10282 TREE_VEC_ELT (parmvec, i) = spec_parm;
10283 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
10284 }
10285
10286 /* Build the argument packs. */
10287 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
10288 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
10289 TREE_TYPE (argpack) = argtypepack;
10290 *spec_p = spec_parm;
10291
10292 return argpack;
10293 }
10294
10295 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
10296 NONTYPE_ARGUMENT_PACK. */
10297
10298 static tree
10299 make_fnparm_pack (tree spec_parm)
10300 {
10301 return extract_fnparm_pack (NULL_TREE, &spec_parm);
10302 }
10303
10304 /* Return 1 if the Ith element of the argument pack ARG_PACK is a
10305 pack expansion with no extra args, 2 if it has extra args, or 0
10306 if it is not a pack expansion. */
10307
10308 static int
10309 argument_pack_element_is_expansion_p (tree arg_pack, int i)
10310 {
10311 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
10312 if (i >= TREE_VEC_LENGTH (vec))
10313 return 0;
10314 tree elt = TREE_VEC_ELT (vec, i);
10315 if (DECL_P (elt))
10316 /* A decl pack is itself an expansion. */
10317 elt = TREE_TYPE (elt);
10318 if (!PACK_EXPANSION_P (elt))
10319 return 0;
10320 if (PACK_EXPANSION_EXTRA_ARGS (elt))
10321 return 2;
10322 return 1;
10323 }
10324
10325
10326 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
10327
10328 static tree
10329 make_argument_pack_select (tree arg_pack, unsigned index)
10330 {
10331 tree aps = make_node (ARGUMENT_PACK_SELECT);
10332
10333 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
10334 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10335
10336 return aps;
10337 }
10338
10339 /* This is a subroutine of tsubst_pack_expansion.
10340
10341 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
10342 mechanism to store the (non complete list of) arguments of the
10343 substitution and return a non substituted pack expansion, in order
10344 to wait for when we have enough arguments to really perform the
10345 substitution. */
10346
10347 static bool
10348 use_pack_expansion_extra_args_p (tree parm_packs,
10349 int arg_pack_len,
10350 bool has_empty_arg)
10351 {
10352 /* If one pack has an expansion and another pack has a normal
10353 argument or if one pack has an empty argument and an another
10354 one hasn't then tsubst_pack_expansion cannot perform the
10355 substitution and need to fall back on the
10356 PACK_EXPANSION_EXTRA mechanism. */
10357 if (parm_packs == NULL_TREE)
10358 return false;
10359 else if (has_empty_arg)
10360 return true;
10361
10362 bool has_expansion_arg = false;
10363 for (int i = 0 ; i < arg_pack_len; ++i)
10364 {
10365 bool has_non_expansion_arg = false;
10366 for (tree parm_pack = parm_packs;
10367 parm_pack;
10368 parm_pack = TREE_CHAIN (parm_pack))
10369 {
10370 tree arg = TREE_VALUE (parm_pack);
10371
10372 int exp = argument_pack_element_is_expansion_p (arg, i);
10373 if (exp == 2)
10374 /* We can't substitute a pack expansion with extra args into
10375 our pattern. */
10376 return true;
10377 else if (exp)
10378 has_expansion_arg = true;
10379 else
10380 has_non_expansion_arg = true;
10381 }
10382
10383 if (has_expansion_arg && has_non_expansion_arg)
10384 return true;
10385 }
10386 return false;
10387 }
10388
10389 /* [temp.variadic]/6 says that:
10390
10391 The instantiation of a pack expansion [...]
10392 produces a list E1,E2, ..., En, where N is the number of elements
10393 in the pack expansion parameters.
10394
10395 This subroutine of tsubst_pack_expansion produces one of these Ei.
10396
10397 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
10398 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
10399 PATTERN, and each TREE_VALUE is its corresponding argument pack.
10400 INDEX is the index 'i' of the element Ei to produce. ARGS,
10401 COMPLAIN, and IN_DECL are the same parameters as for the
10402 tsubst_pack_expansion function.
10403
10404 The function returns the resulting Ei upon successful completion,
10405 or error_mark_node.
10406
10407 Note that this function possibly modifies the ARGS parameter, so
10408 it's the responsibility of the caller to restore it. */
10409
10410 static tree
10411 gen_elem_of_pack_expansion_instantiation (tree pattern,
10412 tree parm_packs,
10413 unsigned index,
10414 tree args /* This parm gets
10415 modified. */,
10416 tsubst_flags_t complain,
10417 tree in_decl)
10418 {
10419 tree t;
10420 bool ith_elem_is_expansion = false;
10421
10422 /* For each parameter pack, change the substitution of the parameter
10423 pack to the ith argument in its argument pack, then expand the
10424 pattern. */
10425 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
10426 {
10427 tree parm = TREE_PURPOSE (pack);
10428 tree arg_pack = TREE_VALUE (pack);
10429 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
10430
10431 ith_elem_is_expansion |=
10432 argument_pack_element_is_expansion_p (arg_pack, index);
10433
10434 /* Select the Ith argument from the pack. */
10435 if (TREE_CODE (parm) == PARM_DECL
10436 || TREE_CODE (parm) == FIELD_DECL)
10437 {
10438 if (index == 0)
10439 {
10440 aps = make_argument_pack_select (arg_pack, index);
10441 if (!mark_used (parm, complain) && !(complain & tf_error))
10442 return error_mark_node;
10443 register_local_specialization (aps, parm);
10444 }
10445 else
10446 aps = retrieve_local_specialization (parm);
10447 }
10448 else
10449 {
10450 int idx, level;
10451 template_parm_level_and_index (parm, &level, &idx);
10452
10453 if (index == 0)
10454 {
10455 aps = make_argument_pack_select (arg_pack, index);
10456 /* Update the corresponding argument. */
10457 TMPL_ARG (args, level, idx) = aps;
10458 }
10459 else
10460 /* Re-use the ARGUMENT_PACK_SELECT. */
10461 aps = TMPL_ARG (args, level, idx);
10462 }
10463 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10464 }
10465
10466 /* Substitute into the PATTERN with the (possibly altered)
10467 arguments. */
10468 if (pattern == in_decl)
10469 /* Expanding a fixed parameter pack from
10470 coerce_template_parameter_pack. */
10471 t = tsubst_decl (pattern, args, complain);
10472 else if (pattern == error_mark_node)
10473 t = error_mark_node;
10474 else if (constraint_p (pattern))
10475 {
10476 if (processing_template_decl)
10477 t = tsubst_constraint (pattern, args, complain, in_decl);
10478 else
10479 t = (constraints_satisfied_p (pattern, args)
10480 ? boolean_true_node : boolean_false_node);
10481 }
10482 else if (!TYPE_P (pattern))
10483 t = tsubst_expr (pattern, args, complain, in_decl,
10484 /*integral_constant_expression_p=*/false);
10485 else
10486 t = tsubst (pattern, args, complain, in_decl);
10487
10488 /* If the Ith argument pack element is a pack expansion, then
10489 the Ith element resulting from the substituting is going to
10490 be a pack expansion as well. */
10491 if (ith_elem_is_expansion)
10492 t = make_pack_expansion (t);
10493
10494 return t;
10495 }
10496
10497 /* Substitute ARGS into T, which is an pack expansion
10498 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
10499 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
10500 (if only a partial substitution could be performed) or
10501 ERROR_MARK_NODE if there was an error. */
10502 tree
10503 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
10504 tree in_decl)
10505 {
10506 tree pattern;
10507 tree pack, packs = NULL_TREE;
10508 bool unsubstituted_packs = false;
10509 int i, len = -1;
10510 tree result;
10511 hash_map<tree, tree> *saved_local_specializations = NULL;
10512 bool need_local_specializations = false;
10513 int levels;
10514
10515 gcc_assert (PACK_EXPANSION_P (t));
10516 pattern = PACK_EXPANSION_PATTERN (t);
10517
10518 /* Add in any args remembered from an earlier partial instantiation. */
10519 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
10520
10521 levels = TMPL_ARGS_DEPTH (args);
10522
10523 /* Determine the argument packs that will instantiate the parameter
10524 packs used in the expansion expression. While we're at it,
10525 compute the number of arguments to be expanded and make sure it
10526 is consistent. */
10527 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
10528 pack = TREE_CHAIN (pack))
10529 {
10530 tree parm_pack = TREE_VALUE (pack);
10531 tree arg_pack = NULL_TREE;
10532 tree orig_arg = NULL_TREE;
10533 int level = 0;
10534
10535 if (TREE_CODE (parm_pack) == BASES)
10536 {
10537 if (BASES_DIRECT (parm_pack))
10538 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
10539 args, complain, in_decl, false));
10540 else
10541 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
10542 args, complain, in_decl, false));
10543 }
10544 if (TREE_CODE (parm_pack) == PARM_DECL)
10545 {
10546 /* We know we have correct local_specializations if this
10547 expansion is at function scope, or if we're dealing with a
10548 local parameter in a requires expression; for the latter,
10549 tsubst_requires_expr set it up appropriately. */
10550 if (PACK_EXPANSION_LOCAL_P (t) || CONSTRAINT_VAR_P (parm_pack))
10551 arg_pack = retrieve_local_specialization (parm_pack);
10552 else
10553 {
10554 /* We can't rely on local_specializations for a parameter
10555 name used later in a function declaration (such as in a
10556 late-specified return type). Even if it exists, it might
10557 have the wrong value for a recursive call. Just make a
10558 dummy decl, since it's only used for its type. */
10559 arg_pack = tsubst_decl (parm_pack, args, complain);
10560 if (arg_pack && DECL_PACK_P (arg_pack))
10561 /* Partial instantiation of the parm_pack, we can't build
10562 up an argument pack yet. */
10563 arg_pack = NULL_TREE;
10564 else
10565 arg_pack = make_fnparm_pack (arg_pack);
10566 need_local_specializations = true;
10567 }
10568 }
10569 else if (TREE_CODE (parm_pack) == FIELD_DECL)
10570 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
10571 else
10572 {
10573 int idx;
10574 template_parm_level_and_index (parm_pack, &level, &idx);
10575
10576 if (level <= levels)
10577 arg_pack = TMPL_ARG (args, level, idx);
10578 }
10579
10580 orig_arg = arg_pack;
10581 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
10582 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
10583
10584 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
10585 /* This can only happen if we forget to expand an argument
10586 pack somewhere else. Just return an error, silently. */
10587 {
10588 result = make_tree_vec (1);
10589 TREE_VEC_ELT (result, 0) = error_mark_node;
10590 return result;
10591 }
10592
10593 if (arg_pack)
10594 {
10595 int my_len =
10596 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
10597
10598 /* Don't bother trying to do a partial substitution with
10599 incomplete packs; we'll try again after deduction. */
10600 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
10601 return t;
10602
10603 if (len < 0)
10604 len = my_len;
10605 else if (len != my_len)
10606 {
10607 if (!(complain & tf_error))
10608 /* Fail quietly. */;
10609 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
10610 error ("mismatched argument pack lengths while expanding "
10611 "%<%T%>",
10612 pattern);
10613 else
10614 error ("mismatched argument pack lengths while expanding "
10615 "%<%E%>",
10616 pattern);
10617 return error_mark_node;
10618 }
10619
10620 /* Keep track of the parameter packs and their corresponding
10621 argument packs. */
10622 packs = tree_cons (parm_pack, arg_pack, packs);
10623 TREE_TYPE (packs) = orig_arg;
10624 }
10625 else
10626 {
10627 /* We can't substitute for this parameter pack. We use a flag as
10628 well as the missing_level counter because function parameter
10629 packs don't have a level. */
10630 unsubstituted_packs = true;
10631 }
10632 }
10633
10634 /* If the expansion is just T..., return the matching argument pack. */
10635 if (!unsubstituted_packs
10636 && TREE_PURPOSE (packs) == pattern)
10637 {
10638 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
10639 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
10640 || pack_expansion_args_count (args))
10641 return args;
10642 /* Otherwise use the normal path so we get convert_from_reference. */
10643 }
10644
10645 /* We cannot expand this expansion expression, because we don't have
10646 all of the argument packs we need. */
10647 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
10648 {
10649 /* We got some full packs, but we can't substitute them in until we
10650 have values for all the packs. So remember these until then. */
10651
10652 t = make_pack_expansion (pattern);
10653 PACK_EXPANSION_EXTRA_ARGS (t) = args;
10654 return t;
10655 }
10656 else if (unsubstituted_packs)
10657 {
10658 /* There were no real arguments, we're just replacing a parameter
10659 pack with another version of itself. Substitute into the
10660 pattern and return a PACK_EXPANSION_*. The caller will need to
10661 deal with that. */
10662 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
10663 t = tsubst_expr (pattern, args, complain, in_decl,
10664 /*integral_constant_expression_p=*/false);
10665 else
10666 t = tsubst (pattern, args, complain, in_decl);
10667 t = make_pack_expansion (t);
10668 return t;
10669 }
10670
10671 gcc_assert (len >= 0);
10672
10673 if (need_local_specializations)
10674 {
10675 /* We're in a late-specified return type, so create our own local
10676 specializations map; the current map is either NULL or (in the
10677 case of recursive unification) might have bindings that we don't
10678 want to use or alter. */
10679 saved_local_specializations = local_specializations;
10680 local_specializations = new hash_map<tree, tree>;
10681 }
10682
10683 /* For each argument in each argument pack, substitute into the
10684 pattern. */
10685 result = make_tree_vec (len);
10686 for (i = 0; i < len; ++i)
10687 {
10688 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
10689 i,
10690 args, complain,
10691 in_decl);
10692 TREE_VEC_ELT (result, i) = t;
10693 if (t == error_mark_node)
10694 {
10695 result = error_mark_node;
10696 break;
10697 }
10698 }
10699
10700 /* Update ARGS to restore the substitution from parameter packs to
10701 their argument packs. */
10702 for (pack = packs; pack; pack = TREE_CHAIN (pack))
10703 {
10704 tree parm = TREE_PURPOSE (pack);
10705
10706 if (TREE_CODE (parm) == PARM_DECL
10707 || TREE_CODE (parm) == FIELD_DECL)
10708 register_local_specialization (TREE_TYPE (pack), parm);
10709 else
10710 {
10711 int idx, level;
10712
10713 if (TREE_VALUE (pack) == NULL_TREE)
10714 continue;
10715
10716 template_parm_level_and_index (parm, &level, &idx);
10717
10718 /* Update the corresponding argument. */
10719 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
10720 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
10721 TREE_TYPE (pack);
10722 else
10723 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
10724 }
10725 }
10726
10727 if (need_local_specializations)
10728 {
10729 delete local_specializations;
10730 local_specializations = saved_local_specializations;
10731 }
10732
10733 return result;
10734 }
10735
10736 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
10737 TMPL. We do this using DECL_PARM_INDEX, which should work even with
10738 parameter packs; all parms generated from a function parameter pack will
10739 have the same DECL_PARM_INDEX. */
10740
10741 tree
10742 get_pattern_parm (tree parm, tree tmpl)
10743 {
10744 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
10745 tree patparm;
10746
10747 if (DECL_ARTIFICIAL (parm))
10748 {
10749 for (patparm = DECL_ARGUMENTS (pattern);
10750 patparm; patparm = DECL_CHAIN (patparm))
10751 if (DECL_ARTIFICIAL (patparm)
10752 && DECL_NAME (parm) == DECL_NAME (patparm))
10753 break;
10754 }
10755 else
10756 {
10757 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
10758 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
10759 gcc_assert (DECL_PARM_INDEX (patparm)
10760 == DECL_PARM_INDEX (parm));
10761 }
10762
10763 return patparm;
10764 }
10765
10766 /* Substitute ARGS into the vector or list of template arguments T. */
10767
10768 static tree
10769 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10770 {
10771 tree orig_t = t;
10772 int len, need_new = 0, i, expanded_len_adjust = 0, out;
10773 tree *elts;
10774
10775 if (t == error_mark_node)
10776 return error_mark_node;
10777
10778 len = TREE_VEC_LENGTH (t);
10779 elts = XALLOCAVEC (tree, len);
10780
10781 for (i = 0; i < len; i++)
10782 {
10783 tree orig_arg = TREE_VEC_ELT (t, i);
10784 tree new_arg;
10785
10786 if (TREE_CODE (orig_arg) == TREE_VEC)
10787 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
10788 else if (PACK_EXPANSION_P (orig_arg))
10789 {
10790 /* Substitute into an expansion expression. */
10791 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
10792
10793 if (TREE_CODE (new_arg) == TREE_VEC)
10794 /* Add to the expanded length adjustment the number of
10795 expanded arguments. We subtract one from this
10796 measurement, because the argument pack expression
10797 itself is already counted as 1 in
10798 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
10799 the argument pack is empty. */
10800 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
10801 }
10802 else if (ARGUMENT_PACK_P (orig_arg))
10803 {
10804 /* Substitute into each of the arguments. */
10805 new_arg = TYPE_P (orig_arg)
10806 ? cxx_make_type (TREE_CODE (orig_arg))
10807 : make_node (TREE_CODE (orig_arg));
10808
10809 SET_ARGUMENT_PACK_ARGS (
10810 new_arg,
10811 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
10812 args, complain, in_decl));
10813
10814 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
10815 new_arg = error_mark_node;
10816
10817 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
10818 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
10819 complain, in_decl);
10820 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
10821
10822 if (TREE_TYPE (new_arg) == error_mark_node)
10823 new_arg = error_mark_node;
10824 }
10825 }
10826 else
10827 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
10828
10829 if (new_arg == error_mark_node)
10830 return error_mark_node;
10831
10832 elts[i] = new_arg;
10833 if (new_arg != orig_arg)
10834 need_new = 1;
10835 }
10836
10837 if (!need_new)
10838 return t;
10839
10840 /* Make space for the expanded arguments coming from template
10841 argument packs. */
10842 t = make_tree_vec (len + expanded_len_adjust);
10843 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
10844 arguments for a member template.
10845 In that case each TREE_VEC in ORIG_T represents a level of template
10846 arguments, and ORIG_T won't carry any non defaulted argument count.
10847 It will rather be the nested TREE_VECs that will carry one.
10848 In other words, ORIG_T carries a non defaulted argument count only
10849 if it doesn't contain any nested TREE_VEC. */
10850 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
10851 {
10852 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
10853 count += expanded_len_adjust;
10854 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
10855 }
10856 for (i = 0, out = 0; i < len; i++)
10857 {
10858 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
10859 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
10860 && TREE_CODE (elts[i]) == TREE_VEC)
10861 {
10862 int idx;
10863
10864 /* Now expand the template argument pack "in place". */
10865 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
10866 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
10867 }
10868 else
10869 {
10870 TREE_VEC_ELT (t, out) = elts[i];
10871 out++;
10872 }
10873 }
10874
10875 return t;
10876 }
10877
10878 /* Return the result of substituting ARGS into the template parameters
10879 given by PARMS. If there are m levels of ARGS and m + n levels of
10880 PARMS, then the result will contain n levels of PARMS. For
10881 example, if PARMS is `template <class T> template <class U>
10882 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
10883 result will be `template <int*, double, class V>'. */
10884
10885 static tree
10886 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
10887 {
10888 tree r = NULL_TREE;
10889 tree* new_parms;
10890
10891 /* When substituting into a template, we must set
10892 PROCESSING_TEMPLATE_DECL as the template parameters may be
10893 dependent if they are based on one-another, and the dependency
10894 predicates are short-circuit outside of templates. */
10895 ++processing_template_decl;
10896
10897 for (new_parms = &r;
10898 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
10899 new_parms = &(TREE_CHAIN (*new_parms)),
10900 parms = TREE_CHAIN (parms))
10901 {
10902 tree new_vec =
10903 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
10904 int i;
10905
10906 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
10907 {
10908 tree tuple;
10909
10910 if (parms == error_mark_node)
10911 continue;
10912
10913 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
10914
10915 if (tuple == error_mark_node)
10916 continue;
10917
10918 TREE_VEC_ELT (new_vec, i) =
10919 tsubst_template_parm (tuple, args, complain);
10920 }
10921
10922 *new_parms =
10923 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
10924 - TMPL_ARGS_DEPTH (args)),
10925 new_vec, NULL_TREE);
10926 }
10927
10928 --processing_template_decl;
10929
10930 return r;
10931 }
10932
10933 /* Return the result of substituting ARGS into one template parameter
10934 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
10935 parameter and which TREE_PURPOSE is the default argument of the
10936 template parameter. */
10937
10938 static tree
10939 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
10940 {
10941 tree default_value, parm_decl;
10942
10943 if (args == NULL_TREE
10944 || t == NULL_TREE
10945 || t == error_mark_node)
10946 return t;
10947
10948 gcc_assert (TREE_CODE (t) == TREE_LIST);
10949
10950 default_value = TREE_PURPOSE (t);
10951 parm_decl = TREE_VALUE (t);
10952
10953 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
10954 if (TREE_CODE (parm_decl) == PARM_DECL
10955 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
10956 parm_decl = error_mark_node;
10957 default_value = tsubst_template_arg (default_value, args,
10958 complain, NULL_TREE);
10959
10960 return build_tree_list (default_value, parm_decl);
10961 }
10962
10963 /* Substitute the ARGS into the indicated aggregate (or enumeration)
10964 type T. If T is not an aggregate or enumeration type, it is
10965 handled as if by tsubst. IN_DECL is as for tsubst. If
10966 ENTERING_SCOPE is nonzero, T is the context for a template which
10967 we are presently tsubst'ing. Return the substituted value. */
10968
10969 static tree
10970 tsubst_aggr_type (tree t,
10971 tree args,
10972 tsubst_flags_t complain,
10973 tree in_decl,
10974 int entering_scope)
10975 {
10976 if (t == NULL_TREE)
10977 return NULL_TREE;
10978
10979 switch (TREE_CODE (t))
10980 {
10981 case RECORD_TYPE:
10982 if (TYPE_PTRMEMFUNC_P (t))
10983 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
10984
10985 /* Else fall through. */
10986 case ENUMERAL_TYPE:
10987 case UNION_TYPE:
10988 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
10989 {
10990 tree argvec;
10991 tree context;
10992 tree r;
10993 int saved_unevaluated_operand;
10994 int saved_inhibit_evaluation_warnings;
10995
10996 /* In "sizeof(X<I>)" we need to evaluate "I". */
10997 saved_unevaluated_operand = cp_unevaluated_operand;
10998 cp_unevaluated_operand = 0;
10999 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
11000 c_inhibit_evaluation_warnings = 0;
11001
11002 /* First, determine the context for the type we are looking
11003 up. */
11004 context = TYPE_CONTEXT (t);
11005 if (context && TYPE_P (context))
11006 {
11007 context = tsubst_aggr_type (context, args, complain,
11008 in_decl, /*entering_scope=*/1);
11009 /* If context is a nested class inside a class template,
11010 it may still need to be instantiated (c++/33959). */
11011 context = complete_type (context);
11012 }
11013
11014 /* Then, figure out what arguments are appropriate for the
11015 type we are trying to find. For example, given:
11016
11017 template <class T> struct S;
11018 template <class T, class U> void f(T, U) { S<U> su; }
11019
11020 and supposing that we are instantiating f<int, double>,
11021 then our ARGS will be {int, double}, but, when looking up
11022 S we only want {double}. */
11023 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
11024 complain, in_decl);
11025 if (argvec == error_mark_node)
11026 r = error_mark_node;
11027 else
11028 {
11029 r = lookup_template_class (t, argvec, in_decl, context,
11030 entering_scope, complain);
11031 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11032 }
11033
11034 cp_unevaluated_operand = saved_unevaluated_operand;
11035 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
11036
11037 return r;
11038 }
11039 else
11040 /* This is not a template type, so there's nothing to do. */
11041 return t;
11042
11043 default:
11044 return tsubst (t, args, complain, in_decl);
11045 }
11046 }
11047
11048 /* Substitute into the default argument ARG (a default argument for
11049 FN), which has the indicated TYPE. */
11050
11051 tree
11052 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
11053 {
11054 tree saved_class_ptr = NULL_TREE;
11055 tree saved_class_ref = NULL_TREE;
11056 int errs = errorcount + sorrycount;
11057
11058 /* This can happen in invalid code. */
11059 if (TREE_CODE (arg) == DEFAULT_ARG)
11060 return arg;
11061
11062 /* This default argument came from a template. Instantiate the
11063 default argument here, not in tsubst. In the case of
11064 something like:
11065
11066 template <class T>
11067 struct S {
11068 static T t();
11069 void f(T = t());
11070 };
11071
11072 we must be careful to do name lookup in the scope of S<T>,
11073 rather than in the current class. */
11074 push_access_scope (fn);
11075 /* The "this" pointer is not valid in a default argument. */
11076 if (cfun)
11077 {
11078 saved_class_ptr = current_class_ptr;
11079 cp_function_chain->x_current_class_ptr = NULL_TREE;
11080 saved_class_ref = current_class_ref;
11081 cp_function_chain->x_current_class_ref = NULL_TREE;
11082 }
11083
11084 push_deferring_access_checks(dk_no_deferred);
11085 /* The default argument expression may cause implicitly defined
11086 member functions to be synthesized, which will result in garbage
11087 collection. We must treat this situation as if we were within
11088 the body of function so as to avoid collecting live data on the
11089 stack. */
11090 ++function_depth;
11091 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
11092 complain, NULL_TREE,
11093 /*integral_constant_expression_p=*/false);
11094 --function_depth;
11095 pop_deferring_access_checks();
11096
11097 /* Restore the "this" pointer. */
11098 if (cfun)
11099 {
11100 cp_function_chain->x_current_class_ptr = saved_class_ptr;
11101 cp_function_chain->x_current_class_ref = saved_class_ref;
11102 }
11103
11104 if (errorcount+sorrycount > errs
11105 && (complain & tf_warning_or_error))
11106 inform (input_location,
11107 " when instantiating default argument for call to %D", fn);
11108
11109 /* Make sure the default argument is reasonable. */
11110 arg = check_default_argument (type, arg, complain);
11111
11112 pop_access_scope (fn);
11113
11114 return arg;
11115 }
11116
11117 /* Substitute into all the default arguments for FN. */
11118
11119 static void
11120 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
11121 {
11122 tree arg;
11123 tree tmpl_args;
11124
11125 tmpl_args = DECL_TI_ARGS (fn);
11126
11127 /* If this function is not yet instantiated, we certainly don't need
11128 its default arguments. */
11129 if (uses_template_parms (tmpl_args))
11130 return;
11131 /* Don't do this again for clones. */
11132 if (DECL_CLONED_FUNCTION_P (fn))
11133 return;
11134
11135 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
11136 arg;
11137 arg = TREE_CHAIN (arg))
11138 if (TREE_PURPOSE (arg))
11139 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
11140 TREE_VALUE (arg),
11141 TREE_PURPOSE (arg),
11142 complain);
11143 }
11144
11145 /* Substitute the ARGS into the T, which is a _DECL. Return the
11146 result of the substitution. Issue error and warning messages under
11147 control of COMPLAIN. */
11148
11149 static tree
11150 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
11151 {
11152 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
11153 location_t saved_loc;
11154 tree r = NULL_TREE;
11155 tree in_decl = t;
11156 hashval_t hash = 0;
11157
11158 /* Set the filename and linenumber to improve error-reporting. */
11159 saved_loc = input_location;
11160 input_location = DECL_SOURCE_LOCATION (t);
11161
11162 switch (TREE_CODE (t))
11163 {
11164 case TEMPLATE_DECL:
11165 {
11166 /* We can get here when processing a member function template,
11167 member class template, or template template parameter. */
11168 tree decl = DECL_TEMPLATE_RESULT (t);
11169 tree spec;
11170 tree tmpl_args;
11171 tree full_args;
11172
11173 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
11174 {
11175 /* Template template parameter is treated here. */
11176 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11177 if (new_type == error_mark_node)
11178 r = error_mark_node;
11179 /* If we get a real template back, return it. This can happen in
11180 the context of most_specialized_partial_spec. */
11181 else if (TREE_CODE (new_type) == TEMPLATE_DECL)
11182 r = new_type;
11183 else
11184 /* The new TEMPLATE_DECL was built in
11185 reduce_template_parm_level. */
11186 r = TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (new_type);
11187 break;
11188 }
11189
11190 /* We might already have an instance of this template.
11191 The ARGS are for the surrounding class type, so the
11192 full args contain the tsubst'd args for the context,
11193 plus the innermost args from the template decl. */
11194 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
11195 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
11196 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
11197 /* Because this is a template, the arguments will still be
11198 dependent, even after substitution. If
11199 PROCESSING_TEMPLATE_DECL is not set, the dependency
11200 predicates will short-circuit. */
11201 ++processing_template_decl;
11202 full_args = tsubst_template_args (tmpl_args, args,
11203 complain, in_decl);
11204 --processing_template_decl;
11205 if (full_args == error_mark_node)
11206 RETURN (error_mark_node);
11207
11208 /* If this is a default template template argument,
11209 tsubst might not have changed anything. */
11210 if (full_args == tmpl_args)
11211 RETURN (t);
11212
11213 hash = hash_tmpl_and_args (t, full_args);
11214 spec = retrieve_specialization (t, full_args, hash);
11215 if (spec != NULL_TREE)
11216 {
11217 r = spec;
11218 break;
11219 }
11220
11221 /* Make a new template decl. It will be similar to the
11222 original, but will record the current template arguments.
11223 We also create a new function declaration, which is just
11224 like the old one, but points to this new template, rather
11225 than the old one. */
11226 r = copy_decl (t);
11227 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
11228 DECL_CHAIN (r) = NULL_TREE;
11229
11230 // Build new template info linking to the original template decl.
11231 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11232
11233 if (TREE_CODE (decl) == TYPE_DECL
11234 && !TYPE_DECL_ALIAS_P (decl))
11235 {
11236 tree new_type;
11237 ++processing_template_decl;
11238 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11239 --processing_template_decl;
11240 if (new_type == error_mark_node)
11241 RETURN (error_mark_node);
11242
11243 TREE_TYPE (r) = new_type;
11244 /* For a partial specialization, we need to keep pointing to
11245 the primary template. */
11246 if (!DECL_TEMPLATE_SPECIALIZATION (t))
11247 CLASSTYPE_TI_TEMPLATE (new_type) = r;
11248 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
11249 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
11250 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
11251 }
11252 else
11253 {
11254 tree new_decl;
11255 ++processing_template_decl;
11256 new_decl = tsubst (decl, args, complain, in_decl);
11257 --processing_template_decl;
11258 if (new_decl == error_mark_node)
11259 RETURN (error_mark_node);
11260
11261 DECL_TEMPLATE_RESULT (r) = new_decl;
11262 DECL_TI_TEMPLATE (new_decl) = r;
11263 TREE_TYPE (r) = TREE_TYPE (new_decl);
11264 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
11265 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
11266 }
11267
11268 SET_DECL_IMPLICIT_INSTANTIATION (r);
11269 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
11270 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
11271
11272 /* The template parameters for this new template are all the
11273 template parameters for the old template, except the
11274 outermost level of parameters. */
11275 DECL_TEMPLATE_PARMS (r)
11276 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
11277 complain);
11278
11279 if (PRIMARY_TEMPLATE_P (t))
11280 DECL_PRIMARY_TEMPLATE (r) = r;
11281
11282 if (TREE_CODE (decl) != TYPE_DECL && !VAR_P (decl))
11283 /* Record this non-type partial instantiation. */
11284 register_specialization (r, t,
11285 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
11286 false, hash);
11287 }
11288 break;
11289
11290 case FUNCTION_DECL:
11291 {
11292 tree ctx;
11293 tree argvec = NULL_TREE;
11294 tree *friends;
11295 tree gen_tmpl;
11296 tree type;
11297 int member;
11298 int args_depth;
11299 int parms_depth;
11300
11301 /* Nobody should be tsubst'ing into non-template functions. */
11302 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
11303
11304 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
11305 {
11306 tree spec;
11307 bool dependent_p;
11308
11309 /* If T is not dependent, just return it. We have to
11310 increment PROCESSING_TEMPLATE_DECL because
11311 value_dependent_expression_p assumes that nothing is
11312 dependent when PROCESSING_TEMPLATE_DECL is zero. */
11313 ++processing_template_decl;
11314 dependent_p = value_dependent_expression_p (t);
11315 --processing_template_decl;
11316 if (!dependent_p)
11317 RETURN (t);
11318
11319 /* Calculate the most general template of which R is a
11320 specialization, and the complete set of arguments used to
11321 specialize R. */
11322 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
11323 argvec = tsubst_template_args (DECL_TI_ARGS
11324 (DECL_TEMPLATE_RESULT
11325 (DECL_TI_TEMPLATE (t))),
11326 args, complain, in_decl);
11327 if (argvec == error_mark_node)
11328 RETURN (error_mark_node);
11329
11330 /* Check to see if we already have this specialization. */
11331 hash = hash_tmpl_and_args (gen_tmpl, argvec);
11332 spec = retrieve_specialization (gen_tmpl, argvec, hash);
11333
11334 if (spec)
11335 {
11336 r = spec;
11337 break;
11338 }
11339
11340 /* We can see more levels of arguments than parameters if
11341 there was a specialization of a member template, like
11342 this:
11343
11344 template <class T> struct S { template <class U> void f(); }
11345 template <> template <class U> void S<int>::f(U);
11346
11347 Here, we'll be substituting into the specialization,
11348 because that's where we can find the code we actually
11349 want to generate, but we'll have enough arguments for
11350 the most general template.
11351
11352 We also deal with the peculiar case:
11353
11354 template <class T> struct S {
11355 template <class U> friend void f();
11356 };
11357 template <class U> void f() {}
11358 template S<int>;
11359 template void f<double>();
11360
11361 Here, the ARGS for the instantiation of will be {int,
11362 double}. But, we only need as many ARGS as there are
11363 levels of template parameters in CODE_PATTERN. We are
11364 careful not to get fooled into reducing the ARGS in
11365 situations like:
11366
11367 template <class T> struct S { template <class U> void f(U); }
11368 template <class T> template <> void S<T>::f(int) {}
11369
11370 which we can spot because the pattern will be a
11371 specialization in this case. */
11372 args_depth = TMPL_ARGS_DEPTH (args);
11373 parms_depth =
11374 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
11375 if (args_depth > parms_depth
11376 && !DECL_TEMPLATE_SPECIALIZATION (t))
11377 args = get_innermost_template_args (args, parms_depth);
11378 }
11379 else
11380 {
11381 /* This special case arises when we have something like this:
11382
11383 template <class T> struct S {
11384 friend void f<int>(int, double);
11385 };
11386
11387 Here, the DECL_TI_TEMPLATE for the friend declaration
11388 will be an IDENTIFIER_NODE. We are being called from
11389 tsubst_friend_function, and we want only to create a
11390 new decl (R) with appropriate types so that we can call
11391 determine_specialization. */
11392 gen_tmpl = NULL_TREE;
11393 }
11394
11395 if (DECL_CLASS_SCOPE_P (t))
11396 {
11397 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
11398 member = 2;
11399 else
11400 member = 1;
11401 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
11402 complain, t, /*entering_scope=*/1);
11403 }
11404 else
11405 {
11406 member = 0;
11407 ctx = DECL_CONTEXT (t);
11408 }
11409 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11410 if (type == error_mark_node)
11411 RETURN (error_mark_node);
11412
11413 /* If we hit excessive deduction depth, the type is bogus even if
11414 it isn't error_mark_node, so don't build a decl. */
11415 if (excessive_deduction_depth)
11416 RETURN (error_mark_node);
11417
11418 /* We do NOT check for matching decls pushed separately at this
11419 point, as they may not represent instantiations of this
11420 template, and in any case are considered separate under the
11421 discrete model. */
11422 r = copy_decl (t);
11423 DECL_USE_TEMPLATE (r) = 0;
11424 TREE_TYPE (r) = type;
11425 /* Clear out the mangled name and RTL for the instantiation. */
11426 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
11427 SET_DECL_RTL (r, NULL);
11428 /* Leave DECL_INITIAL set on deleted instantiations. */
11429 if (!DECL_DELETED_FN (r))
11430 DECL_INITIAL (r) = NULL_TREE;
11431 DECL_CONTEXT (r) = ctx;
11432
11433 /* OpenMP UDRs have the only argument a reference to the declared
11434 type. We want to diagnose if the declared type is a reference,
11435 which is invalid, but as references to references are usually
11436 quietly merged, diagnose it here. */
11437 if (DECL_OMP_DECLARE_REDUCTION_P (t))
11438 {
11439 tree argtype
11440 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
11441 argtype = tsubst (argtype, args, complain, in_decl);
11442 if (TREE_CODE (argtype) == REFERENCE_TYPE)
11443 error_at (DECL_SOURCE_LOCATION (t),
11444 "reference type %qT in "
11445 "%<#pragma omp declare reduction%>", argtype);
11446 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
11447 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
11448 argtype);
11449 }
11450
11451 if (member && DECL_CONV_FN_P (r))
11452 /* Type-conversion operator. Reconstruct the name, in
11453 case it's the name of one of the template's parameters. */
11454 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
11455
11456 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
11457 complain, t);
11458 DECL_RESULT (r) = NULL_TREE;
11459
11460 TREE_STATIC (r) = 0;
11461 TREE_PUBLIC (r) = TREE_PUBLIC (t);
11462 DECL_EXTERNAL (r) = 1;
11463 /* If this is an instantiation of a function with internal
11464 linkage, we already know what object file linkage will be
11465 assigned to the instantiation. */
11466 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
11467 DECL_DEFER_OUTPUT (r) = 0;
11468 DECL_CHAIN (r) = NULL_TREE;
11469 DECL_PENDING_INLINE_INFO (r) = 0;
11470 DECL_PENDING_INLINE_P (r) = 0;
11471 DECL_SAVED_TREE (r) = NULL_TREE;
11472 DECL_STRUCT_FUNCTION (r) = NULL;
11473 TREE_USED (r) = 0;
11474 /* We'll re-clone as appropriate in instantiate_template. */
11475 DECL_CLONED_FUNCTION (r) = NULL_TREE;
11476
11477 /* If we aren't complaining now, return on error before we register
11478 the specialization so that we'll complain eventually. */
11479 if ((complain & tf_error) == 0
11480 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11481 && !grok_op_properties (r, /*complain=*/false))
11482 RETURN (error_mark_node);
11483
11484 /* When instantiating a constrained member, substitute
11485 into the constraints to create a new constraint. */
11486 if (tree ci = get_constraints (t))
11487 if (member)
11488 {
11489 ci = tsubst_constraint_info (ci, argvec, complain, NULL_TREE);
11490 set_constraints (r, ci);
11491 }
11492
11493 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
11494 this in the special friend case mentioned above where
11495 GEN_TMPL is NULL. */
11496 if (gen_tmpl)
11497 {
11498 DECL_TEMPLATE_INFO (r)
11499 = build_template_info (gen_tmpl, argvec);
11500 SET_DECL_IMPLICIT_INSTANTIATION (r);
11501
11502 tree new_r
11503 = register_specialization (r, gen_tmpl, argvec, false, hash);
11504 if (new_r != r)
11505 /* We instantiated this while substituting into
11506 the type earlier (template/friend54.C). */
11507 RETURN (new_r);
11508
11509 /* We're not supposed to instantiate default arguments
11510 until they are called, for a template. But, for a
11511 declaration like:
11512
11513 template <class T> void f ()
11514 { extern void g(int i = T()); }
11515
11516 we should do the substitution when the template is
11517 instantiated. We handle the member function case in
11518 instantiate_class_template since the default arguments
11519 might refer to other members of the class. */
11520 if (!member
11521 && !PRIMARY_TEMPLATE_P (gen_tmpl)
11522 && !uses_template_parms (argvec))
11523 tsubst_default_arguments (r, complain);
11524 }
11525 else
11526 DECL_TEMPLATE_INFO (r) = NULL_TREE;
11527
11528 /* Copy the list of befriending classes. */
11529 for (friends = &DECL_BEFRIENDING_CLASSES (r);
11530 *friends;
11531 friends = &TREE_CHAIN (*friends))
11532 {
11533 *friends = copy_node (*friends);
11534 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
11535 args, complain,
11536 in_decl);
11537 }
11538
11539 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
11540 {
11541 maybe_retrofit_in_chrg (r);
11542 if (DECL_CONSTRUCTOR_P (r))
11543 grok_ctor_properties (ctx, r);
11544 if (DECL_INHERITED_CTOR_BASE (r))
11545 deduce_inheriting_ctor (r);
11546 /* If this is an instantiation of a member template, clone it.
11547 If it isn't, that'll be handled by
11548 clone_constructors_and_destructors. */
11549 if (PRIMARY_TEMPLATE_P (gen_tmpl))
11550 clone_function_decl (r, /*update_method_vec_p=*/0);
11551 }
11552 else if ((complain & tf_error) != 0
11553 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11554 && !grok_op_properties (r, /*complain=*/true))
11555 RETURN (error_mark_node);
11556
11557 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
11558 SET_DECL_FRIEND_CONTEXT (r,
11559 tsubst (DECL_FRIEND_CONTEXT (t),
11560 args, complain, in_decl));
11561
11562 /* Possibly limit visibility based on template args. */
11563 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
11564 if (DECL_VISIBILITY_SPECIFIED (t))
11565 {
11566 DECL_VISIBILITY_SPECIFIED (r) = 0;
11567 DECL_ATTRIBUTES (r)
11568 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
11569 }
11570 determine_visibility (r);
11571 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
11572 && !processing_template_decl)
11573 defaulted_late_check (r);
11574
11575 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11576 args, complain, in_decl);
11577 }
11578 break;
11579
11580 case PARM_DECL:
11581 {
11582 tree type = NULL_TREE;
11583 int i, len = 1;
11584 tree expanded_types = NULL_TREE;
11585 tree prev_r = NULL_TREE;
11586 tree first_r = NULL_TREE;
11587
11588 if (DECL_PACK_P (t))
11589 {
11590 /* If there is a local specialization that isn't a
11591 parameter pack, it means that we're doing a "simple"
11592 substitution from inside tsubst_pack_expansion. Just
11593 return the local specialization (which will be a single
11594 parm). */
11595 tree spec = retrieve_local_specialization (t);
11596 if (spec
11597 && TREE_CODE (spec) == PARM_DECL
11598 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
11599 RETURN (spec);
11600
11601 /* Expand the TYPE_PACK_EXPANSION that provides the types for
11602 the parameters in this function parameter pack. */
11603 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11604 complain, in_decl);
11605 if (TREE_CODE (expanded_types) == TREE_VEC)
11606 {
11607 len = TREE_VEC_LENGTH (expanded_types);
11608
11609 /* Zero-length parameter packs are boring. Just substitute
11610 into the chain. */
11611 if (len == 0)
11612 RETURN (tsubst (TREE_CHAIN (t), args, complain,
11613 TREE_CHAIN (t)));
11614 }
11615 else
11616 {
11617 /* All we did was update the type. Make a note of that. */
11618 type = expanded_types;
11619 expanded_types = NULL_TREE;
11620 }
11621 }
11622
11623 /* Loop through all of the parameters we'll build. When T is
11624 a function parameter pack, LEN is the number of expanded
11625 types in EXPANDED_TYPES; otherwise, LEN is 1. */
11626 r = NULL_TREE;
11627 for (i = 0; i < len; ++i)
11628 {
11629 prev_r = r;
11630 r = copy_node (t);
11631 if (DECL_TEMPLATE_PARM_P (t))
11632 SET_DECL_TEMPLATE_PARM_P (r);
11633
11634 if (expanded_types)
11635 /* We're on the Ith parameter of the function parameter
11636 pack. */
11637 {
11638 /* Get the Ith type. */
11639 type = TREE_VEC_ELT (expanded_types, i);
11640
11641 /* Rename the parameter to include the index. */
11642 DECL_NAME (r)
11643 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11644 }
11645 else if (!type)
11646 /* We're dealing with a normal parameter. */
11647 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11648
11649 type = type_decays_to (type);
11650 TREE_TYPE (r) = type;
11651 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11652
11653 if (DECL_INITIAL (r))
11654 {
11655 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
11656 DECL_INITIAL (r) = TREE_TYPE (r);
11657 else
11658 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
11659 complain, in_decl);
11660 }
11661
11662 DECL_CONTEXT (r) = NULL_TREE;
11663
11664 if (!DECL_TEMPLATE_PARM_P (r))
11665 DECL_ARG_TYPE (r) = type_passed_as (type);
11666
11667 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11668 args, complain, in_decl);
11669
11670 /* Keep track of the first new parameter we
11671 generate. That's what will be returned to the
11672 caller. */
11673 if (!first_r)
11674 first_r = r;
11675
11676 /* Build a proper chain of parameters when substituting
11677 into a function parameter pack. */
11678 if (prev_r)
11679 DECL_CHAIN (prev_r) = r;
11680 }
11681
11682 /* If cp_unevaluated_operand is set, we're just looking for a
11683 single dummy parameter, so don't keep going. */
11684 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
11685 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
11686 complain, DECL_CHAIN (t));
11687
11688 /* FIRST_R contains the start of the chain we've built. */
11689 r = first_r;
11690 }
11691 break;
11692
11693 case FIELD_DECL:
11694 {
11695 tree type = NULL_TREE;
11696 tree vec = NULL_TREE;
11697 tree expanded_types = NULL_TREE;
11698 int len = 1;
11699
11700 if (PACK_EXPANSION_P (TREE_TYPE (t)))
11701 {
11702 /* This field is a lambda capture pack. Return a TREE_VEC of
11703 the expanded fields to instantiate_class_template_1 and
11704 store them in the specializations hash table as a
11705 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
11706 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11707 complain, in_decl);
11708 if (TREE_CODE (expanded_types) == TREE_VEC)
11709 {
11710 len = TREE_VEC_LENGTH (expanded_types);
11711 vec = make_tree_vec (len);
11712 }
11713 else
11714 {
11715 /* All we did was update the type. Make a note of that. */
11716 type = expanded_types;
11717 expanded_types = NULL_TREE;
11718 }
11719 }
11720
11721 for (int i = 0; i < len; ++i)
11722 {
11723 r = copy_decl (t);
11724 if (expanded_types)
11725 {
11726 type = TREE_VEC_ELT (expanded_types, i);
11727 DECL_NAME (r)
11728 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11729 }
11730 else if (!type)
11731 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11732
11733 if (type == error_mark_node)
11734 RETURN (error_mark_node);
11735 TREE_TYPE (r) = type;
11736 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11737
11738 if (DECL_C_BIT_FIELD (r))
11739 /* For bit-fields, DECL_INITIAL gives the number of bits. For
11740 non-bit-fields DECL_INITIAL is a non-static data member
11741 initializer, which gets deferred instantiation. */
11742 DECL_INITIAL (r)
11743 = tsubst_expr (DECL_INITIAL (t), args,
11744 complain, in_decl,
11745 /*integral_constant_expression_p=*/true);
11746 else if (DECL_INITIAL (t))
11747 {
11748 /* Set up DECL_TEMPLATE_INFO so that we can get at the
11749 NSDMI in perform_member_init. Still set DECL_INITIAL
11750 so that we know there is one. */
11751 DECL_INITIAL (r) = void_node;
11752 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
11753 retrofit_lang_decl (r);
11754 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11755 }
11756 /* We don't have to set DECL_CONTEXT here; it is set by
11757 finish_member_declaration. */
11758 DECL_CHAIN (r) = NULL_TREE;
11759
11760 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11761 args, complain, in_decl);
11762
11763 if (vec)
11764 TREE_VEC_ELT (vec, i) = r;
11765 }
11766
11767 if (vec)
11768 {
11769 r = vec;
11770 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
11771 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
11772 SET_ARGUMENT_PACK_ARGS (pack, vec);
11773 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
11774 TREE_TYPE (pack) = tpack;
11775 register_specialization (pack, t, args, false, 0);
11776 }
11777 }
11778 break;
11779
11780 case USING_DECL:
11781 /* We reach here only for member using decls. We also need to check
11782 uses_template_parms because DECL_DEPENDENT_P is not set for a
11783 using-declaration that designates a member of the current
11784 instantiation (c++/53549). */
11785 if (DECL_DEPENDENT_P (t)
11786 || uses_template_parms (USING_DECL_SCOPE (t)))
11787 {
11788 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
11789 complain, in_decl);
11790 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
11791 r = do_class_using_decl (inst_scope, name);
11792 if (!r)
11793 r = error_mark_node;
11794 else
11795 {
11796 TREE_PROTECTED (r) = TREE_PROTECTED (t);
11797 TREE_PRIVATE (r) = TREE_PRIVATE (t);
11798 }
11799 }
11800 else
11801 {
11802 r = copy_node (t);
11803 DECL_CHAIN (r) = NULL_TREE;
11804 }
11805 break;
11806
11807 case TYPE_DECL:
11808 case VAR_DECL:
11809 {
11810 tree argvec = NULL_TREE;
11811 tree gen_tmpl = NULL_TREE;
11812 tree spec;
11813 tree tmpl = NULL_TREE;
11814 tree ctx;
11815 tree type = NULL_TREE;
11816 bool local_p;
11817
11818 if (TREE_TYPE (t) == error_mark_node)
11819 RETURN (error_mark_node);
11820
11821 if (TREE_CODE (t) == TYPE_DECL
11822 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
11823 {
11824 /* If this is the canonical decl, we don't have to
11825 mess with instantiations, and often we can't (for
11826 typename, template type parms and such). Note that
11827 TYPE_NAME is not correct for the above test if
11828 we've copied the type for a typedef. */
11829 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11830 if (type == error_mark_node)
11831 RETURN (error_mark_node);
11832 r = TYPE_NAME (type);
11833 break;
11834 }
11835
11836 /* Check to see if we already have the specialization we
11837 need. */
11838 spec = NULL_TREE;
11839 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
11840 {
11841 /* T is a static data member or namespace-scope entity.
11842 We have to substitute into namespace-scope variables
11843 (not just variable templates) because of cases like:
11844
11845 template <class T> void f() { extern T t; }
11846
11847 where the entity referenced is not known until
11848 instantiation time. */
11849 local_p = false;
11850 ctx = DECL_CONTEXT (t);
11851 if (DECL_CLASS_SCOPE_P (t))
11852 {
11853 ctx = tsubst_aggr_type (ctx, args,
11854 complain,
11855 in_decl, /*entering_scope=*/1);
11856 /* If CTX is unchanged, then T is in fact the
11857 specialization we want. That situation occurs when
11858 referencing a static data member within in its own
11859 class. We can use pointer equality, rather than
11860 same_type_p, because DECL_CONTEXT is always
11861 canonical... */
11862 if (ctx == DECL_CONTEXT (t)
11863 /* ... unless T is a member template; in which
11864 case our caller can be willing to create a
11865 specialization of that template represented
11866 by T. */
11867 && !(DECL_TI_TEMPLATE (t)
11868 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
11869 spec = t;
11870 }
11871
11872 if (!spec)
11873 {
11874 tmpl = DECL_TI_TEMPLATE (t);
11875 gen_tmpl = most_general_template (tmpl);
11876 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
11877 if (argvec != error_mark_node)
11878 argvec = (coerce_innermost_template_parms
11879 (DECL_TEMPLATE_PARMS (gen_tmpl),
11880 argvec, t, complain,
11881 /*all*/true, /*defarg*/true));
11882 if (argvec == error_mark_node)
11883 RETURN (error_mark_node);
11884 hash = hash_tmpl_and_args (gen_tmpl, argvec);
11885 spec = retrieve_specialization (gen_tmpl, argvec, hash);
11886 }
11887 }
11888 else
11889 {
11890 /* A local variable. */
11891 local_p = true;
11892 /* Subsequent calls to pushdecl will fill this in. */
11893 ctx = NULL_TREE;
11894 spec = retrieve_local_specialization (t);
11895 }
11896 /* If we already have the specialization we need, there is
11897 nothing more to do. */
11898 if (spec)
11899 {
11900 r = spec;
11901 break;
11902 }
11903
11904 /* Create a new node for the specialization we need. */
11905 r = copy_decl (t);
11906 if (type == NULL_TREE)
11907 {
11908 if (is_typedef_decl (t))
11909 type = DECL_ORIGINAL_TYPE (t);
11910 else
11911 type = TREE_TYPE (t);
11912 if (VAR_P (t)
11913 && VAR_HAD_UNKNOWN_BOUND (t)
11914 && type != error_mark_node)
11915 type = strip_array_domain (type);
11916 type = tsubst (type, args, complain, in_decl);
11917 }
11918 if (VAR_P (r))
11919 {
11920 /* Even if the original location is out of scope, the
11921 newly substituted one is not. */
11922 DECL_DEAD_FOR_LOCAL (r) = 0;
11923 DECL_INITIALIZED_P (r) = 0;
11924 DECL_TEMPLATE_INSTANTIATED (r) = 0;
11925 if (type == error_mark_node)
11926 RETURN (error_mark_node);
11927 if (TREE_CODE (type) == FUNCTION_TYPE)
11928 {
11929 /* It may seem that this case cannot occur, since:
11930
11931 typedef void f();
11932 void g() { f x; }
11933
11934 declares a function, not a variable. However:
11935
11936 typedef void f();
11937 template <typename T> void g() { T t; }
11938 template void g<f>();
11939
11940 is an attempt to declare a variable with function
11941 type. */
11942 error ("variable %qD has function type",
11943 /* R is not yet sufficiently initialized, so we
11944 just use its name. */
11945 DECL_NAME (r));
11946 RETURN (error_mark_node);
11947 }
11948 type = complete_type (type);
11949 /* Wait until cp_finish_decl to set this again, to handle
11950 circular dependency (template/instantiate6.C). */
11951 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
11952 type = check_var_type (DECL_NAME (r), type);
11953
11954 if (DECL_HAS_VALUE_EXPR_P (t))
11955 {
11956 tree ve = DECL_VALUE_EXPR (t);
11957 ve = tsubst_expr (ve, args, complain, in_decl,
11958 /*constant_expression_p=*/false);
11959 if (REFERENCE_REF_P (ve))
11960 {
11961 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
11962 ve = TREE_OPERAND (ve, 0);
11963 }
11964 SET_DECL_VALUE_EXPR (r, ve);
11965 }
11966 if (CP_DECL_THREAD_LOCAL_P (r)
11967 && !processing_template_decl)
11968 set_decl_tls_model (r, decl_default_tls_model (r));
11969 }
11970 else if (DECL_SELF_REFERENCE_P (t))
11971 SET_DECL_SELF_REFERENCE_P (r);
11972 TREE_TYPE (r) = type;
11973 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11974 DECL_CONTEXT (r) = ctx;
11975 /* Clear out the mangled name and RTL for the instantiation. */
11976 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
11977 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
11978 SET_DECL_RTL (r, NULL);
11979 /* The initializer must not be expanded until it is required;
11980 see [temp.inst]. */
11981 DECL_INITIAL (r) = NULL_TREE;
11982 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
11983 SET_DECL_RTL (r, NULL);
11984 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
11985 if (VAR_P (r))
11986 {
11987 /* Possibly limit visibility based on template args. */
11988 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
11989 if (DECL_VISIBILITY_SPECIFIED (t))
11990 {
11991 DECL_VISIBILITY_SPECIFIED (r) = 0;
11992 DECL_ATTRIBUTES (r)
11993 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
11994 }
11995 determine_visibility (r);
11996 }
11997
11998 if (!local_p)
11999 {
12000 /* A static data member declaration is always marked
12001 external when it is declared in-class, even if an
12002 initializer is present. We mimic the non-template
12003 processing here. */
12004 DECL_EXTERNAL (r) = 1;
12005 if (DECL_NAMESPACE_SCOPE_P (t))
12006 DECL_NOT_REALLY_EXTERN (r) = 1;
12007
12008 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
12009 SET_DECL_IMPLICIT_INSTANTIATION (r);
12010 register_specialization (r, gen_tmpl, argvec, false, hash);
12011 }
12012 else if (!cp_unevaluated_operand)
12013 register_local_specialization (r, t);
12014
12015 DECL_CHAIN (r) = NULL_TREE;
12016
12017 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
12018 /*flags=*/0,
12019 args, complain, in_decl);
12020
12021 /* Preserve a typedef that names a type. */
12022 if (is_typedef_decl (r))
12023 {
12024 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
12025 set_underlying_type (r);
12026 if (TYPE_DECL_ALIAS_P (r) && type != error_mark_node)
12027 /* An alias template specialization can be dependent
12028 even if its underlying type is not. */
12029 TYPE_DEPENDENT_P_VALID (TREE_TYPE (r)) = false;
12030 }
12031
12032 layout_decl (r, 0);
12033 }
12034 break;
12035
12036 default:
12037 gcc_unreachable ();
12038 }
12039 #undef RETURN
12040
12041 out:
12042 /* Restore the file and line information. */
12043 input_location = saved_loc;
12044
12045 return r;
12046 }
12047
12048 /* Substitute into the ARG_TYPES of a function type.
12049 If END is a TREE_CHAIN, leave it and any following types
12050 un-substituted. */
12051
12052 static tree
12053 tsubst_arg_types (tree arg_types,
12054 tree args,
12055 tree end,
12056 tsubst_flags_t complain,
12057 tree in_decl)
12058 {
12059 tree remaining_arg_types;
12060 tree type = NULL_TREE;
12061 int i = 1;
12062 tree expanded_args = NULL_TREE;
12063 tree default_arg;
12064
12065 if (!arg_types || arg_types == void_list_node || arg_types == end)
12066 return arg_types;
12067
12068 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
12069 args, end, complain, in_decl);
12070 if (remaining_arg_types == error_mark_node)
12071 return error_mark_node;
12072
12073 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
12074 {
12075 /* For a pack expansion, perform substitution on the
12076 entire expression. Later on, we'll handle the arguments
12077 one-by-one. */
12078 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
12079 args, complain, in_decl);
12080
12081 if (TREE_CODE (expanded_args) == TREE_VEC)
12082 /* So that we'll spin through the parameters, one by one. */
12083 i = TREE_VEC_LENGTH (expanded_args);
12084 else
12085 {
12086 /* We only partially substituted into the parameter
12087 pack. Our type is TYPE_PACK_EXPANSION. */
12088 type = expanded_args;
12089 expanded_args = NULL_TREE;
12090 }
12091 }
12092
12093 while (i > 0) {
12094 --i;
12095
12096 if (expanded_args)
12097 type = TREE_VEC_ELT (expanded_args, i);
12098 else if (!type)
12099 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
12100
12101 if (type == error_mark_node)
12102 return error_mark_node;
12103 if (VOID_TYPE_P (type))
12104 {
12105 if (complain & tf_error)
12106 {
12107 error ("invalid parameter type %qT", type);
12108 if (in_decl)
12109 error ("in declaration %q+D", in_decl);
12110 }
12111 return error_mark_node;
12112 }
12113 /* DR 657. */
12114 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
12115 return error_mark_node;
12116
12117 /* Do array-to-pointer, function-to-pointer conversion, and ignore
12118 top-level qualifiers as required. */
12119 type = cv_unqualified (type_decays_to (type));
12120
12121 /* We do not substitute into default arguments here. The standard
12122 mandates that they be instantiated only when needed, which is
12123 done in build_over_call. */
12124 default_arg = TREE_PURPOSE (arg_types);
12125
12126 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
12127 {
12128 /* We've instantiated a template before its default arguments
12129 have been parsed. This can happen for a nested template
12130 class, and is not an error unless we require the default
12131 argument in a call of this function. */
12132 remaining_arg_types =
12133 tree_cons (default_arg, type, remaining_arg_types);
12134 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
12135 }
12136 else
12137 remaining_arg_types =
12138 hash_tree_cons (default_arg, type, remaining_arg_types);
12139 }
12140
12141 return remaining_arg_types;
12142 }
12143
12144 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
12145 *not* handle the exception-specification for FNTYPE, because the
12146 initial substitution of explicitly provided template parameters
12147 during argument deduction forbids substitution into the
12148 exception-specification:
12149
12150 [temp.deduct]
12151
12152 All references in the function type of the function template to the
12153 corresponding template parameters are replaced by the specified tem-
12154 plate argument values. If a substitution in a template parameter or
12155 in the function type of the function template results in an invalid
12156 type, type deduction fails. [Note: The equivalent substitution in
12157 exception specifications is done only when the function is instanti-
12158 ated, at which point a program is ill-formed if the substitution
12159 results in an invalid type.] */
12160
12161 static tree
12162 tsubst_function_type (tree t,
12163 tree args,
12164 tsubst_flags_t complain,
12165 tree in_decl)
12166 {
12167 tree return_type;
12168 tree arg_types = NULL_TREE;
12169 tree fntype;
12170
12171 /* The TYPE_CONTEXT is not used for function/method types. */
12172 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
12173
12174 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
12175 failure. */
12176 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
12177
12178 if (late_return_type_p)
12179 {
12180 /* Substitute the argument types. */
12181 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12182 complain, in_decl);
12183 if (arg_types == error_mark_node)
12184 return error_mark_node;
12185
12186 tree save_ccp = current_class_ptr;
12187 tree save_ccr = current_class_ref;
12188 tree this_type = (TREE_CODE (t) == METHOD_TYPE
12189 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
12190 bool do_inject = this_type && CLASS_TYPE_P (this_type);
12191 if (do_inject)
12192 {
12193 /* DR 1207: 'this' is in scope in the trailing return type. */
12194 inject_this_parameter (this_type, cp_type_quals (this_type));
12195 }
12196
12197 /* Substitute the return type. */
12198 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12199
12200 if (do_inject)
12201 {
12202 current_class_ptr = save_ccp;
12203 current_class_ref = save_ccr;
12204 }
12205 }
12206 else
12207 /* Substitute the return type. */
12208 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12209
12210 if (return_type == error_mark_node)
12211 return error_mark_node;
12212 /* DR 486 clarifies that creation of a function type with an
12213 invalid return type is a deduction failure. */
12214 if (TREE_CODE (return_type) == ARRAY_TYPE
12215 || TREE_CODE (return_type) == FUNCTION_TYPE)
12216 {
12217 if (complain & tf_error)
12218 {
12219 if (TREE_CODE (return_type) == ARRAY_TYPE)
12220 error ("function returning an array");
12221 else
12222 error ("function returning a function");
12223 }
12224 return error_mark_node;
12225 }
12226 /* And DR 657. */
12227 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
12228 return error_mark_node;
12229
12230 if (!late_return_type_p)
12231 {
12232 /* Substitute the argument types. */
12233 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12234 complain, in_decl);
12235 if (arg_types == error_mark_node)
12236 return error_mark_node;
12237 }
12238
12239 /* Construct a new type node and return it. */
12240 if (TREE_CODE (t) == FUNCTION_TYPE)
12241 {
12242 fntype = build_function_type (return_type, arg_types);
12243 fntype = apply_memfn_quals (fntype,
12244 type_memfn_quals (t),
12245 type_memfn_rqual (t));
12246 }
12247 else
12248 {
12249 tree r = TREE_TYPE (TREE_VALUE (arg_types));
12250 /* Don't pick up extra function qualifiers from the basetype. */
12251 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
12252 if (! MAYBE_CLASS_TYPE_P (r))
12253 {
12254 /* [temp.deduct]
12255
12256 Type deduction may fail for any of the following
12257 reasons:
12258
12259 -- Attempting to create "pointer to member of T" when T
12260 is not a class type. */
12261 if (complain & tf_error)
12262 error ("creating pointer to member function of non-class type %qT",
12263 r);
12264 return error_mark_node;
12265 }
12266
12267 fntype = build_method_type_directly (r, return_type,
12268 TREE_CHAIN (arg_types));
12269 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
12270 }
12271 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
12272
12273 if (late_return_type_p)
12274 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
12275
12276 return fntype;
12277 }
12278
12279 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
12280 ARGS into that specification, and return the substituted
12281 specification. If there is no specification, return NULL_TREE. */
12282
12283 static tree
12284 tsubst_exception_specification (tree fntype,
12285 tree args,
12286 tsubst_flags_t complain,
12287 tree in_decl,
12288 bool defer_ok)
12289 {
12290 tree specs;
12291 tree new_specs;
12292
12293 specs = TYPE_RAISES_EXCEPTIONS (fntype);
12294 new_specs = NULL_TREE;
12295 if (specs && TREE_PURPOSE (specs))
12296 {
12297 /* A noexcept-specifier. */
12298 tree expr = TREE_PURPOSE (specs);
12299 if (TREE_CODE (expr) == INTEGER_CST)
12300 new_specs = expr;
12301 else if (defer_ok)
12302 {
12303 /* Defer instantiation of noexcept-specifiers to avoid
12304 excessive instantiations (c++/49107). */
12305 new_specs = make_node (DEFERRED_NOEXCEPT);
12306 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
12307 {
12308 /* We already partially instantiated this member template,
12309 so combine the new args with the old. */
12310 DEFERRED_NOEXCEPT_PATTERN (new_specs)
12311 = DEFERRED_NOEXCEPT_PATTERN (expr);
12312 DEFERRED_NOEXCEPT_ARGS (new_specs)
12313 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
12314 }
12315 else
12316 {
12317 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
12318 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
12319 }
12320 }
12321 else
12322 new_specs = tsubst_copy_and_build
12323 (expr, args, complain, in_decl, /*function_p=*/false,
12324 /*integral_constant_expression_p=*/true);
12325 new_specs = build_noexcept_spec (new_specs, complain);
12326 }
12327 else if (specs)
12328 {
12329 if (! TREE_VALUE (specs))
12330 new_specs = specs;
12331 else
12332 while (specs)
12333 {
12334 tree spec;
12335 int i, len = 1;
12336 tree expanded_specs = NULL_TREE;
12337
12338 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
12339 {
12340 /* Expand the pack expansion type. */
12341 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
12342 args, complain,
12343 in_decl);
12344
12345 if (expanded_specs == error_mark_node)
12346 return error_mark_node;
12347 else if (TREE_CODE (expanded_specs) == TREE_VEC)
12348 len = TREE_VEC_LENGTH (expanded_specs);
12349 else
12350 {
12351 /* We're substituting into a member template, so
12352 we got a TYPE_PACK_EXPANSION back. Add that
12353 expansion and move on. */
12354 gcc_assert (TREE_CODE (expanded_specs)
12355 == TYPE_PACK_EXPANSION);
12356 new_specs = add_exception_specifier (new_specs,
12357 expanded_specs,
12358 complain);
12359 specs = TREE_CHAIN (specs);
12360 continue;
12361 }
12362 }
12363
12364 for (i = 0; i < len; ++i)
12365 {
12366 if (expanded_specs)
12367 spec = TREE_VEC_ELT (expanded_specs, i);
12368 else
12369 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
12370 if (spec == error_mark_node)
12371 return spec;
12372 new_specs = add_exception_specifier (new_specs, spec,
12373 complain);
12374 }
12375
12376 specs = TREE_CHAIN (specs);
12377 }
12378 }
12379 return new_specs;
12380 }
12381
12382 /* Take the tree structure T and replace template parameters used
12383 therein with the argument vector ARGS. IN_DECL is an associated
12384 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
12385 Issue error and warning messages under control of COMPLAIN. Note
12386 that we must be relatively non-tolerant of extensions here, in
12387 order to preserve conformance; if we allow substitutions that
12388 should not be allowed, we may allow argument deductions that should
12389 not succeed, and therefore report ambiguous overload situations
12390 where there are none. In theory, we could allow the substitution,
12391 but indicate that it should have failed, and allow our caller to
12392 make sure that the right thing happens, but we don't try to do this
12393 yet.
12394
12395 This function is used for dealing with types, decls and the like;
12396 for expressions, use tsubst_expr or tsubst_copy. */
12397
12398 tree
12399 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12400 {
12401 enum tree_code code;
12402 tree type, r = NULL_TREE;
12403
12404 if (t == NULL_TREE || t == error_mark_node
12405 || t == integer_type_node
12406 || t == void_type_node
12407 || t == char_type_node
12408 || t == unknown_type_node
12409 || TREE_CODE (t) == NAMESPACE_DECL
12410 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
12411 return t;
12412
12413 if (DECL_P (t))
12414 return tsubst_decl (t, args, complain);
12415
12416 if (args == NULL_TREE)
12417 return t;
12418
12419 code = TREE_CODE (t);
12420
12421 if (code == IDENTIFIER_NODE)
12422 type = IDENTIFIER_TYPE_VALUE (t);
12423 else
12424 type = TREE_TYPE (t);
12425
12426 gcc_assert (type != unknown_type_node);
12427
12428 /* Reuse typedefs. We need to do this to handle dependent attributes,
12429 such as attribute aligned. */
12430 if (TYPE_P (t)
12431 && typedef_variant_p (t))
12432 {
12433 tree decl = TYPE_NAME (t);
12434
12435 if (alias_template_specialization_p (t))
12436 {
12437 /* DECL represents an alias template and we want to
12438 instantiate it. */
12439 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12440 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12441 r = instantiate_alias_template (tmpl, gen_args, complain);
12442 }
12443 else if (DECL_CLASS_SCOPE_P (decl)
12444 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
12445 && uses_template_parms (DECL_CONTEXT (decl)))
12446 {
12447 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12448 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12449 r = retrieve_specialization (tmpl, gen_args, 0);
12450 }
12451 else if (DECL_FUNCTION_SCOPE_P (decl)
12452 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
12453 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
12454 r = retrieve_local_specialization (decl);
12455 else
12456 /* The typedef is from a non-template context. */
12457 return t;
12458
12459 if (r)
12460 {
12461 r = TREE_TYPE (r);
12462 r = cp_build_qualified_type_real
12463 (r, cp_type_quals (t) | cp_type_quals (r),
12464 complain | tf_ignore_bad_quals);
12465 return r;
12466 }
12467 else
12468 {
12469 /* We don't have an instantiation yet, so drop the typedef. */
12470 int quals = cp_type_quals (t);
12471 t = DECL_ORIGINAL_TYPE (decl);
12472 t = cp_build_qualified_type_real (t, quals,
12473 complain | tf_ignore_bad_quals);
12474 }
12475 }
12476
12477 if (type
12478 && code != TYPENAME_TYPE
12479 && code != TEMPLATE_TYPE_PARM
12480 && code != IDENTIFIER_NODE
12481 && code != FUNCTION_TYPE
12482 && code != METHOD_TYPE)
12483 type = tsubst (type, args, complain, in_decl);
12484 if (type == error_mark_node)
12485 return error_mark_node;
12486
12487 switch (code)
12488 {
12489 case RECORD_TYPE:
12490 case UNION_TYPE:
12491 case ENUMERAL_TYPE:
12492 return tsubst_aggr_type (t, args, complain, in_decl,
12493 /*entering_scope=*/0);
12494
12495 case ERROR_MARK:
12496 case IDENTIFIER_NODE:
12497 case VOID_TYPE:
12498 case REAL_TYPE:
12499 case COMPLEX_TYPE:
12500 case VECTOR_TYPE:
12501 case BOOLEAN_TYPE:
12502 case NULLPTR_TYPE:
12503 case LANG_TYPE:
12504 return t;
12505
12506 case INTEGER_TYPE:
12507 if (t == integer_type_node)
12508 return t;
12509
12510 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
12511 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
12512 return t;
12513
12514 {
12515 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
12516
12517 max = tsubst_expr (omax, args, complain, in_decl,
12518 /*integral_constant_expression_p=*/false);
12519
12520 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
12521 needed. */
12522 if (TREE_CODE (max) == NOP_EXPR
12523 && TREE_SIDE_EFFECTS (omax)
12524 && !TREE_TYPE (max))
12525 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
12526
12527 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
12528 with TREE_SIDE_EFFECTS that indicates this is not an integral
12529 constant expression. */
12530 if (processing_template_decl
12531 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
12532 {
12533 gcc_assert (TREE_CODE (max) == NOP_EXPR);
12534 TREE_SIDE_EFFECTS (max) = 1;
12535 }
12536
12537 return compute_array_index_type (NULL_TREE, max, complain);
12538 }
12539
12540 case TEMPLATE_TYPE_PARM:
12541 case TEMPLATE_TEMPLATE_PARM:
12542 case BOUND_TEMPLATE_TEMPLATE_PARM:
12543 case TEMPLATE_PARM_INDEX:
12544 {
12545 int idx;
12546 int level;
12547 int levels;
12548 tree arg = NULL_TREE;
12549
12550 /* Early in template argument deduction substitution, we don't
12551 want to reduce the level of 'auto', or it will be confused
12552 with a normal template parm in subsequent deduction. */
12553 if (is_auto (t) && (complain & tf_partial))
12554 return t;
12555
12556 r = NULL_TREE;
12557
12558 gcc_assert (TREE_VEC_LENGTH (args) > 0);
12559 template_parm_level_and_index (t, &level, &idx);
12560
12561 levels = TMPL_ARGS_DEPTH (args);
12562 if (level <= levels
12563 && TREE_VEC_LENGTH (TMPL_ARGS_LEVEL (args, level)) > 0)
12564 {
12565 arg = TMPL_ARG (args, level, idx);
12566
12567 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
12568 {
12569 /* See through ARGUMENT_PACK_SELECT arguments. */
12570 arg = ARGUMENT_PACK_SELECT_ARG (arg);
12571 /* If the selected argument is an expansion E, that most
12572 likely means we were called from
12573 gen_elem_of_pack_expansion_instantiation during the
12574 substituting of pack an argument pack (which Ith
12575 element is a pack expansion, where I is
12576 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
12577 In this case, the Ith element resulting from this
12578 substituting is going to be a pack expansion, which
12579 pattern is the pattern of E. Let's return the
12580 pattern of E, and
12581 gen_elem_of_pack_expansion_instantiation will
12582 build the resulting pack expansion from it. */
12583 if (PACK_EXPANSION_P (arg))
12584 {
12585 /* Make sure we aren't throwing away arg info. */
12586 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
12587 arg = PACK_EXPANSION_PATTERN (arg);
12588 }
12589 }
12590 }
12591
12592 if (arg == error_mark_node)
12593 return error_mark_node;
12594 else if (arg != NULL_TREE)
12595 {
12596 if (ARGUMENT_PACK_P (arg))
12597 /* If ARG is an argument pack, we don't actually want to
12598 perform a substitution here, because substitutions
12599 for argument packs are only done
12600 element-by-element. We can get to this point when
12601 substituting the type of a non-type template
12602 parameter pack, when that type actually contains
12603 template parameter packs from an outer template, e.g.,
12604
12605 template<typename... Types> struct A {
12606 template<Types... Values> struct B { };
12607 }; */
12608 return t;
12609
12610 if (code == TEMPLATE_TYPE_PARM)
12611 {
12612 int quals;
12613 gcc_assert (TYPE_P (arg));
12614
12615 quals = cp_type_quals (arg) | cp_type_quals (t);
12616
12617 return cp_build_qualified_type_real
12618 (arg, quals, complain | tf_ignore_bad_quals);
12619 }
12620 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
12621 {
12622 /* We are processing a type constructed from a
12623 template template parameter. */
12624 tree argvec = tsubst (TYPE_TI_ARGS (t),
12625 args, complain, in_decl);
12626 if (argvec == error_mark_node)
12627 return error_mark_node;
12628
12629 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
12630 || TREE_CODE (arg) == TEMPLATE_DECL
12631 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
12632
12633 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
12634 /* Consider this code:
12635
12636 template <template <class> class Template>
12637 struct Internal {
12638 template <class Arg> using Bind = Template<Arg>;
12639 };
12640
12641 template <template <class> class Template, class Arg>
12642 using Instantiate = Template<Arg>; //#0
12643
12644 template <template <class> class Template,
12645 class Argument>
12646 using Bind =
12647 Instantiate<Internal<Template>::template Bind,
12648 Argument>; //#1
12649
12650 When #1 is parsed, the
12651 BOUND_TEMPLATE_TEMPLATE_PARM representing the
12652 parameter `Template' in #0 matches the
12653 UNBOUND_CLASS_TEMPLATE representing the argument
12654 `Internal<Template>::template Bind'; We then want
12655 to assemble the type `Bind<Argument>' that can't
12656 be fully created right now, because
12657 `Internal<Template>' not being complete, the Bind
12658 template cannot be looked up in that context. So
12659 we need to "store" `Bind<Argument>' for later
12660 when the context of Bind becomes complete. Let's
12661 store that in a TYPENAME_TYPE. */
12662 return make_typename_type (TYPE_CONTEXT (arg),
12663 build_nt (TEMPLATE_ID_EXPR,
12664 TYPE_IDENTIFIER (arg),
12665 argvec),
12666 typename_type,
12667 complain);
12668
12669 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
12670 are resolving nested-types in the signature of a
12671 member function templates. Otherwise ARG is a
12672 TEMPLATE_DECL and is the real template to be
12673 instantiated. */
12674 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
12675 arg = TYPE_NAME (arg);
12676
12677 r = lookup_template_class (arg,
12678 argvec, in_decl,
12679 DECL_CONTEXT (arg),
12680 /*entering_scope=*/0,
12681 complain);
12682 return cp_build_qualified_type_real
12683 (r, cp_type_quals (t) | cp_type_quals (r), complain);
12684 }
12685 else
12686 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
12687 return convert_from_reference (unshare_expr (arg));
12688 }
12689
12690 if (level == 1)
12691 /* This can happen during the attempted tsubst'ing in
12692 unify. This means that we don't yet have any information
12693 about the template parameter in question. */
12694 return t;
12695
12696 /* If we get here, we must have been looking at a parm for a
12697 more deeply nested template. Make a new version of this
12698 template parameter, but with a lower level. */
12699 switch (code)
12700 {
12701 case TEMPLATE_TYPE_PARM:
12702 case TEMPLATE_TEMPLATE_PARM:
12703 case BOUND_TEMPLATE_TEMPLATE_PARM:
12704 if (cp_type_quals (t))
12705 {
12706 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
12707 r = cp_build_qualified_type_real
12708 (r, cp_type_quals (t),
12709 complain | (code == TEMPLATE_TYPE_PARM
12710 ? tf_ignore_bad_quals : 0));
12711 }
12712 else if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
12713 && PLACEHOLDER_TYPE_CONSTRAINTS (t)
12714 && (r = (TEMPLATE_PARM_DESCENDANTS
12715 (TEMPLATE_TYPE_PARM_INDEX (t))))
12716 && (r = TREE_TYPE (r))
12717 && !PLACEHOLDER_TYPE_CONSTRAINTS (r))
12718 /* Break infinite recursion when substituting the constraints
12719 of a constrained placeholder. */;
12720 else
12721 {
12722 r = copy_type (t);
12723 TEMPLATE_TYPE_PARM_INDEX (r)
12724 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
12725 r, levels, args, complain);
12726 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
12727 TYPE_MAIN_VARIANT (r) = r;
12728 TYPE_POINTER_TO (r) = NULL_TREE;
12729 TYPE_REFERENCE_TO (r) = NULL_TREE;
12730
12731 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
12732 /* We have reduced the level of the template
12733 template parameter, but not the levels of its
12734 template parameters, so canonical_type_parameter
12735 will not be able to find the canonical template
12736 template parameter for this level. Thus, we
12737 require structural equality checking to compare
12738 TEMPLATE_TEMPLATE_PARMs. */
12739 SET_TYPE_STRUCTURAL_EQUALITY (r);
12740 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
12741 SET_TYPE_STRUCTURAL_EQUALITY (r);
12742 else
12743 TYPE_CANONICAL (r) = canonical_type_parameter (r);
12744
12745 /* Propagate constraints on placeholders. */
12746 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
12747 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (t))
12748 PLACEHOLDER_TYPE_CONSTRAINTS (r)
12749 = tsubst_constraint (constr, args, complain, in_decl);
12750
12751 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
12752 {
12753 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
12754 complain, in_decl);
12755 if (argvec == error_mark_node)
12756 return error_mark_node;
12757
12758 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
12759 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
12760 }
12761 }
12762 break;
12763
12764 case TEMPLATE_PARM_INDEX:
12765 r = reduce_template_parm_level (t, type, levels, args, complain);
12766 break;
12767
12768 default:
12769 gcc_unreachable ();
12770 }
12771
12772 return r;
12773 }
12774
12775 case TREE_LIST:
12776 {
12777 tree purpose, value, chain;
12778
12779 if (t == void_list_node)
12780 return t;
12781
12782 purpose = TREE_PURPOSE (t);
12783 if (purpose)
12784 {
12785 purpose = tsubst (purpose, args, complain, in_decl);
12786 if (purpose == error_mark_node)
12787 return error_mark_node;
12788 }
12789 value = TREE_VALUE (t);
12790 if (value)
12791 {
12792 value = tsubst (value, args, complain, in_decl);
12793 if (value == error_mark_node)
12794 return error_mark_node;
12795 }
12796 chain = TREE_CHAIN (t);
12797 if (chain && chain != void_type_node)
12798 {
12799 chain = tsubst (chain, args, complain, in_decl);
12800 if (chain == error_mark_node)
12801 return error_mark_node;
12802 }
12803 if (purpose == TREE_PURPOSE (t)
12804 && value == TREE_VALUE (t)
12805 && chain == TREE_CHAIN (t))
12806 return t;
12807 return hash_tree_cons (purpose, value, chain);
12808 }
12809
12810 case TREE_BINFO:
12811 /* We should never be tsubsting a binfo. */
12812 gcc_unreachable ();
12813
12814 case TREE_VEC:
12815 /* A vector of template arguments. */
12816 gcc_assert (!type);
12817 return tsubst_template_args (t, args, complain, in_decl);
12818
12819 case POINTER_TYPE:
12820 case REFERENCE_TYPE:
12821 {
12822 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
12823 return t;
12824
12825 /* [temp.deduct]
12826
12827 Type deduction may fail for any of the following
12828 reasons:
12829
12830 -- Attempting to create a pointer to reference type.
12831 -- Attempting to create a reference to a reference type or
12832 a reference to void.
12833
12834 Core issue 106 says that creating a reference to a reference
12835 during instantiation is no longer a cause for failure. We
12836 only enforce this check in strict C++98 mode. */
12837 if ((TREE_CODE (type) == REFERENCE_TYPE
12838 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
12839 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
12840 {
12841 static location_t last_loc;
12842
12843 /* We keep track of the last time we issued this error
12844 message to avoid spewing a ton of messages during a
12845 single bad template instantiation. */
12846 if (complain & tf_error
12847 && last_loc != input_location)
12848 {
12849 if (VOID_TYPE_P (type))
12850 error ("forming reference to void");
12851 else if (code == POINTER_TYPE)
12852 error ("forming pointer to reference type %qT", type);
12853 else
12854 error ("forming reference to reference type %qT", type);
12855 last_loc = input_location;
12856 }
12857
12858 return error_mark_node;
12859 }
12860 else if (TREE_CODE (type) == FUNCTION_TYPE
12861 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
12862 || type_memfn_rqual (type) != REF_QUAL_NONE))
12863 {
12864 if (complain & tf_error)
12865 {
12866 if (code == POINTER_TYPE)
12867 error ("forming pointer to qualified function type %qT",
12868 type);
12869 else
12870 error ("forming reference to qualified function type %qT",
12871 type);
12872 }
12873 return error_mark_node;
12874 }
12875 else if (code == POINTER_TYPE)
12876 {
12877 r = build_pointer_type (type);
12878 if (TREE_CODE (type) == METHOD_TYPE)
12879 r = build_ptrmemfunc_type (r);
12880 }
12881 else if (TREE_CODE (type) == REFERENCE_TYPE)
12882 /* In C++0x, during template argument substitution, when there is an
12883 attempt to create a reference to a reference type, reference
12884 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
12885
12886 "If a template-argument for a template-parameter T names a type
12887 that is a reference to a type A, an attempt to create the type
12888 'lvalue reference to cv T' creates the type 'lvalue reference to
12889 A,' while an attempt to create the type type rvalue reference to
12890 cv T' creates the type T"
12891 */
12892 r = cp_build_reference_type
12893 (TREE_TYPE (type),
12894 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
12895 else
12896 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
12897 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
12898
12899 if (r != error_mark_node)
12900 /* Will this ever be needed for TYPE_..._TO values? */
12901 layout_type (r);
12902
12903 return r;
12904 }
12905 case OFFSET_TYPE:
12906 {
12907 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
12908 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
12909 {
12910 /* [temp.deduct]
12911
12912 Type deduction may fail for any of the following
12913 reasons:
12914
12915 -- Attempting to create "pointer to member of T" when T
12916 is not a class type. */
12917 if (complain & tf_error)
12918 error ("creating pointer to member of non-class type %qT", r);
12919 return error_mark_node;
12920 }
12921 if (TREE_CODE (type) == REFERENCE_TYPE)
12922 {
12923 if (complain & tf_error)
12924 error ("creating pointer to member reference type %qT", type);
12925 return error_mark_node;
12926 }
12927 if (VOID_TYPE_P (type))
12928 {
12929 if (complain & tf_error)
12930 error ("creating pointer to member of type void");
12931 return error_mark_node;
12932 }
12933 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
12934 if (TREE_CODE (type) == FUNCTION_TYPE)
12935 {
12936 /* The type of the implicit object parameter gets its
12937 cv-qualifiers from the FUNCTION_TYPE. */
12938 tree memptr;
12939 tree method_type
12940 = build_memfn_type (type, r, type_memfn_quals (type),
12941 type_memfn_rqual (type));
12942 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
12943 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
12944 complain);
12945 }
12946 else
12947 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
12948 cp_type_quals (t),
12949 complain);
12950 }
12951 case FUNCTION_TYPE:
12952 case METHOD_TYPE:
12953 {
12954 tree fntype;
12955 tree specs;
12956 fntype = tsubst_function_type (t, args, complain, in_decl);
12957 if (fntype == error_mark_node)
12958 return error_mark_node;
12959
12960 /* Substitute the exception specification. */
12961 specs = tsubst_exception_specification (t, args, complain,
12962 in_decl, /*defer_ok*/true);
12963 if (specs == error_mark_node)
12964 return error_mark_node;
12965 if (specs)
12966 fntype = build_exception_variant (fntype, specs);
12967 return fntype;
12968 }
12969 case ARRAY_TYPE:
12970 {
12971 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
12972 if (domain == error_mark_node)
12973 return error_mark_node;
12974
12975 /* As an optimization, we avoid regenerating the array type if
12976 it will obviously be the same as T. */
12977 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
12978 return t;
12979
12980 /* These checks should match the ones in create_array_type_for_decl.
12981
12982 [temp.deduct]
12983
12984 The deduction may fail for any of the following reasons:
12985
12986 -- Attempting to create an array with an element type that
12987 is void, a function type, or a reference type, or [DR337]
12988 an abstract class type. */
12989 if (VOID_TYPE_P (type)
12990 || TREE_CODE (type) == FUNCTION_TYPE
12991 || (TREE_CODE (type) == ARRAY_TYPE
12992 && TYPE_DOMAIN (type) == NULL_TREE)
12993 || TREE_CODE (type) == REFERENCE_TYPE)
12994 {
12995 if (complain & tf_error)
12996 error ("creating array of %qT", type);
12997 return error_mark_node;
12998 }
12999
13000 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
13001 return error_mark_node;
13002
13003 r = build_cplus_array_type (type, domain);
13004
13005 if (TYPE_USER_ALIGN (t))
13006 {
13007 TYPE_ALIGN (r) = TYPE_ALIGN (t);
13008 TYPE_USER_ALIGN (r) = 1;
13009 }
13010
13011 return r;
13012 }
13013
13014 case TYPENAME_TYPE:
13015 {
13016 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13017 in_decl, /*entering_scope=*/1);
13018 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
13019 complain, in_decl);
13020
13021 if (ctx == error_mark_node || f == error_mark_node)
13022 return error_mark_node;
13023
13024 if (!MAYBE_CLASS_TYPE_P (ctx))
13025 {
13026 if (complain & tf_error)
13027 error ("%qT is not a class, struct, or union type", ctx);
13028 return error_mark_node;
13029 }
13030 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
13031 {
13032 /* Normally, make_typename_type does not require that the CTX
13033 have complete type in order to allow things like:
13034
13035 template <class T> struct S { typename S<T>::X Y; };
13036
13037 But, such constructs have already been resolved by this
13038 point, so here CTX really should have complete type, unless
13039 it's a partial instantiation. */
13040 ctx = complete_type (ctx);
13041 if (!COMPLETE_TYPE_P (ctx))
13042 {
13043 if (complain & tf_error)
13044 cxx_incomplete_type_error (NULL_TREE, ctx);
13045 return error_mark_node;
13046 }
13047 }
13048
13049 f = make_typename_type (ctx, f, typename_type,
13050 complain | tf_keep_type_decl);
13051 if (f == error_mark_node)
13052 return f;
13053 if (TREE_CODE (f) == TYPE_DECL)
13054 {
13055 complain |= tf_ignore_bad_quals;
13056 f = TREE_TYPE (f);
13057 }
13058
13059 if (TREE_CODE (f) != TYPENAME_TYPE)
13060 {
13061 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
13062 {
13063 if (complain & tf_error)
13064 error ("%qT resolves to %qT, which is not an enumeration type",
13065 t, f);
13066 else
13067 return error_mark_node;
13068 }
13069 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
13070 {
13071 if (complain & tf_error)
13072 error ("%qT resolves to %qT, which is is not a class type",
13073 t, f);
13074 else
13075 return error_mark_node;
13076 }
13077 }
13078
13079 return cp_build_qualified_type_real
13080 (f, cp_type_quals (f) | cp_type_quals (t), complain);
13081 }
13082
13083 case UNBOUND_CLASS_TEMPLATE:
13084 {
13085 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13086 in_decl, /*entering_scope=*/1);
13087 tree name = TYPE_IDENTIFIER (t);
13088 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
13089
13090 if (ctx == error_mark_node || name == error_mark_node)
13091 return error_mark_node;
13092
13093 if (parm_list)
13094 parm_list = tsubst_template_parms (parm_list, args, complain);
13095 return make_unbound_class_template (ctx, name, parm_list, complain);
13096 }
13097
13098 case TYPEOF_TYPE:
13099 {
13100 tree type;
13101
13102 ++cp_unevaluated_operand;
13103 ++c_inhibit_evaluation_warnings;
13104
13105 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
13106 complain, in_decl,
13107 /*integral_constant_expression_p=*/false);
13108
13109 --cp_unevaluated_operand;
13110 --c_inhibit_evaluation_warnings;
13111
13112 type = finish_typeof (type);
13113 return cp_build_qualified_type_real (type,
13114 cp_type_quals (t)
13115 | cp_type_quals (type),
13116 complain);
13117 }
13118
13119 case DECLTYPE_TYPE:
13120 {
13121 tree type;
13122
13123 ++cp_unevaluated_operand;
13124 ++c_inhibit_evaluation_warnings;
13125
13126 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
13127 complain|tf_decltype, in_decl,
13128 /*function_p*/false,
13129 /*integral_constant_expression*/false);
13130
13131 --cp_unevaluated_operand;
13132 --c_inhibit_evaluation_warnings;
13133
13134 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
13135 type = lambda_capture_field_type (type,
13136 DECLTYPE_FOR_INIT_CAPTURE (t));
13137 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
13138 type = lambda_proxy_type (type);
13139 else
13140 {
13141 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
13142 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
13143 && EXPR_P (type))
13144 /* In a template ~id could be either a complement expression
13145 or an unqualified-id naming a destructor; if instantiating
13146 it produces an expression, it's not an id-expression or
13147 member access. */
13148 id = false;
13149 type = finish_decltype_type (type, id, complain);
13150 }
13151 return cp_build_qualified_type_real (type,
13152 cp_type_quals (t)
13153 | cp_type_quals (type),
13154 complain | tf_ignore_bad_quals);
13155 }
13156
13157 case UNDERLYING_TYPE:
13158 {
13159 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
13160 complain, in_decl);
13161 return finish_underlying_type (type);
13162 }
13163
13164 case TYPE_ARGUMENT_PACK:
13165 case NONTYPE_ARGUMENT_PACK:
13166 {
13167 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
13168 tree packed_out =
13169 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
13170 args,
13171 complain,
13172 in_decl);
13173 SET_ARGUMENT_PACK_ARGS (r, packed_out);
13174
13175 /* For template nontype argument packs, also substitute into
13176 the type. */
13177 if (code == NONTYPE_ARGUMENT_PACK)
13178 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
13179
13180 return r;
13181 }
13182 break;
13183
13184 case VOID_CST:
13185 case INTEGER_CST:
13186 case REAL_CST:
13187 case STRING_CST:
13188 case PLUS_EXPR:
13189 case MINUS_EXPR:
13190 case NEGATE_EXPR:
13191 case NOP_EXPR:
13192 case INDIRECT_REF:
13193 case ADDR_EXPR:
13194 case CALL_EXPR:
13195 case ARRAY_REF:
13196 case SCOPE_REF:
13197 /* We should use one of the expression tsubsts for these codes. */
13198 gcc_unreachable ();
13199
13200 default:
13201 sorry ("use of %qs in template", get_tree_code_name (code));
13202 return error_mark_node;
13203 }
13204 }
13205
13206 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
13207 type of the expression on the left-hand side of the "." or "->"
13208 operator. */
13209
13210 static tree
13211 tsubst_baselink (tree baselink, tree object_type,
13212 tree args, tsubst_flags_t complain, tree in_decl)
13213 {
13214 tree name;
13215 tree qualifying_scope;
13216 tree fns;
13217 tree optype;
13218 tree template_args = 0;
13219 bool template_id_p = false;
13220 bool qualified = BASELINK_QUALIFIED_P (baselink);
13221
13222 /* A baselink indicates a function from a base class. Both the
13223 BASELINK_ACCESS_BINFO and the base class referenced may
13224 indicate bases of the template class, rather than the
13225 instantiated class. In addition, lookups that were not
13226 ambiguous before may be ambiguous now. Therefore, we perform
13227 the lookup again. */
13228 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
13229 qualifying_scope = tsubst (qualifying_scope, args,
13230 complain, in_decl);
13231 fns = BASELINK_FUNCTIONS (baselink);
13232 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
13233 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
13234 {
13235 template_id_p = true;
13236 template_args = TREE_OPERAND (fns, 1);
13237 fns = TREE_OPERAND (fns, 0);
13238 if (template_args)
13239 template_args = tsubst_template_args (template_args, args,
13240 complain, in_decl);
13241 }
13242 name = DECL_NAME (get_first_fn (fns));
13243 if (IDENTIFIER_TYPENAME_P (name))
13244 name = mangle_conv_op_name_for_type (optype);
13245 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
13246 if (!baselink)
13247 return error_mark_node;
13248
13249 /* If lookup found a single function, mark it as used at this
13250 point. (If it lookup found multiple functions the one selected
13251 later by overload resolution will be marked as used at that
13252 point.) */
13253 if (BASELINK_P (baselink))
13254 fns = BASELINK_FUNCTIONS (baselink);
13255 if (!template_id_p && !really_overloaded_fn (fns)
13256 && !mark_used (OVL_CURRENT (fns), complain) && !(complain & tf_error))
13257 return error_mark_node;
13258
13259 /* Add back the template arguments, if present. */
13260 if (BASELINK_P (baselink) && template_id_p)
13261 BASELINK_FUNCTIONS (baselink)
13262 = build_nt (TEMPLATE_ID_EXPR,
13263 BASELINK_FUNCTIONS (baselink),
13264 template_args);
13265 /* Update the conversion operator type. */
13266 BASELINK_OPTYPE (baselink) = optype;
13267
13268 if (!object_type)
13269 object_type = current_class_type;
13270
13271 if (qualified)
13272 baselink = adjust_result_of_qualified_name_lookup (baselink,
13273 qualifying_scope,
13274 object_type);
13275 return baselink;
13276 }
13277
13278 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
13279 true if the qualified-id will be a postfix-expression in-and-of
13280 itself; false if more of the postfix-expression follows the
13281 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
13282 of "&". */
13283
13284 static tree
13285 tsubst_qualified_id (tree qualified_id, tree args,
13286 tsubst_flags_t complain, tree in_decl,
13287 bool done, bool address_p)
13288 {
13289 tree expr;
13290 tree scope;
13291 tree name;
13292 bool is_template;
13293 tree template_args;
13294 location_t loc = UNKNOWN_LOCATION;
13295
13296 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
13297
13298 /* Figure out what name to look up. */
13299 name = TREE_OPERAND (qualified_id, 1);
13300 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
13301 {
13302 is_template = true;
13303 loc = EXPR_LOCATION (name);
13304 template_args = TREE_OPERAND (name, 1);
13305 if (template_args)
13306 template_args = tsubst_template_args (template_args, args,
13307 complain, in_decl);
13308 name = TREE_OPERAND (name, 0);
13309 }
13310 else
13311 {
13312 is_template = false;
13313 template_args = NULL_TREE;
13314 }
13315
13316 /* Substitute into the qualifying scope. When there are no ARGS, we
13317 are just trying to simplify a non-dependent expression. In that
13318 case the qualifying scope may be dependent, and, in any case,
13319 substituting will not help. */
13320 scope = TREE_OPERAND (qualified_id, 0);
13321 if (args)
13322 {
13323 scope = tsubst (scope, args, complain, in_decl);
13324 expr = tsubst_copy (name, args, complain, in_decl);
13325 }
13326 else
13327 expr = name;
13328
13329 if (dependent_scope_p (scope))
13330 {
13331 if (is_template)
13332 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
13333 return build_qualified_name (NULL_TREE, scope, expr,
13334 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
13335 }
13336
13337 if (!BASELINK_P (name) && !DECL_P (expr))
13338 {
13339 if (TREE_CODE (expr) == BIT_NOT_EXPR)
13340 {
13341 /* A BIT_NOT_EXPR is used to represent a destructor. */
13342 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
13343 {
13344 error ("qualifying type %qT does not match destructor name ~%qT",
13345 scope, TREE_OPERAND (expr, 0));
13346 expr = error_mark_node;
13347 }
13348 else
13349 expr = lookup_qualified_name (scope, complete_dtor_identifier,
13350 /*is_type_p=*/0, false);
13351 }
13352 else
13353 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
13354 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
13355 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
13356 {
13357 if (complain & tf_error)
13358 {
13359 error ("dependent-name %qE is parsed as a non-type, but "
13360 "instantiation yields a type", qualified_id);
13361 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
13362 }
13363 return error_mark_node;
13364 }
13365 }
13366
13367 if (DECL_P (expr))
13368 {
13369 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
13370 scope);
13371 /* Remember that there was a reference to this entity. */
13372 if (!mark_used (expr, complain) && !(complain & tf_error))
13373 return error_mark_node;
13374 }
13375
13376 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
13377 {
13378 if (complain & tf_error)
13379 qualified_name_lookup_error (scope,
13380 TREE_OPERAND (qualified_id, 1),
13381 expr, input_location);
13382 return error_mark_node;
13383 }
13384
13385 if (is_template)
13386 expr = lookup_template_function (expr, template_args);
13387
13388 if (expr == error_mark_node && complain & tf_error)
13389 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
13390 expr, input_location);
13391 else if (TYPE_P (scope))
13392 {
13393 expr = (adjust_result_of_qualified_name_lookup
13394 (expr, scope, current_nonlambda_class_type ()));
13395 expr = (finish_qualified_id_expr
13396 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
13397 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
13398 /*template_arg_p=*/false, complain));
13399 }
13400
13401 /* Expressions do not generally have reference type. */
13402 if (TREE_CODE (expr) != SCOPE_REF
13403 /* However, if we're about to form a pointer-to-member, we just
13404 want the referenced member referenced. */
13405 && TREE_CODE (expr) != OFFSET_REF)
13406 expr = convert_from_reference (expr);
13407
13408 return expr;
13409 }
13410
13411 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
13412 initializer, DECL is the substituted VAR_DECL. Other arguments are as
13413 for tsubst. */
13414
13415 static tree
13416 tsubst_init (tree init, tree decl, tree args,
13417 tsubst_flags_t complain, tree in_decl)
13418 {
13419 if (!init)
13420 return NULL_TREE;
13421
13422 init = tsubst_expr (init, args, complain, in_decl, false);
13423
13424 if (!init)
13425 {
13426 /* If we had an initializer but it
13427 instantiated to nothing,
13428 value-initialize the object. This will
13429 only occur when the initializer was a
13430 pack expansion where the parameter packs
13431 used in that expansion were of length
13432 zero. */
13433 init = build_value_init (TREE_TYPE (decl),
13434 complain);
13435 if (TREE_CODE (init) == AGGR_INIT_EXPR)
13436 init = get_target_expr_sfinae (init, complain);
13437 }
13438
13439 return init;
13440 }
13441
13442 /* Like tsubst, but deals with expressions. This function just replaces
13443 template parms; to finish processing the resultant expression, use
13444 tsubst_copy_and_build or tsubst_expr. */
13445
13446 static tree
13447 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
13448 {
13449 enum tree_code code;
13450 tree r;
13451
13452 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
13453 return t;
13454
13455 code = TREE_CODE (t);
13456
13457 switch (code)
13458 {
13459 case PARM_DECL:
13460 r = retrieve_local_specialization (t);
13461
13462 if (r == NULL_TREE)
13463 {
13464 /* We get here for a use of 'this' in an NSDMI. */
13465 if (DECL_NAME (t) == this_identifier
13466 && current_function_decl
13467 && DECL_CONSTRUCTOR_P (current_function_decl))
13468 return current_class_ptr;
13469
13470 /* This can happen for a parameter name used later in a function
13471 declaration (such as in a late-specified return type). Just
13472 make a dummy decl, since it's only used for its type. */
13473 gcc_assert (cp_unevaluated_operand != 0);
13474 r = tsubst_decl (t, args, complain);
13475 /* Give it the template pattern as its context; its true context
13476 hasn't been instantiated yet and this is good enough for
13477 mangling. */
13478 DECL_CONTEXT (r) = DECL_CONTEXT (t);
13479 }
13480
13481 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13482 r = ARGUMENT_PACK_SELECT_ARG (r);
13483 if (!mark_used (r, complain) && !(complain & tf_error))
13484 return error_mark_node;
13485 return r;
13486
13487 case CONST_DECL:
13488 {
13489 tree enum_type;
13490 tree v;
13491
13492 if (DECL_TEMPLATE_PARM_P (t))
13493 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
13494 /* There is no need to substitute into namespace-scope
13495 enumerators. */
13496 if (DECL_NAMESPACE_SCOPE_P (t))
13497 return t;
13498 /* If ARGS is NULL, then T is known to be non-dependent. */
13499 if (args == NULL_TREE)
13500 return scalar_constant_value (t);
13501
13502 /* Unfortunately, we cannot just call lookup_name here.
13503 Consider:
13504
13505 template <int I> int f() {
13506 enum E { a = I };
13507 struct S { void g() { E e = a; } };
13508 };
13509
13510 When we instantiate f<7>::S::g(), say, lookup_name is not
13511 clever enough to find f<7>::a. */
13512 enum_type
13513 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13514 /*entering_scope=*/0);
13515
13516 for (v = TYPE_VALUES (enum_type);
13517 v != NULL_TREE;
13518 v = TREE_CHAIN (v))
13519 if (TREE_PURPOSE (v) == DECL_NAME (t))
13520 return TREE_VALUE (v);
13521
13522 /* We didn't find the name. That should never happen; if
13523 name-lookup found it during preliminary parsing, we
13524 should find it again here during instantiation. */
13525 gcc_unreachable ();
13526 }
13527 return t;
13528
13529 case FIELD_DECL:
13530 if (PACK_EXPANSION_P (TREE_TYPE (t)))
13531 {
13532 /* Check for a local specialization set up by
13533 tsubst_pack_expansion. */
13534 if (tree r = retrieve_local_specialization (t))
13535 {
13536 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13537 r = ARGUMENT_PACK_SELECT_ARG (r);
13538 return r;
13539 }
13540
13541 /* When retrieving a capture pack from a generic lambda, remove the
13542 lambda call op's own template argument list from ARGS. Only the
13543 template arguments active for the closure type should be used to
13544 retrieve the pack specialization. */
13545 if (LAMBDA_FUNCTION_P (current_function_decl)
13546 && (template_class_depth (DECL_CONTEXT (t))
13547 != TMPL_ARGS_DEPTH (args)))
13548 args = strip_innermost_template_args (args, 1);
13549
13550 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
13551 tsubst_decl put in the hash table. */
13552 return retrieve_specialization (t, args, 0);
13553 }
13554
13555 if (DECL_CONTEXT (t))
13556 {
13557 tree ctx;
13558
13559 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13560 /*entering_scope=*/1);
13561 if (ctx != DECL_CONTEXT (t))
13562 {
13563 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
13564 if (!r)
13565 {
13566 if (complain & tf_error)
13567 error ("using invalid field %qD", t);
13568 return error_mark_node;
13569 }
13570 return r;
13571 }
13572 }
13573
13574 return t;
13575
13576 case VAR_DECL:
13577 case FUNCTION_DECL:
13578 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
13579 r = tsubst (t, args, complain, in_decl);
13580 else if (local_variable_p (t))
13581 {
13582 r = retrieve_local_specialization (t);
13583 if (r == NULL_TREE)
13584 {
13585 /* First try name lookup to find the instantiation. */
13586 r = lookup_name (DECL_NAME (t));
13587 if (r)
13588 {
13589 /* Make sure that the one we found is the one we want. */
13590 tree ctx = tsubst (DECL_CONTEXT (t), args,
13591 complain, in_decl);
13592 if (ctx != DECL_CONTEXT (r))
13593 r = NULL_TREE;
13594 }
13595
13596 if (r)
13597 /* OK */;
13598 else
13599 {
13600 /* This can happen for a variable used in a
13601 late-specified return type of a local lambda, or for a
13602 local static or constant. Building a new VAR_DECL
13603 should be OK in all those cases. */
13604 r = tsubst_decl (t, args, complain);
13605 if (decl_maybe_constant_var_p (r))
13606 {
13607 /* We can't call cp_finish_decl, so handle the
13608 initializer by hand. */
13609 tree init = tsubst_init (DECL_INITIAL (t), r, args,
13610 complain, in_decl);
13611 if (!processing_template_decl)
13612 init = maybe_constant_init (init);
13613 if (processing_template_decl
13614 ? potential_constant_expression (init)
13615 : reduced_constant_expression_p (init))
13616 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
13617 = TREE_CONSTANT (r) = true;
13618 DECL_INITIAL (r) = init;
13619 }
13620 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
13621 || decl_constant_var_p (r)
13622 || errorcount || sorrycount);
13623 if (!processing_template_decl)
13624 {
13625 if (TREE_STATIC (r))
13626 rest_of_decl_compilation (r, toplevel_bindings_p (),
13627 at_eof);
13628 else
13629 r = process_outer_var_ref (r, complain);
13630 }
13631 }
13632 /* Remember this for subsequent uses. */
13633 if (local_specializations)
13634 register_local_specialization (r, t);
13635 }
13636 }
13637 else
13638 r = t;
13639 if (!mark_used (r, complain) && !(complain & tf_error))
13640 return error_mark_node;
13641 return r;
13642
13643 case NAMESPACE_DECL:
13644 return t;
13645
13646 case OVERLOAD:
13647 /* An OVERLOAD will always be a non-dependent overload set; an
13648 overload set from function scope will just be represented with an
13649 IDENTIFIER_NODE, and from class scope with a BASELINK. */
13650 gcc_assert (!uses_template_parms (t));
13651 return t;
13652
13653 case BASELINK:
13654 return tsubst_baselink (t, current_nonlambda_class_type (),
13655 args, complain, in_decl);
13656
13657 case TEMPLATE_DECL:
13658 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
13659 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
13660 args, complain, in_decl);
13661 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
13662 return tsubst (t, args, complain, in_decl);
13663 else if (DECL_CLASS_SCOPE_P (t)
13664 && uses_template_parms (DECL_CONTEXT (t)))
13665 {
13666 /* Template template argument like the following example need
13667 special treatment:
13668
13669 template <template <class> class TT> struct C {};
13670 template <class T> struct D {
13671 template <class U> struct E {};
13672 C<E> c; // #1
13673 };
13674 D<int> d; // #2
13675
13676 We are processing the template argument `E' in #1 for
13677 the template instantiation #2. Originally, `E' is a
13678 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
13679 have to substitute this with one having context `D<int>'. */
13680
13681 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
13682 return lookup_field (context, DECL_NAME(t), 0, false);
13683 }
13684 else
13685 /* Ordinary template template argument. */
13686 return t;
13687
13688 case CAST_EXPR:
13689 case REINTERPRET_CAST_EXPR:
13690 case CONST_CAST_EXPR:
13691 case STATIC_CAST_EXPR:
13692 case DYNAMIC_CAST_EXPR:
13693 case IMPLICIT_CONV_EXPR:
13694 case CONVERT_EXPR:
13695 case NOP_EXPR:
13696 {
13697 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13698 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13699 return build1 (code, type, op0);
13700 }
13701
13702 case SIZEOF_EXPR:
13703 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
13704 {
13705
13706 tree expanded, op = TREE_OPERAND (t, 0);
13707 int len = 0;
13708
13709 if (SIZEOF_EXPR_TYPE_P (t))
13710 op = TREE_TYPE (op);
13711
13712 ++cp_unevaluated_operand;
13713 ++c_inhibit_evaluation_warnings;
13714 /* We only want to compute the number of arguments. */
13715 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
13716 --cp_unevaluated_operand;
13717 --c_inhibit_evaluation_warnings;
13718
13719 if (TREE_CODE (expanded) == TREE_VEC)
13720 len = TREE_VEC_LENGTH (expanded);
13721
13722 if (expanded == error_mark_node)
13723 return error_mark_node;
13724 else if (PACK_EXPANSION_P (expanded)
13725 || (TREE_CODE (expanded) == TREE_VEC
13726 && len > 0
13727 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
13728 {
13729 if (TREE_CODE (expanded) == TREE_VEC)
13730 expanded = TREE_VEC_ELT (expanded, len - 1);
13731
13732 if (TYPE_P (expanded))
13733 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
13734 complain & tf_error);
13735 else
13736 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
13737 complain & tf_error);
13738 }
13739 else
13740 return build_int_cst (size_type_node, len);
13741 }
13742 if (SIZEOF_EXPR_TYPE_P (t))
13743 {
13744 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
13745 args, complain, in_decl);
13746 r = build1 (NOP_EXPR, r, error_mark_node);
13747 r = build1 (SIZEOF_EXPR,
13748 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
13749 SIZEOF_EXPR_TYPE_P (r) = 1;
13750 return r;
13751 }
13752 /* Fall through */
13753
13754 case INDIRECT_REF:
13755 case NEGATE_EXPR:
13756 case TRUTH_NOT_EXPR:
13757 case BIT_NOT_EXPR:
13758 case ADDR_EXPR:
13759 case UNARY_PLUS_EXPR: /* Unary + */
13760 case ALIGNOF_EXPR:
13761 case AT_ENCODE_EXPR:
13762 case ARROW_EXPR:
13763 case THROW_EXPR:
13764 case TYPEID_EXPR:
13765 case REALPART_EXPR:
13766 case IMAGPART_EXPR:
13767 case PAREN_EXPR:
13768 {
13769 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13770 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13771 return build1 (code, type, op0);
13772 }
13773
13774 case COMPONENT_REF:
13775 {
13776 tree object;
13777 tree name;
13778
13779 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13780 name = TREE_OPERAND (t, 1);
13781 if (TREE_CODE (name) == BIT_NOT_EXPR)
13782 {
13783 name = tsubst_copy (TREE_OPERAND (name, 0), args,
13784 complain, in_decl);
13785 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
13786 }
13787 else if (TREE_CODE (name) == SCOPE_REF
13788 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
13789 {
13790 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
13791 complain, in_decl);
13792 name = TREE_OPERAND (name, 1);
13793 name = tsubst_copy (TREE_OPERAND (name, 0), args,
13794 complain, in_decl);
13795 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
13796 name = build_qualified_name (/*type=*/NULL_TREE,
13797 base, name,
13798 /*template_p=*/false);
13799 }
13800 else if (BASELINK_P (name))
13801 name = tsubst_baselink (name,
13802 non_reference (TREE_TYPE (object)),
13803 args, complain,
13804 in_decl);
13805 else
13806 name = tsubst_copy (name, args, complain, in_decl);
13807 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
13808 }
13809
13810 case PLUS_EXPR:
13811 case MINUS_EXPR:
13812 case MULT_EXPR:
13813 case TRUNC_DIV_EXPR:
13814 case CEIL_DIV_EXPR:
13815 case FLOOR_DIV_EXPR:
13816 case ROUND_DIV_EXPR:
13817 case EXACT_DIV_EXPR:
13818 case BIT_AND_EXPR:
13819 case BIT_IOR_EXPR:
13820 case BIT_XOR_EXPR:
13821 case TRUNC_MOD_EXPR:
13822 case FLOOR_MOD_EXPR:
13823 case TRUTH_ANDIF_EXPR:
13824 case TRUTH_ORIF_EXPR:
13825 case TRUTH_AND_EXPR:
13826 case TRUTH_OR_EXPR:
13827 case RSHIFT_EXPR:
13828 case LSHIFT_EXPR:
13829 case RROTATE_EXPR:
13830 case LROTATE_EXPR:
13831 case EQ_EXPR:
13832 case NE_EXPR:
13833 case MAX_EXPR:
13834 case MIN_EXPR:
13835 case LE_EXPR:
13836 case GE_EXPR:
13837 case LT_EXPR:
13838 case GT_EXPR:
13839 case COMPOUND_EXPR:
13840 case DOTSTAR_EXPR:
13841 case MEMBER_REF:
13842 case PREDECREMENT_EXPR:
13843 case PREINCREMENT_EXPR:
13844 case POSTDECREMENT_EXPR:
13845 case POSTINCREMENT_EXPR:
13846 {
13847 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13848 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13849 return build_nt (code, op0, op1);
13850 }
13851
13852 case SCOPE_REF:
13853 {
13854 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13855 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13856 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
13857 QUALIFIED_NAME_IS_TEMPLATE (t));
13858 }
13859
13860 case ARRAY_REF:
13861 {
13862 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13863 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13864 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
13865 }
13866
13867 case CALL_EXPR:
13868 {
13869 int n = VL_EXP_OPERAND_LENGTH (t);
13870 tree result = build_vl_exp (CALL_EXPR, n);
13871 int i;
13872 for (i = 0; i < n; i++)
13873 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
13874 complain, in_decl);
13875 return result;
13876 }
13877
13878 case COND_EXPR:
13879 case MODOP_EXPR:
13880 case PSEUDO_DTOR_EXPR:
13881 case VEC_PERM_EXPR:
13882 {
13883 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13884 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13885 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
13886 r = build_nt (code, op0, op1, op2);
13887 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
13888 return r;
13889 }
13890
13891 case NEW_EXPR:
13892 {
13893 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13894 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13895 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
13896 r = build_nt (code, op0, op1, op2);
13897 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
13898 return r;
13899 }
13900
13901 case DELETE_EXPR:
13902 {
13903 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13904 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13905 r = build_nt (code, op0, op1);
13906 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
13907 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
13908 return r;
13909 }
13910
13911 case TEMPLATE_ID_EXPR:
13912 {
13913 /* Substituted template arguments */
13914 tree fn = TREE_OPERAND (t, 0);
13915 tree targs = TREE_OPERAND (t, 1);
13916
13917 fn = tsubst_copy (fn, args, complain, in_decl);
13918 if (targs)
13919 targs = tsubst_template_args (targs, args, complain, in_decl);
13920
13921 return lookup_template_function (fn, targs);
13922 }
13923
13924 case TREE_LIST:
13925 {
13926 tree purpose, value, chain;
13927
13928 if (t == void_list_node)
13929 return t;
13930
13931 purpose = TREE_PURPOSE (t);
13932 if (purpose)
13933 purpose = tsubst_copy (purpose, args, complain, in_decl);
13934 value = TREE_VALUE (t);
13935 if (value)
13936 value = tsubst_copy (value, args, complain, in_decl);
13937 chain = TREE_CHAIN (t);
13938 if (chain && chain != void_type_node)
13939 chain = tsubst_copy (chain, args, complain, in_decl);
13940 if (purpose == TREE_PURPOSE (t)
13941 && value == TREE_VALUE (t)
13942 && chain == TREE_CHAIN (t))
13943 return t;
13944 return tree_cons (purpose, value, chain);
13945 }
13946
13947 case RECORD_TYPE:
13948 case UNION_TYPE:
13949 case ENUMERAL_TYPE:
13950 case INTEGER_TYPE:
13951 case TEMPLATE_TYPE_PARM:
13952 case TEMPLATE_TEMPLATE_PARM:
13953 case BOUND_TEMPLATE_TEMPLATE_PARM:
13954 case TEMPLATE_PARM_INDEX:
13955 case POINTER_TYPE:
13956 case REFERENCE_TYPE:
13957 case OFFSET_TYPE:
13958 case FUNCTION_TYPE:
13959 case METHOD_TYPE:
13960 case ARRAY_TYPE:
13961 case TYPENAME_TYPE:
13962 case UNBOUND_CLASS_TEMPLATE:
13963 case TYPEOF_TYPE:
13964 case DECLTYPE_TYPE:
13965 case TYPE_DECL:
13966 return tsubst (t, args, complain, in_decl);
13967
13968 case USING_DECL:
13969 t = DECL_NAME (t);
13970 /* Fall through. */
13971 case IDENTIFIER_NODE:
13972 if (IDENTIFIER_TYPENAME_P (t))
13973 {
13974 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13975 return mangle_conv_op_name_for_type (new_type);
13976 }
13977 else
13978 return t;
13979
13980 case CONSTRUCTOR:
13981 /* This is handled by tsubst_copy_and_build. */
13982 gcc_unreachable ();
13983
13984 case VA_ARG_EXPR:
13985 {
13986 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13987 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13988 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
13989 }
13990
13991 case CLEANUP_POINT_EXPR:
13992 /* We shouldn't have built any of these during initial template
13993 generation. Instead, they should be built during instantiation
13994 in response to the saved STMT_IS_FULL_EXPR_P setting. */
13995 gcc_unreachable ();
13996
13997 case OFFSET_REF:
13998 {
13999 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14000 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14001 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14002 r = build2 (code, type, op0, op1);
14003 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
14004 if (!mark_used (TREE_OPERAND (r, 1), complain)
14005 && !(complain & tf_error))
14006 return error_mark_node;
14007 return r;
14008 }
14009
14010 case EXPR_PACK_EXPANSION:
14011 error ("invalid use of pack expansion expression");
14012 return error_mark_node;
14013
14014 case NONTYPE_ARGUMENT_PACK:
14015 error ("use %<...%> to expand argument pack");
14016 return error_mark_node;
14017
14018 case VOID_CST:
14019 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
14020 return t;
14021
14022 case INTEGER_CST:
14023 case REAL_CST:
14024 case STRING_CST:
14025 case COMPLEX_CST:
14026 {
14027 /* Instantiate any typedefs in the type. */
14028 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14029 r = fold_convert (type, t);
14030 gcc_assert (TREE_CODE (r) == code);
14031 return r;
14032 }
14033
14034 case PTRMEM_CST:
14035 /* These can sometimes show up in a partial instantiation, but never
14036 involve template parms. */
14037 gcc_assert (!uses_template_parms (t));
14038 return t;
14039
14040 default:
14041 /* We shouldn't get here, but keep going if !ENABLE_CHECKING. */
14042 gcc_checking_assert (false);
14043 return t;
14044 }
14045 }
14046
14047 /* Helper function for tsubst_omp_clauses, used for instantiation of
14048 OMP_CLAUSE_DECL of clauses that handles also OpenMP array sections
14049 represented with TREE_LIST. */
14050
14051 static tree
14052 tsubst_omp_clause_decl (tree decl, tree args, tsubst_flags_t complain,
14053 tree in_decl)
14054 {
14055 if (TREE_CODE (decl) == TREE_LIST)
14056 {
14057 tree low_bound
14058 = tsubst_expr (TREE_PURPOSE (decl), args, complain, in_decl,
14059 /*integral_constant_expression_p=*/false);
14060 tree length = tsubst_expr (TREE_VALUE (decl), args, complain, in_decl,
14061 /*integral_constant_expression_p=*/false);
14062 tree chain = tsubst_omp_clause_decl (TREE_CHAIN (decl), args, complain,
14063 in_decl);
14064 if (TREE_PURPOSE (decl) == low_bound
14065 && TREE_VALUE (decl) == length
14066 && TREE_CHAIN (decl) == chain)
14067 return decl;
14068 return tree_cons (low_bound, length, chain);
14069 }
14070 return tsubst_copy (decl, args, complain, in_decl);
14071 }
14072
14073 /* Like tsubst_copy, but specifically for OpenMP clauses. */
14074
14075 static tree
14076 tsubst_omp_clauses (tree clauses, bool declare_simd,
14077 tree args, tsubst_flags_t complain, tree in_decl)
14078 {
14079 tree new_clauses = NULL, nc, oc;
14080
14081 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
14082 {
14083 nc = copy_node (oc);
14084 OMP_CLAUSE_CHAIN (nc) = new_clauses;
14085 new_clauses = nc;
14086
14087 switch (OMP_CLAUSE_CODE (nc))
14088 {
14089 case OMP_CLAUSE_LASTPRIVATE:
14090 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
14091 {
14092 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
14093 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
14094 in_decl, /*integral_constant_expression_p=*/false);
14095 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
14096 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
14097 }
14098 /* FALLTHRU */
14099 case OMP_CLAUSE_PRIVATE:
14100 case OMP_CLAUSE_SHARED:
14101 case OMP_CLAUSE_FIRSTPRIVATE:
14102 case OMP_CLAUSE_COPYIN:
14103 case OMP_CLAUSE_COPYPRIVATE:
14104 case OMP_CLAUSE_UNIFORM:
14105 OMP_CLAUSE_DECL (nc) = tsubst_copy (OMP_CLAUSE_DECL (oc), args,
14106 complain, in_decl);
14107 break;
14108 case OMP_CLAUSE_DEPEND:
14109 case OMP_CLAUSE_FROM:
14110 case OMP_CLAUSE_TO:
14111 case OMP_CLAUSE_MAP:
14112 OMP_CLAUSE_DECL (nc)
14113 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14114 in_decl);
14115 break;
14116 case OMP_CLAUSE_IF:
14117 case OMP_CLAUSE_NUM_THREADS:
14118 case OMP_CLAUSE_SCHEDULE:
14119 case OMP_CLAUSE_COLLAPSE:
14120 case OMP_CLAUSE_FINAL:
14121 case OMP_CLAUSE_DEVICE:
14122 case OMP_CLAUSE_DIST_SCHEDULE:
14123 case OMP_CLAUSE_NUM_TEAMS:
14124 case OMP_CLAUSE_THREAD_LIMIT:
14125 case OMP_CLAUSE_SAFELEN:
14126 case OMP_CLAUSE_SIMDLEN:
14127 OMP_CLAUSE_OPERAND (nc, 0)
14128 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
14129 in_decl, /*integral_constant_expression_p=*/false);
14130 break;
14131 case OMP_CLAUSE_REDUCTION:
14132 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
14133 {
14134 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
14135 if (TREE_CODE (placeholder) == SCOPE_REF)
14136 {
14137 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
14138 complain, in_decl);
14139 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
14140 = build_qualified_name (NULL_TREE, scope,
14141 TREE_OPERAND (placeholder, 1),
14142 false);
14143 }
14144 else
14145 gcc_assert (identifier_p (placeholder));
14146 }
14147 OMP_CLAUSE_DECL (nc) = tsubst_copy (OMP_CLAUSE_DECL (oc), args,
14148 complain, in_decl);
14149 break;
14150 case OMP_CLAUSE_LINEAR:
14151 case OMP_CLAUSE_ALIGNED:
14152 OMP_CLAUSE_DECL (nc) = tsubst_copy (OMP_CLAUSE_DECL (oc), args,
14153 complain, in_decl);
14154 OMP_CLAUSE_OPERAND (nc, 1)
14155 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
14156 in_decl, /*integral_constant_expression_p=*/false);
14157 break;
14158 case OMP_CLAUSE_NOWAIT:
14159 case OMP_CLAUSE_ORDERED:
14160 case OMP_CLAUSE_DEFAULT:
14161 case OMP_CLAUSE_UNTIED:
14162 case OMP_CLAUSE_MERGEABLE:
14163 case OMP_CLAUSE_INBRANCH:
14164 case OMP_CLAUSE_NOTINBRANCH:
14165 case OMP_CLAUSE_PROC_BIND:
14166 case OMP_CLAUSE_FOR:
14167 case OMP_CLAUSE_PARALLEL:
14168 case OMP_CLAUSE_SECTIONS:
14169 case OMP_CLAUSE_TASKGROUP:
14170 break;
14171 default:
14172 gcc_unreachable ();
14173 }
14174 }
14175
14176 new_clauses = nreverse (new_clauses);
14177 if (!declare_simd)
14178 new_clauses = finish_omp_clauses (new_clauses);
14179 return new_clauses;
14180 }
14181
14182 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
14183
14184 static tree
14185 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
14186 tree in_decl)
14187 {
14188 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
14189
14190 tree purpose, value, chain;
14191
14192 if (t == NULL)
14193 return t;
14194
14195 if (TREE_CODE (t) != TREE_LIST)
14196 return tsubst_copy_and_build (t, args, complain, in_decl,
14197 /*function_p=*/false,
14198 /*integral_constant_expression_p=*/false);
14199
14200 if (t == void_list_node)
14201 return t;
14202
14203 purpose = TREE_PURPOSE (t);
14204 if (purpose)
14205 purpose = RECUR (purpose);
14206 value = TREE_VALUE (t);
14207 if (value)
14208 {
14209 if (TREE_CODE (value) != LABEL_DECL)
14210 value = RECUR (value);
14211 else
14212 {
14213 value = lookup_label (DECL_NAME (value));
14214 gcc_assert (TREE_CODE (value) == LABEL_DECL);
14215 TREE_USED (value) = 1;
14216 }
14217 }
14218 chain = TREE_CHAIN (t);
14219 if (chain && chain != void_type_node)
14220 chain = RECUR (chain);
14221 return tree_cons (purpose, value, chain);
14222 #undef RECUR
14223 }
14224
14225 /* Substitute one OMP_FOR iterator. */
14226
14227 static void
14228 tsubst_omp_for_iterator (tree t, int i, tree declv, tree initv,
14229 tree condv, tree incrv, tree *clauses,
14230 tree args, tsubst_flags_t complain, tree in_decl,
14231 bool integral_constant_expression_p)
14232 {
14233 #define RECUR(NODE) \
14234 tsubst_expr ((NODE), args, complain, in_decl, \
14235 integral_constant_expression_p)
14236 tree decl, init, cond, incr;
14237
14238 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
14239 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
14240 decl = TREE_OPERAND (init, 0);
14241 init = TREE_OPERAND (init, 1);
14242 tree decl_expr = NULL_TREE;
14243 if (init && TREE_CODE (init) == DECL_EXPR)
14244 {
14245 /* We need to jump through some hoops to handle declarations in the
14246 for-init-statement, since we might need to handle auto deduction,
14247 but we need to keep control of initialization. */
14248 decl_expr = init;
14249 init = DECL_INITIAL (DECL_EXPR_DECL (init));
14250 decl = tsubst_decl (decl, args, complain);
14251 }
14252 else
14253 decl = RECUR (decl);
14254 init = RECUR (init);
14255
14256 tree auto_node = type_uses_auto (TREE_TYPE (decl));
14257 if (auto_node && init)
14258 TREE_TYPE (decl)
14259 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
14260
14261 gcc_assert (!type_dependent_expression_p (decl));
14262
14263 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
14264 {
14265 if (decl_expr)
14266 {
14267 /* Declare the variable, but don't let that initialize it. */
14268 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
14269 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
14270 RECUR (decl_expr);
14271 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
14272 }
14273
14274 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
14275 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14276 if (TREE_CODE (incr) == MODIFY_EXPR)
14277 {
14278 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14279 tree rhs = RECUR (TREE_OPERAND (incr, 1));
14280 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
14281 NOP_EXPR, rhs, complain);
14282 }
14283 else
14284 incr = RECUR (incr);
14285 TREE_VEC_ELT (declv, i) = decl;
14286 TREE_VEC_ELT (initv, i) = init;
14287 TREE_VEC_ELT (condv, i) = cond;
14288 TREE_VEC_ELT (incrv, i) = incr;
14289 return;
14290 }
14291
14292 if (decl_expr)
14293 {
14294 /* Declare and initialize the variable. */
14295 RECUR (decl_expr);
14296 init = NULL_TREE;
14297 }
14298 else if (init)
14299 {
14300 tree c;
14301 for (c = *clauses; c ; c = OMP_CLAUSE_CHAIN (c))
14302 {
14303 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
14304 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
14305 && OMP_CLAUSE_DECL (c) == decl)
14306 break;
14307 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
14308 && OMP_CLAUSE_DECL (c) == decl)
14309 error ("iteration variable %qD should not be firstprivate", decl);
14310 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
14311 && OMP_CLAUSE_DECL (c) == decl)
14312 error ("iteration variable %qD should not be reduction", decl);
14313 }
14314 if (c == NULL)
14315 {
14316 c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
14317 OMP_CLAUSE_DECL (c) = decl;
14318 c = finish_omp_clauses (c);
14319 if (c)
14320 {
14321 OMP_CLAUSE_CHAIN (c) = *clauses;
14322 *clauses = c;
14323 }
14324 }
14325 }
14326 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
14327 if (COMPARISON_CLASS_P (cond))
14328 {
14329 tree op0 = RECUR (TREE_OPERAND (cond, 0));
14330 tree op1 = RECUR (TREE_OPERAND (cond, 1));
14331 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
14332 }
14333 else
14334 cond = RECUR (cond);
14335 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14336 switch (TREE_CODE (incr))
14337 {
14338 case PREINCREMENT_EXPR:
14339 case PREDECREMENT_EXPR:
14340 case POSTINCREMENT_EXPR:
14341 case POSTDECREMENT_EXPR:
14342 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
14343 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
14344 break;
14345 case MODIFY_EXPR:
14346 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
14347 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
14348 {
14349 tree rhs = TREE_OPERAND (incr, 1);
14350 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14351 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
14352 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
14353 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14354 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
14355 rhs0, rhs1));
14356 }
14357 else
14358 incr = RECUR (incr);
14359 break;
14360 case MODOP_EXPR:
14361 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
14362 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
14363 {
14364 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14365 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14366 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
14367 TREE_TYPE (decl), lhs,
14368 RECUR (TREE_OPERAND (incr, 2))));
14369 }
14370 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
14371 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
14372 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
14373 {
14374 tree rhs = TREE_OPERAND (incr, 2);
14375 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14376 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
14377 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
14378 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14379 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
14380 rhs0, rhs1));
14381 }
14382 else
14383 incr = RECUR (incr);
14384 break;
14385 default:
14386 incr = RECUR (incr);
14387 break;
14388 }
14389
14390 TREE_VEC_ELT (declv, i) = decl;
14391 TREE_VEC_ELT (initv, i) = init;
14392 TREE_VEC_ELT (condv, i) = cond;
14393 TREE_VEC_ELT (incrv, i) = incr;
14394 #undef RECUR
14395 }
14396
14397 /* Like tsubst_copy for expressions, etc. but also does semantic
14398 processing. */
14399
14400 tree
14401 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
14402 bool integral_constant_expression_p)
14403 {
14404 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
14405 #define RECUR(NODE) \
14406 tsubst_expr ((NODE), args, complain, in_decl, \
14407 integral_constant_expression_p)
14408
14409 tree stmt, tmp;
14410 tree r;
14411 location_t loc;
14412
14413 if (t == NULL_TREE || t == error_mark_node)
14414 return t;
14415
14416 loc = input_location;
14417 if (EXPR_HAS_LOCATION (t))
14418 input_location = EXPR_LOCATION (t);
14419 if (STATEMENT_CODE_P (TREE_CODE (t)))
14420 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
14421
14422 switch (TREE_CODE (t))
14423 {
14424 case STATEMENT_LIST:
14425 {
14426 tree_stmt_iterator i;
14427 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
14428 RECUR (tsi_stmt (i));
14429 break;
14430 }
14431
14432 case CTOR_INITIALIZER:
14433 finish_mem_initializers (tsubst_initializer_list
14434 (TREE_OPERAND (t, 0), args));
14435 break;
14436
14437 case RETURN_EXPR:
14438 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
14439 break;
14440
14441 case EXPR_STMT:
14442 tmp = RECUR (EXPR_STMT_EXPR (t));
14443 if (EXPR_STMT_STMT_EXPR_RESULT (t))
14444 finish_stmt_expr_expr (tmp, cur_stmt_expr);
14445 else
14446 finish_expr_stmt (tmp);
14447 break;
14448
14449 case USING_STMT:
14450 do_using_directive (USING_STMT_NAMESPACE (t));
14451 break;
14452
14453 case DECL_EXPR:
14454 {
14455 tree decl, pattern_decl;
14456 tree init;
14457
14458 pattern_decl = decl = DECL_EXPR_DECL (t);
14459 if (TREE_CODE (decl) == LABEL_DECL)
14460 finish_label_decl (DECL_NAME (decl));
14461 else if (TREE_CODE (decl) == USING_DECL)
14462 {
14463 tree scope = USING_DECL_SCOPE (decl);
14464 tree name = DECL_NAME (decl);
14465 tree decl;
14466
14467 scope = tsubst (scope, args, complain, in_decl);
14468 decl = lookup_qualified_name (scope, name,
14469 /*is_type_p=*/false,
14470 /*complain=*/false);
14471 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
14472 qualified_name_lookup_error (scope, name, decl, input_location);
14473 else
14474 do_local_using_decl (decl, scope, name);
14475 }
14476 else if (DECL_PACK_P (decl))
14477 {
14478 /* Don't build up decls for a variadic capture proxy, we'll
14479 instantiate the elements directly as needed. */
14480 break;
14481 }
14482 else
14483 {
14484 init = DECL_INITIAL (decl);
14485 decl = tsubst (decl, args, complain, in_decl);
14486 if (decl != error_mark_node)
14487 {
14488 /* By marking the declaration as instantiated, we avoid
14489 trying to instantiate it. Since instantiate_decl can't
14490 handle local variables, and since we've already done
14491 all that needs to be done, that's the right thing to
14492 do. */
14493 if (VAR_P (decl))
14494 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
14495 if (VAR_P (decl)
14496 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
14497 /* Anonymous aggregates are a special case. */
14498 finish_anon_union (decl);
14499 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
14500 {
14501 DECL_CONTEXT (decl) = current_function_decl;
14502 if (DECL_NAME (decl) == this_identifier)
14503 {
14504 tree lam = DECL_CONTEXT (current_function_decl);
14505 lam = CLASSTYPE_LAMBDA_EXPR (lam);
14506 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
14507 }
14508 insert_capture_proxy (decl);
14509 }
14510 else if (DECL_IMPLICIT_TYPEDEF_P (t))
14511 /* We already did a pushtag. */;
14512 else if (TREE_CODE (decl) == FUNCTION_DECL
14513 && DECL_OMP_DECLARE_REDUCTION_P (decl)
14514 && DECL_FUNCTION_SCOPE_P (pattern_decl))
14515 {
14516 DECL_CONTEXT (decl) = NULL_TREE;
14517 pushdecl (decl);
14518 DECL_CONTEXT (decl) = current_function_decl;
14519 cp_check_omp_declare_reduction (decl);
14520 }
14521 else
14522 {
14523 int const_init = false;
14524 maybe_push_decl (decl);
14525 if (VAR_P (decl)
14526 && DECL_PRETTY_FUNCTION_P (decl))
14527 {
14528 /* For __PRETTY_FUNCTION__ we have to adjust the
14529 initializer. */
14530 const char *const name
14531 = cxx_printable_name (current_function_decl, 2);
14532 init = cp_fname_init (name, &TREE_TYPE (decl));
14533 }
14534 else
14535 init = tsubst_init (init, decl, args, complain, in_decl);
14536
14537 if (VAR_P (decl))
14538 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
14539 (pattern_decl));
14540 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
14541 }
14542 }
14543 }
14544
14545 break;
14546 }
14547
14548 case FOR_STMT:
14549 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
14550 RECUR (FOR_INIT_STMT (t));
14551 finish_for_init_stmt (stmt);
14552 tmp = RECUR (FOR_COND (t));
14553 finish_for_cond (tmp, stmt, false);
14554 tmp = RECUR (FOR_EXPR (t));
14555 finish_for_expr (tmp, stmt);
14556 RECUR (FOR_BODY (t));
14557 finish_for_stmt (stmt);
14558 break;
14559
14560 case RANGE_FOR_STMT:
14561 {
14562 tree decl, expr;
14563 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
14564 decl = RANGE_FOR_DECL (t);
14565 decl = tsubst (decl, args, complain, in_decl);
14566 maybe_push_decl (decl);
14567 expr = RECUR (RANGE_FOR_EXPR (t));
14568 stmt = cp_convert_range_for (stmt, decl, expr, RANGE_FOR_IVDEP (t));
14569 RECUR (RANGE_FOR_BODY (t));
14570 finish_for_stmt (stmt);
14571 }
14572 break;
14573
14574 case WHILE_STMT:
14575 stmt = begin_while_stmt ();
14576 tmp = RECUR (WHILE_COND (t));
14577 finish_while_stmt_cond (tmp, stmt, false);
14578 RECUR (WHILE_BODY (t));
14579 finish_while_stmt (stmt);
14580 break;
14581
14582 case DO_STMT:
14583 stmt = begin_do_stmt ();
14584 RECUR (DO_BODY (t));
14585 finish_do_body (stmt);
14586 tmp = RECUR (DO_COND (t));
14587 finish_do_stmt (tmp, stmt, false);
14588 break;
14589
14590 case IF_STMT:
14591 stmt = begin_if_stmt ();
14592 tmp = RECUR (IF_COND (t));
14593 finish_if_stmt_cond (tmp, stmt);
14594 RECUR (THEN_CLAUSE (t));
14595 finish_then_clause (stmt);
14596
14597 if (ELSE_CLAUSE (t))
14598 {
14599 begin_else_clause (stmt);
14600 RECUR (ELSE_CLAUSE (t));
14601 finish_else_clause (stmt);
14602 }
14603
14604 finish_if_stmt (stmt);
14605 break;
14606
14607 case BIND_EXPR:
14608 if (BIND_EXPR_BODY_BLOCK (t))
14609 stmt = begin_function_body ();
14610 else
14611 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
14612 ? BCS_TRY_BLOCK : 0);
14613
14614 RECUR (BIND_EXPR_BODY (t));
14615
14616 if (BIND_EXPR_BODY_BLOCK (t))
14617 finish_function_body (stmt);
14618 else
14619 finish_compound_stmt (stmt);
14620 break;
14621
14622 case BREAK_STMT:
14623 finish_break_stmt ();
14624 break;
14625
14626 case CONTINUE_STMT:
14627 finish_continue_stmt ();
14628 break;
14629
14630 case SWITCH_STMT:
14631 stmt = begin_switch_stmt ();
14632 tmp = RECUR (SWITCH_STMT_COND (t));
14633 finish_switch_cond (tmp, stmt);
14634 RECUR (SWITCH_STMT_BODY (t));
14635 finish_switch_stmt (stmt);
14636 break;
14637
14638 case CASE_LABEL_EXPR:
14639 {
14640 tree low = RECUR (CASE_LOW (t));
14641 tree high = RECUR (CASE_HIGH (t));
14642 finish_case_label (EXPR_LOCATION (t), low, high);
14643 }
14644 break;
14645
14646 case LABEL_EXPR:
14647 {
14648 tree decl = LABEL_EXPR_LABEL (t);
14649 tree label;
14650
14651 label = finish_label_stmt (DECL_NAME (decl));
14652 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
14653 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
14654 }
14655 break;
14656
14657 case GOTO_EXPR:
14658 tmp = GOTO_DESTINATION (t);
14659 if (TREE_CODE (tmp) != LABEL_DECL)
14660 /* Computed goto's must be tsubst'd into. On the other hand,
14661 non-computed gotos must not be; the identifier in question
14662 will have no binding. */
14663 tmp = RECUR (tmp);
14664 else
14665 tmp = DECL_NAME (tmp);
14666 finish_goto_stmt (tmp);
14667 break;
14668
14669 case ASM_EXPR:
14670 {
14671 tree string = RECUR (ASM_STRING (t));
14672 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
14673 complain, in_decl);
14674 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
14675 complain, in_decl);
14676 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
14677 complain, in_decl);
14678 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
14679 complain, in_decl);
14680 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
14681 clobbers, labels);
14682 tree asm_expr = tmp;
14683 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
14684 asm_expr = TREE_OPERAND (asm_expr, 0);
14685 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
14686 }
14687 break;
14688
14689 case TRY_BLOCK:
14690 if (CLEANUP_P (t))
14691 {
14692 stmt = begin_try_block ();
14693 RECUR (TRY_STMTS (t));
14694 finish_cleanup_try_block (stmt);
14695 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
14696 }
14697 else
14698 {
14699 tree compound_stmt = NULL_TREE;
14700
14701 if (FN_TRY_BLOCK_P (t))
14702 stmt = begin_function_try_block (&compound_stmt);
14703 else
14704 stmt = begin_try_block ();
14705
14706 RECUR (TRY_STMTS (t));
14707
14708 if (FN_TRY_BLOCK_P (t))
14709 finish_function_try_block (stmt);
14710 else
14711 finish_try_block (stmt);
14712
14713 RECUR (TRY_HANDLERS (t));
14714 if (FN_TRY_BLOCK_P (t))
14715 finish_function_handler_sequence (stmt, compound_stmt);
14716 else
14717 finish_handler_sequence (stmt);
14718 }
14719 break;
14720
14721 case HANDLER:
14722 {
14723 tree decl = HANDLER_PARMS (t);
14724
14725 if (decl)
14726 {
14727 decl = tsubst (decl, args, complain, in_decl);
14728 /* Prevent instantiate_decl from trying to instantiate
14729 this variable. We've already done all that needs to be
14730 done. */
14731 if (decl != error_mark_node)
14732 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
14733 }
14734 stmt = begin_handler ();
14735 finish_handler_parms (decl, stmt);
14736 RECUR (HANDLER_BODY (t));
14737 finish_handler (stmt);
14738 }
14739 break;
14740
14741 case TAG_DEFN:
14742 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
14743 if (CLASS_TYPE_P (tmp))
14744 {
14745 /* Local classes are not independent templates; they are
14746 instantiated along with their containing function. And this
14747 way we don't have to deal with pushing out of one local class
14748 to instantiate a member of another local class. */
14749 tree fn;
14750 /* Closures are handled by the LAMBDA_EXPR. */
14751 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
14752 complete_type (tmp);
14753 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
14754 if (!DECL_ARTIFICIAL (fn))
14755 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
14756 }
14757 break;
14758
14759 case STATIC_ASSERT:
14760 {
14761 tree condition;
14762
14763 ++c_inhibit_evaluation_warnings;
14764 condition =
14765 tsubst_expr (STATIC_ASSERT_CONDITION (t),
14766 args,
14767 complain, in_decl,
14768 /*integral_constant_expression_p=*/true);
14769 --c_inhibit_evaluation_warnings;
14770
14771 finish_static_assert (condition,
14772 STATIC_ASSERT_MESSAGE (t),
14773 STATIC_ASSERT_SOURCE_LOCATION (t),
14774 /*member_p=*/false);
14775 }
14776 break;
14777
14778 case OMP_PARALLEL:
14779 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), false,
14780 args, complain, in_decl);
14781 stmt = begin_omp_parallel ();
14782 RECUR (OMP_PARALLEL_BODY (t));
14783 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
14784 = OMP_PARALLEL_COMBINED (t);
14785 break;
14786
14787 case OMP_TASK:
14788 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), false,
14789 args, complain, in_decl);
14790 stmt = begin_omp_task ();
14791 RECUR (OMP_TASK_BODY (t));
14792 finish_omp_task (tmp, stmt);
14793 break;
14794
14795 case OMP_FOR:
14796 case OMP_SIMD:
14797 case CILK_SIMD:
14798 case CILK_FOR:
14799 case OMP_DISTRIBUTE:
14800 {
14801 tree clauses, body, pre_body;
14802 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
14803 tree incrv = NULL_TREE;
14804 int i;
14805
14806 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), false,
14807 args, complain, in_decl);
14808 if (OMP_FOR_INIT (t) != NULL_TREE)
14809 {
14810 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14811 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14812 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14813 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14814 }
14815
14816 stmt = begin_omp_structured_block ();
14817
14818 pre_body = push_stmt_list ();
14819 RECUR (OMP_FOR_PRE_BODY (t));
14820 pre_body = pop_stmt_list (pre_body);
14821
14822 if (OMP_FOR_INIT (t) != NULL_TREE)
14823 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
14824 tsubst_omp_for_iterator (t, i, declv, initv, condv, incrv,
14825 &clauses, args, complain, in_decl,
14826 integral_constant_expression_p);
14827
14828 body = push_stmt_list ();
14829 RECUR (OMP_FOR_BODY (t));
14830 body = pop_stmt_list (body);
14831
14832 if (OMP_FOR_INIT (t) != NULL_TREE)
14833 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv, initv,
14834 condv, incrv, body, pre_body, clauses);
14835 else
14836 {
14837 t = make_node (TREE_CODE (t));
14838 TREE_TYPE (t) = void_type_node;
14839 OMP_FOR_BODY (t) = body;
14840 OMP_FOR_PRE_BODY (t) = pre_body;
14841 OMP_FOR_CLAUSES (t) = clauses;
14842 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
14843 add_stmt (t);
14844 }
14845
14846 add_stmt (finish_omp_structured_block (stmt));
14847 }
14848 break;
14849
14850 case OMP_SECTIONS:
14851 case OMP_SINGLE:
14852 case OMP_TEAMS:
14853 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
14854 args, complain, in_decl);
14855 stmt = push_stmt_list ();
14856 RECUR (OMP_BODY (t));
14857 stmt = pop_stmt_list (stmt);
14858
14859 t = copy_node (t);
14860 OMP_BODY (t) = stmt;
14861 OMP_CLAUSES (t) = tmp;
14862 add_stmt (t);
14863 break;
14864
14865 case OMP_TARGET_DATA:
14866 case OMP_TARGET:
14867 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
14868 args, complain, in_decl);
14869 keep_next_level (true);
14870 stmt = begin_omp_structured_block ();
14871
14872 RECUR (OMP_BODY (t));
14873 stmt = finish_omp_structured_block (stmt);
14874
14875 t = copy_node (t);
14876 OMP_BODY (t) = stmt;
14877 OMP_CLAUSES (t) = tmp;
14878 add_stmt (t);
14879 break;
14880
14881 case OMP_TARGET_UPDATE:
14882 tmp = tsubst_omp_clauses (OMP_TARGET_UPDATE_CLAUSES (t), false,
14883 args, complain, in_decl);
14884 t = copy_node (t);
14885 OMP_TARGET_UPDATE_CLAUSES (t) = tmp;
14886 add_stmt (t);
14887 break;
14888
14889 case OMP_SECTION:
14890 case OMP_CRITICAL:
14891 case OMP_MASTER:
14892 case OMP_TASKGROUP:
14893 case OMP_ORDERED:
14894 stmt = push_stmt_list ();
14895 RECUR (OMP_BODY (t));
14896 stmt = pop_stmt_list (stmt);
14897
14898 t = copy_node (t);
14899 OMP_BODY (t) = stmt;
14900 add_stmt (t);
14901 break;
14902
14903 case OMP_ATOMIC:
14904 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
14905 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
14906 {
14907 tree op1 = TREE_OPERAND (t, 1);
14908 tree rhs1 = NULL_TREE;
14909 tree lhs, rhs;
14910 if (TREE_CODE (op1) == COMPOUND_EXPR)
14911 {
14912 rhs1 = RECUR (TREE_OPERAND (op1, 0));
14913 op1 = TREE_OPERAND (op1, 1);
14914 }
14915 lhs = RECUR (TREE_OPERAND (op1, 0));
14916 rhs = RECUR (TREE_OPERAND (op1, 1));
14917 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
14918 NULL_TREE, NULL_TREE, rhs1,
14919 OMP_ATOMIC_SEQ_CST (t));
14920 }
14921 else
14922 {
14923 tree op1 = TREE_OPERAND (t, 1);
14924 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
14925 tree rhs1 = NULL_TREE;
14926 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
14927 enum tree_code opcode = NOP_EXPR;
14928 if (code == OMP_ATOMIC_READ)
14929 {
14930 v = RECUR (TREE_OPERAND (op1, 0));
14931 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
14932 }
14933 else if (code == OMP_ATOMIC_CAPTURE_OLD
14934 || code == OMP_ATOMIC_CAPTURE_NEW)
14935 {
14936 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
14937 v = RECUR (TREE_OPERAND (op1, 0));
14938 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
14939 if (TREE_CODE (op11) == COMPOUND_EXPR)
14940 {
14941 rhs1 = RECUR (TREE_OPERAND (op11, 0));
14942 op11 = TREE_OPERAND (op11, 1);
14943 }
14944 lhs = RECUR (TREE_OPERAND (op11, 0));
14945 rhs = RECUR (TREE_OPERAND (op11, 1));
14946 opcode = TREE_CODE (op11);
14947 if (opcode == MODIFY_EXPR)
14948 opcode = NOP_EXPR;
14949 }
14950 else
14951 {
14952 code = OMP_ATOMIC;
14953 lhs = RECUR (TREE_OPERAND (op1, 0));
14954 rhs = RECUR (TREE_OPERAND (op1, 1));
14955 }
14956 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
14957 OMP_ATOMIC_SEQ_CST (t));
14958 }
14959 break;
14960
14961 case TRANSACTION_EXPR:
14962 {
14963 int flags = 0;
14964 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
14965 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
14966
14967 if (TRANSACTION_EXPR_IS_STMT (t))
14968 {
14969 tree body = TRANSACTION_EXPR_BODY (t);
14970 tree noex = NULL_TREE;
14971 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
14972 {
14973 noex = MUST_NOT_THROW_COND (body);
14974 if (noex == NULL_TREE)
14975 noex = boolean_true_node;
14976 body = TREE_OPERAND (body, 0);
14977 }
14978 stmt = begin_transaction_stmt (input_location, NULL, flags);
14979 RECUR (body);
14980 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
14981 }
14982 else
14983 {
14984 stmt = build_transaction_expr (EXPR_LOCATION (t),
14985 RECUR (TRANSACTION_EXPR_BODY (t)),
14986 flags, NULL_TREE);
14987 RETURN (stmt);
14988 }
14989 }
14990 break;
14991
14992 case MUST_NOT_THROW_EXPR:
14993 {
14994 tree op0 = RECUR (TREE_OPERAND (t, 0));
14995 tree cond = RECUR (MUST_NOT_THROW_COND (t));
14996 RETURN (build_must_not_throw_expr (op0, cond));
14997 }
14998
14999 case EXPR_PACK_EXPANSION:
15000 error ("invalid use of pack expansion expression");
15001 RETURN (error_mark_node);
15002
15003 case NONTYPE_ARGUMENT_PACK:
15004 error ("use %<...%> to expand argument pack");
15005 RETURN (error_mark_node);
15006
15007 case CILK_SPAWN_STMT:
15008 cfun->calls_cilk_spawn = 1;
15009 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
15010
15011 case CILK_SYNC_STMT:
15012 RETURN (build_cilk_sync ());
15013
15014 case COMPOUND_EXPR:
15015 tmp = RECUR (TREE_OPERAND (t, 0));
15016 if (tmp == NULL_TREE)
15017 /* If the first operand was a statement, we're done with it. */
15018 RETURN (RECUR (TREE_OPERAND (t, 1)));
15019 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
15020 RECUR (TREE_OPERAND (t, 1)),
15021 complain));
15022
15023 case ANNOTATE_EXPR:
15024 tmp = RECUR (TREE_OPERAND (t, 0));
15025 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
15026 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
15027
15028 default:
15029 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
15030
15031 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
15032 /*function_p=*/false,
15033 integral_constant_expression_p));
15034 }
15035
15036 RETURN (NULL_TREE);
15037 out:
15038 input_location = loc;
15039 return r;
15040 #undef RECUR
15041 #undef RETURN
15042 }
15043
15044 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
15045 function. For description of the body see comment above
15046 cp_parser_omp_declare_reduction_exprs. */
15047
15048 static void
15049 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
15050 {
15051 if (t == NULL_TREE || t == error_mark_node)
15052 return;
15053
15054 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
15055
15056 tree_stmt_iterator tsi;
15057 int i;
15058 tree stmts[7];
15059 memset (stmts, 0, sizeof stmts);
15060 for (i = 0, tsi = tsi_start (t);
15061 i < 7 && !tsi_end_p (tsi);
15062 i++, tsi_next (&tsi))
15063 stmts[i] = tsi_stmt (tsi);
15064 gcc_assert (tsi_end_p (tsi));
15065
15066 if (i >= 3)
15067 {
15068 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
15069 && TREE_CODE (stmts[1]) == DECL_EXPR);
15070 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
15071 args, complain, in_decl);
15072 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
15073 args, complain, in_decl);
15074 DECL_CONTEXT (omp_out) = current_function_decl;
15075 DECL_CONTEXT (omp_in) = current_function_decl;
15076 keep_next_level (true);
15077 tree block = begin_omp_structured_block ();
15078 tsubst_expr (stmts[2], args, complain, in_decl, false);
15079 block = finish_omp_structured_block (block);
15080 block = maybe_cleanup_point_expr_void (block);
15081 add_decl_expr (omp_out);
15082 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
15083 TREE_NO_WARNING (omp_out) = 1;
15084 add_decl_expr (omp_in);
15085 finish_expr_stmt (block);
15086 }
15087 if (i >= 6)
15088 {
15089 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
15090 && TREE_CODE (stmts[4]) == DECL_EXPR);
15091 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
15092 args, complain, in_decl);
15093 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
15094 args, complain, in_decl);
15095 DECL_CONTEXT (omp_priv) = current_function_decl;
15096 DECL_CONTEXT (omp_orig) = current_function_decl;
15097 keep_next_level (true);
15098 tree block = begin_omp_structured_block ();
15099 tsubst_expr (stmts[5], args, complain, in_decl, false);
15100 block = finish_omp_structured_block (block);
15101 block = maybe_cleanup_point_expr_void (block);
15102 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
15103 add_decl_expr (omp_priv);
15104 add_decl_expr (omp_orig);
15105 finish_expr_stmt (block);
15106 if (i == 7)
15107 add_decl_expr (omp_orig);
15108 }
15109 }
15110
15111 /* T is a postfix-expression that is not being used in a function
15112 call. Return the substituted version of T. */
15113
15114 static tree
15115 tsubst_non_call_postfix_expression (tree t, tree args,
15116 tsubst_flags_t complain,
15117 tree in_decl)
15118 {
15119 if (TREE_CODE (t) == SCOPE_REF)
15120 t = tsubst_qualified_id (t, args, complain, in_decl,
15121 /*done=*/false, /*address_p=*/false);
15122 else
15123 t = tsubst_copy_and_build (t, args, complain, in_decl,
15124 /*function_p=*/false,
15125 /*integral_constant_expression_p=*/false);
15126
15127 return t;
15128 }
15129
15130 /* Like tsubst but deals with expressions and performs semantic
15131 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
15132
15133 tree
15134 tsubst_copy_and_build (tree t,
15135 tree args,
15136 tsubst_flags_t complain,
15137 tree in_decl,
15138 bool function_p,
15139 bool integral_constant_expression_p)
15140 {
15141 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
15142 #define RECUR(NODE) \
15143 tsubst_copy_and_build (NODE, args, complain, in_decl, \
15144 /*function_p=*/false, \
15145 integral_constant_expression_p)
15146
15147 tree retval, op1;
15148 location_t loc;
15149
15150 if (t == NULL_TREE || t == error_mark_node)
15151 return t;
15152
15153 loc = input_location;
15154 if (EXPR_HAS_LOCATION (t))
15155 input_location = EXPR_LOCATION (t);
15156
15157 /* N3276 decltype magic only applies to calls at the top level or on the
15158 right side of a comma. */
15159 tsubst_flags_t decltype_flag = (complain & tf_decltype);
15160 complain &= ~tf_decltype;
15161
15162 switch (TREE_CODE (t))
15163 {
15164 case USING_DECL:
15165 t = DECL_NAME (t);
15166 /* Fall through. */
15167 case IDENTIFIER_NODE:
15168 {
15169 tree decl;
15170 cp_id_kind idk;
15171 bool non_integral_constant_expression_p;
15172 const char *error_msg;
15173
15174 if (IDENTIFIER_TYPENAME_P (t))
15175 {
15176 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15177 t = mangle_conv_op_name_for_type (new_type);
15178 }
15179
15180 /* Look up the name. */
15181 decl = lookup_name (t);
15182
15183 /* By convention, expressions use ERROR_MARK_NODE to indicate
15184 failure, not NULL_TREE. */
15185 if (decl == NULL_TREE)
15186 decl = error_mark_node;
15187
15188 decl = finish_id_expression (t, decl, NULL_TREE,
15189 &idk,
15190 integral_constant_expression_p,
15191 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
15192 &non_integral_constant_expression_p,
15193 /*template_p=*/false,
15194 /*done=*/true,
15195 /*address_p=*/false,
15196 /*template_arg_p=*/false,
15197 &error_msg,
15198 input_location);
15199 if (error_msg)
15200 error (error_msg);
15201 if (!function_p && identifier_p (decl))
15202 {
15203 if (complain & tf_error)
15204 unqualified_name_lookup_error (decl);
15205 decl = error_mark_node;
15206 }
15207 RETURN (decl);
15208 }
15209
15210 case TEMPLATE_ID_EXPR:
15211 {
15212 tree object;
15213 tree templ = RECUR (TREE_OPERAND (t, 0));
15214 tree targs = TREE_OPERAND (t, 1);
15215
15216 if (targs)
15217 targs = tsubst_template_args (targs, args, complain, in_decl);
15218 if (targs == error_mark_node)
15219 return error_mark_node;
15220
15221 if (variable_template_p (templ))
15222 {
15223 templ = lookup_template_variable (templ, targs);
15224 if (!any_dependent_template_arguments_p (targs))
15225 {
15226 templ = finish_template_variable (templ, complain);
15227 mark_used (templ);
15228 }
15229 RETURN (convert_from_reference (templ));
15230 }
15231
15232 if (TREE_CODE (templ) == COMPONENT_REF)
15233 {
15234 object = TREE_OPERAND (templ, 0);
15235 templ = TREE_OPERAND (templ, 1);
15236 }
15237 else
15238 object = NULL_TREE;
15239 templ = lookup_template_function (templ, targs);
15240
15241 if (object)
15242 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
15243 object, templ, NULL_TREE));
15244 else
15245 RETURN (baselink_for_fns (templ));
15246 }
15247
15248 case INDIRECT_REF:
15249 {
15250 tree r = RECUR (TREE_OPERAND (t, 0));
15251
15252 if (REFERENCE_REF_P (t))
15253 {
15254 /* A type conversion to reference type will be enclosed in
15255 such an indirect ref, but the substitution of the cast
15256 will have also added such an indirect ref. */
15257 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
15258 r = convert_from_reference (r);
15259 }
15260 else
15261 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
15262 complain|decltype_flag);
15263 RETURN (r);
15264 }
15265
15266 case NOP_EXPR:
15267 {
15268 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15269 tree op0 = RECUR (TREE_OPERAND (t, 0));
15270 RETURN (build_nop (type, op0));
15271 }
15272
15273 case IMPLICIT_CONV_EXPR:
15274 {
15275 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15276 tree expr = RECUR (TREE_OPERAND (t, 0));
15277 int flags = LOOKUP_IMPLICIT;
15278 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
15279 flags = LOOKUP_NORMAL;
15280 RETURN (perform_implicit_conversion_flags (type, expr, complain,
15281 flags));
15282 }
15283
15284 case CONVERT_EXPR:
15285 {
15286 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15287 tree op0 = RECUR (TREE_OPERAND (t, 0));
15288 RETURN (build1 (CONVERT_EXPR, type, op0));
15289 }
15290
15291 case CAST_EXPR:
15292 case REINTERPRET_CAST_EXPR:
15293 case CONST_CAST_EXPR:
15294 case DYNAMIC_CAST_EXPR:
15295 case STATIC_CAST_EXPR:
15296 {
15297 tree type;
15298 tree op, r = NULL_TREE;
15299
15300 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15301 if (integral_constant_expression_p
15302 && !cast_valid_in_integral_constant_expression_p (type))
15303 {
15304 if (complain & tf_error)
15305 error ("a cast to a type other than an integral or "
15306 "enumeration type cannot appear in a constant-expression");
15307 RETURN (error_mark_node);
15308 }
15309
15310 op = RECUR (TREE_OPERAND (t, 0));
15311
15312 warning_sentinel s(warn_useless_cast);
15313 switch (TREE_CODE (t))
15314 {
15315 case CAST_EXPR:
15316 r = build_functional_cast (type, op, complain);
15317 break;
15318 case REINTERPRET_CAST_EXPR:
15319 r = build_reinterpret_cast (type, op, complain);
15320 break;
15321 case CONST_CAST_EXPR:
15322 r = build_const_cast (type, op, complain);
15323 break;
15324 case DYNAMIC_CAST_EXPR:
15325 r = build_dynamic_cast (type, op, complain);
15326 break;
15327 case STATIC_CAST_EXPR:
15328 r = build_static_cast (type, op, complain);
15329 break;
15330 default:
15331 gcc_unreachable ();
15332 }
15333
15334 RETURN (r);
15335 }
15336
15337 case POSTDECREMENT_EXPR:
15338 case POSTINCREMENT_EXPR:
15339 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
15340 args, complain, in_decl);
15341 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
15342 complain|decltype_flag));
15343
15344 case PREDECREMENT_EXPR:
15345 case PREINCREMENT_EXPR:
15346 case NEGATE_EXPR:
15347 case BIT_NOT_EXPR:
15348 case ABS_EXPR:
15349 case TRUTH_NOT_EXPR:
15350 case UNARY_PLUS_EXPR: /* Unary + */
15351 case REALPART_EXPR:
15352 case IMAGPART_EXPR:
15353 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
15354 RECUR (TREE_OPERAND (t, 0)),
15355 complain|decltype_flag));
15356
15357 case FIX_TRUNC_EXPR:
15358 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
15359 0, complain));
15360
15361 case ADDR_EXPR:
15362 op1 = TREE_OPERAND (t, 0);
15363 if (TREE_CODE (op1) == LABEL_DECL)
15364 RETURN (finish_label_address_expr (DECL_NAME (op1),
15365 EXPR_LOCATION (op1)));
15366 if (TREE_CODE (op1) == SCOPE_REF)
15367 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
15368 /*done=*/true, /*address_p=*/true);
15369 else
15370 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
15371 in_decl);
15372 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
15373 complain|decltype_flag));
15374
15375 case PLUS_EXPR:
15376 case MINUS_EXPR:
15377 case MULT_EXPR:
15378 case TRUNC_DIV_EXPR:
15379 case CEIL_DIV_EXPR:
15380 case FLOOR_DIV_EXPR:
15381 case ROUND_DIV_EXPR:
15382 case EXACT_DIV_EXPR:
15383 case BIT_AND_EXPR:
15384 case BIT_IOR_EXPR:
15385 case BIT_XOR_EXPR:
15386 case TRUNC_MOD_EXPR:
15387 case FLOOR_MOD_EXPR:
15388 case TRUTH_ANDIF_EXPR:
15389 case TRUTH_ORIF_EXPR:
15390 case TRUTH_AND_EXPR:
15391 case TRUTH_OR_EXPR:
15392 case RSHIFT_EXPR:
15393 case LSHIFT_EXPR:
15394 case RROTATE_EXPR:
15395 case LROTATE_EXPR:
15396 case EQ_EXPR:
15397 case NE_EXPR:
15398 case MAX_EXPR:
15399 case MIN_EXPR:
15400 case LE_EXPR:
15401 case GE_EXPR:
15402 case LT_EXPR:
15403 case GT_EXPR:
15404 case MEMBER_REF:
15405 case DOTSTAR_EXPR:
15406 {
15407 warning_sentinel s1(warn_type_limits);
15408 warning_sentinel s2(warn_div_by_zero);
15409 warning_sentinel s3(warn_logical_op);
15410 warning_sentinel s4(warn_tautological_compare);
15411 tree op0 = RECUR (TREE_OPERAND (t, 0));
15412 tree op1 = RECUR (TREE_OPERAND (t, 1));
15413 tree r = build_x_binary_op
15414 (input_location, TREE_CODE (t),
15415 op0,
15416 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
15417 ? ERROR_MARK
15418 : TREE_CODE (TREE_OPERAND (t, 0))),
15419 op1,
15420 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
15421 ? ERROR_MARK
15422 : TREE_CODE (TREE_OPERAND (t, 1))),
15423 /*overload=*/NULL,
15424 complain|decltype_flag);
15425 if (EXPR_P (r) && TREE_NO_WARNING (t))
15426 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
15427
15428 RETURN (r);
15429 }
15430
15431 case POINTER_PLUS_EXPR:
15432 {
15433 tree op0 = RECUR (TREE_OPERAND (t, 0));
15434 tree op1 = RECUR (TREE_OPERAND (t, 1));
15435 return fold_build_pointer_plus (op0, op1);
15436 }
15437
15438 case SCOPE_REF:
15439 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
15440 /*address_p=*/false));
15441 case ARRAY_REF:
15442 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
15443 args, complain, in_decl);
15444 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
15445 RECUR (TREE_OPERAND (t, 1)),
15446 complain|decltype_flag));
15447
15448 case ARRAY_NOTATION_REF:
15449 {
15450 tree start_index, length, stride;
15451 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
15452 args, complain, in_decl);
15453 start_index = RECUR (ARRAY_NOTATION_START (t));
15454 length = RECUR (ARRAY_NOTATION_LENGTH (t));
15455 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
15456 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
15457 length, stride, TREE_TYPE (op1)));
15458 }
15459 case SIZEOF_EXPR:
15460 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
15461 RETURN (tsubst_copy (t, args, complain, in_decl));
15462 /* Fall through */
15463
15464 case ALIGNOF_EXPR:
15465 {
15466 tree r;
15467
15468 op1 = TREE_OPERAND (t, 0);
15469 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
15470 op1 = TREE_TYPE (op1);
15471 if (!args)
15472 {
15473 /* When there are no ARGS, we are trying to evaluate a
15474 non-dependent expression from the parser. Trying to do
15475 the substitutions may not work. */
15476 if (!TYPE_P (op1))
15477 op1 = TREE_TYPE (op1);
15478 }
15479 else
15480 {
15481 ++cp_unevaluated_operand;
15482 ++c_inhibit_evaluation_warnings;
15483 if (TYPE_P (op1))
15484 op1 = tsubst (op1, args, complain, in_decl);
15485 else
15486 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
15487 /*function_p=*/false,
15488 /*integral_constant_expression_p=*/
15489 false);
15490 --cp_unevaluated_operand;
15491 --c_inhibit_evaluation_warnings;
15492 }
15493 if (TYPE_P (op1))
15494 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
15495 complain & tf_error);
15496 else
15497 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
15498 complain & tf_error);
15499 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
15500 {
15501 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
15502 {
15503 if (!processing_template_decl && TYPE_P (op1))
15504 {
15505 r = build_min (SIZEOF_EXPR, size_type_node,
15506 build1 (NOP_EXPR, op1, error_mark_node));
15507 SIZEOF_EXPR_TYPE_P (r) = 1;
15508 }
15509 else
15510 r = build_min (SIZEOF_EXPR, size_type_node, op1);
15511 TREE_SIDE_EFFECTS (r) = 0;
15512 TREE_READONLY (r) = 1;
15513 }
15514 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
15515 }
15516 RETURN (r);
15517 }
15518
15519 case AT_ENCODE_EXPR:
15520 {
15521 op1 = TREE_OPERAND (t, 0);
15522 ++cp_unevaluated_operand;
15523 ++c_inhibit_evaluation_warnings;
15524 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
15525 /*function_p=*/false,
15526 /*integral_constant_expression_p=*/false);
15527 --cp_unevaluated_operand;
15528 --c_inhibit_evaluation_warnings;
15529 RETURN (objc_build_encode_expr (op1));
15530 }
15531
15532 case NOEXCEPT_EXPR:
15533 op1 = TREE_OPERAND (t, 0);
15534 ++cp_unevaluated_operand;
15535 ++c_inhibit_evaluation_warnings;
15536 ++cp_noexcept_operand;
15537 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
15538 /*function_p=*/false,
15539 /*integral_constant_expression_p=*/false);
15540 --cp_unevaluated_operand;
15541 --c_inhibit_evaluation_warnings;
15542 --cp_noexcept_operand;
15543 RETURN (finish_noexcept_expr (op1, complain));
15544
15545 case MODOP_EXPR:
15546 {
15547 warning_sentinel s(warn_div_by_zero);
15548 tree lhs = RECUR (TREE_OPERAND (t, 0));
15549 tree rhs = RECUR (TREE_OPERAND (t, 2));
15550 tree r = build_x_modify_expr
15551 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
15552 complain|decltype_flag);
15553 /* TREE_NO_WARNING must be set if either the expression was
15554 parenthesized or it uses an operator such as >>= rather
15555 than plain assignment. In the former case, it was already
15556 set and must be copied. In the latter case,
15557 build_x_modify_expr sets it and it must not be reset
15558 here. */
15559 if (TREE_NO_WARNING (t))
15560 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
15561
15562 RETURN (r);
15563 }
15564
15565 case ARROW_EXPR:
15566 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
15567 args, complain, in_decl);
15568 /* Remember that there was a reference to this entity. */
15569 if (DECL_P (op1)
15570 && !mark_used (op1, complain) && !(complain & tf_error))
15571 RETURN (error_mark_node);
15572 RETURN (build_x_arrow (input_location, op1, complain));
15573
15574 case NEW_EXPR:
15575 {
15576 tree placement = RECUR (TREE_OPERAND (t, 0));
15577 tree init = RECUR (TREE_OPERAND (t, 3));
15578 vec<tree, va_gc> *placement_vec;
15579 vec<tree, va_gc> *init_vec;
15580 tree ret;
15581
15582 if (placement == NULL_TREE)
15583 placement_vec = NULL;
15584 else
15585 {
15586 placement_vec = make_tree_vector ();
15587 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
15588 vec_safe_push (placement_vec, TREE_VALUE (placement));
15589 }
15590
15591 /* If there was an initializer in the original tree, but it
15592 instantiated to an empty list, then we should pass a
15593 non-NULL empty vector to tell build_new that it was an
15594 empty initializer() rather than no initializer. This can
15595 only happen when the initializer is a pack expansion whose
15596 parameter packs are of length zero. */
15597 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
15598 init_vec = NULL;
15599 else
15600 {
15601 init_vec = make_tree_vector ();
15602 if (init == void_node)
15603 gcc_assert (init_vec != NULL);
15604 else
15605 {
15606 for (; init != NULL_TREE; init = TREE_CHAIN (init))
15607 vec_safe_push (init_vec, TREE_VALUE (init));
15608 }
15609 }
15610
15611 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
15612 tree op2 = RECUR (TREE_OPERAND (t, 2));
15613 ret = build_new (&placement_vec, op1, op2, &init_vec,
15614 NEW_EXPR_USE_GLOBAL (t),
15615 complain);
15616
15617 if (placement_vec != NULL)
15618 release_tree_vector (placement_vec);
15619 if (init_vec != NULL)
15620 release_tree_vector (init_vec);
15621
15622 RETURN (ret);
15623 }
15624
15625 case DELETE_EXPR:
15626 {
15627 tree op0 = RECUR (TREE_OPERAND (t, 0));
15628 tree op1 = RECUR (TREE_OPERAND (t, 1));
15629 RETURN (delete_sanity (op0, op1,
15630 DELETE_EXPR_USE_VEC (t),
15631 DELETE_EXPR_USE_GLOBAL (t),
15632 complain));
15633 }
15634
15635 case COMPOUND_EXPR:
15636 {
15637 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
15638 complain & ~tf_decltype, in_decl,
15639 /*function_p=*/false,
15640 integral_constant_expression_p);
15641 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
15642 op0,
15643 RECUR (TREE_OPERAND (t, 1)),
15644 complain|decltype_flag));
15645 }
15646
15647 case CALL_EXPR:
15648 {
15649 tree function;
15650 vec<tree, va_gc> *call_args;
15651 unsigned int nargs, i;
15652 bool qualified_p;
15653 bool koenig_p;
15654 tree ret;
15655
15656 function = CALL_EXPR_FN (t);
15657 /* When we parsed the expression, we determined whether or
15658 not Koenig lookup should be performed. */
15659 koenig_p = KOENIG_LOOKUP_P (t);
15660 if (TREE_CODE (function) == SCOPE_REF)
15661 {
15662 qualified_p = true;
15663 function = tsubst_qualified_id (function, args, complain, in_decl,
15664 /*done=*/false,
15665 /*address_p=*/false);
15666 }
15667 else if (koenig_p && identifier_p (function))
15668 {
15669 /* Do nothing; calling tsubst_copy_and_build on an identifier
15670 would incorrectly perform unqualified lookup again.
15671
15672 Note that we can also have an IDENTIFIER_NODE if the earlier
15673 unqualified lookup found a member function; in that case
15674 koenig_p will be false and we do want to do the lookup
15675 again to find the instantiated member function.
15676
15677 FIXME but doing that causes c++/15272, so we need to stop
15678 using IDENTIFIER_NODE in that situation. */
15679 qualified_p = false;
15680 }
15681 else
15682 {
15683 if (TREE_CODE (function) == COMPONENT_REF)
15684 {
15685 tree op = TREE_OPERAND (function, 1);
15686
15687 qualified_p = (TREE_CODE (op) == SCOPE_REF
15688 || (BASELINK_P (op)
15689 && BASELINK_QUALIFIED_P (op)));
15690 }
15691 else
15692 qualified_p = false;
15693
15694 if (TREE_CODE (function) == ADDR_EXPR
15695 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
15696 /* Avoid error about taking the address of a constructor. */
15697 function = TREE_OPERAND (function, 0);
15698
15699 function = tsubst_copy_and_build (function, args, complain,
15700 in_decl,
15701 !qualified_p,
15702 integral_constant_expression_p);
15703
15704 if (BASELINK_P (function))
15705 qualified_p = true;
15706 }
15707
15708 nargs = call_expr_nargs (t);
15709 call_args = make_tree_vector ();
15710 for (i = 0; i < nargs; ++i)
15711 {
15712 tree arg = CALL_EXPR_ARG (t, i);
15713
15714 if (!PACK_EXPANSION_P (arg))
15715 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
15716 else
15717 {
15718 /* Expand the pack expansion and push each entry onto
15719 CALL_ARGS. */
15720 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
15721 if (TREE_CODE (arg) == TREE_VEC)
15722 {
15723 unsigned int len, j;
15724
15725 len = TREE_VEC_LENGTH (arg);
15726 for (j = 0; j < len; ++j)
15727 {
15728 tree value = TREE_VEC_ELT (arg, j);
15729 if (value != NULL_TREE)
15730 value = convert_from_reference (value);
15731 vec_safe_push (call_args, value);
15732 }
15733 }
15734 else
15735 {
15736 /* A partial substitution. Add one entry. */
15737 vec_safe_push (call_args, arg);
15738 }
15739 }
15740 }
15741
15742 /* We do not perform argument-dependent lookup if normal
15743 lookup finds a non-function, in accordance with the
15744 expected resolution of DR 218. */
15745 if (koenig_p
15746 && ((is_overloaded_fn (function)
15747 /* If lookup found a member function, the Koenig lookup is
15748 not appropriate, even if an unqualified-name was used
15749 to denote the function. */
15750 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
15751 || identifier_p (function))
15752 /* Only do this when substitution turns a dependent call
15753 into a non-dependent call. */
15754 && type_dependent_expression_p_push (t)
15755 && !any_type_dependent_arguments_p (call_args))
15756 function = perform_koenig_lookup (function, call_args, tf_none);
15757
15758 if (identifier_p (function)
15759 && !any_type_dependent_arguments_p (call_args))
15760 {
15761 if (koenig_p && (complain & tf_warning_or_error))
15762 {
15763 /* For backwards compatibility and good diagnostics, try
15764 the unqualified lookup again if we aren't in SFINAE
15765 context. */
15766 tree unq = (tsubst_copy_and_build
15767 (function, args, complain, in_decl, true,
15768 integral_constant_expression_p));
15769 if (unq == error_mark_node)
15770 RETURN (error_mark_node);
15771
15772 if (unq != function)
15773 {
15774 tree fn = unq;
15775 if (INDIRECT_REF_P (fn))
15776 fn = TREE_OPERAND (fn, 0);
15777 if (TREE_CODE (fn) == COMPONENT_REF)
15778 fn = TREE_OPERAND (fn, 1);
15779 if (is_overloaded_fn (fn))
15780 fn = get_first_fn (fn);
15781 if (permerror (EXPR_LOC_OR_LOC (t, input_location),
15782 "%qD was not declared in this scope, "
15783 "and no declarations were found by "
15784 "argument-dependent lookup at the point "
15785 "of instantiation", function))
15786 {
15787 if (!DECL_P (fn))
15788 /* Can't say anything more. */;
15789 else if (DECL_CLASS_SCOPE_P (fn))
15790 {
15791 location_t loc = EXPR_LOC_OR_LOC (t,
15792 input_location);
15793 inform (loc,
15794 "declarations in dependent base %qT are "
15795 "not found by unqualified lookup",
15796 DECL_CLASS_CONTEXT (fn));
15797 if (current_class_ptr)
15798 inform (loc,
15799 "use %<this->%D%> instead", function);
15800 else
15801 inform (loc,
15802 "use %<%T::%D%> instead",
15803 current_class_name, function);
15804 }
15805 else
15806 inform (DECL_SOURCE_LOCATION (fn),
15807 "%qD declared here, later in the "
15808 "translation unit", fn);
15809 }
15810 function = unq;
15811 }
15812 }
15813 if (identifier_p (function))
15814 {
15815 if (complain & tf_error)
15816 unqualified_name_lookup_error (function);
15817 release_tree_vector (call_args);
15818 RETURN (error_mark_node);
15819 }
15820 }
15821
15822 /* Remember that there was a reference to this entity. */
15823 if (DECL_P (function)
15824 && !mark_used (function, complain) && !(complain & tf_error))
15825 RETURN (error_mark_node);
15826
15827 /* Put back tf_decltype for the actual call. */
15828 complain |= decltype_flag;
15829
15830 if (TREE_CODE (function) == OFFSET_REF)
15831 ret = build_offset_ref_call_from_tree (function, &call_args,
15832 complain);
15833 else if (TREE_CODE (function) == COMPONENT_REF)
15834 {
15835 tree instance = TREE_OPERAND (function, 0);
15836 tree fn = TREE_OPERAND (function, 1);
15837
15838 if (processing_template_decl
15839 && (type_dependent_expression_p (instance)
15840 || (!BASELINK_P (fn)
15841 && TREE_CODE (fn) != FIELD_DECL)
15842 || type_dependent_expression_p (fn)
15843 || any_type_dependent_arguments_p (call_args)))
15844 ret = build_nt_call_vec (function, call_args);
15845 else if (!BASELINK_P (fn))
15846 ret = finish_call_expr (function, &call_args,
15847 /*disallow_virtual=*/false,
15848 /*koenig_p=*/false,
15849 complain);
15850 else
15851 ret = (build_new_method_call
15852 (instance, fn,
15853 &call_args, NULL_TREE,
15854 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
15855 /*fn_p=*/NULL,
15856 complain));
15857 }
15858 else
15859 ret = finish_call_expr (function, &call_args,
15860 /*disallow_virtual=*/qualified_p,
15861 koenig_p,
15862 complain);
15863
15864 release_tree_vector (call_args);
15865
15866 RETURN (ret);
15867 }
15868
15869 case COND_EXPR:
15870 {
15871 tree cond = RECUR (TREE_OPERAND (t, 0));
15872 tree folded_cond = fold_non_dependent_expr (cond);
15873 tree exp1, exp2;
15874
15875 if (TREE_CODE (folded_cond) == INTEGER_CST)
15876 {
15877 if (integer_zerop (folded_cond))
15878 {
15879 ++c_inhibit_evaluation_warnings;
15880 exp1 = RECUR (TREE_OPERAND (t, 1));
15881 --c_inhibit_evaluation_warnings;
15882 exp2 = RECUR (TREE_OPERAND (t, 2));
15883 }
15884 else
15885 {
15886 exp1 = RECUR (TREE_OPERAND (t, 1));
15887 ++c_inhibit_evaluation_warnings;
15888 exp2 = RECUR (TREE_OPERAND (t, 2));
15889 --c_inhibit_evaluation_warnings;
15890 }
15891 cond = folded_cond;
15892 }
15893 else
15894 {
15895 exp1 = RECUR (TREE_OPERAND (t, 1));
15896 exp2 = RECUR (TREE_OPERAND (t, 2));
15897 }
15898
15899 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
15900 cond, exp1, exp2, complain));
15901 }
15902
15903 case PSEUDO_DTOR_EXPR:
15904 {
15905 tree op0 = RECUR (TREE_OPERAND (t, 0));
15906 tree op1 = RECUR (TREE_OPERAND (t, 1));
15907 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
15908 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
15909 input_location));
15910 }
15911
15912 case TREE_LIST:
15913 {
15914 tree purpose, value, chain;
15915
15916 if (t == void_list_node)
15917 RETURN (t);
15918
15919 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
15920 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
15921 {
15922 /* We have pack expansions, so expand those and
15923 create a new list out of it. */
15924 tree purposevec = NULL_TREE;
15925 tree valuevec = NULL_TREE;
15926 tree chain;
15927 int i, len = -1;
15928
15929 /* Expand the argument expressions. */
15930 if (TREE_PURPOSE (t))
15931 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
15932 complain, in_decl);
15933 if (TREE_VALUE (t))
15934 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
15935 complain, in_decl);
15936
15937 /* Build the rest of the list. */
15938 chain = TREE_CHAIN (t);
15939 if (chain && chain != void_type_node)
15940 chain = RECUR (chain);
15941
15942 /* Determine the number of arguments. */
15943 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
15944 {
15945 len = TREE_VEC_LENGTH (purposevec);
15946 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
15947 }
15948 else if (TREE_CODE (valuevec) == TREE_VEC)
15949 len = TREE_VEC_LENGTH (valuevec);
15950 else
15951 {
15952 /* Since we only performed a partial substitution into
15953 the argument pack, we only RETURN (a single list
15954 node. */
15955 if (purposevec == TREE_PURPOSE (t)
15956 && valuevec == TREE_VALUE (t)
15957 && chain == TREE_CHAIN (t))
15958 RETURN (t);
15959
15960 RETURN (tree_cons (purposevec, valuevec, chain));
15961 }
15962
15963 /* Convert the argument vectors into a TREE_LIST */
15964 i = len;
15965 while (i > 0)
15966 {
15967 /* Grab the Ith values. */
15968 i--;
15969 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
15970 : NULL_TREE;
15971 value
15972 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
15973 : NULL_TREE;
15974
15975 /* Build the list (backwards). */
15976 chain = tree_cons (purpose, value, chain);
15977 }
15978
15979 RETURN (chain);
15980 }
15981
15982 purpose = TREE_PURPOSE (t);
15983 if (purpose)
15984 purpose = RECUR (purpose);
15985 value = TREE_VALUE (t);
15986 if (value)
15987 value = RECUR (value);
15988 chain = TREE_CHAIN (t);
15989 if (chain && chain != void_type_node)
15990 chain = RECUR (chain);
15991 if (purpose == TREE_PURPOSE (t)
15992 && value == TREE_VALUE (t)
15993 && chain == TREE_CHAIN (t))
15994 RETURN (t);
15995 RETURN (tree_cons (purpose, value, chain));
15996 }
15997
15998 case COMPONENT_REF:
15999 {
16000 tree object;
16001 tree object_type;
16002 tree member;
16003 tree r;
16004
16005 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16006 args, complain, in_decl);
16007 /* Remember that there was a reference to this entity. */
16008 if (DECL_P (object)
16009 && !mark_used (object, complain) && !(complain & tf_error))
16010 RETURN (error_mark_node);
16011 object_type = TREE_TYPE (object);
16012
16013 member = TREE_OPERAND (t, 1);
16014 if (BASELINK_P (member))
16015 member = tsubst_baselink (member,
16016 non_reference (TREE_TYPE (object)),
16017 args, complain, in_decl);
16018 else
16019 member = tsubst_copy (member, args, complain, in_decl);
16020 if (member == error_mark_node)
16021 RETURN (error_mark_node);
16022
16023 if (type_dependent_expression_p (object))
16024 /* We can't do much here. */;
16025 else if (!CLASS_TYPE_P (object_type))
16026 {
16027 if (scalarish_type_p (object_type))
16028 {
16029 tree s = NULL_TREE;
16030 tree dtor = member;
16031
16032 if (TREE_CODE (dtor) == SCOPE_REF)
16033 {
16034 s = TREE_OPERAND (dtor, 0);
16035 dtor = TREE_OPERAND (dtor, 1);
16036 }
16037 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
16038 {
16039 dtor = TREE_OPERAND (dtor, 0);
16040 if (TYPE_P (dtor))
16041 RETURN (finish_pseudo_destructor_expr
16042 (object, s, dtor, input_location));
16043 }
16044 }
16045 }
16046 else if (TREE_CODE (member) == SCOPE_REF
16047 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
16048 {
16049 /* Lookup the template functions now that we know what the
16050 scope is. */
16051 tree scope = TREE_OPERAND (member, 0);
16052 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
16053 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
16054 member = lookup_qualified_name (scope, tmpl,
16055 /*is_type_p=*/false,
16056 /*complain=*/false);
16057 if (BASELINK_P (member))
16058 {
16059 BASELINK_FUNCTIONS (member)
16060 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
16061 args);
16062 member = (adjust_result_of_qualified_name_lookup
16063 (member, BINFO_TYPE (BASELINK_BINFO (member)),
16064 object_type));
16065 }
16066 else
16067 {
16068 qualified_name_lookup_error (scope, tmpl, member,
16069 input_location);
16070 RETURN (error_mark_node);
16071 }
16072 }
16073 else if (TREE_CODE (member) == SCOPE_REF
16074 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
16075 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
16076 {
16077 if (complain & tf_error)
16078 {
16079 if (TYPE_P (TREE_OPERAND (member, 0)))
16080 error ("%qT is not a class or namespace",
16081 TREE_OPERAND (member, 0));
16082 else
16083 error ("%qD is not a class or namespace",
16084 TREE_OPERAND (member, 0));
16085 }
16086 RETURN (error_mark_node);
16087 }
16088 else if (TREE_CODE (member) == FIELD_DECL)
16089 {
16090 r = finish_non_static_data_member (member, object, NULL_TREE);
16091 if (TREE_CODE (r) == COMPONENT_REF)
16092 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16093 RETURN (r);
16094 }
16095
16096 r = finish_class_member_access_expr (object, member,
16097 /*template_p=*/false,
16098 complain);
16099 if (TREE_CODE (r) == COMPONENT_REF)
16100 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16101 RETURN (r);
16102 }
16103
16104 case THROW_EXPR:
16105 RETURN (build_throw
16106 (RECUR (TREE_OPERAND (t, 0))));
16107
16108 case CONSTRUCTOR:
16109 {
16110 vec<constructor_elt, va_gc> *n;
16111 constructor_elt *ce;
16112 unsigned HOST_WIDE_INT idx;
16113 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16114 bool process_index_p;
16115 int newlen;
16116 bool need_copy_p = false;
16117 tree r;
16118
16119 if (type == error_mark_node)
16120 RETURN (error_mark_node);
16121
16122 /* digest_init will do the wrong thing if we let it. */
16123 if (type && TYPE_PTRMEMFUNC_P (type))
16124 RETURN (t);
16125
16126 /* We do not want to process the index of aggregate
16127 initializers as they are identifier nodes which will be
16128 looked up by digest_init. */
16129 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
16130
16131 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
16132 newlen = vec_safe_length (n);
16133 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
16134 {
16135 if (ce->index && process_index_p
16136 /* An identifier index is looked up in the type
16137 being initialized, not the current scope. */
16138 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
16139 ce->index = RECUR (ce->index);
16140
16141 if (PACK_EXPANSION_P (ce->value))
16142 {
16143 /* Substitute into the pack expansion. */
16144 ce->value = tsubst_pack_expansion (ce->value, args, complain,
16145 in_decl);
16146
16147 if (ce->value == error_mark_node
16148 || PACK_EXPANSION_P (ce->value))
16149 ;
16150 else if (TREE_VEC_LENGTH (ce->value) == 1)
16151 /* Just move the argument into place. */
16152 ce->value = TREE_VEC_ELT (ce->value, 0);
16153 else
16154 {
16155 /* Update the length of the final CONSTRUCTOR
16156 arguments vector, and note that we will need to
16157 copy.*/
16158 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
16159 need_copy_p = true;
16160 }
16161 }
16162 else
16163 ce->value = RECUR (ce->value);
16164 }
16165
16166 if (need_copy_p)
16167 {
16168 vec<constructor_elt, va_gc> *old_n = n;
16169
16170 vec_alloc (n, newlen);
16171 FOR_EACH_VEC_ELT (*old_n, idx, ce)
16172 {
16173 if (TREE_CODE (ce->value) == TREE_VEC)
16174 {
16175 int i, len = TREE_VEC_LENGTH (ce->value);
16176 for (i = 0; i < len; ++i)
16177 CONSTRUCTOR_APPEND_ELT (n, 0,
16178 TREE_VEC_ELT (ce->value, i));
16179 }
16180 else
16181 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
16182 }
16183 }
16184
16185 r = build_constructor (init_list_type_node, n);
16186 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
16187
16188 if (TREE_HAS_CONSTRUCTOR (t))
16189 RETURN (finish_compound_literal (type, r, complain));
16190
16191 TREE_TYPE (r) = type;
16192 RETURN (r);
16193 }
16194
16195 case TYPEID_EXPR:
16196 {
16197 tree operand_0 = TREE_OPERAND (t, 0);
16198 if (TYPE_P (operand_0))
16199 {
16200 operand_0 = tsubst (operand_0, args, complain, in_decl);
16201 RETURN (get_typeid (operand_0, complain));
16202 }
16203 else
16204 {
16205 operand_0 = RECUR (operand_0);
16206 RETURN (build_typeid (operand_0, complain));
16207 }
16208 }
16209
16210 case VAR_DECL:
16211 if (!args)
16212 RETURN (t);
16213 else if (DECL_PACK_P (t))
16214 {
16215 /* We don't build decls for an instantiation of a
16216 variadic capture proxy, we instantiate the elements
16217 when needed. */
16218 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
16219 return RECUR (DECL_VALUE_EXPR (t));
16220 }
16221 /* Fall through */
16222
16223 case PARM_DECL:
16224 {
16225 tree r = tsubst_copy (t, args, complain, in_decl);
16226 /* ??? We're doing a subset of finish_id_expression here. */
16227 if (VAR_P (r)
16228 && !processing_template_decl
16229 && !cp_unevaluated_operand
16230 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
16231 && CP_DECL_THREAD_LOCAL_P (r))
16232 {
16233 if (tree wrap = get_tls_wrapper_fn (r))
16234 /* Replace an evaluated use of the thread_local variable with
16235 a call to its wrapper. */
16236 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
16237 }
16238 else if (outer_automatic_var_p (r))
16239 {
16240 r = process_outer_var_ref (r, complain);
16241 if (is_capture_proxy (r))
16242 register_local_specialization (r, t);
16243 }
16244
16245 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
16246 /* If the original type was a reference, we'll be wrapped in
16247 the appropriate INDIRECT_REF. */
16248 r = convert_from_reference (r);
16249 RETURN (r);
16250 }
16251
16252 case VA_ARG_EXPR:
16253 {
16254 tree op0 = RECUR (TREE_OPERAND (t, 0));
16255 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16256 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
16257 }
16258
16259 case OFFSETOF_EXPR:
16260 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0)),
16261 EXPR_LOCATION (t)));
16262
16263 case TRAIT_EXPR:
16264 {
16265 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
16266 complain, in_decl);
16267
16268 tree type2 = TRAIT_EXPR_TYPE2 (t);
16269 if (type2 && TREE_CODE (type2) == TREE_LIST)
16270 type2 = RECUR (type2);
16271 else if (type2)
16272 type2 = tsubst (type2, args, complain, in_decl);
16273
16274 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
16275 }
16276
16277 case STMT_EXPR:
16278 {
16279 tree old_stmt_expr = cur_stmt_expr;
16280 tree stmt_expr = begin_stmt_expr ();
16281
16282 cur_stmt_expr = stmt_expr;
16283 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
16284 integral_constant_expression_p);
16285 stmt_expr = finish_stmt_expr (stmt_expr, false);
16286 cur_stmt_expr = old_stmt_expr;
16287
16288 /* If the resulting list of expression statement is empty,
16289 fold it further into void_node. */
16290 if (empty_expr_stmt_p (stmt_expr))
16291 stmt_expr = void_node;
16292
16293 RETURN (stmt_expr);
16294 }
16295
16296 case LAMBDA_EXPR:
16297 {
16298 tree r = build_lambda_expr ();
16299
16300 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
16301 LAMBDA_EXPR_CLOSURE (r) = type;
16302 CLASSTYPE_LAMBDA_EXPR (type) = r;
16303
16304 LAMBDA_EXPR_LOCATION (r)
16305 = LAMBDA_EXPR_LOCATION (t);
16306 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
16307 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
16308 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
16309 LAMBDA_EXPR_DISCRIMINATOR (r)
16310 = (LAMBDA_EXPR_DISCRIMINATOR (t));
16311 /* For a function scope, we want to use tsubst so that we don't
16312 complain about referring to an auto function before its return
16313 type has been deduced. Otherwise, we want to use tsubst_copy so
16314 that we look up the existing field/parameter/variable rather
16315 than build a new one. */
16316 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
16317 if (scope && TREE_CODE (scope) == FUNCTION_DECL)
16318 scope = tsubst (scope, args, complain, in_decl);
16319 else if (scope && TREE_CODE (scope) == PARM_DECL)
16320 {
16321 /* Look up the parameter we want directly, as tsubst_copy
16322 doesn't do what we need. */
16323 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
16324 tree parm = FUNCTION_FIRST_USER_PARM (fn);
16325 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
16326 parm = DECL_CHAIN (parm);
16327 scope = parm;
16328 /* FIXME Work around the parm not having DECL_CONTEXT set. */
16329 if (DECL_CONTEXT (scope) == NULL_TREE)
16330 DECL_CONTEXT (scope) = fn;
16331 }
16332 else
16333 scope = RECUR (scope);
16334 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
16335 LAMBDA_EXPR_RETURN_TYPE (r)
16336 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
16337
16338 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
16339 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
16340
16341 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
16342 determine_visibility (TYPE_NAME (type));
16343 /* Now that we know visibility, instantiate the type so we have a
16344 declaration of the op() for later calls to lambda_function. */
16345 complete_type (type);
16346
16347 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
16348
16349 insert_pending_capture_proxies ();
16350
16351 RETURN (build_lambda_object (r));
16352 }
16353
16354 case TARGET_EXPR:
16355 /* We can get here for a constant initializer of non-dependent type.
16356 FIXME stop folding in cp_parser_initializer_clause. */
16357 {
16358 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
16359 complain);
16360 RETURN (r);
16361 }
16362
16363 case TRANSACTION_EXPR:
16364 RETURN (tsubst_expr(t, args, complain, in_decl,
16365 integral_constant_expression_p));
16366
16367 case PAREN_EXPR:
16368 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
16369
16370 case VEC_PERM_EXPR:
16371 {
16372 tree op0 = RECUR (TREE_OPERAND (t, 0));
16373 tree op1 = RECUR (TREE_OPERAND (t, 1));
16374 tree op2 = RECUR (TREE_OPERAND (t, 2));
16375 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
16376 complain));
16377 }
16378
16379 case REQUIRES_EXPR:
16380 RETURN (tsubst_requires_expr (t, args, complain, in_decl));
16381
16382 default:
16383 /* Handle Objective-C++ constructs, if appropriate. */
16384 {
16385 tree subst
16386 = objcp_tsubst_copy_and_build (t, args, complain,
16387 in_decl, /*function_p=*/false);
16388 if (subst)
16389 RETURN (subst);
16390 }
16391 RETURN (tsubst_copy (t, args, complain, in_decl));
16392 }
16393
16394 #undef RECUR
16395 #undef RETURN
16396 out:
16397 input_location = loc;
16398 return retval;
16399 }
16400
16401 /* Verify that the instantiated ARGS are valid. For type arguments,
16402 make sure that the type's linkage is ok. For non-type arguments,
16403 make sure they are constants if they are integral or enumerations.
16404 Emit an error under control of COMPLAIN, and return TRUE on error. */
16405
16406 static bool
16407 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
16408 {
16409 if (dependent_template_arg_p (t))
16410 return false;
16411 if (ARGUMENT_PACK_P (t))
16412 {
16413 tree vec = ARGUMENT_PACK_ARGS (t);
16414 int len = TREE_VEC_LENGTH (vec);
16415 bool result = false;
16416 int i;
16417
16418 for (i = 0; i < len; ++i)
16419 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
16420 result = true;
16421 return result;
16422 }
16423 else if (TYPE_P (t))
16424 {
16425 /* [basic.link]: A name with no linkage (notably, the name
16426 of a class or enumeration declared in a local scope)
16427 shall not be used to declare an entity with linkage.
16428 This implies that names with no linkage cannot be used as
16429 template arguments
16430
16431 DR 757 relaxes this restriction for C++0x. */
16432 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
16433 : no_linkage_check (t, /*relaxed_p=*/false));
16434
16435 if (nt)
16436 {
16437 /* DR 488 makes use of a type with no linkage cause
16438 type deduction to fail. */
16439 if (complain & tf_error)
16440 {
16441 if (TYPE_ANONYMOUS_P (nt))
16442 error ("%qT is/uses anonymous type", t);
16443 else
16444 error ("template argument for %qD uses local type %qT",
16445 tmpl, t);
16446 }
16447 return true;
16448 }
16449 /* In order to avoid all sorts of complications, we do not
16450 allow variably-modified types as template arguments. */
16451 else if (variably_modified_type_p (t, NULL_TREE))
16452 {
16453 if (complain & tf_error)
16454 error ("%qT is a variably modified type", t);
16455 return true;
16456 }
16457 }
16458 /* Class template and alias template arguments should be OK. */
16459 else if (DECL_TYPE_TEMPLATE_P (t))
16460 ;
16461 /* A non-type argument of integral or enumerated type must be a
16462 constant. */
16463 else if (TREE_TYPE (t)
16464 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
16465 && !REFERENCE_REF_P (t)
16466 && !TREE_CONSTANT (t))
16467 {
16468 if (complain & tf_error)
16469 error ("integral expression %qE is not constant", t);
16470 return true;
16471 }
16472 return false;
16473 }
16474
16475 static bool
16476 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
16477 {
16478 int ix, len = DECL_NTPARMS (tmpl);
16479 bool result = false;
16480
16481 for (ix = 0; ix != len; ix++)
16482 {
16483 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
16484 result = true;
16485 }
16486 if (result && (complain & tf_error))
16487 error (" trying to instantiate %qD", tmpl);
16488 return result;
16489 }
16490
16491 /* We're out of SFINAE context now, so generate diagnostics for the access
16492 errors we saw earlier when instantiating D from TMPL and ARGS. */
16493
16494 static void
16495 recheck_decl_substitution (tree d, tree tmpl, tree args)
16496 {
16497 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
16498 tree type = TREE_TYPE (pattern);
16499 location_t loc = input_location;
16500
16501 push_access_scope (d);
16502 push_deferring_access_checks (dk_no_deferred);
16503 input_location = DECL_SOURCE_LOCATION (pattern);
16504 tsubst (type, args, tf_warning_or_error, d);
16505 input_location = loc;
16506 pop_deferring_access_checks ();
16507 pop_access_scope (d);
16508 }
16509
16510 /* Instantiate the indicated variable, function, or alias template TMPL with
16511 the template arguments in TARG_PTR. */
16512
16513 static tree
16514 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
16515 {
16516 tree targ_ptr = orig_args;
16517 tree fndecl;
16518 tree gen_tmpl;
16519 tree spec;
16520 bool access_ok = true;
16521
16522 if (tmpl == error_mark_node)
16523 return error_mark_node;
16524
16525 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
16526
16527 /* If this function is a clone, handle it specially. */
16528 if (DECL_CLONED_FUNCTION_P (tmpl))
16529 {
16530 tree spec;
16531 tree clone;
16532
16533 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
16534 DECL_CLONED_FUNCTION. */
16535 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
16536 targ_ptr, complain);
16537 if (spec == error_mark_node)
16538 return error_mark_node;
16539
16540 /* Look for the clone. */
16541 FOR_EACH_CLONE (clone, spec)
16542 if (DECL_NAME (clone) == DECL_NAME (tmpl))
16543 return clone;
16544 /* We should always have found the clone by now. */
16545 gcc_unreachable ();
16546 return NULL_TREE;
16547 }
16548
16549 if (targ_ptr == error_mark_node)
16550 return error_mark_node;
16551
16552 /* Check to see if we already have this specialization. */
16553 gen_tmpl = most_general_template (tmpl);
16554 if (tmpl != gen_tmpl)
16555 /* The TMPL is a partial instantiation. To get a full set of
16556 arguments we must add the arguments used to perform the
16557 partial instantiation. */
16558 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
16559 targ_ptr);
16560
16561 /* It would be nice to avoid hashing here and then again in tsubst_decl,
16562 but it doesn't seem to be on the hot path. */
16563 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
16564
16565 gcc_assert (tmpl == gen_tmpl
16566 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
16567 == spec)
16568 || fndecl == NULL_TREE);
16569
16570 if (spec != NULL_TREE)
16571 {
16572 if (FNDECL_HAS_ACCESS_ERRORS (spec))
16573 {
16574 if (complain & tf_error)
16575 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
16576 return error_mark_node;
16577 }
16578 return spec;
16579 }
16580
16581 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
16582 complain))
16583 return error_mark_node;
16584
16585 /* We are building a FUNCTION_DECL, during which the access of its
16586 parameters and return types have to be checked. However this
16587 FUNCTION_DECL which is the desired context for access checking
16588 is not built yet. We solve this chicken-and-egg problem by
16589 deferring all checks until we have the FUNCTION_DECL. */
16590 push_deferring_access_checks (dk_deferred);
16591
16592 /* Instantiation of the function happens in the context of the function
16593 template, not the context of the overload resolution we're doing. */
16594 push_to_top_level ();
16595 /* If there are dependent arguments, e.g. because we're doing partial
16596 ordering, make sure processing_template_decl stays set. */
16597 if (uses_template_parms (targ_ptr))
16598 ++processing_template_decl;
16599 if (DECL_CLASS_SCOPE_P (gen_tmpl))
16600 {
16601 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
16602 complain, gen_tmpl, true);
16603 push_nested_class (ctx);
16604 }
16605
16606 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
16607
16608 if (VAR_P (pattern))
16609 {
16610 /* We need to determine if we're using a partial or explicit
16611 specialization now, because the type of the variable could be
16612 different. */
16613 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
16614 tree elt = most_specialized_partial_spec (tid, complain);
16615 if (elt == error_mark_node)
16616 pattern = error_mark_node;
16617 else if (elt)
16618 {
16619 tmpl = TREE_VALUE (elt);
16620 pattern = DECL_TEMPLATE_RESULT (tmpl);
16621 targ_ptr = TREE_PURPOSE (elt);
16622 }
16623 }
16624
16625 /* Substitute template parameters to obtain the specialization. */
16626 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
16627 if (DECL_CLASS_SCOPE_P (gen_tmpl))
16628 pop_nested_class ();
16629 pop_from_top_level ();
16630
16631 if (fndecl == error_mark_node)
16632 {
16633 pop_deferring_access_checks ();
16634 return error_mark_node;
16635 }
16636
16637 /* The DECL_TI_TEMPLATE should always be the immediate parent
16638 template, not the most general template. */
16639 DECL_TI_TEMPLATE (fndecl) = tmpl;
16640 DECL_TI_ARGS (fndecl) = targ_ptr;
16641
16642 /* Now we know the specialization, compute access previously
16643 deferred. */
16644 push_access_scope (fndecl);
16645 if (!perform_deferred_access_checks (complain))
16646 access_ok = false;
16647 pop_access_scope (fndecl);
16648 pop_deferring_access_checks ();
16649
16650 /* If we've just instantiated the main entry point for a function,
16651 instantiate all the alternate entry points as well. We do this
16652 by cloning the instantiation of the main entry point, not by
16653 instantiating the template clones. */
16654 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
16655 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
16656
16657 if (!access_ok)
16658 {
16659 if (!(complain & tf_error))
16660 {
16661 /* Remember to reinstantiate when we're out of SFINAE so the user
16662 can see the errors. */
16663 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
16664 }
16665 return error_mark_node;
16666 }
16667 return fndecl;
16668 }
16669
16670 /* Wrapper for instantiate_template_1. */
16671
16672 tree
16673 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
16674 {
16675 tree ret;
16676 timevar_push (TV_TEMPLATE_INST);
16677 ret = instantiate_template_1 (tmpl, orig_args, complain);
16678 timevar_pop (TV_TEMPLATE_INST);
16679 return ret;
16680 }
16681
16682 /* Instantiate the alias template TMPL with ARGS. Also push a template
16683 instantiation level, which instantiate_template doesn't do because
16684 functions and variables have sufficient context established by the
16685 callers. */
16686
16687 static tree
16688 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
16689 {
16690 struct pending_template *old_last_pend = last_pending_template;
16691 struct tinst_level *old_error_tinst = last_error_tinst_level;
16692 if (tmpl == error_mark_node || args == error_mark_node)
16693 return error_mark_node;
16694 tree tinst = build_tree_list (tmpl, args);
16695 if (!push_tinst_level (tinst))
16696 {
16697 ggc_free (tinst);
16698 return error_mark_node;
16699 }
16700
16701 args =
16702 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
16703 args, tmpl, complain,
16704 /*require_all_args=*/true,
16705 /*use_default_args=*/true);
16706
16707 tree r = instantiate_template (tmpl, args, complain);
16708 pop_tinst_level ();
16709 /* We can't free this if a pending_template entry or last_error_tinst_level
16710 is pointing at it. */
16711 if (last_pending_template == old_last_pend
16712 && last_error_tinst_level == old_error_tinst)
16713 ggc_free (tinst);
16714
16715 return r;
16716 }
16717
16718 /* PARM is a template parameter pack for FN. Returns true iff
16719 PARM is used in a deducible way in the argument list of FN. */
16720
16721 static bool
16722 pack_deducible_p (tree parm, tree fn)
16723 {
16724 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
16725 for (; t; t = TREE_CHAIN (t))
16726 {
16727 tree type = TREE_VALUE (t);
16728 tree packs;
16729 if (!PACK_EXPANSION_P (type))
16730 continue;
16731 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
16732 packs; packs = TREE_CHAIN (packs))
16733 if (template_args_equal (TREE_VALUE (packs), parm))
16734 {
16735 /* The template parameter pack is used in a function parameter
16736 pack. If this is the end of the parameter list, the
16737 template parameter pack is deducible. */
16738 if (TREE_CHAIN (t) == void_list_node)
16739 return true;
16740 else
16741 /* Otherwise, not. Well, it could be deduced from
16742 a non-pack parameter, but doing so would end up with
16743 a deduction mismatch, so don't bother. */
16744 return false;
16745 }
16746 }
16747 /* The template parameter pack isn't used in any function parameter
16748 packs, but it might be used deeper, e.g. tuple<Args...>. */
16749 return true;
16750 }
16751
16752 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
16753 NARGS elements of the arguments that are being used when calling
16754 it. TARGS is a vector into which the deduced template arguments
16755 are placed.
16756
16757 Returns either a FUNCTION_DECL for the matching specialization of FN or
16758 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
16759 true, diagnostics will be printed to explain why it failed.
16760
16761 If FN is a conversion operator, or we are trying to produce a specific
16762 specialization, RETURN_TYPE is the return type desired.
16763
16764 The EXPLICIT_TARGS are explicit template arguments provided via a
16765 template-id.
16766
16767 The parameter STRICT is one of:
16768
16769 DEDUCE_CALL:
16770 We are deducing arguments for a function call, as in
16771 [temp.deduct.call].
16772
16773 DEDUCE_CONV:
16774 We are deducing arguments for a conversion function, as in
16775 [temp.deduct.conv].
16776
16777 DEDUCE_EXACT:
16778 We are deducing arguments when doing an explicit instantiation
16779 as in [temp.explicit], when determining an explicit specialization
16780 as in [temp.expl.spec], or when taking the address of a function
16781 template, as in [temp.deduct.funcaddr]. */
16782
16783 tree
16784 fn_type_unification (tree fn,
16785 tree explicit_targs,
16786 tree targs,
16787 const tree *args,
16788 unsigned int nargs,
16789 tree return_type,
16790 unification_kind_t strict,
16791 int flags,
16792 bool explain_p,
16793 bool decltype_p)
16794 {
16795 tree parms;
16796 tree fntype;
16797 tree decl = NULL_TREE;
16798 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
16799 bool ok;
16800 static int deduction_depth;
16801 struct pending_template *old_last_pend = last_pending_template;
16802 struct tinst_level *old_error_tinst = last_error_tinst_level;
16803 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
16804 tree tinst;
16805 tree r = error_mark_node;
16806
16807 if (decltype_p)
16808 complain |= tf_decltype;
16809
16810 /* In C++0x, it's possible to have a function template whose type depends
16811 on itself recursively. This is most obvious with decltype, but can also
16812 occur with enumeration scope (c++/48969). So we need to catch infinite
16813 recursion and reject the substitution at deduction time; this function
16814 will return error_mark_node for any repeated substitution.
16815
16816 This also catches excessive recursion such as when f<N> depends on
16817 f<N-1> across all integers, and returns error_mark_node for all the
16818 substitutions back up to the initial one.
16819
16820 This is, of course, not reentrant. */
16821 if (excessive_deduction_depth)
16822 return error_mark_node;
16823 tinst = build_tree_list (fn, NULL_TREE);
16824 ++deduction_depth;
16825
16826 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
16827
16828 fntype = TREE_TYPE (fn);
16829 if (explicit_targs)
16830 {
16831 /* [temp.deduct]
16832
16833 The specified template arguments must match the template
16834 parameters in kind (i.e., type, nontype, template), and there
16835 must not be more arguments than there are parameters;
16836 otherwise type deduction fails.
16837
16838 Nontype arguments must match the types of the corresponding
16839 nontype template parameters, or must be convertible to the
16840 types of the corresponding nontype parameters as specified in
16841 _temp.arg.nontype_, otherwise type deduction fails.
16842
16843 All references in the function type of the function template
16844 to the corresponding template parameters are replaced by the
16845 specified template argument values. If a substitution in a
16846 template parameter or in the function type of the function
16847 template results in an invalid type, type deduction fails. */
16848 int i, len = TREE_VEC_LENGTH (tparms);
16849 location_t loc = input_location;
16850 bool incomplete = false;
16851
16852 /* Adjust any explicit template arguments before entering the
16853 substitution context. */
16854 explicit_targs
16855 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
16856 complain,
16857 /*require_all_args=*/false,
16858 /*use_default_args=*/false));
16859 if (explicit_targs == error_mark_node)
16860 goto fail;
16861
16862 /* Substitute the explicit args into the function type. This is
16863 necessary so that, for instance, explicitly declared function
16864 arguments can match null pointed constants. If we were given
16865 an incomplete set of explicit args, we must not do semantic
16866 processing during substitution as we could create partial
16867 instantiations. */
16868 for (i = 0; i < len; i++)
16869 {
16870 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
16871 bool parameter_pack = false;
16872 tree targ = TREE_VEC_ELT (explicit_targs, i);
16873
16874 /* Dig out the actual parm. */
16875 if (TREE_CODE (parm) == TYPE_DECL
16876 || TREE_CODE (parm) == TEMPLATE_DECL)
16877 {
16878 parm = TREE_TYPE (parm);
16879 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
16880 }
16881 else if (TREE_CODE (parm) == PARM_DECL)
16882 {
16883 parm = DECL_INITIAL (parm);
16884 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
16885 }
16886
16887 if (!parameter_pack && targ == NULL_TREE)
16888 /* No explicit argument for this template parameter. */
16889 incomplete = true;
16890
16891 if (parameter_pack && pack_deducible_p (parm, fn))
16892 {
16893 /* Mark the argument pack as "incomplete". We could
16894 still deduce more arguments during unification.
16895 We remove this mark in type_unification_real. */
16896 if (targ)
16897 {
16898 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
16899 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
16900 = ARGUMENT_PACK_ARGS (targ);
16901 }
16902
16903 /* We have some incomplete argument packs. */
16904 incomplete = true;
16905 }
16906 }
16907
16908 TREE_VALUE (tinst) = explicit_targs;
16909 if (!push_tinst_level (tinst))
16910 {
16911 excessive_deduction_depth = true;
16912 goto fail;
16913 }
16914 processing_template_decl += incomplete;
16915 input_location = DECL_SOURCE_LOCATION (fn);
16916 /* Ignore any access checks; we'll see them again in
16917 instantiate_template and they might have the wrong
16918 access path at this point. */
16919 push_deferring_access_checks (dk_deferred);
16920 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
16921 complain | tf_partial, NULL_TREE);
16922 pop_deferring_access_checks ();
16923 input_location = loc;
16924 processing_template_decl -= incomplete;
16925 pop_tinst_level ();
16926
16927 if (fntype == error_mark_node)
16928 goto fail;
16929
16930 /* Place the explicitly specified arguments in TARGS. */
16931 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
16932 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
16933 }
16934
16935 /* Never do unification on the 'this' parameter. */
16936 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
16937
16938 if (return_type)
16939 {
16940 tree *new_args;
16941
16942 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
16943 new_args = XALLOCAVEC (tree, nargs + 1);
16944 new_args[0] = return_type;
16945 memcpy (new_args + 1, args, nargs * sizeof (tree));
16946 args = new_args;
16947 ++nargs;
16948 }
16949
16950 /* We allow incomplete unification without an error message here
16951 because the standard doesn't seem to explicitly prohibit it. Our
16952 callers must be ready to deal with unification failures in any
16953 event. */
16954
16955 TREE_VALUE (tinst) = targs;
16956 /* If we aren't explaining yet, push tinst context so we can see where
16957 any errors (e.g. from class instantiations triggered by instantiation
16958 of default template arguments) come from. If we are explaining, this
16959 context is redundant. */
16960 if (!explain_p && !push_tinst_level (tinst))
16961 {
16962 excessive_deduction_depth = true;
16963 goto fail;
16964 }
16965
16966 /* type_unification_real will pass back any access checks from default
16967 template argument substitution. */
16968 vec<deferred_access_check, va_gc> *checks;
16969 checks = NULL;
16970
16971 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
16972 targs, parms, args, nargs, /*subr=*/0,
16973 strict, flags, &checks, explain_p);
16974 if (!explain_p)
16975 pop_tinst_level ();
16976 if (!ok)
16977 goto fail;
16978
16979 /* Now that we have bindings for all of the template arguments,
16980 ensure that the arguments deduced for the template template
16981 parameters have compatible template parameter lists. We cannot
16982 check this property before we have deduced all template
16983 arguments, because the template parameter types of a template
16984 template parameter might depend on prior template parameters
16985 deduced after the template template parameter. The following
16986 ill-formed example illustrates this issue:
16987
16988 template<typename T, template<T> class C> void f(C<5>, T);
16989
16990 template<int N> struct X {};
16991
16992 void g() {
16993 f(X<5>(), 5l); // error: template argument deduction fails
16994 }
16995
16996 The template parameter list of 'C' depends on the template type
16997 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
16998 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
16999 time that we deduce 'C'. */
17000 if (!template_template_parm_bindings_ok_p
17001 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
17002 {
17003 unify_inconsistent_template_template_parameters (explain_p);
17004 goto fail;
17005 }
17006
17007 /* All is well so far. Now, check:
17008
17009 [temp.deduct]
17010
17011 When all template arguments have been deduced, all uses of
17012 template parameters in nondeduced contexts are replaced with
17013 the corresponding deduced argument values. If the
17014 substitution results in an invalid type, as described above,
17015 type deduction fails. */
17016 TREE_VALUE (tinst) = targs;
17017 if (!push_tinst_level (tinst))
17018 {
17019 excessive_deduction_depth = true;
17020 goto fail;
17021 }
17022
17023 /* Also collect access checks from the instantiation. */
17024 reopen_deferring_access_checks (checks);
17025
17026 decl = instantiate_template (fn, targs, complain);
17027
17028 checks = get_deferred_access_checks ();
17029 pop_deferring_access_checks ();
17030
17031 pop_tinst_level ();
17032
17033 if (decl == error_mark_node)
17034 goto fail;
17035
17036 /* Now perform any access checks encountered during substitution. */
17037 push_access_scope (decl);
17038 ok = perform_access_checks (checks, complain);
17039 pop_access_scope (decl);
17040 if (!ok)
17041 goto fail;
17042
17043 /* If we're looking for an exact match, check that what we got
17044 is indeed an exact match. It might not be if some template
17045 parameters are used in non-deduced contexts. But don't check
17046 for an exact match if we have dependent template arguments;
17047 in that case we're doing partial ordering, and we already know
17048 that we have two candidates that will provide the actual type. */
17049 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
17050 {
17051 tree substed = TREE_TYPE (decl);
17052 unsigned int i;
17053
17054 tree sarg
17055 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
17056 if (return_type)
17057 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
17058 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
17059 if (!same_type_p (args[i], TREE_VALUE (sarg)))
17060 {
17061 unify_type_mismatch (explain_p, args[i],
17062 TREE_VALUE (sarg));
17063 goto fail;
17064 }
17065 }
17066
17067 r = decl;
17068
17069 fail:
17070 --deduction_depth;
17071 if (excessive_deduction_depth)
17072 {
17073 if (deduction_depth == 0)
17074 /* Reset once we're all the way out. */
17075 excessive_deduction_depth = false;
17076 }
17077
17078 /* We can't free this if a pending_template entry or last_error_tinst_level
17079 is pointing at it. */
17080 if (last_pending_template == old_last_pend
17081 && last_error_tinst_level == old_error_tinst)
17082 ggc_free (tinst);
17083
17084 return r;
17085 }
17086
17087 /* Adjust types before performing type deduction, as described in
17088 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
17089 sections are symmetric. PARM is the type of a function parameter
17090 or the return type of the conversion function. ARG is the type of
17091 the argument passed to the call, or the type of the value
17092 initialized with the result of the conversion function.
17093 ARG_EXPR is the original argument expression, which may be null. */
17094
17095 static int
17096 maybe_adjust_types_for_deduction (unification_kind_t strict,
17097 tree* parm,
17098 tree* arg,
17099 tree arg_expr)
17100 {
17101 int result = 0;
17102
17103 switch (strict)
17104 {
17105 case DEDUCE_CALL:
17106 break;
17107
17108 case DEDUCE_CONV:
17109 /* Swap PARM and ARG throughout the remainder of this
17110 function; the handling is precisely symmetric since PARM
17111 will initialize ARG rather than vice versa. */
17112 std::swap (parm, arg);
17113 break;
17114
17115 case DEDUCE_EXACT:
17116 /* Core issue #873: Do the DR606 thing (see below) for these cases,
17117 too, but here handle it by stripping the reference from PARM
17118 rather than by adding it to ARG. */
17119 if (TREE_CODE (*parm) == REFERENCE_TYPE
17120 && TYPE_REF_IS_RVALUE (*parm)
17121 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17122 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17123 && TREE_CODE (*arg) == REFERENCE_TYPE
17124 && !TYPE_REF_IS_RVALUE (*arg))
17125 *parm = TREE_TYPE (*parm);
17126 /* Nothing else to do in this case. */
17127 return 0;
17128
17129 default:
17130 gcc_unreachable ();
17131 }
17132
17133 if (TREE_CODE (*parm) != REFERENCE_TYPE)
17134 {
17135 /* [temp.deduct.call]
17136
17137 If P is not a reference type:
17138
17139 --If A is an array type, the pointer type produced by the
17140 array-to-pointer standard conversion (_conv.array_) is
17141 used in place of A for type deduction; otherwise,
17142
17143 --If A is a function type, the pointer type produced by
17144 the function-to-pointer standard conversion
17145 (_conv.func_) is used in place of A for type deduction;
17146 otherwise,
17147
17148 --If A is a cv-qualified type, the top level
17149 cv-qualifiers of A's type are ignored for type
17150 deduction. */
17151 if (TREE_CODE (*arg) == ARRAY_TYPE)
17152 *arg = build_pointer_type (TREE_TYPE (*arg));
17153 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
17154 *arg = build_pointer_type (*arg);
17155 else
17156 *arg = TYPE_MAIN_VARIANT (*arg);
17157 }
17158
17159 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
17160 of the form T&&, where T is a template parameter, and the argument
17161 is an lvalue, T is deduced as A& */
17162 if (TREE_CODE (*parm) == REFERENCE_TYPE
17163 && TYPE_REF_IS_RVALUE (*parm)
17164 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17165 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17166 && (arg_expr ? real_lvalue_p (arg_expr)
17167 /* try_one_overload doesn't provide an arg_expr, but
17168 functions are always lvalues. */
17169 : TREE_CODE (*arg) == FUNCTION_TYPE))
17170 *arg = build_reference_type (*arg);
17171
17172 /* [temp.deduct.call]
17173
17174 If P is a cv-qualified type, the top level cv-qualifiers
17175 of P's type are ignored for type deduction. If P is a
17176 reference type, the type referred to by P is used for
17177 type deduction. */
17178 *parm = TYPE_MAIN_VARIANT (*parm);
17179 if (TREE_CODE (*parm) == REFERENCE_TYPE)
17180 {
17181 *parm = TREE_TYPE (*parm);
17182 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
17183 }
17184
17185 /* DR 322. For conversion deduction, remove a reference type on parm
17186 too (which has been swapped into ARG). */
17187 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
17188 *arg = TREE_TYPE (*arg);
17189
17190 return result;
17191 }
17192
17193 /* Subroutine of unify_one_argument. PARM is a function parameter of a
17194 template which does contain any deducible template parameters; check if
17195 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
17196 unify_one_argument. */
17197
17198 static int
17199 check_non_deducible_conversion (tree parm, tree arg, int strict,
17200 int flags, bool explain_p)
17201 {
17202 tree type;
17203
17204 if (!TYPE_P (arg))
17205 type = TREE_TYPE (arg);
17206 else
17207 type = arg;
17208
17209 if (same_type_p (parm, type))
17210 return unify_success (explain_p);
17211
17212 if (strict == DEDUCE_CONV)
17213 {
17214 if (can_convert_arg (type, parm, NULL_TREE, flags,
17215 explain_p ? tf_warning_or_error : tf_none))
17216 return unify_success (explain_p);
17217 }
17218 else if (strict != DEDUCE_EXACT)
17219 {
17220 if (can_convert_arg (parm, type,
17221 TYPE_P (arg) ? NULL_TREE : arg,
17222 flags, explain_p ? tf_warning_or_error : tf_none))
17223 return unify_success (explain_p);
17224 }
17225
17226 if (strict == DEDUCE_EXACT)
17227 return unify_type_mismatch (explain_p, parm, arg);
17228 else
17229 return unify_arg_conversion (explain_p, parm, type, arg);
17230 }
17231
17232 static bool uses_deducible_template_parms (tree type);
17233
17234 /* Returns true iff the expression EXPR is one from which a template
17235 argument can be deduced. In other words, if it's an undecorated
17236 use of a template non-type parameter. */
17237
17238 static bool
17239 deducible_expression (tree expr)
17240 {
17241 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
17242 }
17243
17244 /* Returns true iff the array domain DOMAIN uses a template parameter in a
17245 deducible way; that is, if it has a max value of <PARM> - 1. */
17246
17247 static bool
17248 deducible_array_bound (tree domain)
17249 {
17250 if (domain == NULL_TREE)
17251 return false;
17252
17253 tree max = TYPE_MAX_VALUE (domain);
17254 if (TREE_CODE (max) != MINUS_EXPR)
17255 return false;
17256
17257 return deducible_expression (TREE_OPERAND (max, 0));
17258 }
17259
17260 /* Returns true iff the template arguments ARGS use a template parameter
17261 in a deducible way. */
17262
17263 static bool
17264 deducible_template_args (tree args)
17265 {
17266 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
17267 {
17268 bool deducible;
17269 tree elt = TREE_VEC_ELT (args, i);
17270 if (ARGUMENT_PACK_P (elt))
17271 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
17272 else
17273 {
17274 if (PACK_EXPANSION_P (elt))
17275 elt = PACK_EXPANSION_PATTERN (elt);
17276 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
17277 deducible = true;
17278 else if (TYPE_P (elt))
17279 deducible = uses_deducible_template_parms (elt);
17280 else
17281 deducible = deducible_expression (elt);
17282 }
17283 if (deducible)
17284 return true;
17285 }
17286 return false;
17287 }
17288
17289 /* Returns true iff TYPE contains any deducible references to template
17290 parameters, as per 14.8.2.5. */
17291
17292 static bool
17293 uses_deducible_template_parms (tree type)
17294 {
17295 if (PACK_EXPANSION_P (type))
17296 type = PACK_EXPANSION_PATTERN (type);
17297
17298 /* T
17299 cv-list T
17300 TT<T>
17301 TT<i>
17302 TT<> */
17303 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
17304 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
17305 return true;
17306
17307 /* T*
17308 T&
17309 T&& */
17310 if (POINTER_TYPE_P (type))
17311 return uses_deducible_template_parms (TREE_TYPE (type));
17312
17313 /* T[integer-constant ]
17314 type [i] */
17315 if (TREE_CODE (type) == ARRAY_TYPE)
17316 return (uses_deducible_template_parms (TREE_TYPE (type))
17317 || deducible_array_bound (TYPE_DOMAIN (type)));
17318
17319 /* T type ::*
17320 type T::*
17321 T T::*
17322 T (type ::*)()
17323 type (T::*)()
17324 type (type ::*)(T)
17325 type (T::*)(T)
17326 T (type ::*)(T)
17327 T (T::*)()
17328 T (T::*)(T) */
17329 if (TYPE_PTRMEM_P (type))
17330 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
17331 || (uses_deducible_template_parms
17332 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
17333
17334 /* template-name <T> (where template-name refers to a class template)
17335 template-name <i> (where template-name refers to a class template) */
17336 if (CLASS_TYPE_P (type)
17337 && CLASSTYPE_TEMPLATE_INFO (type)
17338 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
17339 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
17340 (CLASSTYPE_TI_ARGS (type)));
17341
17342 /* type (T)
17343 T()
17344 T(T) */
17345 if (TREE_CODE (type) == FUNCTION_TYPE
17346 || TREE_CODE (type) == METHOD_TYPE)
17347 {
17348 if (uses_deducible_template_parms (TREE_TYPE (type)))
17349 return true;
17350 tree parm = TYPE_ARG_TYPES (type);
17351 if (TREE_CODE (type) == METHOD_TYPE)
17352 parm = TREE_CHAIN (parm);
17353 for (; parm; parm = TREE_CHAIN (parm))
17354 if (uses_deducible_template_parms (TREE_VALUE (parm)))
17355 return true;
17356 }
17357
17358 return false;
17359 }
17360
17361 /* Subroutine of type_unification_real and unify_pack_expansion to
17362 handle unification of a single P/A pair. Parameters are as
17363 for those functions. */
17364
17365 static int
17366 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
17367 int subr, unification_kind_t strict,
17368 bool explain_p)
17369 {
17370 tree arg_expr = NULL_TREE;
17371 int arg_strict;
17372
17373 if (arg == error_mark_node || parm == error_mark_node)
17374 return unify_invalid (explain_p);
17375 if (arg == unknown_type_node)
17376 /* We can't deduce anything from this, but we might get all the
17377 template args from other function args. */
17378 return unify_success (explain_p);
17379
17380 /* Implicit conversions (Clause 4) will be performed on a function
17381 argument to convert it to the type of the corresponding function
17382 parameter if the parameter type contains no template-parameters that
17383 participate in template argument deduction. */
17384 if (strict != DEDUCE_EXACT
17385 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
17386 /* For function parameters with no deducible template parameters,
17387 just return. We'll check non-dependent conversions later. */
17388 return unify_success (explain_p);
17389
17390 switch (strict)
17391 {
17392 case DEDUCE_CALL:
17393 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
17394 | UNIFY_ALLOW_MORE_CV_QUAL
17395 | UNIFY_ALLOW_DERIVED);
17396 break;
17397
17398 case DEDUCE_CONV:
17399 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
17400 break;
17401
17402 case DEDUCE_EXACT:
17403 arg_strict = UNIFY_ALLOW_NONE;
17404 break;
17405
17406 default:
17407 gcc_unreachable ();
17408 }
17409
17410 /* We only do these transformations if this is the top-level
17411 parameter_type_list in a call or declaration matching; in other
17412 situations (nested function declarators, template argument lists) we
17413 won't be comparing a type to an expression, and we don't do any type
17414 adjustments. */
17415 if (!subr)
17416 {
17417 if (!TYPE_P (arg))
17418 {
17419 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
17420 if (type_unknown_p (arg))
17421 {
17422 /* [temp.deduct.type] A template-argument can be
17423 deduced from a pointer to function or pointer
17424 to member function argument if the set of
17425 overloaded functions does not contain function
17426 templates and at most one of a set of
17427 overloaded functions provides a unique
17428 match. */
17429
17430 if (resolve_overloaded_unification
17431 (tparms, targs, parm, arg, strict,
17432 arg_strict, explain_p))
17433 return unify_success (explain_p);
17434 return unify_overload_resolution_failure (explain_p, arg);
17435 }
17436
17437 arg_expr = arg;
17438 arg = unlowered_expr_type (arg);
17439 if (arg == error_mark_node)
17440 return unify_invalid (explain_p);
17441 }
17442
17443 arg_strict |=
17444 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
17445 }
17446 else
17447 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
17448 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
17449 return unify_template_argument_mismatch (explain_p, parm, arg);
17450
17451 /* For deduction from an init-list we need the actual list. */
17452 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
17453 arg = arg_expr;
17454 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
17455 }
17456
17457 /* Most parms like fn_type_unification.
17458
17459 If SUBR is 1, we're being called recursively (to unify the
17460 arguments of a function or method parameter of a function
17461 template).
17462
17463 CHECKS is a pointer to a vector of access checks encountered while
17464 substituting default template arguments. */
17465
17466 static int
17467 type_unification_real (tree tparms,
17468 tree targs,
17469 tree xparms,
17470 const tree *xargs,
17471 unsigned int xnargs,
17472 int subr,
17473 unification_kind_t strict,
17474 int flags,
17475 vec<deferred_access_check, va_gc> **checks,
17476 bool explain_p)
17477 {
17478 tree parm, arg;
17479 int i;
17480 int ntparms = TREE_VEC_LENGTH (tparms);
17481 int saw_undeduced = 0;
17482 tree parms;
17483 const tree *args;
17484 unsigned int nargs;
17485 unsigned int ia;
17486
17487 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
17488 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
17489 gcc_assert (ntparms > 0);
17490
17491 /* Reset the number of non-defaulted template arguments contained
17492 in TARGS. */
17493 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
17494
17495 again:
17496 parms = xparms;
17497 args = xargs;
17498 nargs = xnargs;
17499
17500 ia = 0;
17501 while (parms && parms != void_list_node
17502 && ia < nargs)
17503 {
17504 parm = TREE_VALUE (parms);
17505
17506 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
17507 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
17508 /* For a function parameter pack that occurs at the end of the
17509 parameter-declaration-list, the type A of each remaining
17510 argument of the call is compared with the type P of the
17511 declarator-id of the function parameter pack. */
17512 break;
17513
17514 parms = TREE_CHAIN (parms);
17515
17516 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
17517 /* For a function parameter pack that does not occur at the
17518 end of the parameter-declaration-list, the type of the
17519 parameter pack is a non-deduced context. */
17520 continue;
17521
17522 arg = args[ia];
17523 ++ia;
17524
17525 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
17526 explain_p))
17527 return 1;
17528 }
17529
17530 if (parms
17531 && parms != void_list_node
17532 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
17533 {
17534 /* Unify the remaining arguments with the pack expansion type. */
17535 tree argvec;
17536 tree parmvec = make_tree_vec (1);
17537
17538 /* Allocate a TREE_VEC and copy in all of the arguments */
17539 argvec = make_tree_vec (nargs - ia);
17540 for (i = 0; ia < nargs; ++ia, ++i)
17541 TREE_VEC_ELT (argvec, i) = args[ia];
17542
17543 /* Copy the parameter into parmvec. */
17544 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
17545 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
17546 /*subr=*/subr, explain_p))
17547 return 1;
17548
17549 /* Advance to the end of the list of parameters. */
17550 parms = TREE_CHAIN (parms);
17551 }
17552
17553 /* Fail if we've reached the end of the parm list, and more args
17554 are present, and the parm list isn't variadic. */
17555 if (ia < nargs && parms == void_list_node)
17556 return unify_too_many_arguments (explain_p, nargs, ia);
17557 /* Fail if parms are left and they don't have default values and
17558 they aren't all deduced as empty packs (c++/57397). This is
17559 consistent with sufficient_parms_p. */
17560 if (parms && parms != void_list_node
17561 && TREE_PURPOSE (parms) == NULL_TREE)
17562 {
17563 unsigned int count = nargs;
17564 tree p = parms;
17565 bool type_pack_p;
17566 do
17567 {
17568 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
17569 if (!type_pack_p)
17570 count++;
17571 p = TREE_CHAIN (p);
17572 }
17573 while (p && p != void_list_node);
17574 if (count != nargs)
17575 return unify_too_few_arguments (explain_p, ia, count,
17576 type_pack_p);
17577 }
17578
17579 if (!subr)
17580 {
17581 tsubst_flags_t complain = (explain_p
17582 ? tf_warning_or_error
17583 : tf_none);
17584
17585 for (i = 0; i < ntparms; i++)
17586 {
17587 tree targ = TREE_VEC_ELT (targs, i);
17588 tree tparm = TREE_VEC_ELT (tparms, i);
17589
17590 /* Clear the "incomplete" flags on all argument packs now so that
17591 substituting them into later default arguments works. */
17592 if (targ && ARGUMENT_PACK_P (targ))
17593 {
17594 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
17595 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
17596 }
17597
17598 if (targ || tparm == error_mark_node)
17599 continue;
17600 tparm = TREE_VALUE (tparm);
17601
17602 /* If this is an undeduced nontype parameter that depends on
17603 a type parameter, try another pass; its type may have been
17604 deduced from a later argument than the one from which
17605 this parameter can be deduced. */
17606 if (TREE_CODE (tparm) == PARM_DECL
17607 && uses_template_parms (TREE_TYPE (tparm))
17608 && saw_undeduced < 2)
17609 {
17610 saw_undeduced = 1;
17611 continue;
17612 }
17613
17614 /* Core issue #226 (C++0x) [temp.deduct]:
17615
17616 If a template argument has not been deduced, its
17617 default template argument, if any, is used.
17618
17619 When we are in C++98 mode, TREE_PURPOSE will either
17620 be NULL_TREE or ERROR_MARK_NODE, so we do not need
17621 to explicitly check cxx_dialect here. */
17622 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
17623 /* OK, there is a default argument. Wait until after the
17624 conversion check to do substitution. */
17625 continue;
17626
17627 /* If the type parameter is a parameter pack, then it will
17628 be deduced to an empty parameter pack. */
17629 if (template_parameter_pack_p (tparm))
17630 {
17631 tree arg;
17632
17633 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
17634 {
17635 arg = make_node (NONTYPE_ARGUMENT_PACK);
17636 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
17637 TREE_CONSTANT (arg) = 1;
17638 }
17639 else
17640 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
17641
17642 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
17643
17644 TREE_VEC_ELT (targs, i) = arg;
17645 continue;
17646 }
17647
17648 return unify_parameter_deduction_failure (explain_p, tparm);
17649 }
17650
17651 /* DR 1391: All parameters have args, now check non-dependent parms for
17652 convertibility. */
17653 if (saw_undeduced < 2)
17654 for (ia = 0, parms = xparms, args = xargs, nargs = xnargs;
17655 parms && parms != void_list_node && ia < nargs; )
17656 {
17657 parm = TREE_VALUE (parms);
17658
17659 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
17660 && (!TREE_CHAIN (parms)
17661 || TREE_CHAIN (parms) == void_list_node))
17662 /* For a function parameter pack that occurs at the end of the
17663 parameter-declaration-list, the type A of each remaining
17664 argument of the call is compared with the type P of the
17665 declarator-id of the function parameter pack. */
17666 break;
17667
17668 parms = TREE_CHAIN (parms);
17669
17670 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
17671 /* For a function parameter pack that does not occur at the
17672 end of the parameter-declaration-list, the type of the
17673 parameter pack is a non-deduced context. */
17674 continue;
17675
17676 arg = args[ia];
17677 ++ia;
17678
17679 if (uses_template_parms (parm))
17680 continue;
17681 if (check_non_deducible_conversion (parm, arg, strict, flags,
17682 explain_p))
17683 return 1;
17684 }
17685
17686 /* Now substitute into the default template arguments. */
17687 for (i = 0; i < ntparms; i++)
17688 {
17689 tree targ = TREE_VEC_ELT (targs, i);
17690 tree tparm = TREE_VEC_ELT (tparms, i);
17691
17692 if (targ || tparm == error_mark_node)
17693 continue;
17694 tree parm = TREE_VALUE (tparm);
17695
17696 if (TREE_CODE (parm) == PARM_DECL
17697 && uses_template_parms (TREE_TYPE (parm))
17698 && saw_undeduced < 2)
17699 continue;
17700
17701 tree arg = TREE_PURPOSE (tparm);
17702 reopen_deferring_access_checks (*checks);
17703 location_t save_loc = input_location;
17704 if (DECL_P (parm))
17705 input_location = DECL_SOURCE_LOCATION (parm);
17706 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
17707 arg = convert_template_argument (parm, arg, targs, complain,
17708 i, NULL_TREE);
17709 input_location = save_loc;
17710 *checks = get_deferred_access_checks ();
17711 pop_deferring_access_checks ();
17712 if (arg == error_mark_node)
17713 return 1;
17714 else
17715 {
17716 TREE_VEC_ELT (targs, i) = arg;
17717 /* The position of the first default template argument,
17718 is also the number of non-defaulted arguments in TARGS.
17719 Record that. */
17720 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
17721 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
17722 continue;
17723 }
17724 }
17725
17726 if (saw_undeduced++ == 1)
17727 goto again;
17728 }
17729 #ifdef ENABLE_CHECKING
17730 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
17731 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
17732 #endif
17733
17734 return unify_success (explain_p);
17735 }
17736
17737 /* Subroutine of type_unification_real. Args are like the variables
17738 at the call site. ARG is an overloaded function (or template-id);
17739 we try deducing template args from each of the overloads, and if
17740 only one succeeds, we go with that. Modifies TARGS and returns
17741 true on success. */
17742
17743 static bool
17744 resolve_overloaded_unification (tree tparms,
17745 tree targs,
17746 tree parm,
17747 tree arg,
17748 unification_kind_t strict,
17749 int sub_strict,
17750 bool explain_p)
17751 {
17752 tree tempargs = copy_node (targs);
17753 int good = 0;
17754 tree goodfn = NULL_TREE;
17755 bool addr_p;
17756
17757 if (TREE_CODE (arg) == ADDR_EXPR)
17758 {
17759 arg = TREE_OPERAND (arg, 0);
17760 addr_p = true;
17761 }
17762 else
17763 addr_p = false;
17764
17765 if (TREE_CODE (arg) == COMPONENT_REF)
17766 /* Handle `&x' where `x' is some static or non-static member
17767 function name. */
17768 arg = TREE_OPERAND (arg, 1);
17769
17770 if (TREE_CODE (arg) == OFFSET_REF)
17771 arg = TREE_OPERAND (arg, 1);
17772
17773 /* Strip baselink information. */
17774 if (BASELINK_P (arg))
17775 arg = BASELINK_FUNCTIONS (arg);
17776
17777 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
17778 {
17779 /* If we got some explicit template args, we need to plug them into
17780 the affected templates before we try to unify, in case the
17781 explicit args will completely resolve the templates in question. */
17782
17783 int ok = 0;
17784 tree expl_subargs = TREE_OPERAND (arg, 1);
17785 arg = TREE_OPERAND (arg, 0);
17786
17787 for (; arg; arg = OVL_NEXT (arg))
17788 {
17789 tree fn = OVL_CURRENT (arg);
17790 tree subargs, elem;
17791
17792 if (TREE_CODE (fn) != TEMPLATE_DECL)
17793 continue;
17794
17795 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17796 expl_subargs, NULL_TREE, tf_none,
17797 /*require_all_args=*/true,
17798 /*use_default_args=*/true);
17799 if (subargs != error_mark_node
17800 && !any_dependent_template_arguments_p (subargs))
17801 {
17802 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
17803 if (try_one_overload (tparms, targs, tempargs, parm,
17804 elem, strict, sub_strict, addr_p, explain_p)
17805 && (!goodfn || !same_type_p (goodfn, elem)))
17806 {
17807 goodfn = elem;
17808 ++good;
17809 }
17810 }
17811 else if (subargs)
17812 ++ok;
17813 }
17814 /* If no templates (or more than one) are fully resolved by the
17815 explicit arguments, this template-id is a non-deduced context; it
17816 could still be OK if we deduce all template arguments for the
17817 enclosing call through other arguments. */
17818 if (good != 1)
17819 good = ok;
17820 }
17821 else if (TREE_CODE (arg) != OVERLOAD
17822 && TREE_CODE (arg) != FUNCTION_DECL)
17823 /* If ARG is, for example, "(0, &f)" then its type will be unknown
17824 -- but the deduction does not succeed because the expression is
17825 not just the function on its own. */
17826 return false;
17827 else
17828 for (; arg; arg = OVL_NEXT (arg))
17829 if (try_one_overload (tparms, targs, tempargs, parm,
17830 TREE_TYPE (OVL_CURRENT (arg)),
17831 strict, sub_strict, addr_p, explain_p)
17832 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
17833 {
17834 goodfn = OVL_CURRENT (arg);
17835 ++good;
17836 }
17837
17838 /* [temp.deduct.type] A template-argument can be deduced from a pointer
17839 to function or pointer to member function argument if the set of
17840 overloaded functions does not contain function templates and at most
17841 one of a set of overloaded functions provides a unique match.
17842
17843 So if we found multiple possibilities, we return success but don't
17844 deduce anything. */
17845
17846 if (good == 1)
17847 {
17848 int i = TREE_VEC_LENGTH (targs);
17849 for (; i--; )
17850 if (TREE_VEC_ELT (tempargs, i))
17851 {
17852 tree old = TREE_VEC_ELT (targs, i);
17853 tree new_ = TREE_VEC_ELT (tempargs, i);
17854 if (new_ && old && ARGUMENT_PACK_P (old)
17855 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
17856 /* Don't forget explicit template arguments in a pack. */
17857 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
17858 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
17859 TREE_VEC_ELT (targs, i) = new_;
17860 }
17861 }
17862 if (good)
17863 return true;
17864
17865 return false;
17866 }
17867
17868 /* Core DR 115: In contexts where deduction is done and fails, or in
17869 contexts where deduction is not done, if a template argument list is
17870 specified and it, along with any default template arguments, identifies
17871 a single function template specialization, then the template-id is an
17872 lvalue for the function template specialization. */
17873
17874 tree
17875 resolve_nondeduced_context (tree orig_expr)
17876 {
17877 tree expr, offset, baselink;
17878 bool addr;
17879
17880 if (!type_unknown_p (orig_expr))
17881 return orig_expr;
17882
17883 expr = orig_expr;
17884 addr = false;
17885 offset = NULL_TREE;
17886 baselink = NULL_TREE;
17887
17888 if (TREE_CODE (expr) == ADDR_EXPR)
17889 {
17890 expr = TREE_OPERAND (expr, 0);
17891 addr = true;
17892 }
17893 if (TREE_CODE (expr) == OFFSET_REF)
17894 {
17895 offset = expr;
17896 expr = TREE_OPERAND (expr, 1);
17897 }
17898 if (BASELINK_P (expr))
17899 {
17900 baselink = expr;
17901 expr = BASELINK_FUNCTIONS (expr);
17902 }
17903
17904 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
17905 {
17906 int good = 0;
17907 tree goodfn = NULL_TREE;
17908
17909 /* If we got some explicit template args, we need to plug them into
17910 the affected templates before we try to unify, in case the
17911 explicit args will completely resolve the templates in question. */
17912
17913 tree expl_subargs = TREE_OPERAND (expr, 1);
17914 tree arg = TREE_OPERAND (expr, 0);
17915 tree badfn = NULL_TREE;
17916 tree badargs = NULL_TREE;
17917
17918 for (; arg; arg = OVL_NEXT (arg))
17919 {
17920 tree fn = OVL_CURRENT (arg);
17921 tree subargs, elem;
17922
17923 if (TREE_CODE (fn) != TEMPLATE_DECL)
17924 continue;
17925
17926 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17927 expl_subargs, NULL_TREE, tf_none,
17928 /*require_all_args=*/true,
17929 /*use_default_args=*/true);
17930 if (subargs != error_mark_node
17931 && !any_dependent_template_arguments_p (subargs))
17932 {
17933 elem = instantiate_template (fn, subargs, tf_none);
17934 if (elem == error_mark_node)
17935 {
17936 badfn = fn;
17937 badargs = subargs;
17938 }
17939 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
17940 {
17941 goodfn = elem;
17942 ++good;
17943 }
17944 }
17945 }
17946 if (good == 1)
17947 {
17948 mark_used (goodfn);
17949 expr = goodfn;
17950 if (baselink)
17951 expr = build_baselink (BASELINK_BINFO (baselink),
17952 BASELINK_ACCESS_BINFO (baselink),
17953 expr, BASELINK_OPTYPE (baselink));
17954 if (offset)
17955 {
17956 tree base
17957 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
17958 expr = build_offset_ref (base, expr, addr, tf_warning_or_error);
17959 }
17960 if (addr)
17961 expr = cp_build_addr_expr (expr, tf_warning_or_error);
17962 return expr;
17963 }
17964 else if (good == 0 && badargs)
17965 /* There were no good options and at least one bad one, so let the
17966 user know what the problem is. */
17967 instantiate_template (badfn, badargs, tf_warning_or_error);
17968 }
17969 return orig_expr;
17970 }
17971
17972 /* Subroutine of resolve_overloaded_unification; does deduction for a single
17973 overload. Fills TARGS with any deduced arguments, or error_mark_node if
17974 different overloads deduce different arguments for a given parm.
17975 ADDR_P is true if the expression for which deduction is being
17976 performed was of the form "& fn" rather than simply "fn".
17977
17978 Returns 1 on success. */
17979
17980 static int
17981 try_one_overload (tree tparms,
17982 tree orig_targs,
17983 tree targs,
17984 tree parm,
17985 tree arg,
17986 unification_kind_t strict,
17987 int sub_strict,
17988 bool addr_p,
17989 bool explain_p)
17990 {
17991 int nargs;
17992 tree tempargs;
17993 int i;
17994
17995 if (arg == error_mark_node)
17996 return 0;
17997
17998 /* [temp.deduct.type] A template-argument can be deduced from a pointer
17999 to function or pointer to member function argument if the set of
18000 overloaded functions does not contain function templates and at most
18001 one of a set of overloaded functions provides a unique match.
18002
18003 So if this is a template, just return success. */
18004
18005 if (uses_template_parms (arg))
18006 return 1;
18007
18008 if (TREE_CODE (arg) == METHOD_TYPE)
18009 arg = build_ptrmemfunc_type (build_pointer_type (arg));
18010 else if (addr_p)
18011 arg = build_pointer_type (arg);
18012
18013 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
18014
18015 /* We don't copy orig_targs for this because if we have already deduced
18016 some template args from previous args, unify would complain when we
18017 try to deduce a template parameter for the same argument, even though
18018 there isn't really a conflict. */
18019 nargs = TREE_VEC_LENGTH (targs);
18020 tempargs = make_tree_vec (nargs);
18021
18022 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
18023 return 0;
18024
18025 /* First make sure we didn't deduce anything that conflicts with
18026 explicitly specified args. */
18027 for (i = nargs; i--; )
18028 {
18029 tree elt = TREE_VEC_ELT (tempargs, i);
18030 tree oldelt = TREE_VEC_ELT (orig_targs, i);
18031
18032 if (!elt)
18033 /*NOP*/;
18034 else if (uses_template_parms (elt))
18035 /* Since we're unifying against ourselves, we will fill in
18036 template args used in the function parm list with our own
18037 template parms. Discard them. */
18038 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
18039 else if (oldelt && !template_args_equal (oldelt, elt))
18040 return 0;
18041 }
18042
18043 for (i = nargs; i--; )
18044 {
18045 tree elt = TREE_VEC_ELT (tempargs, i);
18046
18047 if (elt)
18048 TREE_VEC_ELT (targs, i) = elt;
18049 }
18050
18051 return 1;
18052 }
18053
18054 /* PARM is a template class (perhaps with unbound template
18055 parameters). ARG is a fully instantiated type. If ARG can be
18056 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
18057 TARGS are as for unify. */
18058
18059 static tree
18060 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
18061 bool explain_p)
18062 {
18063 tree copy_of_targs;
18064
18065 if (!CLASSTYPE_TEMPLATE_INFO (arg)
18066 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
18067 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
18068 return NULL_TREE;
18069
18070 /* We need to make a new template argument vector for the call to
18071 unify. If we used TARGS, we'd clutter it up with the result of
18072 the attempted unification, even if this class didn't work out.
18073 We also don't want to commit ourselves to all the unifications
18074 we've already done, since unification is supposed to be done on
18075 an argument-by-argument basis. In other words, consider the
18076 following pathological case:
18077
18078 template <int I, int J, int K>
18079 struct S {};
18080
18081 template <int I, int J>
18082 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
18083
18084 template <int I, int J, int K>
18085 void f(S<I, J, K>, S<I, I, I>);
18086
18087 void g() {
18088 S<0, 0, 0> s0;
18089 S<0, 1, 2> s2;
18090
18091 f(s0, s2);
18092 }
18093
18094 Now, by the time we consider the unification involving `s2', we
18095 already know that we must have `f<0, 0, 0>'. But, even though
18096 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
18097 because there are two ways to unify base classes of S<0, 1, 2>
18098 with S<I, I, I>. If we kept the already deduced knowledge, we
18099 would reject the possibility I=1. */
18100 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
18101
18102 /* If unification failed, we're done. */
18103 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
18104 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
18105 return NULL_TREE;
18106
18107 return arg;
18108 }
18109
18110 /* Given a template type PARM and a class type ARG, find the unique
18111 base type in ARG that is an instance of PARM. We do not examine
18112 ARG itself; only its base-classes. If there is not exactly one
18113 appropriate base class, return NULL_TREE. PARM may be the type of
18114 a partial specialization, as well as a plain template type. Used
18115 by unify. */
18116
18117 static enum template_base_result
18118 get_template_base (tree tparms, tree targs, tree parm, tree arg,
18119 bool explain_p, tree *result)
18120 {
18121 tree rval = NULL_TREE;
18122 tree binfo;
18123
18124 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
18125
18126 binfo = TYPE_BINFO (complete_type (arg));
18127 if (!binfo)
18128 {
18129 /* The type could not be completed. */
18130 *result = NULL_TREE;
18131 return tbr_incomplete_type;
18132 }
18133
18134 /* Walk in inheritance graph order. The search order is not
18135 important, and this avoids multiple walks of virtual bases. */
18136 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
18137 {
18138 tree r = try_class_unification (tparms, targs, parm,
18139 BINFO_TYPE (binfo), explain_p);
18140
18141 if (r)
18142 {
18143 /* If there is more than one satisfactory baseclass, then:
18144
18145 [temp.deduct.call]
18146
18147 If they yield more than one possible deduced A, the type
18148 deduction fails.
18149
18150 applies. */
18151 if (rval && !same_type_p (r, rval))
18152 {
18153 *result = NULL_TREE;
18154 return tbr_ambiguous_baseclass;
18155 }
18156
18157 rval = r;
18158 }
18159 }
18160
18161 *result = rval;
18162 return tbr_success;
18163 }
18164
18165 /* Returns the level of DECL, which declares a template parameter. */
18166
18167 static int
18168 template_decl_level (tree decl)
18169 {
18170 switch (TREE_CODE (decl))
18171 {
18172 case TYPE_DECL:
18173 case TEMPLATE_DECL:
18174 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
18175
18176 case PARM_DECL:
18177 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
18178
18179 default:
18180 gcc_unreachable ();
18181 }
18182 return 0;
18183 }
18184
18185 /* Decide whether ARG can be unified with PARM, considering only the
18186 cv-qualifiers of each type, given STRICT as documented for unify.
18187 Returns nonzero iff the unification is OK on that basis. */
18188
18189 static int
18190 check_cv_quals_for_unify (int strict, tree arg, tree parm)
18191 {
18192 int arg_quals = cp_type_quals (arg);
18193 int parm_quals = cp_type_quals (parm);
18194
18195 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18196 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
18197 {
18198 /* Although a CVR qualifier is ignored when being applied to a
18199 substituted template parameter ([8.3.2]/1 for example), that
18200 does not allow us to unify "const T" with "int&" because both
18201 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
18202 It is ok when we're allowing additional CV qualifiers
18203 at the outer level [14.8.2.1]/3,1st bullet. */
18204 if ((TREE_CODE (arg) == REFERENCE_TYPE
18205 || TREE_CODE (arg) == FUNCTION_TYPE
18206 || TREE_CODE (arg) == METHOD_TYPE)
18207 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
18208 return 0;
18209
18210 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
18211 && (parm_quals & TYPE_QUAL_RESTRICT))
18212 return 0;
18213 }
18214
18215 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
18216 && (arg_quals & parm_quals) != parm_quals)
18217 return 0;
18218
18219 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
18220 && (parm_quals & arg_quals) != arg_quals)
18221 return 0;
18222
18223 return 1;
18224 }
18225
18226 /* Determines the LEVEL and INDEX for the template parameter PARM. */
18227 void
18228 template_parm_level_and_index (tree parm, int* level, int* index)
18229 {
18230 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18231 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
18232 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
18233 {
18234 *index = TEMPLATE_TYPE_IDX (parm);
18235 *level = TEMPLATE_TYPE_LEVEL (parm);
18236 }
18237 else
18238 {
18239 *index = TEMPLATE_PARM_IDX (parm);
18240 *level = TEMPLATE_PARM_LEVEL (parm);
18241 }
18242 }
18243
18244 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
18245 do { \
18246 if (unify (TP, TA, P, A, S, EP)) \
18247 return 1; \
18248 } while (0);
18249
18250 /* Unifies the remaining arguments in PACKED_ARGS with the pack
18251 expansion at the end of PACKED_PARMS. Returns 0 if the type
18252 deduction succeeds, 1 otherwise. STRICT is the same as in
18253 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
18254 call argument list. We'll need to adjust the arguments to make them
18255 types. SUBR tells us if this is from a recursive call to
18256 type_unification_real, or for comparing two template argument
18257 lists. */
18258
18259 static int
18260 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
18261 tree packed_args, unification_kind_t strict,
18262 bool subr, bool explain_p)
18263 {
18264 tree parm
18265 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
18266 tree pattern = PACK_EXPANSION_PATTERN (parm);
18267 tree pack, packs = NULL_TREE;
18268 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
18269
18270 packed_args = expand_template_argument_pack (packed_args);
18271
18272 int len = TREE_VEC_LENGTH (packed_args);
18273
18274 /* Determine the parameter packs we will be deducing from the
18275 pattern, and record their current deductions. */
18276 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
18277 pack; pack = TREE_CHAIN (pack))
18278 {
18279 tree parm_pack = TREE_VALUE (pack);
18280 int idx, level;
18281
18282 /* Determine the index and level of this parameter pack. */
18283 template_parm_level_and_index (parm_pack, &level, &idx);
18284
18285 /* Keep track of the parameter packs and their corresponding
18286 argument packs. */
18287 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
18288 TREE_TYPE (packs) = make_tree_vec (len - start);
18289 }
18290
18291 /* Loop through all of the arguments that have not yet been
18292 unified and unify each with the pattern. */
18293 for (i = start; i < len; i++)
18294 {
18295 tree parm;
18296 bool any_explicit = false;
18297 tree arg = TREE_VEC_ELT (packed_args, i);
18298
18299 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
18300 or the element of its argument pack at the current index if
18301 this argument was explicitly specified. */
18302 for (pack = packs; pack; pack = TREE_CHAIN (pack))
18303 {
18304 int idx, level;
18305 tree arg, pargs;
18306 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
18307
18308 arg = NULL_TREE;
18309 if (TREE_VALUE (pack)
18310 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
18311 && (i - start < TREE_VEC_LENGTH (pargs)))
18312 {
18313 any_explicit = true;
18314 arg = TREE_VEC_ELT (pargs, i - start);
18315 }
18316 TMPL_ARG (targs, level, idx) = arg;
18317 }
18318
18319 /* If we had explicit template arguments, substitute them into the
18320 pattern before deduction. */
18321 if (any_explicit)
18322 {
18323 /* Some arguments might still be unspecified or dependent. */
18324 bool dependent;
18325 ++processing_template_decl;
18326 dependent = any_dependent_template_arguments_p (targs);
18327 if (!dependent)
18328 --processing_template_decl;
18329 parm = tsubst (pattern, targs,
18330 explain_p ? tf_warning_or_error : tf_none,
18331 NULL_TREE);
18332 if (dependent)
18333 --processing_template_decl;
18334 if (parm == error_mark_node)
18335 return 1;
18336 }
18337 else
18338 parm = pattern;
18339
18340 /* Unify the pattern with the current argument. */
18341 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
18342 explain_p))
18343 return 1;
18344
18345 /* For each parameter pack, collect the deduced value. */
18346 for (pack = packs; pack; pack = TREE_CHAIN (pack))
18347 {
18348 int idx, level;
18349 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
18350
18351 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
18352 TMPL_ARG (targs, level, idx);
18353 }
18354 }
18355
18356 /* Verify that the results of unification with the parameter packs
18357 produce results consistent with what we've seen before, and make
18358 the deduced argument packs available. */
18359 for (pack = packs; pack; pack = TREE_CHAIN (pack))
18360 {
18361 tree old_pack = TREE_VALUE (pack);
18362 tree new_args = TREE_TYPE (pack);
18363 int i, len = TREE_VEC_LENGTH (new_args);
18364 int idx, level;
18365 bool nondeduced_p = false;
18366
18367 /* By default keep the original deduced argument pack.
18368 If necessary, more specific code is going to update the
18369 resulting deduced argument later down in this function. */
18370 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
18371 TMPL_ARG (targs, level, idx) = old_pack;
18372
18373 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
18374 actually deduce anything. */
18375 for (i = 0; i < len && !nondeduced_p; ++i)
18376 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
18377 nondeduced_p = true;
18378 if (nondeduced_p)
18379 continue;
18380
18381 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
18382 {
18383 /* If we had fewer function args than explicit template args,
18384 just use the explicits. */
18385 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
18386 int explicit_len = TREE_VEC_LENGTH (explicit_args);
18387 if (len < explicit_len)
18388 new_args = explicit_args;
18389 }
18390
18391 if (!old_pack)
18392 {
18393 tree result;
18394 /* Build the deduced *_ARGUMENT_PACK. */
18395 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
18396 {
18397 result = make_node (NONTYPE_ARGUMENT_PACK);
18398 TREE_TYPE (result) =
18399 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
18400 TREE_CONSTANT (result) = 1;
18401 }
18402 else
18403 result = cxx_make_type (TYPE_ARGUMENT_PACK);
18404
18405 SET_ARGUMENT_PACK_ARGS (result, new_args);
18406
18407 /* Note the deduced argument packs for this parameter
18408 pack. */
18409 TMPL_ARG (targs, level, idx) = result;
18410 }
18411 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
18412 && (ARGUMENT_PACK_ARGS (old_pack)
18413 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
18414 {
18415 /* We only had the explicitly-provided arguments before, but
18416 now we have a complete set of arguments. */
18417 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
18418
18419 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
18420 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
18421 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
18422 }
18423 else
18424 {
18425 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
18426 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
18427
18428 if (!comp_template_args_with_info (old_args, new_args,
18429 &bad_old_arg, &bad_new_arg))
18430 /* Inconsistent unification of this parameter pack. */
18431 return unify_parameter_pack_inconsistent (explain_p,
18432 bad_old_arg,
18433 bad_new_arg);
18434 }
18435 }
18436
18437 return unify_success (explain_p);
18438 }
18439
18440 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
18441 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
18442 parameters and return value are as for unify. */
18443
18444 static int
18445 unify_array_domain (tree tparms, tree targs,
18446 tree parm_dom, tree arg_dom,
18447 bool explain_p)
18448 {
18449 tree parm_max;
18450 tree arg_max;
18451 bool parm_cst;
18452 bool arg_cst;
18453
18454 /* Our representation of array types uses "N - 1" as the
18455 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
18456 not an integer constant. We cannot unify arbitrarily
18457 complex expressions, so we eliminate the MINUS_EXPRs
18458 here. */
18459 parm_max = TYPE_MAX_VALUE (parm_dom);
18460 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
18461 if (!parm_cst)
18462 {
18463 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
18464 parm_max = TREE_OPERAND (parm_max, 0);
18465 }
18466 arg_max = TYPE_MAX_VALUE (arg_dom);
18467 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
18468 if (!arg_cst)
18469 {
18470 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
18471 trying to unify the type of a variable with the type
18472 of a template parameter. For example:
18473
18474 template <unsigned int N>
18475 void f (char (&) [N]);
18476 int g();
18477 void h(int i) {
18478 char a[g(i)];
18479 f(a);
18480 }
18481
18482 Here, the type of the ARG will be "int [g(i)]", and
18483 may be a SAVE_EXPR, etc. */
18484 if (TREE_CODE (arg_max) != MINUS_EXPR)
18485 return unify_vla_arg (explain_p, arg_dom);
18486 arg_max = TREE_OPERAND (arg_max, 0);
18487 }
18488
18489 /* If only one of the bounds used a MINUS_EXPR, compensate
18490 by adding one to the other bound. */
18491 if (parm_cst && !arg_cst)
18492 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
18493 integer_type_node,
18494 parm_max,
18495 integer_one_node);
18496 else if (arg_cst && !parm_cst)
18497 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
18498 integer_type_node,
18499 arg_max,
18500 integer_one_node);
18501
18502 return unify (tparms, targs, parm_max, arg_max,
18503 UNIFY_ALLOW_INTEGER, explain_p);
18504 }
18505
18506 /* Deduce the value of template parameters. TPARMS is the (innermost)
18507 set of template parameters to a template. TARGS is the bindings
18508 for those template parameters, as determined thus far; TARGS may
18509 include template arguments for outer levels of template parameters
18510 as well. PARM is a parameter to a template function, or a
18511 subcomponent of that parameter; ARG is the corresponding argument.
18512 This function attempts to match PARM with ARG in a manner
18513 consistent with the existing assignments in TARGS. If more values
18514 are deduced, then TARGS is updated.
18515
18516 Returns 0 if the type deduction succeeds, 1 otherwise. The
18517 parameter STRICT is a bitwise or of the following flags:
18518
18519 UNIFY_ALLOW_NONE:
18520 Require an exact match between PARM and ARG.
18521 UNIFY_ALLOW_MORE_CV_QUAL:
18522 Allow the deduced ARG to be more cv-qualified (by qualification
18523 conversion) than ARG.
18524 UNIFY_ALLOW_LESS_CV_QUAL:
18525 Allow the deduced ARG to be less cv-qualified than ARG.
18526 UNIFY_ALLOW_DERIVED:
18527 Allow the deduced ARG to be a template base class of ARG,
18528 or a pointer to a template base class of the type pointed to by
18529 ARG.
18530 UNIFY_ALLOW_INTEGER:
18531 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
18532 case for more information.
18533 UNIFY_ALLOW_OUTER_LEVEL:
18534 This is the outermost level of a deduction. Used to determine validity
18535 of qualification conversions. A valid qualification conversion must
18536 have const qualified pointers leading up to the inner type which
18537 requires additional CV quals, except at the outer level, where const
18538 is not required [conv.qual]. It would be normal to set this flag in
18539 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
18540 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
18541 This is the outermost level of a deduction, and PARM can be more CV
18542 qualified at this point.
18543 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
18544 This is the outermost level of a deduction, and PARM can be less CV
18545 qualified at this point. */
18546
18547 static int
18548 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
18549 bool explain_p)
18550 {
18551 int idx;
18552 tree targ;
18553 tree tparm;
18554 int strict_in = strict;
18555
18556 /* I don't think this will do the right thing with respect to types.
18557 But the only case I've seen it in so far has been array bounds, where
18558 signedness is the only information lost, and I think that will be
18559 okay. */
18560 while (TREE_CODE (parm) == NOP_EXPR)
18561 parm = TREE_OPERAND (parm, 0);
18562
18563 if (arg == error_mark_node)
18564 return unify_invalid (explain_p);
18565 if (arg == unknown_type_node
18566 || arg == init_list_type_node)
18567 /* We can't deduce anything from this, but we might get all the
18568 template args from other function args. */
18569 return unify_success (explain_p);
18570
18571 /* If PARM uses template parameters, then we can't bail out here,
18572 even if ARG == PARM, since we won't record unifications for the
18573 template parameters. We might need them if we're trying to
18574 figure out which of two things is more specialized. */
18575 if (arg == parm && !uses_template_parms (parm))
18576 return unify_success (explain_p);
18577
18578 /* Handle init lists early, so the rest of the function can assume
18579 we're dealing with a type. */
18580 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
18581 {
18582 tree elt, elttype;
18583 unsigned i;
18584 tree orig_parm = parm;
18585
18586 /* Replace T with std::initializer_list<T> for deduction. */
18587 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18588 && flag_deduce_init_list)
18589 parm = listify (parm);
18590
18591 if (!is_std_init_list (parm)
18592 && TREE_CODE (parm) != ARRAY_TYPE)
18593 /* We can only deduce from an initializer list argument if the
18594 parameter is std::initializer_list or an array; otherwise this
18595 is a non-deduced context. */
18596 return unify_success (explain_p);
18597
18598 if (TREE_CODE (parm) == ARRAY_TYPE)
18599 elttype = TREE_TYPE (parm);
18600 else
18601 {
18602 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
18603 /* Deduction is defined in terms of a single type, so just punt
18604 on the (bizarre) std::initializer_list<T...>. */
18605 if (PACK_EXPANSION_P (elttype))
18606 return unify_success (explain_p);
18607 }
18608
18609 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
18610 {
18611 int elt_strict = strict;
18612
18613 if (elt == error_mark_node)
18614 return unify_invalid (explain_p);
18615
18616 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
18617 {
18618 tree type = TREE_TYPE (elt);
18619 if (type == error_mark_node)
18620 return unify_invalid (explain_p);
18621 /* It should only be possible to get here for a call. */
18622 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
18623 elt_strict |= maybe_adjust_types_for_deduction
18624 (DEDUCE_CALL, &elttype, &type, elt);
18625 elt = type;
18626 }
18627
18628 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
18629 explain_p);
18630 }
18631
18632 if (TREE_CODE (parm) == ARRAY_TYPE
18633 && deducible_array_bound (TYPE_DOMAIN (parm)))
18634 {
18635 /* Also deduce from the length of the initializer list. */
18636 tree max = size_int (CONSTRUCTOR_NELTS (arg));
18637 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
18638 if (idx == error_mark_node)
18639 return unify_invalid (explain_p);
18640 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
18641 idx, explain_p);
18642 }
18643
18644 /* If the std::initializer_list<T> deduction worked, replace the
18645 deduced A with std::initializer_list<A>. */
18646 if (orig_parm != parm)
18647 {
18648 idx = TEMPLATE_TYPE_IDX (orig_parm);
18649 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
18650 targ = listify (targ);
18651 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
18652 }
18653 return unify_success (explain_p);
18654 }
18655
18656 /* Immediately reject some pairs that won't unify because of
18657 cv-qualification mismatches. */
18658 if (TREE_CODE (arg) == TREE_CODE (parm)
18659 && TYPE_P (arg)
18660 /* It is the elements of the array which hold the cv quals of an array
18661 type, and the elements might be template type parms. We'll check
18662 when we recurse. */
18663 && TREE_CODE (arg) != ARRAY_TYPE
18664 /* We check the cv-qualifiers when unifying with template type
18665 parameters below. We want to allow ARG `const T' to unify with
18666 PARM `T' for example, when computing which of two templates
18667 is more specialized, for example. */
18668 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
18669 && !check_cv_quals_for_unify (strict_in, arg, parm))
18670 return unify_cv_qual_mismatch (explain_p, parm, arg);
18671
18672 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
18673 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
18674 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
18675 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
18676 strict &= ~UNIFY_ALLOW_DERIVED;
18677 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
18678 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
18679
18680 switch (TREE_CODE (parm))
18681 {
18682 case TYPENAME_TYPE:
18683 case SCOPE_REF:
18684 case UNBOUND_CLASS_TEMPLATE:
18685 /* In a type which contains a nested-name-specifier, template
18686 argument values cannot be deduced for template parameters used
18687 within the nested-name-specifier. */
18688 return unify_success (explain_p);
18689
18690 case TEMPLATE_TYPE_PARM:
18691 case TEMPLATE_TEMPLATE_PARM:
18692 case BOUND_TEMPLATE_TEMPLATE_PARM:
18693 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
18694 if (error_operand_p (tparm))
18695 return unify_invalid (explain_p);
18696
18697 if (TEMPLATE_TYPE_LEVEL (parm)
18698 != template_decl_level (tparm))
18699 /* The PARM is not one we're trying to unify. Just check
18700 to see if it matches ARG. */
18701 {
18702 if (TREE_CODE (arg) == TREE_CODE (parm)
18703 && (is_auto (parm) ? is_auto (arg)
18704 : same_type_p (parm, arg)))
18705 return unify_success (explain_p);
18706 else
18707 return unify_type_mismatch (explain_p, parm, arg);
18708 }
18709 idx = TEMPLATE_TYPE_IDX (parm);
18710 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
18711 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
18712 if (error_operand_p (tparm))
18713 return unify_invalid (explain_p);
18714
18715 /* Check for mixed types and values. */
18716 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18717 && TREE_CODE (tparm) != TYPE_DECL)
18718 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
18719 && TREE_CODE (tparm) != TEMPLATE_DECL))
18720 gcc_unreachable ();
18721
18722 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
18723 {
18724 /* ARG must be constructed from a template class or a template
18725 template parameter. */
18726 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
18727 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
18728 return unify_template_deduction_failure (explain_p, parm, arg);
18729 {
18730 tree parmvec = TYPE_TI_ARGS (parm);
18731 /* An alias template name is never deduced. */
18732 if (TYPE_ALIAS_P (arg))
18733 arg = strip_typedefs (arg);
18734 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
18735 tree full_argvec = add_to_template_args (targs, argvec);
18736 tree parm_parms
18737 = DECL_INNERMOST_TEMPLATE_PARMS
18738 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
18739 int i, len;
18740 int parm_variadic_p = 0;
18741
18742 /* The resolution to DR150 makes clear that default
18743 arguments for an N-argument may not be used to bind T
18744 to a template template parameter with fewer than N
18745 parameters. It is not safe to permit the binding of
18746 default arguments as an extension, as that may change
18747 the meaning of a conforming program. Consider:
18748
18749 struct Dense { static const unsigned int dim = 1; };
18750
18751 template <template <typename> class View,
18752 typename Block>
18753 void operator+(float, View<Block> const&);
18754
18755 template <typename Block,
18756 unsigned int Dim = Block::dim>
18757 struct Lvalue_proxy { operator float() const; };
18758
18759 void
18760 test_1d (void) {
18761 Lvalue_proxy<Dense> p;
18762 float b;
18763 b + p;
18764 }
18765
18766 Here, if Lvalue_proxy is permitted to bind to View, then
18767 the global operator+ will be used; if they are not, the
18768 Lvalue_proxy will be converted to float. */
18769 if (coerce_template_parms (parm_parms,
18770 full_argvec,
18771 TYPE_TI_TEMPLATE (parm),
18772 (explain_p
18773 ? tf_warning_or_error
18774 : tf_none),
18775 /*require_all_args=*/true,
18776 /*use_default_args=*/false)
18777 == error_mark_node)
18778 return 1;
18779
18780 /* Deduce arguments T, i from TT<T> or TT<i>.
18781 We check each element of PARMVEC and ARGVEC individually
18782 rather than the whole TREE_VEC since they can have
18783 different number of elements. */
18784
18785 parmvec = expand_template_argument_pack (parmvec);
18786 argvec = expand_template_argument_pack (argvec);
18787
18788 len = TREE_VEC_LENGTH (parmvec);
18789
18790 /* Check if the parameters end in a pack, making them
18791 variadic. */
18792 if (len > 0
18793 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
18794 parm_variadic_p = 1;
18795
18796 for (i = 0; i < len - parm_variadic_p; ++i)
18797 /* If the template argument list of P contains a pack
18798 expansion that is not the last template argument, the
18799 entire template argument list is a non-deduced
18800 context. */
18801 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
18802 return unify_success (explain_p);
18803
18804 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
18805 return unify_too_few_arguments (explain_p,
18806 TREE_VEC_LENGTH (argvec), len);
18807
18808 for (i = 0; i < len - parm_variadic_p; ++i)
18809 {
18810 RECUR_AND_CHECK_FAILURE (tparms, targs,
18811 TREE_VEC_ELT (parmvec, i),
18812 TREE_VEC_ELT (argvec, i),
18813 UNIFY_ALLOW_NONE, explain_p);
18814 }
18815
18816 if (parm_variadic_p
18817 && unify_pack_expansion (tparms, targs,
18818 parmvec, argvec,
18819 DEDUCE_EXACT,
18820 /*subr=*/true, explain_p))
18821 return 1;
18822 }
18823 arg = TYPE_TI_TEMPLATE (arg);
18824
18825 /* Fall through to deduce template name. */
18826 }
18827
18828 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
18829 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
18830 {
18831 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
18832
18833 /* Simple cases: Value already set, does match or doesn't. */
18834 if (targ != NULL_TREE && template_args_equal (targ, arg))
18835 return unify_success (explain_p);
18836 else if (targ)
18837 return unify_inconsistency (explain_p, parm, targ, arg);
18838 }
18839 else
18840 {
18841 /* If PARM is `const T' and ARG is only `int', we don't have
18842 a match unless we are allowing additional qualification.
18843 If ARG is `const int' and PARM is just `T' that's OK;
18844 that binds `const int' to `T'. */
18845 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
18846 arg, parm))
18847 return unify_cv_qual_mismatch (explain_p, parm, arg);
18848
18849 /* Consider the case where ARG is `const volatile int' and
18850 PARM is `const T'. Then, T should be `volatile int'. */
18851 arg = cp_build_qualified_type_real
18852 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
18853 if (arg == error_mark_node)
18854 return unify_invalid (explain_p);
18855
18856 /* Simple cases: Value already set, does match or doesn't. */
18857 if (targ != NULL_TREE && same_type_p (targ, arg))
18858 return unify_success (explain_p);
18859 else if (targ)
18860 return unify_inconsistency (explain_p, parm, targ, arg);
18861
18862 /* Make sure that ARG is not a variable-sized array. (Note
18863 that were talking about variable-sized arrays (like
18864 `int[n]'), rather than arrays of unknown size (like
18865 `int[]').) We'll get very confused by such a type since
18866 the bound of the array is not constant, and therefore
18867 not mangleable. Besides, such types are not allowed in
18868 ISO C++, so we can do as we please here. We do allow
18869 them for 'auto' deduction, since that isn't ABI-exposed. */
18870 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
18871 return unify_vla_arg (explain_p, arg);
18872
18873 /* Strip typedefs as in convert_template_argument. */
18874 arg = canonicalize_type_argument (arg, tf_none);
18875 }
18876
18877 /* If ARG is a parameter pack or an expansion, we cannot unify
18878 against it unless PARM is also a parameter pack. */
18879 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
18880 && !template_parameter_pack_p (parm))
18881 return unify_parameter_pack_mismatch (explain_p, parm, arg);
18882
18883 /* If the argument deduction results is a METHOD_TYPE,
18884 then there is a problem.
18885 METHOD_TYPE doesn't map to any real C++ type the result of
18886 the deduction can not be of that type. */
18887 if (TREE_CODE (arg) == METHOD_TYPE)
18888 return unify_method_type_error (explain_p, arg);
18889
18890 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
18891 return unify_success (explain_p);
18892
18893 case TEMPLATE_PARM_INDEX:
18894 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
18895 if (error_operand_p (tparm))
18896 return unify_invalid (explain_p);
18897
18898 if (TEMPLATE_PARM_LEVEL (parm)
18899 != template_decl_level (tparm))
18900 {
18901 /* The PARM is not one we're trying to unify. Just check
18902 to see if it matches ARG. */
18903 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
18904 && cp_tree_equal (parm, arg));
18905 if (result)
18906 unify_expression_unequal (explain_p, parm, arg);
18907 return result;
18908 }
18909
18910 idx = TEMPLATE_PARM_IDX (parm);
18911 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
18912
18913 if (targ)
18914 {
18915 int x = !cp_tree_equal (targ, arg);
18916 if (x)
18917 unify_inconsistency (explain_p, parm, targ, arg);
18918 return x;
18919 }
18920
18921 /* [temp.deduct.type] If, in the declaration of a function template
18922 with a non-type template-parameter, the non-type
18923 template-parameter is used in an expression in the function
18924 parameter-list and, if the corresponding template-argument is
18925 deduced, the template-argument type shall match the type of the
18926 template-parameter exactly, except that a template-argument
18927 deduced from an array bound may be of any integral type.
18928 The non-type parameter might use already deduced type parameters. */
18929 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
18930 if (!TREE_TYPE (arg))
18931 /* Template-parameter dependent expression. Just accept it for now.
18932 It will later be processed in convert_template_argument. */
18933 ;
18934 else if (same_type_p (TREE_TYPE (arg), tparm))
18935 /* OK */;
18936 else if ((strict & UNIFY_ALLOW_INTEGER)
18937 && CP_INTEGRAL_TYPE_P (tparm))
18938 /* Convert the ARG to the type of PARM; the deduced non-type
18939 template argument must exactly match the types of the
18940 corresponding parameter. */
18941 arg = fold (build_nop (tparm, arg));
18942 else if (uses_template_parms (tparm))
18943 /* We haven't deduced the type of this parameter yet. Try again
18944 later. */
18945 return unify_success (explain_p);
18946 else
18947 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
18948
18949 /* If ARG is a parameter pack or an expansion, we cannot unify
18950 against it unless PARM is also a parameter pack. */
18951 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
18952 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
18953 return unify_parameter_pack_mismatch (explain_p, parm, arg);
18954
18955 {
18956 bool removed_attr = false;
18957 arg = strip_typedefs_expr (arg, &removed_attr);
18958 }
18959 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
18960 return unify_success (explain_p);
18961
18962 case PTRMEM_CST:
18963 {
18964 /* A pointer-to-member constant can be unified only with
18965 another constant. */
18966 if (TREE_CODE (arg) != PTRMEM_CST)
18967 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
18968
18969 /* Just unify the class member. It would be useless (and possibly
18970 wrong, depending on the strict flags) to unify also
18971 PTRMEM_CST_CLASS, because we want to be sure that both parm and
18972 arg refer to the same variable, even if through different
18973 classes. For instance:
18974
18975 struct A { int x; };
18976 struct B : A { };
18977
18978 Unification of &A::x and &B::x must succeed. */
18979 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
18980 PTRMEM_CST_MEMBER (arg), strict, explain_p);
18981 }
18982
18983 case POINTER_TYPE:
18984 {
18985 if (!TYPE_PTR_P (arg))
18986 return unify_type_mismatch (explain_p, parm, arg);
18987
18988 /* [temp.deduct.call]
18989
18990 A can be another pointer or pointer to member type that can
18991 be converted to the deduced A via a qualification
18992 conversion (_conv.qual_).
18993
18994 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
18995 This will allow for additional cv-qualification of the
18996 pointed-to types if appropriate. */
18997
18998 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
18999 /* The derived-to-base conversion only persists through one
19000 level of pointers. */
19001 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
19002
19003 return unify (tparms, targs, TREE_TYPE (parm),
19004 TREE_TYPE (arg), strict, explain_p);
19005 }
19006
19007 case REFERENCE_TYPE:
19008 if (TREE_CODE (arg) != REFERENCE_TYPE)
19009 return unify_type_mismatch (explain_p, parm, arg);
19010 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19011 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19012
19013 case ARRAY_TYPE:
19014 if (TREE_CODE (arg) != ARRAY_TYPE)
19015 return unify_type_mismatch (explain_p, parm, arg);
19016 if ((TYPE_DOMAIN (parm) == NULL_TREE)
19017 != (TYPE_DOMAIN (arg) == NULL_TREE))
19018 return unify_type_mismatch (explain_p, parm, arg);
19019 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19020 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19021 if (TYPE_DOMAIN (parm) != NULL_TREE)
19022 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19023 TYPE_DOMAIN (arg), explain_p);
19024 return unify_success (explain_p);
19025
19026 case REAL_TYPE:
19027 case COMPLEX_TYPE:
19028 case VECTOR_TYPE:
19029 case INTEGER_TYPE:
19030 case BOOLEAN_TYPE:
19031 case ENUMERAL_TYPE:
19032 case VOID_TYPE:
19033 case NULLPTR_TYPE:
19034 if (TREE_CODE (arg) != TREE_CODE (parm))
19035 return unify_type_mismatch (explain_p, parm, arg);
19036
19037 /* We have already checked cv-qualification at the top of the
19038 function. */
19039 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
19040 return unify_type_mismatch (explain_p, parm, arg);
19041
19042 /* As far as unification is concerned, this wins. Later checks
19043 will invalidate it if necessary. */
19044 return unify_success (explain_p);
19045
19046 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
19047 /* Type INTEGER_CST can come from ordinary constant template args. */
19048 case INTEGER_CST:
19049 while (TREE_CODE (arg) == NOP_EXPR)
19050 arg = TREE_OPERAND (arg, 0);
19051
19052 if (TREE_CODE (arg) != INTEGER_CST)
19053 return unify_template_argument_mismatch (explain_p, parm, arg);
19054 return (tree_int_cst_equal (parm, arg)
19055 ? unify_success (explain_p)
19056 : unify_template_argument_mismatch (explain_p, parm, arg));
19057
19058 case TREE_VEC:
19059 {
19060 int i, len, argslen;
19061 int parm_variadic_p = 0;
19062
19063 if (TREE_CODE (arg) != TREE_VEC)
19064 return unify_template_argument_mismatch (explain_p, parm, arg);
19065
19066 len = TREE_VEC_LENGTH (parm);
19067 argslen = TREE_VEC_LENGTH (arg);
19068
19069 /* Check for pack expansions in the parameters. */
19070 for (i = 0; i < len; ++i)
19071 {
19072 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
19073 {
19074 if (i == len - 1)
19075 /* We can unify against something with a trailing
19076 parameter pack. */
19077 parm_variadic_p = 1;
19078 else
19079 /* [temp.deduct.type]/9: If the template argument list of
19080 P contains a pack expansion that is not the last
19081 template argument, the entire template argument list
19082 is a non-deduced context. */
19083 return unify_success (explain_p);
19084 }
19085 }
19086
19087 /* If we don't have enough arguments to satisfy the parameters
19088 (not counting the pack expression at the end), or we have
19089 too many arguments for a parameter list that doesn't end in
19090 a pack expression, we can't unify. */
19091 if (parm_variadic_p
19092 ? argslen < len - parm_variadic_p
19093 : argslen != len)
19094 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
19095
19096 /* Unify all of the parameters that precede the (optional)
19097 pack expression. */
19098 for (i = 0; i < len - parm_variadic_p; ++i)
19099 {
19100 RECUR_AND_CHECK_FAILURE (tparms, targs,
19101 TREE_VEC_ELT (parm, i),
19102 TREE_VEC_ELT (arg, i),
19103 UNIFY_ALLOW_NONE, explain_p);
19104 }
19105 if (parm_variadic_p)
19106 return unify_pack_expansion (tparms, targs, parm, arg,
19107 DEDUCE_EXACT,
19108 /*subr=*/true, explain_p);
19109 return unify_success (explain_p);
19110 }
19111
19112 case RECORD_TYPE:
19113 case UNION_TYPE:
19114 if (TREE_CODE (arg) != TREE_CODE (parm))
19115 return unify_type_mismatch (explain_p, parm, arg);
19116
19117 if (TYPE_PTRMEMFUNC_P (parm))
19118 {
19119 if (!TYPE_PTRMEMFUNC_P (arg))
19120 return unify_type_mismatch (explain_p, parm, arg);
19121
19122 return unify (tparms, targs,
19123 TYPE_PTRMEMFUNC_FN_TYPE (parm),
19124 TYPE_PTRMEMFUNC_FN_TYPE (arg),
19125 strict, explain_p);
19126 }
19127 else if (TYPE_PTRMEMFUNC_P (arg))
19128 return unify_type_mismatch (explain_p, parm, arg);
19129
19130 if (CLASSTYPE_TEMPLATE_INFO (parm))
19131 {
19132 tree t = NULL_TREE;
19133
19134 if (strict_in & UNIFY_ALLOW_DERIVED)
19135 {
19136 /* First, we try to unify the PARM and ARG directly. */
19137 t = try_class_unification (tparms, targs,
19138 parm, arg, explain_p);
19139
19140 if (!t)
19141 {
19142 /* Fallback to the special case allowed in
19143 [temp.deduct.call]:
19144
19145 If P is a class, and P has the form
19146 template-id, then A can be a derived class of
19147 the deduced A. Likewise, if P is a pointer to
19148 a class of the form template-id, A can be a
19149 pointer to a derived class pointed to by the
19150 deduced A. */
19151 enum template_base_result r;
19152 r = get_template_base (tparms, targs, parm, arg,
19153 explain_p, &t);
19154
19155 if (!t)
19156 return unify_no_common_base (explain_p, r, parm, arg);
19157 }
19158 }
19159 else if (CLASSTYPE_TEMPLATE_INFO (arg)
19160 && (CLASSTYPE_TI_TEMPLATE (parm)
19161 == CLASSTYPE_TI_TEMPLATE (arg)))
19162 /* Perhaps PARM is something like S<U> and ARG is S<int>.
19163 Then, we should unify `int' and `U'. */
19164 t = arg;
19165 else
19166 /* There's no chance of unification succeeding. */
19167 return unify_type_mismatch (explain_p, parm, arg);
19168
19169 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
19170 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
19171 }
19172 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
19173 return unify_type_mismatch (explain_p, parm, arg);
19174 return unify_success (explain_p);
19175
19176 case METHOD_TYPE:
19177 case FUNCTION_TYPE:
19178 {
19179 unsigned int nargs;
19180 tree *args;
19181 tree a;
19182 unsigned int i;
19183
19184 if (TREE_CODE (arg) != TREE_CODE (parm))
19185 return unify_type_mismatch (explain_p, parm, arg);
19186
19187 /* CV qualifications for methods can never be deduced, they must
19188 match exactly. We need to check them explicitly here,
19189 because type_unification_real treats them as any other
19190 cv-qualified parameter. */
19191 if (TREE_CODE (parm) == METHOD_TYPE
19192 && (!check_cv_quals_for_unify
19193 (UNIFY_ALLOW_NONE,
19194 class_of_this_parm (arg),
19195 class_of_this_parm (parm))))
19196 return unify_cv_qual_mismatch (explain_p, parm, arg);
19197
19198 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
19199 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
19200
19201 nargs = list_length (TYPE_ARG_TYPES (arg));
19202 args = XALLOCAVEC (tree, nargs);
19203 for (a = TYPE_ARG_TYPES (arg), i = 0;
19204 a != NULL_TREE && a != void_list_node;
19205 a = TREE_CHAIN (a), ++i)
19206 args[i] = TREE_VALUE (a);
19207 nargs = i;
19208
19209 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
19210 args, nargs, 1, DEDUCE_EXACT,
19211 LOOKUP_NORMAL, NULL, explain_p);
19212 }
19213
19214 case OFFSET_TYPE:
19215 /* Unify a pointer to member with a pointer to member function, which
19216 deduces the type of the member as a function type. */
19217 if (TYPE_PTRMEMFUNC_P (arg))
19218 {
19219 /* Check top-level cv qualifiers */
19220 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
19221 return unify_cv_qual_mismatch (explain_p, parm, arg);
19222
19223 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
19224 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
19225 UNIFY_ALLOW_NONE, explain_p);
19226
19227 /* Determine the type of the function we are unifying against. */
19228 tree fntype = static_fn_type (arg);
19229
19230 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
19231 }
19232
19233 if (TREE_CODE (arg) != OFFSET_TYPE)
19234 return unify_type_mismatch (explain_p, parm, arg);
19235 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
19236 TYPE_OFFSET_BASETYPE (arg),
19237 UNIFY_ALLOW_NONE, explain_p);
19238 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19239 strict, explain_p);
19240
19241 case CONST_DECL:
19242 if (DECL_TEMPLATE_PARM_P (parm))
19243 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
19244 if (arg != scalar_constant_value (parm))
19245 return unify_template_argument_mismatch (explain_p, parm, arg);
19246 return unify_success (explain_p);
19247
19248 case FIELD_DECL:
19249 case TEMPLATE_DECL:
19250 /* Matched cases are handled by the ARG == PARM test above. */
19251 return unify_template_argument_mismatch (explain_p, parm, arg);
19252
19253 case VAR_DECL:
19254 /* A non-type template parameter that is a variable should be a
19255 an integral constant, in which case, it whould have been
19256 folded into its (constant) value. So we should not be getting
19257 a variable here. */
19258 gcc_unreachable ();
19259
19260 case TYPE_ARGUMENT_PACK:
19261 case NONTYPE_ARGUMENT_PACK:
19262 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
19263 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
19264
19265 case TYPEOF_TYPE:
19266 case DECLTYPE_TYPE:
19267 case UNDERLYING_TYPE:
19268 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
19269 or UNDERLYING_TYPE nodes. */
19270 return unify_success (explain_p);
19271
19272 case ERROR_MARK:
19273 /* Unification fails if we hit an error node. */
19274 return unify_invalid (explain_p);
19275
19276 case INDIRECT_REF:
19277 if (REFERENCE_REF_P (parm))
19278 {
19279 if (REFERENCE_REF_P (arg))
19280 arg = TREE_OPERAND (arg, 0);
19281 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
19282 strict, explain_p);
19283 }
19284 /* FALLTHRU */
19285
19286 default:
19287 /* An unresolved overload is a nondeduced context. */
19288 if (is_overloaded_fn (parm) || type_unknown_p (parm))
19289 return unify_success (explain_p);
19290 gcc_assert (EXPR_P (parm));
19291
19292 /* We must be looking at an expression. This can happen with
19293 something like:
19294
19295 template <int I>
19296 void foo(S<I>, S<I + 2>);
19297
19298 This is a "nondeduced context":
19299
19300 [deduct.type]
19301
19302 The nondeduced contexts are:
19303
19304 --A type that is a template-id in which one or more of
19305 the template-arguments is an expression that references
19306 a template-parameter.
19307
19308 In these cases, we assume deduction succeeded, but don't
19309 actually infer any unifications. */
19310
19311 if (!uses_template_parms (parm)
19312 && !template_args_equal (parm, arg))
19313 return unify_expression_unequal (explain_p, parm, arg);
19314 else
19315 return unify_success (explain_p);
19316 }
19317 }
19318 #undef RECUR_AND_CHECK_FAILURE
19319 \f
19320 /* Note that DECL can be defined in this translation unit, if
19321 required. */
19322
19323 static void
19324 mark_definable (tree decl)
19325 {
19326 tree clone;
19327 DECL_NOT_REALLY_EXTERN (decl) = 1;
19328 FOR_EACH_CLONE (clone, decl)
19329 DECL_NOT_REALLY_EXTERN (clone) = 1;
19330 }
19331
19332 /* Called if RESULT is explicitly instantiated, or is a member of an
19333 explicitly instantiated class. */
19334
19335 void
19336 mark_decl_instantiated (tree result, int extern_p)
19337 {
19338 SET_DECL_EXPLICIT_INSTANTIATION (result);
19339
19340 /* If this entity has already been written out, it's too late to
19341 make any modifications. */
19342 if (TREE_ASM_WRITTEN (result))
19343 return;
19344
19345 /* For anonymous namespace we don't need to do anything. */
19346 if (decl_anon_ns_mem_p (result))
19347 {
19348 gcc_assert (!TREE_PUBLIC (result));
19349 return;
19350 }
19351
19352 if (TREE_CODE (result) != FUNCTION_DECL)
19353 /* The TREE_PUBLIC flag for function declarations will have been
19354 set correctly by tsubst. */
19355 TREE_PUBLIC (result) = 1;
19356
19357 /* This might have been set by an earlier implicit instantiation. */
19358 DECL_COMDAT (result) = 0;
19359
19360 if (extern_p)
19361 DECL_NOT_REALLY_EXTERN (result) = 0;
19362 else
19363 {
19364 mark_definable (result);
19365 mark_needed (result);
19366 /* Always make artificials weak. */
19367 if (DECL_ARTIFICIAL (result) && flag_weak)
19368 comdat_linkage (result);
19369 /* For WIN32 we also want to put explicit instantiations in
19370 linkonce sections. */
19371 else if (TREE_PUBLIC (result))
19372 maybe_make_one_only (result);
19373 }
19374
19375 /* If EXTERN_P, then this function will not be emitted -- unless
19376 followed by an explicit instantiation, at which point its linkage
19377 will be adjusted. If !EXTERN_P, then this function will be
19378 emitted here. In neither circumstance do we want
19379 import_export_decl to adjust the linkage. */
19380 DECL_INTERFACE_KNOWN (result) = 1;
19381 }
19382
19383 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
19384 important template arguments. If any are missing, we check whether
19385 they're important by using error_mark_node for substituting into any
19386 args that were used for partial ordering (the ones between ARGS and END)
19387 and seeing if it bubbles up. */
19388
19389 static bool
19390 check_undeduced_parms (tree targs, tree args, tree end)
19391 {
19392 bool found = false;
19393 int i;
19394 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
19395 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
19396 {
19397 found = true;
19398 TREE_VEC_ELT (targs, i) = error_mark_node;
19399 }
19400 if (found)
19401 {
19402 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
19403 if (substed == error_mark_node)
19404 return true;
19405 }
19406 return false;
19407 }
19408
19409 /* Given two function templates PAT1 and PAT2, return:
19410
19411 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
19412 -1 if PAT2 is more specialized than PAT1.
19413 0 if neither is more specialized.
19414
19415 LEN indicates the number of parameters we should consider
19416 (defaulted parameters should not be considered).
19417
19418 The 1998 std underspecified function template partial ordering, and
19419 DR214 addresses the issue. We take pairs of arguments, one from
19420 each of the templates, and deduce them against each other. One of
19421 the templates will be more specialized if all the *other*
19422 template's arguments deduce against its arguments and at least one
19423 of its arguments *does* *not* deduce against the other template's
19424 corresponding argument. Deduction is done as for class templates.
19425 The arguments used in deduction have reference and top level cv
19426 qualifiers removed. Iff both arguments were originally reference
19427 types *and* deduction succeeds in both directions, an lvalue reference
19428 wins against an rvalue reference and otherwise the template
19429 with the more cv-qualified argument wins for that pairing (if
19430 neither is more cv-qualified, they both are equal). Unlike regular
19431 deduction, after all the arguments have been deduced in this way,
19432 we do *not* verify the deduced template argument values can be
19433 substituted into non-deduced contexts.
19434
19435 The logic can be a bit confusing here, because we look at deduce1 and
19436 targs1 to see if pat2 is at least as specialized, and vice versa; if we
19437 can find template arguments for pat1 to make arg1 look like arg2, that
19438 means that arg2 is at least as specialized as arg1. */
19439
19440 int
19441 more_specialized_fn (tree pat1, tree pat2, int len)
19442 {
19443 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
19444 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
19445 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
19446 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
19447 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
19448 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
19449 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
19450 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
19451 tree origs1, origs2;
19452 bool lose1 = false;
19453 bool lose2 = false;
19454
19455 /* Remove the this parameter from non-static member functions. If
19456 one is a non-static member function and the other is not a static
19457 member function, remove the first parameter from that function
19458 also. This situation occurs for operator functions where we
19459 locate both a member function (with this pointer) and non-member
19460 operator (with explicit first operand). */
19461 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
19462 {
19463 len--; /* LEN is the number of significant arguments for DECL1 */
19464 args1 = TREE_CHAIN (args1);
19465 if (!DECL_STATIC_FUNCTION_P (decl2))
19466 args2 = TREE_CHAIN (args2);
19467 }
19468 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
19469 {
19470 args2 = TREE_CHAIN (args2);
19471 if (!DECL_STATIC_FUNCTION_P (decl1))
19472 {
19473 len--;
19474 args1 = TREE_CHAIN (args1);
19475 }
19476 }
19477
19478 /* If only one is a conversion operator, they are unordered. */
19479 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
19480 return 0;
19481
19482 /* Consider the return type for a conversion function */
19483 if (DECL_CONV_FN_P (decl1))
19484 {
19485 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
19486 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
19487 len++;
19488 }
19489
19490 processing_template_decl++;
19491
19492 origs1 = args1;
19493 origs2 = args2;
19494
19495 while (len--
19496 /* Stop when an ellipsis is seen. */
19497 && args1 != NULL_TREE && args2 != NULL_TREE)
19498 {
19499 tree arg1 = TREE_VALUE (args1);
19500 tree arg2 = TREE_VALUE (args2);
19501 int deduce1, deduce2;
19502 int quals1 = -1;
19503 int quals2 = -1;
19504 int ref1 = 0;
19505 int ref2 = 0;
19506
19507 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
19508 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
19509 {
19510 /* When both arguments are pack expansions, we need only
19511 unify the patterns themselves. */
19512 arg1 = PACK_EXPANSION_PATTERN (arg1);
19513 arg2 = PACK_EXPANSION_PATTERN (arg2);
19514
19515 /* This is the last comparison we need to do. */
19516 len = 0;
19517 }
19518
19519 if (TREE_CODE (arg1) == REFERENCE_TYPE)
19520 {
19521 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
19522 arg1 = TREE_TYPE (arg1);
19523 quals1 = cp_type_quals (arg1);
19524 }
19525
19526 if (TREE_CODE (arg2) == REFERENCE_TYPE)
19527 {
19528 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
19529 arg2 = TREE_TYPE (arg2);
19530 quals2 = cp_type_quals (arg2);
19531 }
19532
19533 arg1 = TYPE_MAIN_VARIANT (arg1);
19534 arg2 = TYPE_MAIN_VARIANT (arg2);
19535
19536 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
19537 {
19538 int i, len2 = list_length (args2);
19539 tree parmvec = make_tree_vec (1);
19540 tree argvec = make_tree_vec (len2);
19541 tree ta = args2;
19542
19543 /* Setup the parameter vector, which contains only ARG1. */
19544 TREE_VEC_ELT (parmvec, 0) = arg1;
19545
19546 /* Setup the argument vector, which contains the remaining
19547 arguments. */
19548 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
19549 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
19550
19551 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
19552 argvec, DEDUCE_EXACT,
19553 /*subr=*/true, /*explain_p=*/false)
19554 == 0);
19555
19556 /* We cannot deduce in the other direction, because ARG1 is
19557 a pack expansion but ARG2 is not. */
19558 deduce2 = 0;
19559 }
19560 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
19561 {
19562 int i, len1 = list_length (args1);
19563 tree parmvec = make_tree_vec (1);
19564 tree argvec = make_tree_vec (len1);
19565 tree ta = args1;
19566
19567 /* Setup the parameter vector, which contains only ARG1. */
19568 TREE_VEC_ELT (parmvec, 0) = arg2;
19569
19570 /* Setup the argument vector, which contains the remaining
19571 arguments. */
19572 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
19573 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
19574
19575 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
19576 argvec, DEDUCE_EXACT,
19577 /*subr=*/true, /*explain_p=*/false)
19578 == 0);
19579
19580 /* We cannot deduce in the other direction, because ARG2 is
19581 a pack expansion but ARG1 is not.*/
19582 deduce1 = 0;
19583 }
19584
19585 else
19586 {
19587 /* The normal case, where neither argument is a pack
19588 expansion. */
19589 deduce1 = (unify (tparms1, targs1, arg1, arg2,
19590 UNIFY_ALLOW_NONE, /*explain_p=*/false)
19591 == 0);
19592 deduce2 = (unify (tparms2, targs2, arg2, arg1,
19593 UNIFY_ALLOW_NONE, /*explain_p=*/false)
19594 == 0);
19595 }
19596
19597 /* If we couldn't deduce arguments for tparms1 to make arg1 match
19598 arg2, then arg2 is not as specialized as arg1. */
19599 if (!deduce1)
19600 lose2 = true;
19601 if (!deduce2)
19602 lose1 = true;
19603
19604 /* "If, for a given type, deduction succeeds in both directions
19605 (i.e., the types are identical after the transformations above)
19606 and both P and A were reference types (before being replaced with
19607 the type referred to above):
19608 - if the type from the argument template was an lvalue reference and
19609 the type from the parameter template was not, the argument type is
19610 considered to be more specialized than the other; otherwise,
19611 - if the type from the argument template is more cv-qualified
19612 than the type from the parameter template (as described above),
19613 the argument type is considered to be more specialized than the other;
19614 otherwise,
19615 - neither type is more specialized than the other." */
19616
19617 if (deduce1 && deduce2)
19618 {
19619 if (ref1 && ref2 && ref1 != ref2)
19620 {
19621 if (ref1 > ref2)
19622 lose1 = true;
19623 else
19624 lose2 = true;
19625 }
19626 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
19627 {
19628 if ((quals1 & quals2) == quals2)
19629 lose2 = true;
19630 if ((quals1 & quals2) == quals1)
19631 lose1 = true;
19632 }
19633 }
19634
19635 if (lose1 && lose2)
19636 /* We've failed to deduce something in either direction.
19637 These must be unordered. */
19638 break;
19639
19640 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
19641 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
19642 /* We have already processed all of the arguments in our
19643 handing of the pack expansion type. */
19644 len = 0;
19645
19646 args1 = TREE_CHAIN (args1);
19647 args2 = TREE_CHAIN (args2);
19648 }
19649
19650 /* "In most cases, all template parameters must have values in order for
19651 deduction to succeed, but for partial ordering purposes a template
19652 parameter may remain without a value provided it is not used in the
19653 types being used for partial ordering."
19654
19655 Thus, if we are missing any of the targs1 we need to substitute into
19656 origs1, then pat2 is not as specialized as pat1. This can happen when
19657 there is a nondeduced context. */
19658 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
19659 lose2 = true;
19660 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
19661 lose1 = true;
19662
19663 processing_template_decl--;
19664
19665 /* If both deductions succeed, the partial ordering selects the more
19666 constrained template. */
19667 if (!lose1 && !lose2)
19668 {
19669 tree c1 = get_constraints (DECL_TEMPLATE_RESULT (pat1));
19670 tree c2 = get_constraints (DECL_TEMPLATE_RESULT (pat2));
19671 lose1 = !subsumes_constraints (c1, c2);
19672 lose2 = !subsumes_constraints (c2, c1);
19673 }
19674
19675 /* All things being equal, if the next argument is a pack expansion
19676 for one function but not for the other, prefer the
19677 non-variadic function. FIXME this is bogus; see c++/41958. */
19678 if (lose1 == lose2
19679 && args1 && TREE_VALUE (args1)
19680 && args2 && TREE_VALUE (args2))
19681 {
19682 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
19683 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
19684 }
19685
19686 if (lose1 == lose2)
19687 return 0;
19688 else if (!lose1)
19689 return 1;
19690 else
19691 return -1;
19692 }
19693
19694 /* Determine which of two partial specializations of TMPL is more
19695 specialized.
19696
19697 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
19698 to the first partial specialization. The TREE_PURPOSE is the
19699 innermost set of template parameters for the partial
19700 specialization. PAT2 is similar, but for the second template.
19701
19702 Return 1 if the first partial specialization is more specialized;
19703 -1 if the second is more specialized; 0 if neither is more
19704 specialized.
19705
19706 See [temp.class.order] for information about determining which of
19707 two templates is more specialized. */
19708
19709 static int
19710 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
19711 {
19712 tree targs;
19713 int winner = 0;
19714 bool any_deductions = false;
19715
19716 tree tmpl1 = TREE_VALUE (pat1);
19717 tree tmpl2 = TREE_VALUE (pat2);
19718 tree parms1 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl1);
19719 tree parms2 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl2);
19720 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
19721 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
19722
19723 /* Just like what happens for functions, if we are ordering between
19724 different template specializations, we may encounter dependent
19725 types in the arguments, and we need our dependency check functions
19726 to behave correctly. */
19727 ++processing_template_decl;
19728 targs = get_partial_spec_bindings (tmpl, parms1, specargs1, specargs2);
19729 if (targs)
19730 {
19731 --winner;
19732 any_deductions = true;
19733 }
19734
19735 targs = get_partial_spec_bindings (tmpl, parms2, specargs2, specargs1);
19736 if (targs)
19737 {
19738 ++winner;
19739 any_deductions = true;
19740 }
19741 --processing_template_decl;
19742
19743 /* If both deductions succeed, the partial ordering selects the more
19744 constrained template. */
19745 if (!winner && any_deductions)
19746 return more_constrained (tmpl1, tmpl2);
19747
19748 /* In the case of a tie where at least one of the templates
19749 has a parameter pack at the end, the template with the most
19750 non-packed parameters wins. */
19751 if (winner == 0
19752 && any_deductions
19753 && (template_args_variadic_p (TREE_PURPOSE (pat1))
19754 || template_args_variadic_p (TREE_PURPOSE (pat2))))
19755 {
19756 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
19757 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
19758 int len1 = TREE_VEC_LENGTH (args1);
19759 int len2 = TREE_VEC_LENGTH (args2);
19760
19761 /* We don't count the pack expansion at the end. */
19762 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
19763 --len1;
19764 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
19765 --len2;
19766
19767 if (len1 > len2)
19768 return 1;
19769 else if (len1 < len2)
19770 return -1;
19771 }
19772
19773 return winner;
19774 }
19775
19776 /* Return the template arguments that will produce the function signature
19777 DECL from the function template FN, with the explicit template
19778 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
19779 also match. Return NULL_TREE if no satisfactory arguments could be
19780 found. */
19781
19782 static tree
19783 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
19784 {
19785 int ntparms = DECL_NTPARMS (fn);
19786 tree targs = make_tree_vec (ntparms);
19787 tree decl_type = TREE_TYPE (decl);
19788 tree decl_arg_types;
19789 tree *args;
19790 unsigned int nargs, ix;
19791 tree arg;
19792
19793 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
19794
19795 /* Never do unification on the 'this' parameter. */
19796 decl_arg_types = skip_artificial_parms_for (decl,
19797 TYPE_ARG_TYPES (decl_type));
19798
19799 nargs = list_length (decl_arg_types);
19800 args = XALLOCAVEC (tree, nargs);
19801 for (arg = decl_arg_types, ix = 0;
19802 arg != NULL_TREE && arg != void_list_node;
19803 arg = TREE_CHAIN (arg), ++ix)
19804 args[ix] = TREE_VALUE (arg);
19805
19806 if (fn_type_unification (fn, explicit_args, targs,
19807 args, ix,
19808 (check_rettype || DECL_CONV_FN_P (fn)
19809 ? TREE_TYPE (decl_type) : NULL_TREE),
19810 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
19811 /*decltype*/false)
19812 == error_mark_node)
19813 return NULL_TREE;
19814
19815 return targs;
19816 }
19817
19818 /* Return the innermost template arguments that, when applied to a partial
19819 specialization of TMPL whose innermost template parameters are
19820 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
19821 ARGS.
19822
19823 For example, suppose we have:
19824
19825 template <class T, class U> struct S {};
19826 template <class T> struct S<T*, int> {};
19827
19828 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
19829 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
19830 int}. The resulting vector will be {double}, indicating that `T'
19831 is bound to `double'. */
19832
19833 static tree
19834 get_partial_spec_bindings (tree tmpl, tree tparms, tree spec_args, tree args)
19835 {
19836 int i, ntparms = TREE_VEC_LENGTH (tparms);
19837 tree deduced_args;
19838 tree innermost_deduced_args;
19839
19840 innermost_deduced_args = make_tree_vec (ntparms);
19841 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
19842 {
19843 deduced_args = copy_node (args);
19844 SET_TMPL_ARGS_LEVEL (deduced_args,
19845 TMPL_ARGS_DEPTH (deduced_args),
19846 innermost_deduced_args);
19847 }
19848 else
19849 deduced_args = innermost_deduced_args;
19850
19851 if (unify (tparms, deduced_args,
19852 INNERMOST_TEMPLATE_ARGS (spec_args),
19853 INNERMOST_TEMPLATE_ARGS (args),
19854 UNIFY_ALLOW_NONE, /*explain_p=*/false))
19855 return NULL_TREE;
19856
19857 for (i = 0; i < ntparms; ++i)
19858 if (! TREE_VEC_ELT (innermost_deduced_args, i))
19859 return NULL_TREE;
19860
19861 /* Verify that nondeduced template arguments agree with the type
19862 obtained from argument deduction.
19863
19864 For example:
19865
19866 struct A { typedef int X; };
19867 template <class T, class U> struct C {};
19868 template <class T> struct C<T, typename T::X> {};
19869
19870 Then with the instantiation `C<A, int>', we can deduce that
19871 `T' is `A' but unify () does not check whether `typename T::X'
19872 is `int'. */
19873 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
19874 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
19875 spec_args, tmpl,
19876 tf_none, false, false);
19877 if (spec_args == error_mark_node
19878 /* We only need to check the innermost arguments; the other
19879 arguments will always agree. */
19880 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
19881 INNERMOST_TEMPLATE_ARGS (args)))
19882 return NULL_TREE;
19883
19884 /* Now that we have bindings for all of the template arguments,
19885 ensure that the arguments deduced for the template template
19886 parameters have compatible template parameter lists. See the use
19887 of template_template_parm_bindings_ok_p in fn_type_unification
19888 for more information. */
19889 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
19890 return NULL_TREE;
19891
19892 return deduced_args;
19893 }
19894
19895 // Compare two function templates T1 and T2 by deducing bindings
19896 // from one against the other. If both deductions succeed, compare
19897 // constraints to see which is more constrained.
19898 static int
19899 more_specialized_inst (tree t1, tree t2)
19900 {
19901 int fate = 0;
19902 int count = 0;
19903
19904 if (get_bindings (t1, DECL_TEMPLATE_RESULT (t2), NULL_TREE, true))
19905 {
19906 --fate;
19907 ++count;
19908 }
19909
19910 if (get_bindings (t2, DECL_TEMPLATE_RESULT (t1), NULL_TREE, true))
19911 {
19912 ++fate;
19913 ++count;
19914 }
19915
19916 // If both deductions succeed, then one may be more constrained.
19917 if (count == 2 && fate == 0)
19918 fate = more_constrained (t1, t2);
19919
19920 return fate;
19921 }
19922
19923 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
19924 Return the TREE_LIST node with the most specialized template, if
19925 any. If there is no most specialized template, the error_mark_node
19926 is returned.
19927
19928 Note that this function does not look at, or modify, the
19929 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
19930 returned is one of the elements of INSTANTIATIONS, callers may
19931 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
19932 and retrieve it from the value returned. */
19933
19934 tree
19935 most_specialized_instantiation (tree templates)
19936 {
19937 tree fn, champ;
19938
19939 ++processing_template_decl;
19940
19941 champ = templates;
19942 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
19943 {
19944 int fate = more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn));
19945 if (fate == -1)
19946 champ = fn;
19947 else if (!fate)
19948 {
19949 /* Equally specialized, move to next function. If there
19950 is no next function, nothing's most specialized. */
19951 fn = TREE_CHAIN (fn);
19952 champ = fn;
19953 if (!fn)
19954 break;
19955 }
19956 }
19957
19958 if (champ)
19959 /* Now verify that champ is better than everything earlier in the
19960 instantiation list. */
19961 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn)) {
19962 if (more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn)) != 1)
19963 {
19964 champ = NULL_TREE;
19965 break;
19966 }
19967 }
19968
19969 processing_template_decl--;
19970
19971 if (!champ)
19972 return error_mark_node;
19973
19974 return champ;
19975 }
19976
19977 /* If DECL is a specialization of some template, return the most
19978 general such template. Otherwise, returns NULL_TREE.
19979
19980 For example, given:
19981
19982 template <class T> struct S { template <class U> void f(U); };
19983
19984 if TMPL is `template <class U> void S<int>::f(U)' this will return
19985 the full template. This function will not trace past partial
19986 specializations, however. For example, given in addition:
19987
19988 template <class T> struct S<T*> { template <class U> void f(U); };
19989
19990 if TMPL is `template <class U> void S<int*>::f(U)' this will return
19991 `template <class T> template <class U> S<T*>::f(U)'. */
19992
19993 tree
19994 most_general_template (tree decl)
19995 {
19996 if (TREE_CODE (decl) != TEMPLATE_DECL)
19997 {
19998 if (tree tinfo = get_template_info (decl))
19999 decl = TI_TEMPLATE (tinfo);
20000 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
20001 template friend, or a FIELD_DECL for a capture pack. */
20002 if (TREE_CODE (decl) != TEMPLATE_DECL)
20003 return NULL_TREE;
20004 }
20005
20006 /* Look for more and more general templates. */
20007 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
20008 {
20009 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
20010 (See cp-tree.h for details.) */
20011 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
20012 break;
20013
20014 if (CLASS_TYPE_P (TREE_TYPE (decl))
20015 && !TYPE_DECL_ALIAS_P (TYPE_NAME (TREE_TYPE (decl)))
20016 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
20017 break;
20018
20019 /* Stop if we run into an explicitly specialized class template. */
20020 if (!DECL_NAMESPACE_SCOPE_P (decl)
20021 && DECL_CONTEXT (decl)
20022 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
20023 break;
20024
20025 decl = DECL_TI_TEMPLATE (decl);
20026 }
20027
20028 return decl;
20029 }
20030
20031 /* Return the most specialized of the template partial specializations
20032 which can produce TARGET, a specialization of some class or variable
20033 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
20034 a TEMPLATE_DECL node corresponding to the partial specialization, while
20035 the TREE_PURPOSE is the set of template arguments that must be
20036 substituted into the template pattern in order to generate TARGET.
20037
20038 If the choice of partial specialization is ambiguous, a diagnostic
20039 is issued, and the error_mark_node is returned. If there are no
20040 partial specializations matching TARGET, then NULL_TREE is
20041 returned, indicating that the primary template should be used. */
20042
20043 static tree
20044 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
20045 {
20046 tree list = NULL_TREE;
20047 tree t;
20048 tree champ;
20049 int fate;
20050 bool ambiguous_p;
20051 tree outer_args = NULL_TREE;
20052 tree tmpl, args;
20053
20054 if (TYPE_P (target))
20055 {
20056 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
20057 tmpl = TI_TEMPLATE (tinfo);
20058 args = TI_ARGS (tinfo);
20059 }
20060 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
20061 {
20062 tmpl = TREE_OPERAND (target, 0);
20063 args = TREE_OPERAND (target, 1);
20064 }
20065 else if (VAR_P (target))
20066 {
20067 tree tinfo = DECL_TEMPLATE_INFO (target);
20068 tmpl = TI_TEMPLATE (tinfo);
20069 args = TI_ARGS (tinfo);
20070 }
20071 else
20072 gcc_unreachable ();
20073
20074 tree main_tmpl = most_general_template (tmpl);
20075
20076 /* For determining which partial specialization to use, only the
20077 innermost args are interesting. */
20078 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20079 {
20080 outer_args = strip_innermost_template_args (args, 1);
20081 args = INNERMOST_TEMPLATE_ARGS (args);
20082 }
20083
20084 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
20085 {
20086 tree partial_spec_args;
20087 tree spec_args;
20088 tree spec_tmpl = TREE_VALUE (t);
20089
20090 partial_spec_args = TREE_PURPOSE (t);
20091
20092 ++processing_template_decl;
20093
20094 if (outer_args)
20095 {
20096 /* Discard the outer levels of args, and then substitute in the
20097 template args from the enclosing class. */
20098 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
20099 partial_spec_args = tsubst_template_args
20100 (partial_spec_args, outer_args, tf_none, NULL_TREE);
20101
20102 /* And the same for the partial specialization TEMPLATE_DECL. */
20103 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
20104 }
20105
20106 partial_spec_args =
20107 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20108 partial_spec_args,
20109 tmpl, tf_none,
20110 /*require_all_args=*/true,
20111 /*use_default_args=*/true);
20112
20113 --processing_template_decl;
20114
20115 if (partial_spec_args == error_mark_node)
20116 return error_mark_node;
20117 if (spec_tmpl == error_mark_node)
20118 return error_mark_node;
20119
20120 tree parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
20121 spec_args = get_partial_spec_bindings (tmpl, parms,
20122 partial_spec_args,
20123 args);
20124 if (spec_args)
20125 {
20126 if (outer_args)
20127 spec_args = add_to_template_args (outer_args, spec_args);
20128
20129 /* Keep the candidate only if the constraints are satisfied,
20130 or if we're not compiling with concepts. */
20131 if (!flag_concepts
20132 || constraints_satisfied_p (spec_tmpl, spec_args))
20133 {
20134 list = tree_cons (spec_args, TREE_VALUE (t), list);
20135 TREE_TYPE (list) = TREE_TYPE (t);
20136 }
20137 }
20138 }
20139
20140 if (! list)
20141 return NULL_TREE;
20142
20143 ambiguous_p = false;
20144 t = list;
20145 champ = t;
20146 t = TREE_CHAIN (t);
20147 for (; t; t = TREE_CHAIN (t))
20148 {
20149 fate = more_specialized_partial_spec (tmpl, champ, t);
20150 if (fate == 1)
20151 ;
20152 else
20153 {
20154 if (fate == 0)
20155 {
20156 t = TREE_CHAIN (t);
20157 if (! t)
20158 {
20159 ambiguous_p = true;
20160 break;
20161 }
20162 }
20163 champ = t;
20164 }
20165 }
20166
20167 if (!ambiguous_p)
20168 for (t = list; t && t != champ; t = TREE_CHAIN (t))
20169 {
20170 fate = more_specialized_partial_spec (tmpl, champ, t);
20171 if (fate != 1)
20172 {
20173 ambiguous_p = true;
20174 break;
20175 }
20176 }
20177
20178 if (ambiguous_p)
20179 {
20180 const char *str;
20181 char *spaces = NULL;
20182 if (!(complain & tf_error))
20183 return error_mark_node;
20184 if (TYPE_P (target))
20185 error ("ambiguous template instantiation for %q#T", target);
20186 else
20187 error ("ambiguous template instantiation for %q#D", target);
20188 str = ngettext ("candidate is:", "candidates are:", list_length (list));
20189 for (t = list; t; t = TREE_CHAIN (t))
20190 {
20191 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
20192 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
20193 "%s %#S", spaces ? spaces : str, subst);
20194 spaces = spaces ? spaces : get_spaces (str);
20195 }
20196 free (spaces);
20197 return error_mark_node;
20198 }
20199
20200 return champ;
20201 }
20202
20203 /* Explicitly instantiate DECL. */
20204
20205 void
20206 do_decl_instantiation (tree decl, tree storage)
20207 {
20208 tree result = NULL_TREE;
20209 int extern_p = 0;
20210
20211 if (!decl || decl == error_mark_node)
20212 /* An error occurred, for which grokdeclarator has already issued
20213 an appropriate message. */
20214 return;
20215 else if (! DECL_LANG_SPECIFIC (decl))
20216 {
20217 error ("explicit instantiation of non-template %q#D", decl);
20218 return;
20219 }
20220
20221 bool var_templ = (DECL_TEMPLATE_INFO (decl)
20222 && variable_template_p (DECL_TI_TEMPLATE (decl)));
20223
20224 if (VAR_P (decl) && !var_templ)
20225 {
20226 /* There is an asymmetry here in the way VAR_DECLs and
20227 FUNCTION_DECLs are handled by grokdeclarator. In the case of
20228 the latter, the DECL we get back will be marked as a
20229 template instantiation, and the appropriate
20230 DECL_TEMPLATE_INFO will be set up. This does not happen for
20231 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
20232 should handle VAR_DECLs as it currently handles
20233 FUNCTION_DECLs. */
20234 if (!DECL_CLASS_SCOPE_P (decl))
20235 {
20236 error ("%qD is not a static data member of a class template", decl);
20237 return;
20238 }
20239 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
20240 if (!result || !VAR_P (result))
20241 {
20242 error ("no matching template for %qD found", decl);
20243 return;
20244 }
20245 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
20246 {
20247 error ("type %qT for explicit instantiation %qD does not match "
20248 "declared type %qT", TREE_TYPE (result), decl,
20249 TREE_TYPE (decl));
20250 return;
20251 }
20252 }
20253 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
20254 {
20255 error ("explicit instantiation of %q#D", decl);
20256 return;
20257 }
20258 else
20259 result = decl;
20260
20261 /* Check for various error cases. Note that if the explicit
20262 instantiation is valid the RESULT will currently be marked as an
20263 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
20264 until we get here. */
20265
20266 if (DECL_TEMPLATE_SPECIALIZATION (result))
20267 {
20268 /* DR 259 [temp.spec].
20269
20270 Both an explicit instantiation and a declaration of an explicit
20271 specialization shall not appear in a program unless the explicit
20272 instantiation follows a declaration of the explicit specialization.
20273
20274 For a given set of template parameters, if an explicit
20275 instantiation of a template appears after a declaration of an
20276 explicit specialization for that template, the explicit
20277 instantiation has no effect. */
20278 return;
20279 }
20280 else if (DECL_EXPLICIT_INSTANTIATION (result))
20281 {
20282 /* [temp.spec]
20283
20284 No program shall explicitly instantiate any template more
20285 than once.
20286
20287 We check DECL_NOT_REALLY_EXTERN so as not to complain when
20288 the first instantiation was `extern' and the second is not,
20289 and EXTERN_P for the opposite case. */
20290 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
20291 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
20292 /* If an "extern" explicit instantiation follows an ordinary
20293 explicit instantiation, the template is instantiated. */
20294 if (extern_p)
20295 return;
20296 }
20297 else if (!DECL_IMPLICIT_INSTANTIATION (result))
20298 {
20299 error ("no matching template for %qD found", result);
20300 return;
20301 }
20302 else if (!DECL_TEMPLATE_INFO (result))
20303 {
20304 permerror (input_location, "explicit instantiation of non-template %q#D", result);
20305 return;
20306 }
20307
20308 if (storage == NULL_TREE)
20309 ;
20310 else if (storage == ridpointers[(int) RID_EXTERN])
20311 {
20312 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
20313 pedwarn (input_location, OPT_Wpedantic,
20314 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
20315 "instantiations");
20316 extern_p = 1;
20317 }
20318 else
20319 error ("storage class %qD applied to template instantiation", storage);
20320
20321 check_explicit_instantiation_namespace (result);
20322 mark_decl_instantiated (result, extern_p);
20323 if (! extern_p)
20324 instantiate_decl (result, /*defer_ok=*/1,
20325 /*expl_inst_class_mem_p=*/false);
20326 }
20327
20328 static void
20329 mark_class_instantiated (tree t, int extern_p)
20330 {
20331 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
20332 SET_CLASSTYPE_INTERFACE_KNOWN (t);
20333 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
20334 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
20335 if (! extern_p)
20336 {
20337 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
20338 rest_of_type_compilation (t, 1);
20339 }
20340 }
20341
20342 /* Called from do_type_instantiation through binding_table_foreach to
20343 do recursive instantiation for the type bound in ENTRY. */
20344 static void
20345 bt_instantiate_type_proc (binding_entry entry, void *data)
20346 {
20347 tree storage = *(tree *) data;
20348
20349 if (MAYBE_CLASS_TYPE_P (entry->type)
20350 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
20351 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
20352 }
20353
20354 /* Called from do_type_instantiation to instantiate a member
20355 (a member function or a static member variable) of an
20356 explicitly instantiated class template. */
20357 static void
20358 instantiate_class_member (tree decl, int extern_p)
20359 {
20360 mark_decl_instantiated (decl, extern_p);
20361 if (! extern_p)
20362 instantiate_decl (decl, /*defer_ok=*/1,
20363 /*expl_inst_class_mem_p=*/true);
20364 }
20365
20366 /* Perform an explicit instantiation of template class T. STORAGE, if
20367 non-null, is the RID for extern, inline or static. COMPLAIN is
20368 nonzero if this is called from the parser, zero if called recursively,
20369 since the standard is unclear (as detailed below). */
20370
20371 void
20372 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
20373 {
20374 int extern_p = 0;
20375 int nomem_p = 0;
20376 int static_p = 0;
20377 int previous_instantiation_extern_p = 0;
20378
20379 if (TREE_CODE (t) == TYPE_DECL)
20380 t = TREE_TYPE (t);
20381
20382 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
20383 {
20384 tree tmpl =
20385 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
20386 if (tmpl)
20387 error ("explicit instantiation of non-class template %qD", tmpl);
20388 else
20389 error ("explicit instantiation of non-template type %qT", t);
20390 return;
20391 }
20392
20393 complete_type (t);
20394
20395 if (!COMPLETE_TYPE_P (t))
20396 {
20397 if (complain & tf_error)
20398 error ("explicit instantiation of %q#T before definition of template",
20399 t);
20400 return;
20401 }
20402
20403 if (storage != NULL_TREE)
20404 {
20405 if (!in_system_header_at (input_location))
20406 {
20407 if (storage == ridpointers[(int) RID_EXTERN])
20408 {
20409 if (cxx_dialect == cxx98)
20410 pedwarn (input_location, OPT_Wpedantic,
20411 "ISO C++ 1998 forbids the use of %<extern%> on "
20412 "explicit instantiations");
20413 }
20414 else
20415 pedwarn (input_location, OPT_Wpedantic,
20416 "ISO C++ forbids the use of %qE"
20417 " on explicit instantiations", storage);
20418 }
20419
20420 if (storage == ridpointers[(int) RID_INLINE])
20421 nomem_p = 1;
20422 else if (storage == ridpointers[(int) RID_EXTERN])
20423 extern_p = 1;
20424 else if (storage == ridpointers[(int) RID_STATIC])
20425 static_p = 1;
20426 else
20427 {
20428 error ("storage class %qD applied to template instantiation",
20429 storage);
20430 extern_p = 0;
20431 }
20432 }
20433
20434 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
20435 {
20436 /* DR 259 [temp.spec].
20437
20438 Both an explicit instantiation and a declaration of an explicit
20439 specialization shall not appear in a program unless the explicit
20440 instantiation follows a declaration of the explicit specialization.
20441
20442 For a given set of template parameters, if an explicit
20443 instantiation of a template appears after a declaration of an
20444 explicit specialization for that template, the explicit
20445 instantiation has no effect. */
20446 return;
20447 }
20448 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
20449 {
20450 /* [temp.spec]
20451
20452 No program shall explicitly instantiate any template more
20453 than once.
20454
20455 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
20456 instantiation was `extern'. If EXTERN_P then the second is.
20457 These cases are OK. */
20458 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
20459
20460 if (!previous_instantiation_extern_p && !extern_p
20461 && (complain & tf_error))
20462 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
20463
20464 /* If we've already instantiated the template, just return now. */
20465 if (!CLASSTYPE_INTERFACE_ONLY (t))
20466 return;
20467 }
20468
20469 check_explicit_instantiation_namespace (TYPE_NAME (t));
20470 mark_class_instantiated (t, extern_p);
20471
20472 if (nomem_p)
20473 return;
20474
20475 {
20476 tree tmp;
20477
20478 /* In contrast to implicit instantiation, where only the
20479 declarations, and not the definitions, of members are
20480 instantiated, we have here:
20481
20482 [temp.explicit]
20483
20484 The explicit instantiation of a class template specialization
20485 implies the instantiation of all of its members not
20486 previously explicitly specialized in the translation unit
20487 containing the explicit instantiation.
20488
20489 Of course, we can't instantiate member template classes, since
20490 we don't have any arguments for them. Note that the standard
20491 is unclear on whether the instantiation of the members are
20492 *explicit* instantiations or not. However, the most natural
20493 interpretation is that it should be an explicit instantiation. */
20494
20495 if (! static_p)
20496 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
20497 if (TREE_CODE (tmp) == FUNCTION_DECL
20498 && DECL_TEMPLATE_INSTANTIATION (tmp))
20499 instantiate_class_member (tmp, extern_p);
20500
20501 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
20502 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
20503 instantiate_class_member (tmp, extern_p);
20504
20505 if (CLASSTYPE_NESTED_UTDS (t))
20506 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
20507 bt_instantiate_type_proc, &storage);
20508 }
20509 }
20510
20511 /* Given a function DECL, which is a specialization of TMPL, modify
20512 DECL to be a re-instantiation of TMPL with the same template
20513 arguments. TMPL should be the template into which tsubst'ing
20514 should occur for DECL, not the most general template.
20515
20516 One reason for doing this is a scenario like this:
20517
20518 template <class T>
20519 void f(const T&, int i);
20520
20521 void g() { f(3, 7); }
20522
20523 template <class T>
20524 void f(const T& t, const int i) { }
20525
20526 Note that when the template is first instantiated, with
20527 instantiate_template, the resulting DECL will have no name for the
20528 first parameter, and the wrong type for the second. So, when we go
20529 to instantiate the DECL, we regenerate it. */
20530
20531 static void
20532 regenerate_decl_from_template (tree decl, tree tmpl)
20533 {
20534 /* The arguments used to instantiate DECL, from the most general
20535 template. */
20536 tree args;
20537 tree code_pattern;
20538
20539 args = DECL_TI_ARGS (decl);
20540 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
20541
20542 /* Make sure that we can see identifiers, and compute access
20543 correctly. */
20544 push_access_scope (decl);
20545
20546 if (TREE_CODE (decl) == FUNCTION_DECL)
20547 {
20548 tree decl_parm;
20549 tree pattern_parm;
20550 tree specs;
20551 int args_depth;
20552 int parms_depth;
20553
20554 args_depth = TMPL_ARGS_DEPTH (args);
20555 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
20556 if (args_depth > parms_depth)
20557 args = get_innermost_template_args (args, parms_depth);
20558
20559 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
20560 args, tf_error, NULL_TREE,
20561 /*defer_ok*/false);
20562 if (specs && specs != error_mark_node)
20563 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
20564 specs);
20565
20566 /* Merge parameter declarations. */
20567 decl_parm = skip_artificial_parms_for (decl,
20568 DECL_ARGUMENTS (decl));
20569 pattern_parm
20570 = skip_artificial_parms_for (code_pattern,
20571 DECL_ARGUMENTS (code_pattern));
20572 while (decl_parm && !DECL_PACK_P (pattern_parm))
20573 {
20574 tree parm_type;
20575 tree attributes;
20576
20577 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
20578 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
20579 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
20580 NULL_TREE);
20581 parm_type = type_decays_to (parm_type);
20582 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
20583 TREE_TYPE (decl_parm) = parm_type;
20584 attributes = DECL_ATTRIBUTES (pattern_parm);
20585 if (DECL_ATTRIBUTES (decl_parm) != attributes)
20586 {
20587 DECL_ATTRIBUTES (decl_parm) = attributes;
20588 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
20589 }
20590 decl_parm = DECL_CHAIN (decl_parm);
20591 pattern_parm = DECL_CHAIN (pattern_parm);
20592 }
20593 /* Merge any parameters that match with the function parameter
20594 pack. */
20595 if (pattern_parm && DECL_PACK_P (pattern_parm))
20596 {
20597 int i, len;
20598 tree expanded_types;
20599 /* Expand the TYPE_PACK_EXPANSION that provides the types for
20600 the parameters in this function parameter pack. */
20601 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
20602 args, tf_error, NULL_TREE);
20603 len = TREE_VEC_LENGTH (expanded_types);
20604 for (i = 0; i < len; i++)
20605 {
20606 tree parm_type;
20607 tree attributes;
20608
20609 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
20610 /* Rename the parameter to include the index. */
20611 DECL_NAME (decl_parm) =
20612 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
20613 parm_type = TREE_VEC_ELT (expanded_types, i);
20614 parm_type = type_decays_to (parm_type);
20615 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
20616 TREE_TYPE (decl_parm) = parm_type;
20617 attributes = DECL_ATTRIBUTES (pattern_parm);
20618 if (DECL_ATTRIBUTES (decl_parm) != attributes)
20619 {
20620 DECL_ATTRIBUTES (decl_parm) = attributes;
20621 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
20622 }
20623 decl_parm = DECL_CHAIN (decl_parm);
20624 }
20625 }
20626 /* Merge additional specifiers from the CODE_PATTERN. */
20627 if (DECL_DECLARED_INLINE_P (code_pattern)
20628 && !DECL_DECLARED_INLINE_P (decl))
20629 DECL_DECLARED_INLINE_P (decl) = 1;
20630 }
20631 else if (VAR_P (decl))
20632 {
20633 DECL_INITIAL (decl) =
20634 tsubst_expr (DECL_INITIAL (code_pattern), args,
20635 tf_error, DECL_TI_TEMPLATE (decl),
20636 /*integral_constant_expression_p=*/false);
20637 if (VAR_HAD_UNKNOWN_BOUND (decl))
20638 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
20639 tf_error, DECL_TI_TEMPLATE (decl));
20640 }
20641 else
20642 gcc_unreachable ();
20643
20644 pop_access_scope (decl);
20645 }
20646
20647 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
20648 substituted to get DECL. */
20649
20650 tree
20651 template_for_substitution (tree decl)
20652 {
20653 tree tmpl = DECL_TI_TEMPLATE (decl);
20654
20655 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
20656 for the instantiation. This is not always the most general
20657 template. Consider, for example:
20658
20659 template <class T>
20660 struct S { template <class U> void f();
20661 template <> void f<int>(); };
20662
20663 and an instantiation of S<double>::f<int>. We want TD to be the
20664 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
20665 while (/* An instantiation cannot have a definition, so we need a
20666 more general template. */
20667 DECL_TEMPLATE_INSTANTIATION (tmpl)
20668 /* We must also deal with friend templates. Given:
20669
20670 template <class T> struct S {
20671 template <class U> friend void f() {};
20672 };
20673
20674 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
20675 so far as the language is concerned, but that's still
20676 where we get the pattern for the instantiation from. On
20677 other hand, if the definition comes outside the class, say:
20678
20679 template <class T> struct S {
20680 template <class U> friend void f();
20681 };
20682 template <class U> friend void f() {}
20683
20684 we don't need to look any further. That's what the check for
20685 DECL_INITIAL is for. */
20686 || (TREE_CODE (decl) == FUNCTION_DECL
20687 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
20688 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
20689 {
20690 /* The present template, TD, should not be a definition. If it
20691 were a definition, we should be using it! Note that we
20692 cannot restructure the loop to just keep going until we find
20693 a template with a definition, since that might go too far if
20694 a specialization was declared, but not defined. */
20695
20696 /* Fetch the more general template. */
20697 tmpl = DECL_TI_TEMPLATE (tmpl);
20698 }
20699
20700 return tmpl;
20701 }
20702
20703 /* Returns true if we need to instantiate this template instance even if we
20704 know we aren't going to emit it. */
20705
20706 bool
20707 always_instantiate_p (tree decl)
20708 {
20709 /* We always instantiate inline functions so that we can inline them. An
20710 explicit instantiation declaration prohibits implicit instantiation of
20711 non-inline functions. With high levels of optimization, we would
20712 normally inline non-inline functions -- but we're not allowed to do
20713 that for "extern template" functions. Therefore, we check
20714 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
20715 return ((TREE_CODE (decl) == FUNCTION_DECL
20716 && (DECL_DECLARED_INLINE_P (decl)
20717 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
20718 /* And we need to instantiate static data members so that
20719 their initializers are available in integral constant
20720 expressions. */
20721 || (VAR_P (decl)
20722 && decl_maybe_constant_var_p (decl)));
20723 }
20724
20725 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
20726 instantiate it now, modifying TREE_TYPE (fn). */
20727
20728 void
20729 maybe_instantiate_noexcept (tree fn)
20730 {
20731 tree fntype, spec, noex, clone;
20732
20733 /* Don't instantiate a noexcept-specification from template context. */
20734 if (processing_template_decl)
20735 return;
20736
20737 if (DECL_CLONED_FUNCTION_P (fn))
20738 fn = DECL_CLONED_FUNCTION (fn);
20739 fntype = TREE_TYPE (fn);
20740 spec = TYPE_RAISES_EXCEPTIONS (fntype);
20741
20742 if (!spec || !TREE_PURPOSE (spec))
20743 return;
20744
20745 noex = TREE_PURPOSE (spec);
20746
20747 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
20748 {
20749 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
20750 spec = get_defaulted_eh_spec (fn);
20751 else if (push_tinst_level (fn))
20752 {
20753 push_access_scope (fn);
20754 push_deferring_access_checks (dk_no_deferred);
20755 input_location = DECL_SOURCE_LOCATION (fn);
20756 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
20757 DEFERRED_NOEXCEPT_ARGS (noex),
20758 tf_warning_or_error, fn,
20759 /*function_p=*/false,
20760 /*integral_constant_expression_p=*/true);
20761 pop_deferring_access_checks ();
20762 pop_access_scope (fn);
20763 pop_tinst_level ();
20764 spec = build_noexcept_spec (noex, tf_warning_or_error);
20765 if (spec == error_mark_node)
20766 spec = noexcept_false_spec;
20767 }
20768 else
20769 spec = noexcept_false_spec;
20770
20771 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
20772 }
20773
20774 FOR_EACH_CLONE (clone, fn)
20775 {
20776 if (TREE_TYPE (clone) == fntype)
20777 TREE_TYPE (clone) = TREE_TYPE (fn);
20778 else
20779 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
20780 }
20781 }
20782
20783 /* Produce the definition of D, a _DECL generated from a template. If
20784 DEFER_OK is nonzero, then we don't have to actually do the
20785 instantiation now; we just have to do it sometime. Normally it is
20786 an error if this is an explicit instantiation but D is undefined.
20787 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
20788 explicitly instantiated class template. */
20789
20790 tree
20791 instantiate_decl (tree d, int defer_ok,
20792 bool expl_inst_class_mem_p)
20793 {
20794 tree tmpl = DECL_TI_TEMPLATE (d);
20795 tree gen_args;
20796 tree args;
20797 tree td;
20798 tree code_pattern;
20799 tree spec;
20800 tree gen_tmpl;
20801 bool pattern_defined;
20802 location_t saved_loc = input_location;
20803 int saved_unevaluated_operand = cp_unevaluated_operand;
20804 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
20805 bool external_p;
20806 bool deleted_p;
20807 tree fn_context;
20808 bool nested;
20809
20810 /* This function should only be used to instantiate templates for
20811 functions and static member variables. */
20812 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
20813
20814 /* A concept is never instantiated. */
20815 gcc_assert (!DECL_DECLARED_CONCEPT_P (d));
20816
20817 /* Variables are never deferred; if instantiation is required, they
20818 are instantiated right away. That allows for better code in the
20819 case that an expression refers to the value of the variable --
20820 if the variable has a constant value the referring expression can
20821 take advantage of that fact. */
20822 if (VAR_P (d)
20823 || DECL_DECLARED_CONSTEXPR_P (d))
20824 defer_ok = 0;
20825
20826 /* Don't instantiate cloned functions. Instead, instantiate the
20827 functions they cloned. */
20828 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
20829 d = DECL_CLONED_FUNCTION (d);
20830
20831 if (DECL_TEMPLATE_INSTANTIATED (d)
20832 || (TREE_CODE (d) == FUNCTION_DECL
20833 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
20834 || DECL_TEMPLATE_SPECIALIZATION (d))
20835 /* D has already been instantiated or explicitly specialized, so
20836 there's nothing for us to do here.
20837
20838 It might seem reasonable to check whether or not D is an explicit
20839 instantiation, and, if so, stop here. But when an explicit
20840 instantiation is deferred until the end of the compilation,
20841 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
20842 the instantiation. */
20843 return d;
20844
20845 /* Check to see whether we know that this template will be
20846 instantiated in some other file, as with "extern template"
20847 extension. */
20848 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
20849
20850 /* In general, we do not instantiate such templates. */
20851 if (external_p && !always_instantiate_p (d))
20852 return d;
20853
20854 gen_tmpl = most_general_template (tmpl);
20855 gen_args = DECL_TI_ARGS (d);
20856
20857 if (tmpl != gen_tmpl)
20858 /* We should already have the extra args. */
20859 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
20860 == TMPL_ARGS_DEPTH (gen_args));
20861 /* And what's in the hash table should match D. */
20862 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
20863 || spec == NULL_TREE);
20864
20865 /* This needs to happen before any tsubsting. */
20866 if (! push_tinst_level (d))
20867 return d;
20868
20869 timevar_push (TV_TEMPLATE_INST);
20870
20871 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
20872 for the instantiation. */
20873 td = template_for_substitution (d);
20874 code_pattern = DECL_TEMPLATE_RESULT (td);
20875
20876 /* We should never be trying to instantiate a member of a class
20877 template or partial specialization. */
20878 gcc_assert (d != code_pattern);
20879
20880 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
20881 || DECL_TEMPLATE_SPECIALIZATION (td))
20882 /* In the case of a friend template whose definition is provided
20883 outside the class, we may have too many arguments. Drop the
20884 ones we don't need. The same is true for specializations. */
20885 args = get_innermost_template_args
20886 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
20887 else
20888 args = gen_args;
20889
20890 if (TREE_CODE (d) == FUNCTION_DECL)
20891 {
20892 deleted_p = DECL_DELETED_FN (code_pattern);
20893 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
20894 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
20895 || deleted_p);
20896 }
20897 else
20898 {
20899 deleted_p = false;
20900 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
20901 }
20902
20903 /* We may be in the middle of deferred access check. Disable it now. */
20904 push_deferring_access_checks (dk_no_deferred);
20905
20906 /* Unless an explicit instantiation directive has already determined
20907 the linkage of D, remember that a definition is available for
20908 this entity. */
20909 if (pattern_defined
20910 && !DECL_INTERFACE_KNOWN (d)
20911 && !DECL_NOT_REALLY_EXTERN (d))
20912 mark_definable (d);
20913
20914 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
20915 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
20916 input_location = DECL_SOURCE_LOCATION (d);
20917
20918 /* If D is a member of an explicitly instantiated class template,
20919 and no definition is available, treat it like an implicit
20920 instantiation. */
20921 if (!pattern_defined && expl_inst_class_mem_p
20922 && DECL_EXPLICIT_INSTANTIATION (d))
20923 {
20924 /* Leave linkage flags alone on instantiations with anonymous
20925 visibility. */
20926 if (TREE_PUBLIC (d))
20927 {
20928 DECL_NOT_REALLY_EXTERN (d) = 0;
20929 DECL_INTERFACE_KNOWN (d) = 0;
20930 }
20931 SET_DECL_IMPLICIT_INSTANTIATION (d);
20932 }
20933
20934 /* Defer all other templates, unless we have been explicitly
20935 forbidden from doing so. */
20936 if (/* If there is no definition, we cannot instantiate the
20937 template. */
20938 ! pattern_defined
20939 /* If it's OK to postpone instantiation, do so. */
20940 || defer_ok
20941 /* If this is a static data member that will be defined
20942 elsewhere, we don't want to instantiate the entire data
20943 member, but we do want to instantiate the initializer so that
20944 we can substitute that elsewhere. */
20945 || (external_p && VAR_P (d))
20946 /* Handle here a deleted function too, avoid generating
20947 its body (c++/61080). */
20948 || deleted_p)
20949 {
20950 /* The definition of the static data member is now required so
20951 we must substitute the initializer. */
20952 if (VAR_P (d)
20953 && !DECL_INITIAL (d)
20954 && DECL_INITIAL (code_pattern))
20955 {
20956 tree ns;
20957 tree init;
20958 bool const_init = false;
20959 bool enter_context = DECL_CLASS_SCOPE_P (d);
20960
20961 ns = decl_namespace_context (d);
20962 push_nested_namespace (ns);
20963 if (enter_context)
20964 push_nested_class (DECL_CONTEXT (d));
20965 init = tsubst_expr (DECL_INITIAL (code_pattern),
20966 args,
20967 tf_warning_or_error, NULL_TREE,
20968 /*integral_constant_expression_p=*/false);
20969 /* If instantiating the initializer involved instantiating this
20970 again, don't call cp_finish_decl twice. */
20971 if (!DECL_INITIAL (d))
20972 {
20973 /* Make sure the initializer is still constant, in case of
20974 circular dependency (template/instantiate6.C). */
20975 const_init
20976 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
20977 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
20978 /*asmspec_tree=*/NULL_TREE,
20979 LOOKUP_ONLYCONVERTING);
20980 }
20981 if (enter_context)
20982 pop_nested_class ();
20983 pop_nested_namespace (ns);
20984 }
20985
20986 /* We restore the source position here because it's used by
20987 add_pending_template. */
20988 input_location = saved_loc;
20989
20990 if (at_eof && !pattern_defined
20991 && DECL_EXPLICIT_INSTANTIATION (d)
20992 && DECL_NOT_REALLY_EXTERN (d))
20993 /* [temp.explicit]
20994
20995 The definition of a non-exported function template, a
20996 non-exported member function template, or a non-exported
20997 member function or static data member of a class template
20998 shall be present in every translation unit in which it is
20999 explicitly instantiated. */
21000 permerror (input_location, "explicit instantiation of %qD "
21001 "but no definition available", d);
21002
21003 /* If we're in unevaluated context, we just wanted to get the
21004 constant value; this isn't an odr use, so don't queue
21005 a full instantiation. */
21006 if (cp_unevaluated_operand != 0)
21007 goto out;
21008 /* ??? Historically, we have instantiated inline functions, even
21009 when marked as "extern template". */
21010 if (!(external_p && VAR_P (d)))
21011 add_pending_template (d);
21012 goto out;
21013 }
21014 /* Tell the repository that D is available in this translation unit
21015 -- and see if it is supposed to be instantiated here. */
21016 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
21017 {
21018 /* In a PCH file, despite the fact that the repository hasn't
21019 requested instantiation in the PCH it is still possible that
21020 an instantiation will be required in a file that includes the
21021 PCH. */
21022 if (pch_file)
21023 add_pending_template (d);
21024 /* Instantiate inline functions so that the inliner can do its
21025 job, even though we'll not be emitting a copy of this
21026 function. */
21027 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
21028 goto out;
21029 }
21030
21031 fn_context = decl_function_context (d);
21032 nested = (current_function_decl != NULL_TREE);
21033 if (!fn_context)
21034 push_to_top_level ();
21035 else
21036 {
21037 if (nested)
21038 push_function_context ();
21039 cp_unevaluated_operand = 0;
21040 c_inhibit_evaluation_warnings = 0;
21041 }
21042
21043 /* Mark D as instantiated so that recursive calls to
21044 instantiate_decl do not try to instantiate it again. */
21045 DECL_TEMPLATE_INSTANTIATED (d) = 1;
21046
21047 /* Regenerate the declaration in case the template has been modified
21048 by a subsequent redeclaration. */
21049 regenerate_decl_from_template (d, td);
21050
21051 /* We already set the file and line above. Reset them now in case
21052 they changed as a result of calling regenerate_decl_from_template. */
21053 input_location = DECL_SOURCE_LOCATION (d);
21054
21055 if (VAR_P (d))
21056 {
21057 tree init;
21058 bool const_init = false;
21059
21060 /* Clear out DECL_RTL; whatever was there before may not be right
21061 since we've reset the type of the declaration. */
21062 SET_DECL_RTL (d, NULL);
21063 DECL_IN_AGGR_P (d) = 0;
21064
21065 /* The initializer is placed in DECL_INITIAL by
21066 regenerate_decl_from_template so we don't need to
21067 push/pop_access_scope again here. Pull it out so that
21068 cp_finish_decl can process it. */
21069 init = DECL_INITIAL (d);
21070 DECL_INITIAL (d) = NULL_TREE;
21071 DECL_INITIALIZED_P (d) = 0;
21072
21073 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
21074 initializer. That function will defer actual emission until
21075 we have a chance to determine linkage. */
21076 DECL_EXTERNAL (d) = 0;
21077
21078 /* Enter the scope of D so that access-checking works correctly. */
21079 bool enter_context = DECL_CLASS_SCOPE_P (d);
21080 if (enter_context)
21081 push_nested_class (DECL_CONTEXT (d));
21082
21083 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21084 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
21085
21086 if (enter_context)
21087 pop_nested_class ();
21088
21089 if (variable_template_p (td))
21090 note_variable_template_instantiation (d);
21091 }
21092 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
21093 synthesize_method (d);
21094 else if (TREE_CODE (d) == FUNCTION_DECL)
21095 {
21096 hash_map<tree, tree> *saved_local_specializations;
21097 tree subst_decl;
21098 tree tmpl_parm;
21099 tree spec_parm;
21100 tree block = NULL_TREE;
21101
21102 /* Save away the current list, in case we are instantiating one
21103 template from within the body of another. */
21104 saved_local_specializations = local_specializations;
21105
21106 /* Set up the list of local specializations. */
21107 local_specializations = new hash_map<tree, tree>;
21108
21109 /* Set up context. */
21110 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
21111 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
21112 block = push_stmt_list ();
21113 else
21114 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
21115
21116 /* Some typedefs referenced from within the template code need to be
21117 access checked at template instantiation time, i.e now. These
21118 types were added to the template at parsing time. Let's get those
21119 and perform the access checks then. */
21120 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
21121 gen_args);
21122
21123 /* Create substitution entries for the parameters. */
21124 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
21125 tmpl_parm = DECL_ARGUMENTS (subst_decl);
21126 spec_parm = DECL_ARGUMENTS (d);
21127 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
21128 {
21129 register_local_specialization (spec_parm, tmpl_parm);
21130 spec_parm = skip_artificial_parms_for (d, spec_parm);
21131 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
21132 }
21133 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
21134 {
21135 if (!DECL_PACK_P (tmpl_parm))
21136 {
21137 register_local_specialization (spec_parm, tmpl_parm);
21138 spec_parm = DECL_CHAIN (spec_parm);
21139 }
21140 else
21141 {
21142 /* Register the (value) argument pack as a specialization of
21143 TMPL_PARM, then move on. */
21144 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
21145 register_local_specialization (argpack, tmpl_parm);
21146 }
21147 }
21148 gcc_assert (!spec_parm);
21149
21150 /* Substitute into the body of the function. */
21151 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
21152 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
21153 tf_warning_or_error, tmpl);
21154 else
21155 {
21156 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
21157 tf_warning_or_error, tmpl,
21158 /*integral_constant_expression_p=*/false);
21159
21160 /* Set the current input_location to the end of the function
21161 so that finish_function knows where we are. */
21162 input_location
21163 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
21164
21165 /* Remember if we saw an infinite loop in the template. */
21166 current_function_infinite_loop
21167 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
21168 }
21169
21170 /* We don't need the local specializations any more. */
21171 delete local_specializations;
21172 local_specializations = saved_local_specializations;
21173
21174 /* Finish the function. */
21175 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
21176 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
21177 DECL_SAVED_TREE (d) = pop_stmt_list (block);
21178 else
21179 {
21180 d = finish_function (0);
21181 expand_or_defer_fn (d);
21182 }
21183
21184 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
21185 cp_check_omp_declare_reduction (d);
21186 }
21187
21188 /* We're not deferring instantiation any more. */
21189 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
21190
21191 if (!fn_context)
21192 pop_from_top_level ();
21193 else if (nested)
21194 pop_function_context ();
21195
21196 out:
21197 input_location = saved_loc;
21198 cp_unevaluated_operand = saved_unevaluated_operand;
21199 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
21200 pop_deferring_access_checks ();
21201 pop_tinst_level ();
21202
21203 timevar_pop (TV_TEMPLATE_INST);
21204
21205 return d;
21206 }
21207
21208 /* Run through the list of templates that we wish we could
21209 instantiate, and instantiate any we can. RETRIES is the
21210 number of times we retry pending template instantiation. */
21211
21212 void
21213 instantiate_pending_templates (int retries)
21214 {
21215 int reconsider;
21216 location_t saved_loc = input_location;
21217
21218 /* Instantiating templates may trigger vtable generation. This in turn
21219 may require further template instantiations. We place a limit here
21220 to avoid infinite loop. */
21221 if (pending_templates && retries >= max_tinst_depth)
21222 {
21223 tree decl = pending_templates->tinst->decl;
21224
21225 fatal_error (input_location,
21226 "template instantiation depth exceeds maximum of %d"
21227 " instantiating %q+D, possibly from virtual table generation"
21228 " (use -ftemplate-depth= to increase the maximum)",
21229 max_tinst_depth, decl);
21230 if (TREE_CODE (decl) == FUNCTION_DECL)
21231 /* Pretend that we defined it. */
21232 DECL_INITIAL (decl) = error_mark_node;
21233 return;
21234 }
21235
21236 do
21237 {
21238 struct pending_template **t = &pending_templates;
21239 struct pending_template *last = NULL;
21240 reconsider = 0;
21241 while (*t)
21242 {
21243 tree instantiation = reopen_tinst_level ((*t)->tinst);
21244 bool complete = false;
21245
21246 if (TYPE_P (instantiation))
21247 {
21248 tree fn;
21249
21250 if (!COMPLETE_TYPE_P (instantiation))
21251 {
21252 instantiate_class_template (instantiation);
21253 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
21254 for (fn = TYPE_METHODS (instantiation);
21255 fn;
21256 fn = TREE_CHAIN (fn))
21257 if (! DECL_ARTIFICIAL (fn))
21258 instantiate_decl (fn,
21259 /*defer_ok=*/0,
21260 /*expl_inst_class_mem_p=*/false);
21261 if (COMPLETE_TYPE_P (instantiation))
21262 reconsider = 1;
21263 }
21264
21265 complete = COMPLETE_TYPE_P (instantiation);
21266 }
21267 else
21268 {
21269 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
21270 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
21271 {
21272 instantiation
21273 = instantiate_decl (instantiation,
21274 /*defer_ok=*/0,
21275 /*expl_inst_class_mem_p=*/false);
21276 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
21277 reconsider = 1;
21278 }
21279
21280 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
21281 || DECL_TEMPLATE_INSTANTIATED (instantiation));
21282 }
21283
21284 if (complete)
21285 /* If INSTANTIATION has been instantiated, then we don't
21286 need to consider it again in the future. */
21287 *t = (*t)->next;
21288 else
21289 {
21290 last = *t;
21291 t = &(*t)->next;
21292 }
21293 tinst_depth = 0;
21294 current_tinst_level = NULL;
21295 }
21296 last_pending_template = last;
21297 }
21298 while (reconsider);
21299
21300 input_location = saved_loc;
21301 }
21302
21303 /* Substitute ARGVEC into T, which is a list of initializers for
21304 either base class or a non-static data member. The TREE_PURPOSEs
21305 are DECLs, and the TREE_VALUEs are the initializer values. Used by
21306 instantiate_decl. */
21307
21308 static tree
21309 tsubst_initializer_list (tree t, tree argvec)
21310 {
21311 tree inits = NULL_TREE;
21312
21313 for (; t; t = TREE_CHAIN (t))
21314 {
21315 tree decl;
21316 tree init;
21317 tree expanded_bases = NULL_TREE;
21318 tree expanded_arguments = NULL_TREE;
21319 int i, len = 1;
21320
21321 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
21322 {
21323 tree expr;
21324 tree arg;
21325
21326 /* Expand the base class expansion type into separate base
21327 classes. */
21328 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
21329 tf_warning_or_error,
21330 NULL_TREE);
21331 if (expanded_bases == error_mark_node)
21332 continue;
21333
21334 /* We'll be building separate TREE_LISTs of arguments for
21335 each base. */
21336 len = TREE_VEC_LENGTH (expanded_bases);
21337 expanded_arguments = make_tree_vec (len);
21338 for (i = 0; i < len; i++)
21339 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
21340
21341 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
21342 expand each argument in the TREE_VALUE of t. */
21343 expr = make_node (EXPR_PACK_EXPANSION);
21344 PACK_EXPANSION_LOCAL_P (expr) = true;
21345 PACK_EXPANSION_PARAMETER_PACKS (expr) =
21346 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
21347
21348 if (TREE_VALUE (t) == void_type_node)
21349 /* VOID_TYPE_NODE is used to indicate
21350 value-initialization. */
21351 {
21352 for (i = 0; i < len; i++)
21353 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
21354 }
21355 else
21356 {
21357 /* Substitute parameter packs into each argument in the
21358 TREE_LIST. */
21359 in_base_initializer = 1;
21360 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
21361 {
21362 tree expanded_exprs;
21363
21364 /* Expand the argument. */
21365 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
21366 expanded_exprs
21367 = tsubst_pack_expansion (expr, argvec,
21368 tf_warning_or_error,
21369 NULL_TREE);
21370 if (expanded_exprs == error_mark_node)
21371 continue;
21372
21373 /* Prepend each of the expanded expressions to the
21374 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
21375 for (i = 0; i < len; i++)
21376 {
21377 TREE_VEC_ELT (expanded_arguments, i) =
21378 tree_cons (NULL_TREE,
21379 TREE_VEC_ELT (expanded_exprs, i),
21380 TREE_VEC_ELT (expanded_arguments, i));
21381 }
21382 }
21383 in_base_initializer = 0;
21384
21385 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
21386 since we built them backwards. */
21387 for (i = 0; i < len; i++)
21388 {
21389 TREE_VEC_ELT (expanded_arguments, i) =
21390 nreverse (TREE_VEC_ELT (expanded_arguments, i));
21391 }
21392 }
21393 }
21394
21395 for (i = 0; i < len; ++i)
21396 {
21397 if (expanded_bases)
21398 {
21399 decl = TREE_VEC_ELT (expanded_bases, i);
21400 decl = expand_member_init (decl);
21401 init = TREE_VEC_ELT (expanded_arguments, i);
21402 }
21403 else
21404 {
21405 tree tmp;
21406 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
21407 tf_warning_or_error, NULL_TREE);
21408
21409 decl = expand_member_init (decl);
21410 if (decl && !DECL_P (decl))
21411 in_base_initializer = 1;
21412
21413 init = TREE_VALUE (t);
21414 tmp = init;
21415 if (init != void_type_node)
21416 init = tsubst_expr (init, argvec,
21417 tf_warning_or_error, NULL_TREE,
21418 /*integral_constant_expression_p=*/false);
21419 if (init == NULL_TREE && tmp != NULL_TREE)
21420 /* If we had an initializer but it instantiated to nothing,
21421 value-initialize the object. This will only occur when
21422 the initializer was a pack expansion where the parameter
21423 packs used in that expansion were of length zero. */
21424 init = void_type_node;
21425 in_base_initializer = 0;
21426 }
21427
21428 if (decl)
21429 {
21430 init = build_tree_list (decl, init);
21431 TREE_CHAIN (init) = inits;
21432 inits = init;
21433 }
21434 }
21435 }
21436 return inits;
21437 }
21438
21439 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
21440
21441 static void
21442 set_current_access_from_decl (tree decl)
21443 {
21444 if (TREE_PRIVATE (decl))
21445 current_access_specifier = access_private_node;
21446 else if (TREE_PROTECTED (decl))
21447 current_access_specifier = access_protected_node;
21448 else
21449 current_access_specifier = access_public_node;
21450 }
21451
21452 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
21453 is the instantiation (which should have been created with
21454 start_enum) and ARGS are the template arguments to use. */
21455
21456 static void
21457 tsubst_enum (tree tag, tree newtag, tree args)
21458 {
21459 tree e;
21460
21461 if (SCOPED_ENUM_P (newtag))
21462 begin_scope (sk_scoped_enum, newtag);
21463
21464 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
21465 {
21466 tree value;
21467 tree decl;
21468
21469 decl = TREE_VALUE (e);
21470 /* Note that in a template enum, the TREE_VALUE is the
21471 CONST_DECL, not the corresponding INTEGER_CST. */
21472 value = tsubst_expr (DECL_INITIAL (decl),
21473 args, tf_warning_or_error, NULL_TREE,
21474 /*integral_constant_expression_p=*/true);
21475
21476 /* Give this enumeration constant the correct access. */
21477 set_current_access_from_decl (decl);
21478
21479 /* Actually build the enumerator itself. Here we're assuming that
21480 enumerators can't have dependent attributes. */
21481 build_enumerator (DECL_NAME (decl), value, newtag,
21482 DECL_ATTRIBUTES (decl), DECL_SOURCE_LOCATION (decl));
21483 }
21484
21485 if (SCOPED_ENUM_P (newtag))
21486 finish_scope ();
21487
21488 finish_enum_value_list (newtag);
21489 finish_enum (newtag);
21490
21491 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
21492 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
21493 }
21494
21495 /* DECL is a FUNCTION_DECL that is a template specialization. Return
21496 its type -- but without substituting the innermost set of template
21497 arguments. So, innermost set of template parameters will appear in
21498 the type. */
21499
21500 tree
21501 get_mostly_instantiated_function_type (tree decl)
21502 {
21503 /* For a function, DECL_TI_TEMPLATE is partially instantiated. */
21504 return TREE_TYPE (DECL_TI_TEMPLATE (decl));
21505 }
21506
21507 /* Return truthvalue if we're processing a template different from
21508 the last one involved in diagnostics. */
21509 bool
21510 problematic_instantiation_changed (void)
21511 {
21512 return current_tinst_level != last_error_tinst_level;
21513 }
21514
21515 /* Remember current template involved in diagnostics. */
21516 void
21517 record_last_problematic_instantiation (void)
21518 {
21519 last_error_tinst_level = current_tinst_level;
21520 }
21521
21522 struct tinst_level *
21523 current_instantiation (void)
21524 {
21525 return current_tinst_level;
21526 }
21527
21528 /* Return TRUE if current_function_decl is being instantiated, false
21529 otherwise. */
21530
21531 bool
21532 instantiating_current_function_p (void)
21533 {
21534 return (current_instantiation ()
21535 && current_instantiation ()->decl == current_function_decl);
21536 }
21537
21538 /* [temp.param] Check that template non-type parm TYPE is of an allowable
21539 type. Return zero for ok, nonzero for disallowed. Issue error and
21540 warning messages under control of COMPLAIN. */
21541
21542 static int
21543 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
21544 {
21545 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
21546 return 0;
21547 else if (POINTER_TYPE_P (type))
21548 return 0;
21549 else if (TYPE_PTRMEM_P (type))
21550 return 0;
21551 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
21552 return 0;
21553 else if (TREE_CODE (type) == TYPENAME_TYPE)
21554 return 0;
21555 else if (TREE_CODE (type) == DECLTYPE_TYPE)
21556 return 0;
21557 else if (TREE_CODE (type) == NULLPTR_TYPE)
21558 return 0;
21559 /* A bound template template parm could later be instantiated to have a valid
21560 nontype parm type via an alias template. */
21561 else if (cxx_dialect >= cxx11
21562 && TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
21563 return 0;
21564
21565 if (complain & tf_error)
21566 {
21567 if (type == error_mark_node)
21568 inform (input_location, "invalid template non-type parameter");
21569 else
21570 error ("%q#T is not a valid type for a template non-type parameter",
21571 type);
21572 }
21573 return 1;
21574 }
21575
21576 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
21577 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
21578
21579 static bool
21580 dependent_type_p_r (tree type)
21581 {
21582 tree scope;
21583
21584 /* [temp.dep.type]
21585
21586 A type is dependent if it is:
21587
21588 -- a template parameter. Template template parameters are types
21589 for us (since TYPE_P holds true for them) so we handle
21590 them here. */
21591 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
21592 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
21593 return true;
21594 /* -- a qualified-id with a nested-name-specifier which contains a
21595 class-name that names a dependent type or whose unqualified-id
21596 names a dependent type. */
21597 if (TREE_CODE (type) == TYPENAME_TYPE)
21598 return true;
21599
21600 /* An alias template specialization can be dependent even if the
21601 resulting type is not. */
21602 if (dependent_alias_template_spec_p (type))
21603 return true;
21604
21605 /* -- a cv-qualified type where the cv-unqualified type is
21606 dependent.
21607 No code is necessary for this bullet; the code below handles
21608 cv-qualified types, and we don't want to strip aliases with
21609 TYPE_MAIN_VARIANT because of DR 1558. */
21610 /* -- a compound type constructed from any dependent type. */
21611 if (TYPE_PTRMEM_P (type))
21612 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
21613 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
21614 (type)));
21615 else if (TYPE_PTR_P (type)
21616 || TREE_CODE (type) == REFERENCE_TYPE)
21617 return dependent_type_p (TREE_TYPE (type));
21618 else if (TREE_CODE (type) == FUNCTION_TYPE
21619 || TREE_CODE (type) == METHOD_TYPE)
21620 {
21621 tree arg_type;
21622
21623 if (dependent_type_p (TREE_TYPE (type)))
21624 return true;
21625 for (arg_type = TYPE_ARG_TYPES (type);
21626 arg_type;
21627 arg_type = TREE_CHAIN (arg_type))
21628 if (dependent_type_p (TREE_VALUE (arg_type)))
21629 return true;
21630 return false;
21631 }
21632 /* -- an array type constructed from any dependent type or whose
21633 size is specified by a constant expression that is
21634 value-dependent.
21635
21636 We checked for type- and value-dependence of the bounds in
21637 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
21638 if (TREE_CODE (type) == ARRAY_TYPE)
21639 {
21640 if (TYPE_DOMAIN (type)
21641 && dependent_type_p (TYPE_DOMAIN (type)))
21642 return true;
21643 return dependent_type_p (TREE_TYPE (type));
21644 }
21645
21646 /* -- a template-id in which either the template name is a template
21647 parameter ... */
21648 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
21649 return true;
21650 /* ... or any of the template arguments is a dependent type or
21651 an expression that is type-dependent or value-dependent. */
21652 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
21653 && (any_dependent_template_arguments_p
21654 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
21655 return true;
21656
21657 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
21658 dependent; if the argument of the `typeof' expression is not
21659 type-dependent, then it should already been have resolved. */
21660 if (TREE_CODE (type) == TYPEOF_TYPE
21661 || TREE_CODE (type) == DECLTYPE_TYPE
21662 || TREE_CODE (type) == UNDERLYING_TYPE)
21663 return true;
21664
21665 /* A template argument pack is dependent if any of its packed
21666 arguments are. */
21667 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
21668 {
21669 tree args = ARGUMENT_PACK_ARGS (type);
21670 int i, len = TREE_VEC_LENGTH (args);
21671 for (i = 0; i < len; ++i)
21672 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
21673 return true;
21674 }
21675
21676 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
21677 be template parameters. */
21678 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
21679 return true;
21680
21681 /* The standard does not specifically mention types that are local
21682 to template functions or local classes, but they should be
21683 considered dependent too. For example:
21684
21685 template <int I> void f() {
21686 enum E { a = I };
21687 S<sizeof (E)> s;
21688 }
21689
21690 The size of `E' cannot be known until the value of `I' has been
21691 determined. Therefore, `E' must be considered dependent. */
21692 scope = TYPE_CONTEXT (type);
21693 if (scope && TYPE_P (scope))
21694 return dependent_type_p (scope);
21695 /* Don't use type_dependent_expression_p here, as it can lead
21696 to infinite recursion trying to determine whether a lambda
21697 nested in a lambda is dependent (c++/47687). */
21698 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
21699 && DECL_LANG_SPECIFIC (scope)
21700 && DECL_TEMPLATE_INFO (scope)
21701 && (any_dependent_template_arguments_p
21702 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
21703 return true;
21704
21705 /* Other types are non-dependent. */
21706 return false;
21707 }
21708
21709 /* Returns TRUE if TYPE is dependent, in the sense of
21710 [temp.dep.type]. Note that a NULL type is considered dependent. */
21711
21712 bool
21713 dependent_type_p (tree type)
21714 {
21715 /* If there are no template parameters in scope, then there can't be
21716 any dependent types. */
21717 if (!processing_template_decl)
21718 {
21719 /* If we are not processing a template, then nobody should be
21720 providing us with a dependent type. */
21721 gcc_assert (type);
21722 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
21723 return false;
21724 }
21725
21726 /* If the type is NULL, we have not computed a type for the entity
21727 in question; in that case, the type is dependent. */
21728 if (!type)
21729 return true;
21730
21731 /* Erroneous types can be considered non-dependent. */
21732 if (type == error_mark_node)
21733 return false;
21734
21735 /* If we have not already computed the appropriate value for TYPE,
21736 do so now. */
21737 if (!TYPE_DEPENDENT_P_VALID (type))
21738 {
21739 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
21740 TYPE_DEPENDENT_P_VALID (type) = 1;
21741 }
21742
21743 return TYPE_DEPENDENT_P (type);
21744 }
21745
21746 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
21747 lookup. In other words, a dependent type that is not the current
21748 instantiation. */
21749
21750 bool
21751 dependent_scope_p (tree scope)
21752 {
21753 return (scope && TYPE_P (scope) && dependent_type_p (scope)
21754 && !currently_open_class (scope));
21755 }
21756
21757 /* T is a SCOPE_REF; return whether we need to consider it
21758 instantiation-dependent so that we can check access at instantiation
21759 time even though we know which member it resolves to. */
21760
21761 static bool
21762 instantiation_dependent_scope_ref_p (tree t)
21763 {
21764 if (DECL_P (TREE_OPERAND (t, 1))
21765 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
21766 && accessible_in_template_p (TREE_OPERAND (t, 0),
21767 TREE_OPERAND (t, 1)))
21768 return false;
21769 else
21770 return true;
21771 }
21772
21773 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
21774 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
21775 expression. */
21776
21777 /* Note that this predicate is not appropriate for general expressions;
21778 only constant expressions (that satisfy potential_constant_expression)
21779 can be tested for value dependence. */
21780
21781 bool
21782 value_dependent_expression_p (tree expression)
21783 {
21784 if (!processing_template_decl)
21785 return false;
21786
21787 /* A name declared with a dependent type. */
21788 if (DECL_P (expression) && type_dependent_expression_p (expression))
21789 return true;
21790
21791 switch (TREE_CODE (expression))
21792 {
21793 case IDENTIFIER_NODE:
21794 /* A name that has not been looked up -- must be dependent. */
21795 return true;
21796
21797 case TEMPLATE_PARM_INDEX:
21798 /* A non-type template parm. */
21799 return true;
21800
21801 case CONST_DECL:
21802 /* A non-type template parm. */
21803 if (DECL_TEMPLATE_PARM_P (expression))
21804 return true;
21805 return value_dependent_expression_p (DECL_INITIAL (expression));
21806
21807 case VAR_DECL:
21808 /* A constant with literal type and is initialized
21809 with an expression that is value-dependent.
21810
21811 Note that a non-dependent parenthesized initializer will have
21812 already been replaced with its constant value, so if we see
21813 a TREE_LIST it must be dependent. */
21814 if (DECL_INITIAL (expression)
21815 && decl_constant_var_p (expression)
21816 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
21817 /* cp_finish_decl doesn't fold reference initializers. */
21818 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
21819 || value_dependent_expression_p (DECL_INITIAL (expression))))
21820 return true;
21821 return false;
21822
21823 case DYNAMIC_CAST_EXPR:
21824 case STATIC_CAST_EXPR:
21825 case CONST_CAST_EXPR:
21826 case REINTERPRET_CAST_EXPR:
21827 case CAST_EXPR:
21828 /* These expressions are value-dependent if the type to which
21829 the cast occurs is dependent or the expression being casted
21830 is value-dependent. */
21831 {
21832 tree type = TREE_TYPE (expression);
21833
21834 if (dependent_type_p (type))
21835 return true;
21836
21837 /* A functional cast has a list of operands. */
21838 expression = TREE_OPERAND (expression, 0);
21839 if (!expression)
21840 {
21841 /* If there are no operands, it must be an expression such
21842 as "int()". This should not happen for aggregate types
21843 because it would form non-constant expressions. */
21844 gcc_assert (cxx_dialect >= cxx11
21845 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
21846
21847 return false;
21848 }
21849
21850 if (TREE_CODE (expression) == TREE_LIST)
21851 return any_value_dependent_elements_p (expression);
21852
21853 return value_dependent_expression_p (expression);
21854 }
21855
21856 case SIZEOF_EXPR:
21857 if (SIZEOF_EXPR_TYPE_P (expression))
21858 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
21859 /* FALLTHRU */
21860 case ALIGNOF_EXPR:
21861 case TYPEID_EXPR:
21862 /* A `sizeof' expression is value-dependent if the operand is
21863 type-dependent or is a pack expansion. */
21864 expression = TREE_OPERAND (expression, 0);
21865 if (PACK_EXPANSION_P (expression))
21866 return true;
21867 else if (TYPE_P (expression))
21868 return dependent_type_p (expression);
21869 return instantiation_dependent_expression_p (expression);
21870
21871 case AT_ENCODE_EXPR:
21872 /* An 'encode' expression is value-dependent if the operand is
21873 type-dependent. */
21874 expression = TREE_OPERAND (expression, 0);
21875 return dependent_type_p (expression);
21876
21877 case NOEXCEPT_EXPR:
21878 expression = TREE_OPERAND (expression, 0);
21879 return instantiation_dependent_expression_p (expression);
21880
21881 case SCOPE_REF:
21882 /* All instantiation-dependent expressions should also be considered
21883 value-dependent. */
21884 return instantiation_dependent_scope_ref_p (expression);
21885
21886 case COMPONENT_REF:
21887 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
21888 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
21889
21890 case NONTYPE_ARGUMENT_PACK:
21891 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
21892 is value-dependent. */
21893 {
21894 tree values = ARGUMENT_PACK_ARGS (expression);
21895 int i, len = TREE_VEC_LENGTH (values);
21896
21897 for (i = 0; i < len; ++i)
21898 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
21899 return true;
21900
21901 return false;
21902 }
21903
21904 case TRAIT_EXPR:
21905 {
21906 tree type2 = TRAIT_EXPR_TYPE2 (expression);
21907 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
21908 || (type2 ? dependent_type_p (type2) : false));
21909 }
21910
21911 case MODOP_EXPR:
21912 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
21913 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
21914
21915 case ARRAY_REF:
21916 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
21917 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
21918
21919 case ADDR_EXPR:
21920 {
21921 tree op = TREE_OPERAND (expression, 0);
21922 return (value_dependent_expression_p (op)
21923 || has_value_dependent_address (op));
21924 }
21925
21926 case REQUIRES_EXPR:
21927 /* Treat all requires-expressions as value-dependent so
21928 we don't try to fold them. */
21929 return true;
21930
21931 case TYPE_REQ:
21932 return dependent_type_p (TREE_OPERAND (expression, 0));
21933
21934 case CALL_EXPR:
21935 {
21936 tree fn = get_callee_fndecl (expression);
21937 int i, nargs;
21938 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
21939 return true;
21940 nargs = call_expr_nargs (expression);
21941 for (i = 0; i < nargs; ++i)
21942 {
21943 tree op = CALL_EXPR_ARG (expression, i);
21944 /* In a call to a constexpr member function, look through the
21945 implicit ADDR_EXPR on the object argument so that it doesn't
21946 cause the call to be considered value-dependent. We also
21947 look through it in potential_constant_expression. */
21948 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
21949 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
21950 && TREE_CODE (op) == ADDR_EXPR)
21951 op = TREE_OPERAND (op, 0);
21952 if (value_dependent_expression_p (op))
21953 return true;
21954 }
21955 return false;
21956 }
21957
21958 case TEMPLATE_ID_EXPR:
21959 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
21960 type-dependent. */
21961 return type_dependent_expression_p (expression)
21962 || variable_concept_p (TREE_OPERAND (expression, 0));
21963
21964 case CONSTRUCTOR:
21965 {
21966 unsigned ix;
21967 tree val;
21968 if (dependent_type_p (TREE_TYPE (expression)))
21969 return true;
21970 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
21971 if (value_dependent_expression_p (val))
21972 return true;
21973 return false;
21974 }
21975
21976 case STMT_EXPR:
21977 /* Treat a GNU statement expression as dependent to avoid crashing
21978 under instantiate_non_dependent_expr; it can't be constant. */
21979 return true;
21980
21981 default:
21982 /* A constant expression is value-dependent if any subexpression is
21983 value-dependent. */
21984 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
21985 {
21986 case tcc_reference:
21987 case tcc_unary:
21988 case tcc_comparison:
21989 case tcc_binary:
21990 case tcc_expression:
21991 case tcc_vl_exp:
21992 {
21993 int i, len = cp_tree_operand_length (expression);
21994
21995 for (i = 0; i < len; i++)
21996 {
21997 tree t = TREE_OPERAND (expression, i);
21998
21999 /* In some cases, some of the operands may be missing.l
22000 (For example, in the case of PREDECREMENT_EXPR, the
22001 amount to increment by may be missing.) That doesn't
22002 make the expression dependent. */
22003 if (t && value_dependent_expression_p (t))
22004 return true;
22005 }
22006 }
22007 break;
22008 default:
22009 break;
22010 }
22011 break;
22012 }
22013
22014 /* The expression is not value-dependent. */
22015 return false;
22016 }
22017
22018 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
22019 [temp.dep.expr]. Note that an expression with no type is
22020 considered dependent. Other parts of the compiler arrange for an
22021 expression with type-dependent subexpressions to have no type, so
22022 this function doesn't have to be fully recursive. */
22023
22024 bool
22025 type_dependent_expression_p (tree expression)
22026 {
22027 if (!processing_template_decl)
22028 return false;
22029
22030 if (expression == NULL_TREE || expression == error_mark_node)
22031 return false;
22032
22033 /* An unresolved name is always dependent. */
22034 if (identifier_p (expression)
22035 || TREE_CODE (expression) == USING_DECL
22036 || TREE_CODE (expression) == WILDCARD_DECL)
22037 return true;
22038
22039 /* Some expression forms are never type-dependent. */
22040 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
22041 || TREE_CODE (expression) == SIZEOF_EXPR
22042 || TREE_CODE (expression) == ALIGNOF_EXPR
22043 || TREE_CODE (expression) == AT_ENCODE_EXPR
22044 || TREE_CODE (expression) == NOEXCEPT_EXPR
22045 || TREE_CODE (expression) == TRAIT_EXPR
22046 || TREE_CODE (expression) == TYPEID_EXPR
22047 || TREE_CODE (expression) == DELETE_EXPR
22048 || TREE_CODE (expression) == VEC_DELETE_EXPR
22049 || TREE_CODE (expression) == THROW_EXPR
22050 || TREE_CODE (expression) == REQUIRES_EXPR)
22051 return false;
22052
22053 /* The types of these expressions depends only on the type to which
22054 the cast occurs. */
22055 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
22056 || TREE_CODE (expression) == STATIC_CAST_EXPR
22057 || TREE_CODE (expression) == CONST_CAST_EXPR
22058 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
22059 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
22060 || TREE_CODE (expression) == CAST_EXPR)
22061 return dependent_type_p (TREE_TYPE (expression));
22062
22063 /* The types of these expressions depends only on the type created
22064 by the expression. */
22065 if (TREE_CODE (expression) == NEW_EXPR
22066 || TREE_CODE (expression) == VEC_NEW_EXPR)
22067 {
22068 /* For NEW_EXPR tree nodes created inside a template, either
22069 the object type itself or a TREE_LIST may appear as the
22070 operand 1. */
22071 tree type = TREE_OPERAND (expression, 1);
22072 if (TREE_CODE (type) == TREE_LIST)
22073 /* This is an array type. We need to check array dimensions
22074 as well. */
22075 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
22076 || value_dependent_expression_p
22077 (TREE_OPERAND (TREE_VALUE (type), 1));
22078 else
22079 return dependent_type_p (type);
22080 }
22081
22082 if (TREE_CODE (expression) == SCOPE_REF)
22083 {
22084 tree scope = TREE_OPERAND (expression, 0);
22085 tree name = TREE_OPERAND (expression, 1);
22086
22087 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
22088 contains an identifier associated by name lookup with one or more
22089 declarations declared with a dependent type, or...a
22090 nested-name-specifier or qualified-id that names a member of an
22091 unknown specialization. */
22092 return (type_dependent_expression_p (name)
22093 || dependent_scope_p (scope));
22094 }
22095
22096 if (TREE_CODE (expression) == FUNCTION_DECL
22097 && DECL_LANG_SPECIFIC (expression)
22098 && DECL_TEMPLATE_INFO (expression)
22099 && (any_dependent_template_arguments_p
22100 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
22101 return true;
22102
22103 if (TREE_CODE (expression) == TEMPLATE_DECL
22104 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
22105 return false;
22106
22107 if (TREE_CODE (expression) == STMT_EXPR)
22108 expression = stmt_expr_value_expr (expression);
22109
22110 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
22111 {
22112 tree elt;
22113 unsigned i;
22114
22115 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
22116 {
22117 if (type_dependent_expression_p (elt))
22118 return true;
22119 }
22120 return false;
22121 }
22122
22123 /* A static data member of the current instantiation with incomplete
22124 array type is type-dependent, as the definition and specializations
22125 can have different bounds. */
22126 if (VAR_P (expression)
22127 && DECL_CLASS_SCOPE_P (expression)
22128 && dependent_type_p (DECL_CONTEXT (expression))
22129 && VAR_HAD_UNKNOWN_BOUND (expression))
22130 return true;
22131
22132 /* An array of unknown bound depending on a variadic parameter, eg:
22133
22134 template<typename... Args>
22135 void foo (Args... args)
22136 {
22137 int arr[] = { args... };
22138 }
22139
22140 template<int... vals>
22141 void bar ()
22142 {
22143 int arr[] = { vals... };
22144 }
22145
22146 If the array has no length and has an initializer, it must be that
22147 we couldn't determine its length in cp_complete_array_type because
22148 it is dependent. */
22149 if (VAR_P (expression)
22150 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
22151 && !TYPE_DOMAIN (TREE_TYPE (expression))
22152 && DECL_INITIAL (expression))
22153 return true;
22154
22155 /* A variable template specialization is type-dependent if it has any
22156 dependent template arguments. */
22157 if (VAR_P (expression)
22158 && DECL_LANG_SPECIFIC (expression)
22159 && DECL_TEMPLATE_INFO (expression)
22160 && variable_template_p (DECL_TI_TEMPLATE (expression)))
22161 return any_dependent_template_arguments_p (DECL_TI_ARGS (expression));
22162
22163 /* Always dependent, on the number of arguments if nothing else. */
22164 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
22165 return true;
22166
22167 if (TREE_TYPE (expression) == unknown_type_node)
22168 {
22169 if (TREE_CODE (expression) == ADDR_EXPR)
22170 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
22171 if (TREE_CODE (expression) == COMPONENT_REF
22172 || TREE_CODE (expression) == OFFSET_REF)
22173 {
22174 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
22175 return true;
22176 expression = TREE_OPERAND (expression, 1);
22177 if (identifier_p (expression))
22178 return false;
22179 }
22180 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
22181 if (TREE_CODE (expression) == SCOPE_REF)
22182 return false;
22183
22184 if (BASELINK_P (expression))
22185 {
22186 if (BASELINK_OPTYPE (expression)
22187 && dependent_type_p (BASELINK_OPTYPE (expression)))
22188 return true;
22189 expression = BASELINK_FUNCTIONS (expression);
22190 }
22191
22192 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
22193 {
22194 if (any_dependent_template_arguments_p
22195 (TREE_OPERAND (expression, 1)))
22196 return true;
22197 expression = TREE_OPERAND (expression, 0);
22198 if (identifier_p (expression))
22199 return true;
22200 }
22201
22202 gcc_assert (TREE_CODE (expression) == OVERLOAD
22203 || TREE_CODE (expression) == FUNCTION_DECL);
22204
22205 while (expression)
22206 {
22207 if (type_dependent_expression_p (OVL_CURRENT (expression)))
22208 return true;
22209 expression = OVL_NEXT (expression);
22210 }
22211 return false;
22212 }
22213
22214 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
22215
22216 return (dependent_type_p (TREE_TYPE (expression)));
22217 }
22218
22219 /* walk_tree callback function for instantiation_dependent_expression_p,
22220 below. Returns non-zero if a dependent subexpression is found. */
22221
22222 static tree
22223 instantiation_dependent_r (tree *tp, int *walk_subtrees,
22224 void * /*data*/)
22225 {
22226 if (TYPE_P (*tp))
22227 {
22228 /* We don't have to worry about decltype currently because decltype
22229 of an instantiation-dependent expr is a dependent type. This
22230 might change depending on the resolution of DR 1172. */
22231 *walk_subtrees = false;
22232 return NULL_TREE;
22233 }
22234 enum tree_code code = TREE_CODE (*tp);
22235 switch (code)
22236 {
22237 /* Don't treat an argument list as dependent just because it has no
22238 TREE_TYPE. */
22239 case TREE_LIST:
22240 case TREE_VEC:
22241 return NULL_TREE;
22242
22243 case VAR_DECL:
22244 case CONST_DECL:
22245 /* A constant with a dependent initializer is dependent. */
22246 if (value_dependent_expression_p (*tp))
22247 return *tp;
22248 break;
22249
22250 case TEMPLATE_PARM_INDEX:
22251 return *tp;
22252
22253 /* Handle expressions with type operands. */
22254 case SIZEOF_EXPR:
22255 case ALIGNOF_EXPR:
22256 case TYPEID_EXPR:
22257 case AT_ENCODE_EXPR:
22258 {
22259 tree op = TREE_OPERAND (*tp, 0);
22260 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
22261 op = TREE_TYPE (op);
22262 if (TYPE_P (op))
22263 {
22264 if (dependent_type_p (op))
22265 return *tp;
22266 else
22267 {
22268 *walk_subtrees = false;
22269 return NULL_TREE;
22270 }
22271 }
22272 break;
22273 }
22274
22275 case TRAIT_EXPR:
22276 if (value_dependent_expression_p (*tp))
22277 return *tp;
22278 *walk_subtrees = false;
22279 return NULL_TREE;
22280
22281 case COMPONENT_REF:
22282 if (identifier_p (TREE_OPERAND (*tp, 1)))
22283 /* In a template, finish_class_member_access_expr creates a
22284 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
22285 type-dependent, so that we can check access control at
22286 instantiation time (PR 42277). See also Core issue 1273. */
22287 return *tp;
22288 break;
22289
22290 case SCOPE_REF:
22291 if (instantiation_dependent_scope_ref_p (*tp))
22292 return *tp;
22293 else
22294 break;
22295
22296 /* Treat statement-expressions as dependent. */
22297 case BIND_EXPR:
22298 return *tp;
22299
22300 /* Treat requires-expressions as dependent. */
22301 case REQUIRES_EXPR:
22302 return *tp;
22303
22304 case CALL_EXPR:
22305 /* Treat calls to function concepts as dependent. */
22306 if (function_concept_check_p (*tp))
22307 return *tp;
22308 break;
22309
22310 case TEMPLATE_ID_EXPR:
22311 /* And variable concepts. */
22312 if (variable_concept_p (TREE_OPERAND (*tp, 0)))
22313 return *tp;
22314 break;
22315
22316 default:
22317 break;
22318 }
22319
22320 if (type_dependent_expression_p (*tp))
22321 return *tp;
22322 else
22323 return NULL_TREE;
22324 }
22325
22326 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
22327 sense defined by the ABI:
22328
22329 "An expression is instantiation-dependent if it is type-dependent
22330 or value-dependent, or it has a subexpression that is type-dependent
22331 or value-dependent." */
22332
22333 bool
22334 instantiation_dependent_expression_p (tree expression)
22335 {
22336 tree result;
22337
22338 if (!processing_template_decl)
22339 return false;
22340
22341 if (expression == error_mark_node)
22342 return false;
22343
22344 result = cp_walk_tree_without_duplicates (&expression,
22345 instantiation_dependent_r, NULL);
22346 return result != NULL_TREE;
22347 }
22348
22349 /* Like type_dependent_expression_p, but it also works while not processing
22350 a template definition, i.e. during substitution or mangling. */
22351
22352 bool
22353 type_dependent_expression_p_push (tree expr)
22354 {
22355 bool b;
22356 ++processing_template_decl;
22357 b = type_dependent_expression_p (expr);
22358 --processing_template_decl;
22359 return b;
22360 }
22361
22362 /* Returns TRUE if ARGS contains a type-dependent expression. */
22363
22364 bool
22365 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
22366 {
22367 unsigned int i;
22368 tree arg;
22369
22370 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
22371 {
22372 if (type_dependent_expression_p (arg))
22373 return true;
22374 }
22375 return false;
22376 }
22377
22378 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
22379 expressions) contains any type-dependent expressions. */
22380
22381 bool
22382 any_type_dependent_elements_p (const_tree list)
22383 {
22384 for (; list; list = TREE_CHAIN (list))
22385 if (type_dependent_expression_p (TREE_VALUE (list)))
22386 return true;
22387
22388 return false;
22389 }
22390
22391 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
22392 expressions) contains any value-dependent expressions. */
22393
22394 bool
22395 any_value_dependent_elements_p (const_tree list)
22396 {
22397 for (; list; list = TREE_CHAIN (list))
22398 if (value_dependent_expression_p (TREE_VALUE (list)))
22399 return true;
22400
22401 return false;
22402 }
22403
22404 /* Returns TRUE if the ARG (a template argument) is dependent. */
22405
22406 bool
22407 dependent_template_arg_p (tree arg)
22408 {
22409 if (!processing_template_decl)
22410 return false;
22411
22412 /* Assume a template argument that was wrongly written by the user
22413 is dependent. This is consistent with what
22414 any_dependent_template_arguments_p [that calls this function]
22415 does. */
22416 if (!arg || arg == error_mark_node)
22417 return true;
22418
22419 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
22420 arg = ARGUMENT_PACK_SELECT_ARG (arg);
22421
22422 if (TREE_CODE (arg) == TEMPLATE_DECL
22423 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
22424 return dependent_template_p (arg);
22425 else if (ARGUMENT_PACK_P (arg))
22426 {
22427 tree args = ARGUMENT_PACK_ARGS (arg);
22428 int i, len = TREE_VEC_LENGTH (args);
22429 for (i = 0; i < len; ++i)
22430 {
22431 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
22432 return true;
22433 }
22434
22435 return false;
22436 }
22437 else if (TYPE_P (arg))
22438 return dependent_type_p (arg);
22439 else
22440 return (type_dependent_expression_p (arg)
22441 || value_dependent_expression_p (arg));
22442 }
22443
22444 /* Returns true if ARGS (a collection of template arguments) contains
22445 any types that require structural equality testing. */
22446
22447 bool
22448 any_template_arguments_need_structural_equality_p (tree args)
22449 {
22450 int i;
22451 int j;
22452
22453 if (!args)
22454 return false;
22455 if (args == error_mark_node)
22456 return true;
22457
22458 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
22459 {
22460 tree level = TMPL_ARGS_LEVEL (args, i + 1);
22461 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
22462 {
22463 tree arg = TREE_VEC_ELT (level, j);
22464 tree packed_args = NULL_TREE;
22465 int k, len = 1;
22466
22467 if (ARGUMENT_PACK_P (arg))
22468 {
22469 /* Look inside the argument pack. */
22470 packed_args = ARGUMENT_PACK_ARGS (arg);
22471 len = TREE_VEC_LENGTH (packed_args);
22472 }
22473
22474 for (k = 0; k < len; ++k)
22475 {
22476 if (packed_args)
22477 arg = TREE_VEC_ELT (packed_args, k);
22478
22479 if (error_operand_p (arg))
22480 return true;
22481 else if (TREE_CODE (arg) == TEMPLATE_DECL)
22482 continue;
22483 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
22484 return true;
22485 else if (!TYPE_P (arg) && TREE_TYPE (arg)
22486 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
22487 return true;
22488 }
22489 }
22490 }
22491
22492 return false;
22493 }
22494
22495 /* Returns true if ARGS (a collection of template arguments) contains
22496 any dependent arguments. */
22497
22498 bool
22499 any_dependent_template_arguments_p (const_tree args)
22500 {
22501 int i;
22502 int j;
22503
22504 if (!args)
22505 return false;
22506 if (args == error_mark_node)
22507 return true;
22508
22509 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
22510 {
22511 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
22512 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
22513 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
22514 return true;
22515 }
22516
22517 return false;
22518 }
22519
22520 /* Returns TRUE if the template TMPL is dependent. */
22521
22522 bool
22523 dependent_template_p (tree tmpl)
22524 {
22525 if (TREE_CODE (tmpl) == OVERLOAD)
22526 {
22527 while (tmpl)
22528 {
22529 if (dependent_template_p (OVL_CURRENT (tmpl)))
22530 return true;
22531 tmpl = OVL_NEXT (tmpl);
22532 }
22533 return false;
22534 }
22535
22536 /* Template template parameters are dependent. */
22537 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
22538 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
22539 return true;
22540 /* So are names that have not been looked up. */
22541 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
22542 return true;
22543 /* So are member templates of dependent classes. */
22544 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
22545 return dependent_type_p (DECL_CONTEXT (tmpl));
22546 return false;
22547 }
22548
22549 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
22550
22551 bool
22552 dependent_template_id_p (tree tmpl, tree args)
22553 {
22554 return (dependent_template_p (tmpl)
22555 || any_dependent_template_arguments_p (args));
22556 }
22557
22558 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
22559 is dependent. */
22560
22561 bool
22562 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
22563 {
22564 int i;
22565
22566 if (!processing_template_decl)
22567 return false;
22568
22569 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
22570 {
22571 tree decl = TREE_VEC_ELT (declv, i);
22572 tree init = TREE_VEC_ELT (initv, i);
22573 tree cond = TREE_VEC_ELT (condv, i);
22574 tree incr = TREE_VEC_ELT (incrv, i);
22575
22576 if (type_dependent_expression_p (decl))
22577 return true;
22578
22579 if (init && type_dependent_expression_p (init))
22580 return true;
22581
22582 if (type_dependent_expression_p (cond))
22583 return true;
22584
22585 if (COMPARISON_CLASS_P (cond)
22586 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
22587 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
22588 return true;
22589
22590 if (TREE_CODE (incr) == MODOP_EXPR)
22591 {
22592 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
22593 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
22594 return true;
22595 }
22596 else if (type_dependent_expression_p (incr))
22597 return true;
22598 else if (TREE_CODE (incr) == MODIFY_EXPR)
22599 {
22600 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
22601 return true;
22602 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
22603 {
22604 tree t = TREE_OPERAND (incr, 1);
22605 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
22606 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
22607 return true;
22608 }
22609 }
22610 }
22611
22612 return false;
22613 }
22614
22615 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
22616 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
22617 no such TYPE can be found. Note that this function peers inside
22618 uninstantiated templates and therefore should be used only in
22619 extremely limited situations. ONLY_CURRENT_P restricts this
22620 peering to the currently open classes hierarchy (which is required
22621 when comparing types). */
22622
22623 tree
22624 resolve_typename_type (tree type, bool only_current_p)
22625 {
22626 tree scope;
22627 tree name;
22628 tree decl;
22629 int quals;
22630 tree pushed_scope;
22631 tree result;
22632
22633 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
22634
22635 scope = TYPE_CONTEXT (type);
22636 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
22637 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
22638 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
22639 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
22640 identifier of the TYPENAME_TYPE anymore.
22641 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
22642 TYPENAME_TYPE instead, we avoid messing up with a possible
22643 typedef variant case. */
22644 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
22645
22646 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
22647 it first before we can figure out what NAME refers to. */
22648 if (TREE_CODE (scope) == TYPENAME_TYPE)
22649 {
22650 if (TYPENAME_IS_RESOLVING_P (scope))
22651 /* Given a class template A with a dependent base with nested type C,
22652 typedef typename A::C::C C will land us here, as trying to resolve
22653 the initial A::C leads to the local C typedef, which leads back to
22654 A::C::C. So we break the recursion now. */
22655 return type;
22656 else
22657 scope = resolve_typename_type (scope, only_current_p);
22658 }
22659 /* If we don't know what SCOPE refers to, then we cannot resolve the
22660 TYPENAME_TYPE. */
22661 if (TREE_CODE (scope) == TYPENAME_TYPE)
22662 return type;
22663 /* If the SCOPE is a template type parameter, we have no way of
22664 resolving the name. */
22665 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
22666 return type;
22667 /* If the SCOPE is not the current instantiation, there's no reason
22668 to look inside it. */
22669 if (only_current_p && !currently_open_class (scope))
22670 return type;
22671 /* If this is a typedef, we don't want to look inside (c++/11987). */
22672 if (typedef_variant_p (type))
22673 return type;
22674 /* If SCOPE isn't the template itself, it will not have a valid
22675 TYPE_FIELDS list. */
22676 if (CLASS_TYPE_P (scope)
22677 && same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
22678 /* scope is either the template itself or a compatible instantiation
22679 like X<T>, so look up the name in the original template. */
22680 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
22681 else
22682 /* scope is a partial instantiation, so we can't do the lookup or we
22683 will lose the template arguments. */
22684 return type;
22685 /* Enter the SCOPE so that name lookup will be resolved as if we
22686 were in the class definition. In particular, SCOPE will no
22687 longer be considered a dependent type. */
22688 pushed_scope = push_scope (scope);
22689 /* Look up the declaration. */
22690 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
22691 tf_warning_or_error);
22692
22693 result = NULL_TREE;
22694
22695 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
22696 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
22697 if (!decl)
22698 /*nop*/;
22699 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
22700 && TREE_CODE (decl) == TYPE_DECL)
22701 {
22702 result = TREE_TYPE (decl);
22703 if (result == error_mark_node)
22704 result = NULL_TREE;
22705 }
22706 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
22707 && DECL_CLASS_TEMPLATE_P (decl))
22708 {
22709 tree tmpl;
22710 tree args;
22711 /* Obtain the template and the arguments. */
22712 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
22713 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
22714 /* Instantiate the template. */
22715 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
22716 /*entering_scope=*/0,
22717 tf_error | tf_user);
22718 if (result == error_mark_node)
22719 result = NULL_TREE;
22720 }
22721
22722 /* Leave the SCOPE. */
22723 if (pushed_scope)
22724 pop_scope (pushed_scope);
22725
22726 /* If we failed to resolve it, return the original typename. */
22727 if (!result)
22728 return type;
22729
22730 /* If lookup found a typename type, resolve that too. */
22731 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
22732 {
22733 /* Ill-formed programs can cause infinite recursion here, so we
22734 must catch that. */
22735 TYPENAME_IS_RESOLVING_P (type) = 1;
22736 result = resolve_typename_type (result, only_current_p);
22737 TYPENAME_IS_RESOLVING_P (type) = 0;
22738 }
22739
22740 /* Qualify the resulting type. */
22741 quals = cp_type_quals (type);
22742 if (quals)
22743 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
22744
22745 return result;
22746 }
22747
22748 /* EXPR is an expression which is not type-dependent. Return a proxy
22749 for EXPR that can be used to compute the types of larger
22750 expressions containing EXPR. */
22751
22752 tree
22753 build_non_dependent_expr (tree expr)
22754 {
22755 tree inner_expr;
22756
22757 #ifdef ENABLE_CHECKING
22758 /* Try to get a constant value for all non-dependent expressions in
22759 order to expose bugs in *_dependent_expression_p and constexpr. */
22760 if (cxx_dialect >= cxx11)
22761 fold_non_dependent_expr (expr);
22762 #endif
22763
22764 /* Preserve OVERLOADs; the functions must be available to resolve
22765 types. */
22766 inner_expr = expr;
22767 if (TREE_CODE (inner_expr) == STMT_EXPR)
22768 inner_expr = stmt_expr_value_expr (inner_expr);
22769 if (TREE_CODE (inner_expr) == ADDR_EXPR)
22770 inner_expr = TREE_OPERAND (inner_expr, 0);
22771 if (TREE_CODE (inner_expr) == COMPONENT_REF)
22772 inner_expr = TREE_OPERAND (inner_expr, 1);
22773 if (is_overloaded_fn (inner_expr)
22774 || TREE_CODE (inner_expr) == OFFSET_REF)
22775 return expr;
22776 /* There is no need to return a proxy for a variable. */
22777 if (VAR_P (expr))
22778 return expr;
22779 /* Preserve string constants; conversions from string constants to
22780 "char *" are allowed, even though normally a "const char *"
22781 cannot be used to initialize a "char *". */
22782 if (TREE_CODE (expr) == STRING_CST)
22783 return expr;
22784 /* Preserve void and arithmetic constants, as an optimization -- there is no
22785 reason to create a new node. */
22786 if (TREE_CODE (expr) == VOID_CST
22787 || TREE_CODE (expr) == INTEGER_CST
22788 || TREE_CODE (expr) == REAL_CST)
22789 return expr;
22790 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
22791 There is at least one place where we want to know that a
22792 particular expression is a throw-expression: when checking a ?:
22793 expression, there are special rules if the second or third
22794 argument is a throw-expression. */
22795 if (TREE_CODE (expr) == THROW_EXPR)
22796 return expr;
22797
22798 /* Don't wrap an initializer list, we need to be able to look inside. */
22799 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
22800 return expr;
22801
22802 /* Don't wrap a dummy object, we need to be able to test for it. */
22803 if (is_dummy_object (expr))
22804 return expr;
22805
22806 if (TREE_CODE (expr) == COND_EXPR)
22807 return build3 (COND_EXPR,
22808 TREE_TYPE (expr),
22809 TREE_OPERAND (expr, 0),
22810 (TREE_OPERAND (expr, 1)
22811 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
22812 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
22813 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
22814 if (TREE_CODE (expr) == COMPOUND_EXPR
22815 && !COMPOUND_EXPR_OVERLOADED (expr))
22816 return build2 (COMPOUND_EXPR,
22817 TREE_TYPE (expr),
22818 TREE_OPERAND (expr, 0),
22819 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
22820
22821 /* If the type is unknown, it can't really be non-dependent */
22822 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
22823
22824 /* Otherwise, build a NON_DEPENDENT_EXPR. */
22825 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
22826 }
22827
22828 /* ARGS is a vector of expressions as arguments to a function call.
22829 Replace the arguments with equivalent non-dependent expressions.
22830 This modifies ARGS in place. */
22831
22832 void
22833 make_args_non_dependent (vec<tree, va_gc> *args)
22834 {
22835 unsigned int ix;
22836 tree arg;
22837
22838 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
22839 {
22840 tree newarg = build_non_dependent_expr (arg);
22841 if (newarg != arg)
22842 (*args)[ix] = newarg;
22843 }
22844 }
22845
22846 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
22847 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
22848 parms. */
22849
22850 static tree
22851 make_auto_1 (tree name)
22852 {
22853 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
22854 TYPE_NAME (au) = build_decl (input_location,
22855 TYPE_DECL, name, au);
22856 TYPE_STUB_DECL (au) = TYPE_NAME (au);
22857 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
22858 (0, processing_template_decl + 1, processing_template_decl + 1,
22859 TYPE_NAME (au), NULL_TREE);
22860 TYPE_CANONICAL (au) = canonical_type_parameter (au);
22861 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
22862 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
22863
22864 return au;
22865 }
22866
22867 tree
22868 make_decltype_auto (void)
22869 {
22870 return make_auto_1 (get_identifier ("decltype(auto)"));
22871 }
22872
22873 tree
22874 make_auto (void)
22875 {
22876 return make_auto_1 (get_identifier ("auto"));
22877 }
22878
22879 /* Given type ARG, return std::initializer_list<ARG>. */
22880
22881 static tree
22882 listify (tree arg)
22883 {
22884 tree std_init_list = namespace_binding
22885 (get_identifier ("initializer_list"), std_node);
22886 tree argvec;
22887 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
22888 {
22889 error ("deducing from brace-enclosed initializer list requires "
22890 "#include <initializer_list>");
22891 return error_mark_node;
22892 }
22893 argvec = make_tree_vec (1);
22894 TREE_VEC_ELT (argvec, 0) = arg;
22895 return lookup_template_class (std_init_list, argvec, NULL_TREE,
22896 NULL_TREE, 0, tf_warning_or_error);
22897 }
22898
22899 /* Replace auto in TYPE with std::initializer_list<auto>. */
22900
22901 static tree
22902 listify_autos (tree type, tree auto_node)
22903 {
22904 tree init_auto = listify (auto_node);
22905 tree argvec = make_tree_vec (1);
22906 TREE_VEC_ELT (argvec, 0) = init_auto;
22907 if (processing_template_decl)
22908 argvec = add_to_template_args (current_template_args (), argvec);
22909 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
22910 }
22911
22912 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
22913 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
22914
22915 tree
22916 do_auto_deduction (tree type, tree init, tree auto_node)
22917 {
22918 return do_auto_deduction (type, init, auto_node,
22919 tf_warning_or_error,
22920 adc_unspecified);
22921 }
22922
22923 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
22924 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE.
22925 The CONTEXT determines the context in which auto deduction is performed
22926 and is used to control error diagnostics. */
22927
22928 tree
22929 do_auto_deduction (tree type, tree init, tree auto_node,
22930 tsubst_flags_t complain, auto_deduction_context context)
22931 {
22932 tree targs;
22933
22934 if (init == error_mark_node)
22935 return error_mark_node;
22936
22937 if (type_dependent_expression_p (init))
22938 /* Defining a subset of type-dependent expressions that we can deduce
22939 from ahead of time isn't worth the trouble. */
22940 return type;
22941
22942 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
22943 with either a new invented type template parameter U or, if the
22944 initializer is a braced-init-list (8.5.4), with
22945 std::initializer_list<U>. */
22946 if (BRACE_ENCLOSED_INITIALIZER_P (init))
22947 {
22948 if (!DIRECT_LIST_INIT_P (init))
22949 type = listify_autos (type, auto_node);
22950 else if (CONSTRUCTOR_NELTS (init) == 1)
22951 init = CONSTRUCTOR_ELT (init, 0)->value;
22952 else
22953 {
22954 if (complain & tf_warning_or_error)
22955 {
22956 if (permerror (input_location, "direct-list-initialization of "
22957 "%<auto%> requires exactly one element"))
22958 inform (input_location,
22959 "for deduction to %<std::initializer_list%>, use copy-"
22960 "list-initialization (i.e. add %<=%> before the %<{%>)");
22961 }
22962 type = listify_autos (type, auto_node);
22963 }
22964 }
22965
22966 init = resolve_nondeduced_context (init);
22967
22968 targs = make_tree_vec (1);
22969 if (AUTO_IS_DECLTYPE (auto_node))
22970 {
22971 bool id = (DECL_P (init) || (TREE_CODE (init) == COMPONENT_REF
22972 && !REF_PARENTHESIZED_P (init)));
22973 TREE_VEC_ELT (targs, 0)
22974 = finish_decltype_type (init, id, tf_warning_or_error);
22975 if (type != auto_node)
22976 {
22977 if (complain & tf_error)
22978 error ("%qT as type rather than plain %<decltype(auto)%>", type);
22979 return error_mark_node;
22980 }
22981 }
22982 else
22983 {
22984 tree parms = build_tree_list (NULL_TREE, type);
22985 tree tparms = make_tree_vec (1);
22986 int val;
22987
22988 TREE_VEC_ELT (tparms, 0)
22989 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
22990 val = type_unification_real (tparms, targs, parms, &init, 1, 0,
22991 DEDUCE_CALL, LOOKUP_NORMAL,
22992 NULL, /*explain_p=*/false);
22993 if (val > 0)
22994 {
22995 if (processing_template_decl)
22996 /* Try again at instantiation time. */
22997 return type;
22998 if (type && type != error_mark_node
22999 && (complain & tf_error))
23000 /* If type is error_mark_node a diagnostic must have been
23001 emitted by now. Also, having a mention to '<type error>'
23002 in the diagnostic is not really useful to the user. */
23003 {
23004 if (cfun && auto_node == current_function_auto_return_pattern
23005 && LAMBDA_FUNCTION_P (current_function_decl))
23006 error ("unable to deduce lambda return type from %qE", init);
23007 else
23008 error ("unable to deduce %qT from %qE", type, init);
23009 }
23010 return error_mark_node;
23011 }
23012 }
23013
23014 /* If the list of declarators contains more than one declarator, the type
23015 of each declared variable is determined as described above. If the
23016 type deduced for the template parameter U is not the same in each
23017 deduction, the program is ill-formed. */
23018 if (TREE_TYPE (auto_node)
23019 && !same_type_p (TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0)))
23020 {
23021 if (cfun && auto_node == current_function_auto_return_pattern
23022 && LAMBDA_FUNCTION_P (current_function_decl))
23023 error ("inconsistent types %qT and %qT deduced for "
23024 "lambda return type", TREE_TYPE (auto_node),
23025 TREE_VEC_ELT (targs, 0));
23026 else
23027 error ("inconsistent deduction for %qT: %qT and then %qT",
23028 auto_node, TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0));
23029 return error_mark_node;
23030 }
23031 if (context != adc_requirement)
23032 TREE_TYPE (auto_node) = TREE_VEC_ELT (targs, 0);
23033
23034 /* Check any placeholder constraints against the deduced type. */
23035 if (flag_concepts && !processing_template_decl)
23036 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (auto_node))
23037 {
23038 /* Use the deduced type to check the associated constraints. */
23039 if (!constraints_satisfied_p (constr, targs))
23040 {
23041 if (complain & tf_warning_or_error)
23042 {
23043 switch (context)
23044 {
23045 case adc_unspecified:
23046 error("placeholder constraints not satisfied");
23047 break;
23048 case adc_variable_type:
23049 error ("deduced initializer does not satisfy "
23050 "placeholder constraints");
23051 break;
23052 case adc_return_type:
23053 error ("deduced return type does not satisfy "
23054 "placeholder constraints");
23055 break;
23056 case adc_requirement:
23057 error ("deduced expression type does not saatisy "
23058 "placeholder constraints");
23059 break;
23060 }
23061 diagnose_constraints (input_location, constr, targs);
23062 }
23063 return error_mark_node;
23064 }
23065 }
23066
23067 if (processing_template_decl)
23068 targs = add_to_template_args (current_template_args (), targs);
23069 return tsubst (type, targs, complain, NULL_TREE);
23070 }
23071
23072 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
23073 result. */
23074
23075 tree
23076 splice_late_return_type (tree type, tree late_return_type)
23077 {
23078 if (is_auto (type))
23079 {
23080 if (late_return_type)
23081 return late_return_type;
23082
23083 tree idx = get_template_parm_index (type);
23084 if (TEMPLATE_PARM_LEVEL (idx) <= processing_template_decl)
23085 /* In an abbreviated function template we didn't know we were dealing
23086 with a function template when we saw the auto return type, so update
23087 it to have the correct level. */
23088 return make_auto_1 (TYPE_IDENTIFIER (type));
23089 }
23090 return type;
23091 }
23092
23093 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
23094 'decltype(auto)'. */
23095
23096 bool
23097 is_auto (const_tree type)
23098 {
23099 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
23100 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
23101 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
23102 return true;
23103 else
23104 return false;
23105 }
23106
23107 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
23108 a use of `auto'. Returns NULL_TREE otherwise. */
23109
23110 tree
23111 type_uses_auto (tree type)
23112 {
23113 return find_type_usage (type, is_auto);
23114 }
23115
23116 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
23117 'decltype(auto)' or a concept. */
23118
23119 bool
23120 is_auto_or_concept (const_tree type)
23121 {
23122 return is_auto (type); // or concept
23123 }
23124
23125 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
23126 a concept identifier) iff TYPE contains a use of a generic type. Returns
23127 NULL_TREE otherwise. */
23128
23129 tree
23130 type_uses_auto_or_concept (tree type)
23131 {
23132 return find_type_usage (type, is_auto_or_concept);
23133 }
23134
23135
23136 /* For a given template T, return the vector of typedefs referenced
23137 in T for which access check is needed at T instantiation time.
23138 T is either a FUNCTION_DECL or a RECORD_TYPE.
23139 Those typedefs were added to T by the function
23140 append_type_to_template_for_access_check. */
23141
23142 vec<qualified_typedef_usage_t, va_gc> *
23143 get_types_needing_access_check (tree t)
23144 {
23145 tree ti;
23146 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
23147
23148 if (!t || t == error_mark_node)
23149 return NULL;
23150
23151 if (!(ti = get_template_info (t)))
23152 return NULL;
23153
23154 if (CLASS_TYPE_P (t)
23155 || TREE_CODE (t) == FUNCTION_DECL)
23156 {
23157 if (!TI_TEMPLATE (ti))
23158 return NULL;
23159
23160 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
23161 }
23162
23163 return result;
23164 }
23165
23166 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
23167 tied to T. That list of typedefs will be access checked at
23168 T instantiation time.
23169 T is either a FUNCTION_DECL or a RECORD_TYPE.
23170 TYPE_DECL is a TYPE_DECL node representing a typedef.
23171 SCOPE is the scope through which TYPE_DECL is accessed.
23172 LOCATION is the location of the usage point of TYPE_DECL.
23173
23174 This function is a subroutine of
23175 append_type_to_template_for_access_check. */
23176
23177 static void
23178 append_type_to_template_for_access_check_1 (tree t,
23179 tree type_decl,
23180 tree scope,
23181 location_t location)
23182 {
23183 qualified_typedef_usage_t typedef_usage;
23184 tree ti;
23185
23186 if (!t || t == error_mark_node)
23187 return;
23188
23189 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
23190 || CLASS_TYPE_P (t))
23191 && type_decl
23192 && TREE_CODE (type_decl) == TYPE_DECL
23193 && scope);
23194
23195 if (!(ti = get_template_info (t)))
23196 return;
23197
23198 gcc_assert (TI_TEMPLATE (ti));
23199
23200 typedef_usage.typedef_decl = type_decl;
23201 typedef_usage.context = scope;
23202 typedef_usage.locus = location;
23203
23204 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
23205 }
23206
23207 /* Append TYPE_DECL to the template TEMPL.
23208 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
23209 At TEMPL instanciation time, TYPE_DECL will be checked to see
23210 if it can be accessed through SCOPE.
23211 LOCATION is the location of the usage point of TYPE_DECL.
23212
23213 e.g. consider the following code snippet:
23214
23215 class C
23216 {
23217 typedef int myint;
23218 };
23219
23220 template<class U> struct S
23221 {
23222 C::myint mi; // <-- usage point of the typedef C::myint
23223 };
23224
23225 S<char> s;
23226
23227 At S<char> instantiation time, we need to check the access of C::myint
23228 In other words, we need to check the access of the myint typedef through
23229 the C scope. For that purpose, this function will add the myint typedef
23230 and the scope C through which its being accessed to a list of typedefs
23231 tied to the template S. That list will be walked at template instantiation
23232 time and access check performed on each typedefs it contains.
23233 Note that this particular code snippet should yield an error because
23234 myint is private to C. */
23235
23236 void
23237 append_type_to_template_for_access_check (tree templ,
23238 tree type_decl,
23239 tree scope,
23240 location_t location)
23241 {
23242 qualified_typedef_usage_t *iter;
23243 unsigned i;
23244
23245 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
23246
23247 /* Make sure we don't append the type to the template twice. */
23248 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
23249 if (iter->typedef_decl == type_decl && scope == iter->context)
23250 return;
23251
23252 append_type_to_template_for_access_check_1 (templ, type_decl,
23253 scope, location);
23254 }
23255
23256 /* Convert the generic type parameters in PARM that match the types given in the
23257 range [START_IDX, END_IDX) from the current_template_parms into generic type
23258 packs. */
23259
23260 tree
23261 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
23262 {
23263 tree current = current_template_parms;
23264 int depth = TMPL_PARMS_DEPTH (current);
23265 current = INNERMOST_TEMPLATE_PARMS (current);
23266 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
23267
23268 for (int i = 0; i < start_idx; ++i)
23269 TREE_VEC_ELT (replacement, i)
23270 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
23271
23272 for (int i = start_idx; i < end_idx; ++i)
23273 {
23274 /* Create a distinct parameter pack type from the current parm and add it
23275 to the replacement args to tsubst below into the generic function
23276 parameter. */
23277
23278 tree o = TREE_TYPE (TREE_VALUE
23279 (TREE_VEC_ELT (current, i)));
23280 tree t = copy_type (o);
23281 TEMPLATE_TYPE_PARM_INDEX (t)
23282 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
23283 o, 0, 0, tf_none);
23284 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
23285 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
23286 TYPE_MAIN_VARIANT (t) = t;
23287 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
23288 TYPE_CANONICAL (t) = canonical_type_parameter (t);
23289 TREE_VEC_ELT (replacement, i) = t;
23290 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
23291 }
23292
23293 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
23294 TREE_VEC_ELT (replacement, i)
23295 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
23296
23297 /* If there are more levels then build up the replacement with the outer
23298 template parms. */
23299 if (depth > 1)
23300 replacement = add_to_template_args (template_parms_to_args
23301 (TREE_CHAIN (current_template_parms)),
23302 replacement);
23303
23304 return tsubst (parm, replacement, tf_none, NULL_TREE);
23305 }
23306
23307 /* Entries in the decl_constraint hash table. */
23308 struct GTY((for_user)) constr_entry
23309 {
23310 tree decl;
23311 tree ci;
23312 };
23313
23314 /* Hashing function and equality for constraint entries. */
23315 struct constr_hasher : ggc_ptr_hash<constr_entry>
23316 {
23317 static hashval_t hash (constr_entry *e)
23318 {
23319 return (hashval_t)DECL_UID (e->decl);
23320 }
23321
23322 static bool equal (constr_entry *e1, constr_entry *e2)
23323 {
23324 return e1->decl == e2->decl;
23325 }
23326 };
23327
23328 /* A mapping from declarations to constraint information. Note that
23329 both templates and their underlying declarations are mapped to the
23330 same constraint information.
23331
23332 FIXME: This is defined in pt.c because garbage collection
23333 code is not being generated for constraint.cc. */
23334
23335 static GTY (()) hash_table<constr_hasher> *decl_constraints;
23336
23337 /* Returns true iff cinfo contains a valid set of constraints.
23338 This is the case when the associated requirements have been
23339 successfully decomposed into lists of atomic constraints.
23340 That is, when the saved assumptions are not error_mark_node. */
23341
23342 bool
23343 valid_constraints_p (tree cinfo)
23344 {
23345 gcc_assert (cinfo);
23346 return CI_ASSUMPTIONS (cinfo) != error_mark_node;
23347 }
23348
23349 /* Returns the template constraints of declaration T. If T is not
23350 constrained, return NULL_TREE. Note that T must be non-null. */
23351
23352 tree
23353 get_constraints (tree t)
23354 {
23355 gcc_assert (DECL_P (t));
23356 if (TREE_CODE (t) == TEMPLATE_DECL)
23357 t = DECL_TEMPLATE_RESULT (t);
23358 constr_entry elt = { t, NULL_TREE };
23359 constr_entry* found = decl_constraints->find (&elt);
23360 if (found)
23361 return found->ci;
23362 else
23363 return NULL_TREE;
23364 }
23365
23366 /* Associate the given constraint information CI with the declaration
23367 T. If T is a template, then the constraints are associated with
23368 its underlying declaration. Don't build associations if CI is
23369 NULL_TREE. */
23370
23371 void
23372 set_constraints (tree t, tree ci)
23373 {
23374 if (!ci)
23375 return;
23376 gcc_assert (t);
23377 if (TREE_CODE (t) == TEMPLATE_DECL)
23378 t = DECL_TEMPLATE_RESULT (t);
23379 gcc_assert (!get_constraints (t));
23380 constr_entry elt = {t, ci};
23381 constr_entry** slot = decl_constraints->find_slot (&elt, INSERT);
23382 constr_entry* entry = ggc_alloc<constr_entry> ();
23383 *entry = elt;
23384 *slot = entry;
23385 }
23386
23387 /* Remove the associated constraints of the declaration T. */
23388
23389 void
23390 remove_constraints (tree t)
23391 {
23392 gcc_assert (DECL_P (t));
23393 if (TREE_CODE (t) == TEMPLATE_DECL)
23394 t = DECL_TEMPLATE_RESULT (t);
23395
23396 constr_entry elt = {t, NULL_TREE};
23397 constr_entry** slot = decl_constraints->find_slot (&elt, NO_INSERT);
23398 if (slot)
23399 decl_constraints->clear_slot (slot);
23400 }
23401
23402 /* Set up the hash table for constraint association. */
23403
23404 void
23405 init_constraint_processing (void)
23406 {
23407 decl_constraints = hash_table<constr_hasher>::create_ggc(37);
23408 }
23409
23410 /* Set up the hash tables for template instantiations. */
23411
23412 void
23413 init_template_processing (void)
23414 {
23415 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
23416 type_specializations = hash_table<spec_hasher>::create_ggc (37);
23417 }
23418
23419 /* Print stats about the template hash tables for -fstats. */
23420
23421 void
23422 print_template_statistics (void)
23423 {
23424 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
23425 "%f collisions\n", (long) decl_specializations->size (),
23426 (long) decl_specializations->elements (),
23427 decl_specializations->collisions ());
23428 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
23429 "%f collisions\n", (long) type_specializations->size (),
23430 (long) type_specializations->elements (),
23431 type_specializations->collisions ());
23432 }
23433
23434 #include "gt-cp-pt.h"