* pt.c (lookup_template_variable): Always unknown_type_node.
[gcc.git] / gcc / cp / pt.c
1 /* Handle parameterized types (templates) for GNU -*- C++ -*-.
2 Copyright (C) 1992-2014 Free Software Foundation, Inc.
3 Written by Ken Raeburn (raeburn@cygnus.com) while at Watchmaker Computing.
4 Rewritten by Jason Merrill (jason@cygnus.com).
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 /* Known bugs or deficiencies include:
23
24 all methods must be provided in header files; can't use a source
25 file that contains only the method templates and "just win". */
26
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "tree.h"
32 #include "stringpool.h"
33 #include "varasm.h"
34 #include "attribs.h"
35 #include "stor-layout.h"
36 #include "intl.h"
37 #include "flags.h"
38 #include "cp-tree.h"
39 #include "c-family/c-common.h"
40 #include "c-family/c-objc.h"
41 #include "cp-objcp-common.h"
42 #include "tree-inline.h"
43 #include "decl.h"
44 #include "toplev.h"
45 #include "timevar.h"
46 #include "tree-iterator.h"
47 #include "type-utils.h"
48 #include "gimplify.h"
49
50 /* The type of functions taking a tree, and some additional data, and
51 returning an int. */
52 typedef int (*tree_fn_t) (tree, void*);
53
54 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
55 instantiations have been deferred, either because their definitions
56 were not yet available, or because we were putting off doing the work. */
57 struct GTY ((chain_next ("%h.next"))) pending_template {
58 struct pending_template *next;
59 struct tinst_level *tinst;
60 };
61
62 static GTY(()) struct pending_template *pending_templates;
63 static GTY(()) struct pending_template *last_pending_template;
64
65 int processing_template_parmlist;
66 static int template_header_count;
67
68 static GTY(()) tree saved_trees;
69 static vec<int> inline_parm_levels;
70
71 static GTY(()) struct tinst_level *current_tinst_level;
72
73 static GTY(()) tree saved_access_scope;
74
75 /* Live only within one (recursive) call to tsubst_expr. We use
76 this to pass the statement expression node from the STMT_EXPR
77 to the EXPR_STMT that is its result. */
78 static tree cur_stmt_expr;
79
80 /* True if we've recursed into fn_type_unification too many times. */
81 static bool excessive_deduction_depth;
82
83 struct GTY((for_user)) spec_entry
84 {
85 tree tmpl;
86 tree args;
87 tree spec;
88 };
89
90 struct spec_hasher : ggc_hasher<spec_entry *>
91 {
92 static hashval_t hash (spec_entry *);
93 static bool equal (spec_entry *, spec_entry *);
94 };
95
96 static GTY (()) hash_table<spec_hasher> *decl_specializations;
97
98 static GTY (()) hash_table<spec_hasher> *type_specializations;
99
100 /* Contains canonical template parameter types. The vector is indexed by
101 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
102 TREE_LIST, whose TREE_VALUEs contain the canonical template
103 parameters of various types and levels. */
104 static GTY(()) vec<tree, va_gc> *canonical_template_parms;
105
106 #define UNIFY_ALLOW_NONE 0
107 #define UNIFY_ALLOW_MORE_CV_QUAL 1
108 #define UNIFY_ALLOW_LESS_CV_QUAL 2
109 #define UNIFY_ALLOW_DERIVED 4
110 #define UNIFY_ALLOW_INTEGER 8
111 #define UNIFY_ALLOW_OUTER_LEVEL 16
112 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
113 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
114
115 enum template_base_result {
116 tbr_incomplete_type,
117 tbr_ambiguous_baseclass,
118 tbr_success
119 };
120
121 static void push_access_scope (tree);
122 static void pop_access_scope (tree);
123 static bool resolve_overloaded_unification (tree, tree, tree, tree,
124 unification_kind_t, int,
125 bool);
126 static int try_one_overload (tree, tree, tree, tree, tree,
127 unification_kind_t, int, bool, bool);
128 static int unify (tree, tree, tree, tree, int, bool);
129 static void add_pending_template (tree);
130 static tree reopen_tinst_level (struct tinst_level *);
131 static tree tsubst_initializer_list (tree, tree);
132 static tree get_class_bindings (tree, tree, tree, tree);
133 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
134 bool, bool);
135 static tree coerce_innermost_template_parms (tree, tree, tree, tsubst_flags_t,
136 bool, bool);
137 static void tsubst_enum (tree, tree, tree);
138 static tree add_to_template_args (tree, tree);
139 static tree add_outermost_template_args (tree, tree);
140 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
141 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
142 tree);
143 static int type_unification_real (tree, tree, tree, const tree *,
144 unsigned int, int, unification_kind_t, int,
145 vec<deferred_access_check, va_gc> **,
146 bool);
147 static void note_template_header (int);
148 static tree convert_nontype_argument_function (tree, tree, tsubst_flags_t);
149 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
150 static tree convert_template_argument (tree, tree, tree,
151 tsubst_flags_t, int, tree);
152 static int for_each_template_parm (tree, tree_fn_t, void*,
153 hash_set<tree> *, bool);
154 static tree expand_template_argument_pack (tree);
155 static tree build_template_parm_index (int, int, int, tree, tree);
156 static bool inline_needs_template_parms (tree, bool);
157 static void push_inline_template_parms_recursive (tree, int);
158 static tree retrieve_local_specialization (tree);
159 static void register_local_specialization (tree, tree);
160 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
161 static int mark_template_parm (tree, void *);
162 static int template_parm_this_level_p (tree, void *);
163 static tree tsubst_friend_function (tree, tree);
164 static tree tsubst_friend_class (tree, tree);
165 static int can_complete_type_without_circularity (tree);
166 static tree get_bindings (tree, tree, tree, bool);
167 static int template_decl_level (tree);
168 static int check_cv_quals_for_unify (int, tree, tree);
169 static void template_parm_level_and_index (tree, int*, int*);
170 static int unify_pack_expansion (tree, tree, tree,
171 tree, unification_kind_t, bool, bool);
172 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
173 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
174 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
175 static void regenerate_decl_from_template (tree, tree);
176 static tree most_specialized_class (tree, tsubst_flags_t);
177 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
178 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
179 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
180 static bool check_specialization_scope (void);
181 static tree process_partial_specialization (tree);
182 static void set_current_access_from_decl (tree);
183 static enum template_base_result get_template_base (tree, tree, tree, tree,
184 bool , tree *);
185 static tree try_class_unification (tree, tree, tree, tree, bool);
186 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
187 tree, tree);
188 static bool template_template_parm_bindings_ok_p (tree, tree);
189 static int template_args_equal (tree, tree);
190 static void tsubst_default_arguments (tree, tsubst_flags_t);
191 static tree for_each_template_parm_r (tree *, int *, void *);
192 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
193 static void copy_default_args_to_explicit_spec (tree);
194 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
195 static bool dependent_template_arg_p (tree);
196 static bool any_template_arguments_need_structural_equality_p (tree);
197 static bool dependent_type_p_r (tree);
198 static tree tsubst_expr (tree, tree, tsubst_flags_t, tree, bool);
199 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
200 static tree tsubst_pack_expansion (tree, tree, tsubst_flags_t, tree);
201 static tree tsubst_decl (tree, tree, tsubst_flags_t);
202 static void perform_typedefs_access_check (tree tmpl, tree targs);
203 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
204 location_t);
205 static tree listify (tree);
206 static tree listify_autos (tree, tree);
207 static tree template_parm_to_arg (tree t);
208 static tree current_template_args (void);
209 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
210 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
211
212 /* Make the current scope suitable for access checking when we are
213 processing T. T can be FUNCTION_DECL for instantiated function
214 template, VAR_DECL for static member variable, or TYPE_DECL for
215 alias template (needed by instantiate_decl). */
216
217 static void
218 push_access_scope (tree t)
219 {
220 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
221 || TREE_CODE (t) == TYPE_DECL);
222
223 if (DECL_FRIEND_CONTEXT (t))
224 push_nested_class (DECL_FRIEND_CONTEXT (t));
225 else if (DECL_CLASS_SCOPE_P (t))
226 push_nested_class (DECL_CONTEXT (t));
227 else
228 push_to_top_level ();
229
230 if (TREE_CODE (t) == FUNCTION_DECL)
231 {
232 saved_access_scope = tree_cons
233 (NULL_TREE, current_function_decl, saved_access_scope);
234 current_function_decl = t;
235 }
236 }
237
238 /* Restore the scope set up by push_access_scope. T is the node we
239 are processing. */
240
241 static void
242 pop_access_scope (tree t)
243 {
244 if (TREE_CODE (t) == FUNCTION_DECL)
245 {
246 current_function_decl = TREE_VALUE (saved_access_scope);
247 saved_access_scope = TREE_CHAIN (saved_access_scope);
248 }
249
250 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
251 pop_nested_class ();
252 else
253 pop_from_top_level ();
254 }
255
256 /* Do any processing required when DECL (a member template
257 declaration) is finished. Returns the TEMPLATE_DECL corresponding
258 to DECL, unless it is a specialization, in which case the DECL
259 itself is returned. */
260
261 tree
262 finish_member_template_decl (tree decl)
263 {
264 if (decl == error_mark_node)
265 return error_mark_node;
266
267 gcc_assert (DECL_P (decl));
268
269 if (TREE_CODE (decl) == TYPE_DECL)
270 {
271 tree type;
272
273 type = TREE_TYPE (decl);
274 if (type == error_mark_node)
275 return error_mark_node;
276 if (MAYBE_CLASS_TYPE_P (type)
277 && CLASSTYPE_TEMPLATE_INFO (type)
278 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
279 {
280 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
281 check_member_template (tmpl);
282 return tmpl;
283 }
284 return NULL_TREE;
285 }
286 else if (TREE_CODE (decl) == FIELD_DECL)
287 error ("data member %qD cannot be a member template", decl);
288 else if (DECL_TEMPLATE_INFO (decl))
289 {
290 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
291 {
292 check_member_template (DECL_TI_TEMPLATE (decl));
293 return DECL_TI_TEMPLATE (decl);
294 }
295 else
296 return decl;
297 }
298 else
299 error ("invalid member template declaration %qD", decl);
300
301 return error_mark_node;
302 }
303
304 /* Create a template info node. */
305
306 tree
307 build_template_info (tree template_decl, tree template_args)
308 {
309 tree result = make_node (TEMPLATE_INFO);
310 TI_TEMPLATE (result) = template_decl;
311 TI_ARGS (result) = template_args;
312 return result;
313 }
314
315 /* Return the template info node corresponding to T, whatever T is. */
316
317 tree
318 get_template_info (const_tree t)
319 {
320 tree tinfo = NULL_TREE;
321
322 if (!t || t == error_mark_node)
323 return NULL;
324
325 if (TREE_CODE (t) == NAMESPACE_DECL)
326 return NULL;
327
328 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
329 tinfo = DECL_TEMPLATE_INFO (t);
330
331 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
332 t = TREE_TYPE (t);
333
334 if (OVERLOAD_TYPE_P (t))
335 tinfo = TYPE_TEMPLATE_INFO (t);
336 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
337 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
338
339 return tinfo;
340 }
341
342 /* Returns the template nesting level of the indicated class TYPE.
343
344 For example, in:
345 template <class T>
346 struct A
347 {
348 template <class U>
349 struct B {};
350 };
351
352 A<T>::B<U> has depth two, while A<T> has depth one.
353 Both A<T>::B<int> and A<int>::B<U> have depth one, if
354 they are instantiations, not specializations.
355
356 This function is guaranteed to return 0 if passed NULL_TREE so
357 that, for example, `template_class_depth (current_class_type)' is
358 always safe. */
359
360 int
361 template_class_depth (tree type)
362 {
363 int depth;
364
365 for (depth = 0;
366 type && TREE_CODE (type) != NAMESPACE_DECL;
367 type = (TREE_CODE (type) == FUNCTION_DECL)
368 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
369 {
370 tree tinfo = get_template_info (type);
371
372 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
373 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
374 ++depth;
375 }
376
377 return depth;
378 }
379
380 /* Subroutine of maybe_begin_member_template_processing.
381 Returns true if processing DECL needs us to push template parms. */
382
383 static bool
384 inline_needs_template_parms (tree decl, bool nsdmi)
385 {
386 if (!decl || (!nsdmi && ! DECL_TEMPLATE_INFO (decl)))
387 return false;
388
389 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
390 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
391 }
392
393 /* Subroutine of maybe_begin_member_template_processing.
394 Push the template parms in PARMS, starting from LEVELS steps into the
395 chain, and ending at the beginning, since template parms are listed
396 innermost first. */
397
398 static void
399 push_inline_template_parms_recursive (tree parmlist, int levels)
400 {
401 tree parms = TREE_VALUE (parmlist);
402 int i;
403
404 if (levels > 1)
405 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
406
407 ++processing_template_decl;
408 current_template_parms
409 = tree_cons (size_int (processing_template_decl),
410 parms, current_template_parms);
411 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
412
413 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
414 NULL);
415 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
416 {
417 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
418
419 if (error_operand_p (parm))
420 continue;
421
422 gcc_assert (DECL_P (parm));
423
424 switch (TREE_CODE (parm))
425 {
426 case TYPE_DECL:
427 case TEMPLATE_DECL:
428 pushdecl (parm);
429 break;
430
431 case PARM_DECL:
432 {
433 /* Make a CONST_DECL as is done in process_template_parm.
434 It is ugly that we recreate this here; the original
435 version built in process_template_parm is no longer
436 available. */
437 tree decl = build_decl (DECL_SOURCE_LOCATION (parm),
438 CONST_DECL, DECL_NAME (parm),
439 TREE_TYPE (parm));
440 DECL_ARTIFICIAL (decl) = 1;
441 TREE_CONSTANT (decl) = 1;
442 TREE_READONLY (decl) = 1;
443 DECL_INITIAL (decl) = DECL_INITIAL (parm);
444 SET_DECL_TEMPLATE_PARM_P (decl);
445 pushdecl (decl);
446 }
447 break;
448
449 default:
450 gcc_unreachable ();
451 }
452 }
453 }
454
455 /* Restore the template parameter context for a member template, a
456 friend template defined in a class definition, or a non-template
457 member of template class. */
458
459 void
460 maybe_begin_member_template_processing (tree decl)
461 {
462 tree parms;
463 int levels = 0;
464 bool nsdmi = TREE_CODE (decl) == FIELD_DECL;
465
466 if (nsdmi)
467 {
468 tree ctx = DECL_CONTEXT (decl);
469 decl = (CLASSTYPE_TEMPLATE_INFO (ctx)
470 /* Disregard full specializations (c++/60999). */
471 && uses_template_parms (ctx)
472 ? CLASSTYPE_TI_TEMPLATE (ctx) : NULL_TREE);
473 }
474
475 if (inline_needs_template_parms (decl, nsdmi))
476 {
477 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
478 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
479
480 if (DECL_TEMPLATE_SPECIALIZATION (decl))
481 {
482 --levels;
483 parms = TREE_CHAIN (parms);
484 }
485
486 push_inline_template_parms_recursive (parms, levels);
487 }
488
489 /* Remember how many levels of template parameters we pushed so that
490 we can pop them later. */
491 inline_parm_levels.safe_push (levels);
492 }
493
494 /* Undo the effects of maybe_begin_member_template_processing. */
495
496 void
497 maybe_end_member_template_processing (void)
498 {
499 int i;
500 int last;
501
502 if (inline_parm_levels.length () == 0)
503 return;
504
505 last = inline_parm_levels.pop ();
506 for (i = 0; i < last; ++i)
507 {
508 --processing_template_decl;
509 current_template_parms = TREE_CHAIN (current_template_parms);
510 poplevel (0, 0, 0);
511 }
512 }
513
514 /* Return a new template argument vector which contains all of ARGS,
515 but has as its innermost set of arguments the EXTRA_ARGS. */
516
517 static tree
518 add_to_template_args (tree args, tree extra_args)
519 {
520 tree new_args;
521 int extra_depth;
522 int i;
523 int j;
524
525 if (args == NULL_TREE || extra_args == error_mark_node)
526 return extra_args;
527
528 extra_depth = TMPL_ARGS_DEPTH (extra_args);
529 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
530
531 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
532 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
533
534 for (j = 1; j <= extra_depth; ++j, ++i)
535 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
536
537 return new_args;
538 }
539
540 /* Like add_to_template_args, but only the outermost ARGS are added to
541 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
542 (EXTRA_ARGS) levels are added. This function is used to combine
543 the template arguments from a partial instantiation with the
544 template arguments used to attain the full instantiation from the
545 partial instantiation. */
546
547 static tree
548 add_outermost_template_args (tree args, tree extra_args)
549 {
550 tree new_args;
551
552 /* If there are more levels of EXTRA_ARGS than there are ARGS,
553 something very fishy is going on. */
554 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
555
556 /* If *all* the new arguments will be the EXTRA_ARGS, just return
557 them. */
558 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
559 return extra_args;
560
561 /* For the moment, we make ARGS look like it contains fewer levels. */
562 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
563
564 new_args = add_to_template_args (args, extra_args);
565
566 /* Now, we restore ARGS to its full dimensions. */
567 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
568
569 return new_args;
570 }
571
572 /* Return the N levels of innermost template arguments from the ARGS. */
573
574 tree
575 get_innermost_template_args (tree args, int n)
576 {
577 tree new_args;
578 int extra_levels;
579 int i;
580
581 gcc_assert (n >= 0);
582
583 /* If N is 1, just return the innermost set of template arguments. */
584 if (n == 1)
585 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
586
587 /* If we're not removing anything, just return the arguments we were
588 given. */
589 extra_levels = TMPL_ARGS_DEPTH (args) - n;
590 gcc_assert (extra_levels >= 0);
591 if (extra_levels == 0)
592 return args;
593
594 /* Make a new set of arguments, not containing the outer arguments. */
595 new_args = make_tree_vec (n);
596 for (i = 1; i <= n; ++i)
597 SET_TMPL_ARGS_LEVEL (new_args, i,
598 TMPL_ARGS_LEVEL (args, i + extra_levels));
599
600 return new_args;
601 }
602
603 /* The inverse of get_innermost_template_args: Return all but the innermost
604 EXTRA_LEVELS levels of template arguments from the ARGS. */
605
606 static tree
607 strip_innermost_template_args (tree args, int extra_levels)
608 {
609 tree new_args;
610 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
611 int i;
612
613 gcc_assert (n >= 0);
614
615 /* If N is 1, just return the outermost set of template arguments. */
616 if (n == 1)
617 return TMPL_ARGS_LEVEL (args, 1);
618
619 /* If we're not removing anything, just return the arguments we were
620 given. */
621 gcc_assert (extra_levels >= 0);
622 if (extra_levels == 0)
623 return args;
624
625 /* Make a new set of arguments, not containing the inner arguments. */
626 new_args = make_tree_vec (n);
627 for (i = 1; i <= n; ++i)
628 SET_TMPL_ARGS_LEVEL (new_args, i,
629 TMPL_ARGS_LEVEL (args, i));
630
631 return new_args;
632 }
633
634 /* We've got a template header coming up; push to a new level for storing
635 the parms. */
636
637 void
638 begin_template_parm_list (void)
639 {
640 /* We use a non-tag-transparent scope here, which causes pushtag to
641 put tags in this scope, rather than in the enclosing class or
642 namespace scope. This is the right thing, since we want
643 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
644 global template class, push_template_decl handles putting the
645 TEMPLATE_DECL into top-level scope. For a nested template class,
646 e.g.:
647
648 template <class T> struct S1 {
649 template <class T> struct S2 {};
650 };
651
652 pushtag contains special code to call pushdecl_with_scope on the
653 TEMPLATE_DECL for S2. */
654 begin_scope (sk_template_parms, NULL);
655 ++processing_template_decl;
656 ++processing_template_parmlist;
657 note_template_header (0);
658 }
659
660 /* This routine is called when a specialization is declared. If it is
661 invalid to declare a specialization here, an error is reported and
662 false is returned, otherwise this routine will return true. */
663
664 static bool
665 check_specialization_scope (void)
666 {
667 tree scope = current_scope ();
668
669 /* [temp.expl.spec]
670
671 An explicit specialization shall be declared in the namespace of
672 which the template is a member, or, for member templates, in the
673 namespace of which the enclosing class or enclosing class
674 template is a member. An explicit specialization of a member
675 function, member class or static data member of a class template
676 shall be declared in the namespace of which the class template
677 is a member. */
678 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
679 {
680 error ("explicit specialization in non-namespace scope %qD", scope);
681 return false;
682 }
683
684 /* [temp.expl.spec]
685
686 In an explicit specialization declaration for a member of a class
687 template or a member template that appears in namespace scope,
688 the member template and some of its enclosing class templates may
689 remain unspecialized, except that the declaration shall not
690 explicitly specialize a class member template if its enclosing
691 class templates are not explicitly specialized as well. */
692 if (current_template_parms)
693 {
694 error ("enclosing class templates are not explicitly specialized");
695 return false;
696 }
697
698 return true;
699 }
700
701 /* We've just seen template <>. */
702
703 bool
704 begin_specialization (void)
705 {
706 begin_scope (sk_template_spec, NULL);
707 note_template_header (1);
708 return check_specialization_scope ();
709 }
710
711 /* Called at then end of processing a declaration preceded by
712 template<>. */
713
714 void
715 end_specialization (void)
716 {
717 finish_scope ();
718 reset_specialization ();
719 }
720
721 /* Any template <>'s that we have seen thus far are not referring to a
722 function specialization. */
723
724 void
725 reset_specialization (void)
726 {
727 processing_specialization = 0;
728 template_header_count = 0;
729 }
730
731 /* We've just seen a template header. If SPECIALIZATION is nonzero,
732 it was of the form template <>. */
733
734 static void
735 note_template_header (int specialization)
736 {
737 processing_specialization = specialization;
738 template_header_count++;
739 }
740
741 /* We're beginning an explicit instantiation. */
742
743 void
744 begin_explicit_instantiation (void)
745 {
746 gcc_assert (!processing_explicit_instantiation);
747 processing_explicit_instantiation = true;
748 }
749
750
751 void
752 end_explicit_instantiation (void)
753 {
754 gcc_assert (processing_explicit_instantiation);
755 processing_explicit_instantiation = false;
756 }
757
758 /* An explicit specialization or partial specialization of TMPL is being
759 declared. Check that the namespace in which the specialization is
760 occurring is permissible. Returns false iff it is invalid to
761 specialize TMPL in the current namespace. */
762
763 static bool
764 check_specialization_namespace (tree tmpl)
765 {
766 tree tpl_ns = decl_namespace_context (tmpl);
767
768 /* [tmpl.expl.spec]
769
770 An explicit specialization shall be declared in the namespace of
771 which the template is a member, or, for member templates, in the
772 namespace of which the enclosing class or enclosing class
773 template is a member. An explicit specialization of a member
774 function, member class or static data member of a class template
775 shall be declared in the namespace of which the class template is
776 a member. */
777 if (current_scope() != DECL_CONTEXT (tmpl)
778 && !at_namespace_scope_p ())
779 {
780 error ("specialization of %qD must appear at namespace scope", tmpl);
781 return false;
782 }
783 if (is_associated_namespace (current_namespace, tpl_ns))
784 /* Same or super-using namespace. */
785 return true;
786 else
787 {
788 permerror (input_location, "specialization of %qD in different namespace", tmpl);
789 permerror (input_location, " from definition of %q+#D", tmpl);
790 return false;
791 }
792 }
793
794 /* SPEC is an explicit instantiation. Check that it is valid to
795 perform this explicit instantiation in the current namespace. */
796
797 static void
798 check_explicit_instantiation_namespace (tree spec)
799 {
800 tree ns;
801
802 /* DR 275: An explicit instantiation shall appear in an enclosing
803 namespace of its template. */
804 ns = decl_namespace_context (spec);
805 if (!is_ancestor (current_namespace, ns))
806 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
807 "(which does not enclose namespace %qD)",
808 spec, current_namespace, ns);
809 }
810
811 /* The TYPE is being declared. If it is a template type, that means it
812 is a partial specialization. Do appropriate error-checking. */
813
814 tree
815 maybe_process_partial_specialization (tree type)
816 {
817 tree context;
818
819 if (type == error_mark_node)
820 return error_mark_node;
821
822 /* A lambda that appears in specialization context is not itself a
823 specialization. */
824 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
825 return type;
826
827 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
828 {
829 error ("name of class shadows template template parameter %qD",
830 TYPE_NAME (type));
831 return error_mark_node;
832 }
833
834 context = TYPE_CONTEXT (type);
835
836 if (TYPE_ALIAS_P (type))
837 {
838 if (TYPE_TEMPLATE_INFO (type)
839 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
840 error ("specialization of alias template %qD",
841 TYPE_TI_TEMPLATE (type));
842 else
843 error ("explicit specialization of non-template %qT", type);
844 return error_mark_node;
845 }
846 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
847 {
848 /* This is for ordinary explicit specialization and partial
849 specialization of a template class such as:
850
851 template <> class C<int>;
852
853 or:
854
855 template <class T> class C<T*>;
856
857 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
858
859 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type)
860 && !COMPLETE_TYPE_P (type))
861 {
862 if (!check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (type))
863 && !at_namespace_scope_p ())
864 return error_mark_node;
865 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
866 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
867 if (processing_template_decl)
868 {
869 if (push_template_decl (TYPE_MAIN_DECL (type))
870 == error_mark_node)
871 return error_mark_node;
872 }
873 }
874 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
875 error ("specialization of %qT after instantiation", type);
876 else if (errorcount && !processing_specialization
877 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
878 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
879 /* Trying to define a specialization either without a template<> header
880 or in an inappropriate place. We've already given an error, so just
881 bail now so we don't actually define the specialization. */
882 return error_mark_node;
883 }
884 else if (CLASS_TYPE_P (type)
885 && !CLASSTYPE_USE_TEMPLATE (type)
886 && CLASSTYPE_TEMPLATE_INFO (type)
887 && context && CLASS_TYPE_P (context)
888 && CLASSTYPE_TEMPLATE_INFO (context))
889 {
890 /* This is for an explicit specialization of member class
891 template according to [temp.expl.spec/18]:
892
893 template <> template <class U> class C<int>::D;
894
895 The context `C<int>' must be an implicit instantiation.
896 Otherwise this is just a member class template declared
897 earlier like:
898
899 template <> class C<int> { template <class U> class D; };
900 template <> template <class U> class C<int>::D;
901
902 In the first case, `C<int>::D' is a specialization of `C<T>::D'
903 while in the second case, `C<int>::D' is a primary template
904 and `C<T>::D' may not exist. */
905
906 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
907 && !COMPLETE_TYPE_P (type))
908 {
909 tree t;
910 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
911
912 if (current_namespace
913 != decl_namespace_context (tmpl))
914 {
915 permerror (input_location, "specializing %q#T in different namespace", type);
916 permerror (input_location, " from definition of %q+#D", tmpl);
917 }
918
919 /* Check for invalid specialization after instantiation:
920
921 template <> template <> class C<int>::D<int>;
922 template <> template <class U> class C<int>::D; */
923
924 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
925 t; t = TREE_CHAIN (t))
926 {
927 tree inst = TREE_VALUE (t);
928 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst)
929 || !COMPLETE_OR_OPEN_TYPE_P (inst))
930 {
931 /* We already have a full specialization of this partial
932 instantiation, or a full specialization has been
933 looked up but not instantiated. Reassign it to the
934 new member specialization template. */
935 spec_entry elt;
936 spec_entry *entry;
937
938 elt.tmpl = most_general_template (tmpl);
939 elt.args = CLASSTYPE_TI_ARGS (inst);
940 elt.spec = inst;
941
942 type_specializations->remove_elt (&elt);
943
944 elt.tmpl = tmpl;
945 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
946
947 spec_entry **slot
948 = type_specializations->find_slot (&elt, INSERT);
949 entry = ggc_alloc<spec_entry> ();
950 *entry = elt;
951 *slot = entry;
952 }
953 else
954 /* But if we've had an implicit instantiation, that's a
955 problem ([temp.expl.spec]/6). */
956 error ("specialization %qT after instantiation %qT",
957 type, inst);
958 }
959
960 /* Mark TYPE as a specialization. And as a result, we only
961 have one level of template argument for the innermost
962 class template. */
963 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
964 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
965 CLASSTYPE_TI_ARGS (type)
966 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
967 }
968 }
969 else if (processing_specialization)
970 {
971 /* Someday C++0x may allow for enum template specialization. */
972 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
973 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
974 pedwarn (input_location, OPT_Wpedantic, "template specialization "
975 "of %qD not allowed by ISO C++", type);
976 else
977 {
978 error ("explicit specialization of non-template %qT", type);
979 return error_mark_node;
980 }
981 }
982
983 return type;
984 }
985
986 /* Returns nonzero if we can optimize the retrieval of specializations
987 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
988 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
989
990 static inline bool
991 optimize_specialization_lookup_p (tree tmpl)
992 {
993 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
994 && DECL_CLASS_SCOPE_P (tmpl)
995 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
996 parameter. */
997 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
998 /* The optimized lookup depends on the fact that the
999 template arguments for the member function template apply
1000 purely to the containing class, which is not true if the
1001 containing class is an explicit or partial
1002 specialization. */
1003 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
1004 && !DECL_MEMBER_TEMPLATE_P (tmpl)
1005 && !DECL_CONV_FN_P (tmpl)
1006 /* It is possible to have a template that is not a member
1007 template and is not a member of a template class:
1008
1009 template <typename T>
1010 struct S { friend A::f(); };
1011
1012 Here, the friend function is a template, but the context does
1013 not have template information. The optimized lookup relies
1014 on having ARGS be the template arguments for both the class
1015 and the function template. */
1016 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
1017 }
1018
1019 /* Retrieve the specialization (in the sense of [temp.spec] - a
1020 specialization is either an instantiation or an explicit
1021 specialization) of TMPL for the given template ARGS. If there is
1022 no such specialization, return NULL_TREE. The ARGS are a vector of
1023 arguments, or a vector of vectors of arguments, in the case of
1024 templates with more than one level of parameters.
1025
1026 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1027 then we search for a partial specialization matching ARGS. This
1028 parameter is ignored if TMPL is not a class template.
1029
1030 We can also look up a FIELD_DECL, if it is a lambda capture pack; the
1031 result is a NONTYPE_ARGUMENT_PACK. */
1032
1033 static tree
1034 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1035 {
1036 if (tmpl == NULL_TREE)
1037 return NULL_TREE;
1038
1039 if (args == error_mark_node)
1040 return NULL_TREE;
1041
1042 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL
1043 || TREE_CODE (tmpl) == FIELD_DECL);
1044
1045 /* There should be as many levels of arguments as there are
1046 levels of parameters. */
1047 gcc_assert (TMPL_ARGS_DEPTH (args)
1048 == (TREE_CODE (tmpl) == TEMPLATE_DECL
1049 ? TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl))
1050 : template_class_depth (DECL_CONTEXT (tmpl))));
1051
1052 if (optimize_specialization_lookup_p (tmpl))
1053 {
1054 tree class_template;
1055 tree class_specialization;
1056 vec<tree, va_gc> *methods;
1057 tree fns;
1058 int idx;
1059
1060 /* The template arguments actually apply to the containing
1061 class. Find the class specialization with those
1062 arguments. */
1063 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1064 class_specialization
1065 = retrieve_specialization (class_template, args, 0);
1066 if (!class_specialization)
1067 return NULL_TREE;
1068 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1069 for the specialization. */
1070 idx = class_method_index_for_fn (class_specialization, tmpl);
1071 if (idx == -1)
1072 return NULL_TREE;
1073 /* Iterate through the methods with the indicated name, looking
1074 for the one that has an instance of TMPL. */
1075 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1076 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1077 {
1078 tree fn = OVL_CURRENT (fns);
1079 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1080 /* using-declarations can add base methods to the method vec,
1081 and we don't want those here. */
1082 && DECL_CONTEXT (fn) == class_specialization)
1083 return fn;
1084 }
1085 return NULL_TREE;
1086 }
1087 else
1088 {
1089 spec_entry *found;
1090 spec_entry elt;
1091 hash_table<spec_hasher> *specializations;
1092
1093 elt.tmpl = tmpl;
1094 elt.args = args;
1095 elt.spec = NULL_TREE;
1096
1097 if (DECL_CLASS_TEMPLATE_P (tmpl))
1098 specializations = type_specializations;
1099 else
1100 specializations = decl_specializations;
1101
1102 if (hash == 0)
1103 hash = spec_hasher::hash (&elt);
1104 found = specializations->find_with_hash (&elt, hash);
1105 if (found)
1106 return found->spec;
1107 }
1108
1109 return NULL_TREE;
1110 }
1111
1112 /* Like retrieve_specialization, but for local declarations. */
1113
1114 static tree
1115 retrieve_local_specialization (tree tmpl)
1116 {
1117 if (local_specializations == NULL)
1118 return NULL_TREE;
1119
1120 tree *slot = local_specializations->get (tmpl);
1121 return slot ? *slot : NULL_TREE;
1122 }
1123
1124 /* Returns nonzero iff DECL is a specialization of TMPL. */
1125
1126 int
1127 is_specialization_of (tree decl, tree tmpl)
1128 {
1129 tree t;
1130
1131 if (TREE_CODE (decl) == FUNCTION_DECL)
1132 {
1133 for (t = decl;
1134 t != NULL_TREE;
1135 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1136 if (t == tmpl)
1137 return 1;
1138 }
1139 else
1140 {
1141 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1142
1143 for (t = TREE_TYPE (decl);
1144 t != NULL_TREE;
1145 t = CLASSTYPE_USE_TEMPLATE (t)
1146 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1147 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1148 return 1;
1149 }
1150
1151 return 0;
1152 }
1153
1154 /* Returns nonzero iff DECL is a specialization of friend declaration
1155 FRIEND_DECL according to [temp.friend]. */
1156
1157 bool
1158 is_specialization_of_friend (tree decl, tree friend_decl)
1159 {
1160 bool need_template = true;
1161 int template_depth;
1162
1163 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1164 || TREE_CODE (decl) == TYPE_DECL);
1165
1166 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1167 of a template class, we want to check if DECL is a specialization
1168 if this. */
1169 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1170 && DECL_TEMPLATE_INFO (friend_decl)
1171 && !DECL_USE_TEMPLATE (friend_decl))
1172 {
1173 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1174 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1175 need_template = false;
1176 }
1177 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1178 && !PRIMARY_TEMPLATE_P (friend_decl))
1179 need_template = false;
1180
1181 /* There is nothing to do if this is not a template friend. */
1182 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1183 return false;
1184
1185 if (is_specialization_of (decl, friend_decl))
1186 return true;
1187
1188 /* [temp.friend/6]
1189 A member of a class template may be declared to be a friend of a
1190 non-template class. In this case, the corresponding member of
1191 every specialization of the class template is a friend of the
1192 class granting friendship.
1193
1194 For example, given a template friend declaration
1195
1196 template <class T> friend void A<T>::f();
1197
1198 the member function below is considered a friend
1199
1200 template <> struct A<int> {
1201 void f();
1202 };
1203
1204 For this type of template friend, TEMPLATE_DEPTH below will be
1205 nonzero. To determine if DECL is a friend of FRIEND, we first
1206 check if the enclosing class is a specialization of another. */
1207
1208 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1209 if (template_depth
1210 && DECL_CLASS_SCOPE_P (decl)
1211 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1212 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1213 {
1214 /* Next, we check the members themselves. In order to handle
1215 a few tricky cases, such as when FRIEND_DECL's are
1216
1217 template <class T> friend void A<T>::g(T t);
1218 template <class T> template <T t> friend void A<T>::h();
1219
1220 and DECL's are
1221
1222 void A<int>::g(int);
1223 template <int> void A<int>::h();
1224
1225 we need to figure out ARGS, the template arguments from
1226 the context of DECL. This is required for template substitution
1227 of `T' in the function parameter of `g' and template parameter
1228 of `h' in the above examples. Here ARGS corresponds to `int'. */
1229
1230 tree context = DECL_CONTEXT (decl);
1231 tree args = NULL_TREE;
1232 int current_depth = 0;
1233
1234 while (current_depth < template_depth)
1235 {
1236 if (CLASSTYPE_TEMPLATE_INFO (context))
1237 {
1238 if (current_depth == 0)
1239 args = TYPE_TI_ARGS (context);
1240 else
1241 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1242 current_depth++;
1243 }
1244 context = TYPE_CONTEXT (context);
1245 }
1246
1247 if (TREE_CODE (decl) == FUNCTION_DECL)
1248 {
1249 bool is_template;
1250 tree friend_type;
1251 tree decl_type;
1252 tree friend_args_type;
1253 tree decl_args_type;
1254
1255 /* Make sure that both DECL and FRIEND_DECL are templates or
1256 non-templates. */
1257 is_template = DECL_TEMPLATE_INFO (decl)
1258 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1259 if (need_template ^ is_template)
1260 return false;
1261 else if (is_template)
1262 {
1263 /* If both are templates, check template parameter list. */
1264 tree friend_parms
1265 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1266 args, tf_none);
1267 if (!comp_template_parms
1268 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1269 friend_parms))
1270 return false;
1271
1272 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1273 }
1274 else
1275 decl_type = TREE_TYPE (decl);
1276
1277 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1278 tf_none, NULL_TREE);
1279 if (friend_type == error_mark_node)
1280 return false;
1281
1282 /* Check if return types match. */
1283 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1284 return false;
1285
1286 /* Check if function parameter types match, ignoring the
1287 `this' parameter. */
1288 friend_args_type = TYPE_ARG_TYPES (friend_type);
1289 decl_args_type = TYPE_ARG_TYPES (decl_type);
1290 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1291 friend_args_type = TREE_CHAIN (friend_args_type);
1292 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1293 decl_args_type = TREE_CHAIN (decl_args_type);
1294
1295 return compparms (decl_args_type, friend_args_type);
1296 }
1297 else
1298 {
1299 /* DECL is a TYPE_DECL */
1300 bool is_template;
1301 tree decl_type = TREE_TYPE (decl);
1302
1303 /* Make sure that both DECL and FRIEND_DECL are templates or
1304 non-templates. */
1305 is_template
1306 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1307 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1308
1309 if (need_template ^ is_template)
1310 return false;
1311 else if (is_template)
1312 {
1313 tree friend_parms;
1314 /* If both are templates, check the name of the two
1315 TEMPLATE_DECL's first because is_friend didn't. */
1316 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1317 != DECL_NAME (friend_decl))
1318 return false;
1319
1320 /* Now check template parameter list. */
1321 friend_parms
1322 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1323 args, tf_none);
1324 return comp_template_parms
1325 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1326 friend_parms);
1327 }
1328 else
1329 return (DECL_NAME (decl)
1330 == DECL_NAME (friend_decl));
1331 }
1332 }
1333 return false;
1334 }
1335
1336 /* Register the specialization SPEC as a specialization of TMPL with
1337 the indicated ARGS. IS_FRIEND indicates whether the specialization
1338 is actually just a friend declaration. Returns SPEC, or an
1339 equivalent prior declaration, if available.
1340
1341 We also store instantiations of field packs in the hash table, even
1342 though they are not themselves templates, to make lookup easier. */
1343
1344 static tree
1345 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1346 hashval_t hash)
1347 {
1348 tree fn;
1349 spec_entry **slot = NULL;
1350 spec_entry elt;
1351
1352 gcc_assert ((TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec))
1353 || (TREE_CODE (tmpl) == FIELD_DECL
1354 && TREE_CODE (spec) == NONTYPE_ARGUMENT_PACK));
1355
1356 if (TREE_CODE (spec) == FUNCTION_DECL
1357 && uses_template_parms (DECL_TI_ARGS (spec)))
1358 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1359 register it; we want the corresponding TEMPLATE_DECL instead.
1360 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1361 the more obvious `uses_template_parms (spec)' to avoid problems
1362 with default function arguments. In particular, given
1363 something like this:
1364
1365 template <class T> void f(T t1, T t = T())
1366
1367 the default argument expression is not substituted for in an
1368 instantiation unless and until it is actually needed. */
1369 return spec;
1370
1371 if (optimize_specialization_lookup_p (tmpl))
1372 /* We don't put these specializations in the hash table, but we might
1373 want to give an error about a mismatch. */
1374 fn = retrieve_specialization (tmpl, args, 0);
1375 else
1376 {
1377 elt.tmpl = tmpl;
1378 elt.args = args;
1379 elt.spec = spec;
1380
1381 if (hash == 0)
1382 hash = spec_hasher::hash (&elt);
1383
1384 slot =
1385 decl_specializations->find_slot_with_hash (&elt, hash, INSERT);
1386 if (*slot)
1387 fn = ((spec_entry *) *slot)->spec;
1388 else
1389 fn = NULL_TREE;
1390 }
1391
1392 /* We can sometimes try to re-register a specialization that we've
1393 already got. In particular, regenerate_decl_from_template calls
1394 duplicate_decls which will update the specialization list. But,
1395 we'll still get called again here anyhow. It's more convenient
1396 to simply allow this than to try to prevent it. */
1397 if (fn == spec)
1398 return spec;
1399 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1400 {
1401 if (DECL_TEMPLATE_INSTANTIATION (fn))
1402 {
1403 if (DECL_ODR_USED (fn)
1404 || DECL_EXPLICIT_INSTANTIATION (fn))
1405 {
1406 error ("specialization of %qD after instantiation",
1407 fn);
1408 return error_mark_node;
1409 }
1410 else
1411 {
1412 tree clone;
1413 /* This situation should occur only if the first
1414 specialization is an implicit instantiation, the
1415 second is an explicit specialization, and the
1416 implicit instantiation has not yet been used. That
1417 situation can occur if we have implicitly
1418 instantiated a member function and then specialized
1419 it later.
1420
1421 We can also wind up here if a friend declaration that
1422 looked like an instantiation turns out to be a
1423 specialization:
1424
1425 template <class T> void foo(T);
1426 class S { friend void foo<>(int) };
1427 template <> void foo(int);
1428
1429 We transform the existing DECL in place so that any
1430 pointers to it become pointers to the updated
1431 declaration.
1432
1433 If there was a definition for the template, but not
1434 for the specialization, we want this to look as if
1435 there were no definition, and vice versa. */
1436 DECL_INITIAL (fn) = NULL_TREE;
1437 duplicate_decls (spec, fn, is_friend);
1438 /* The call to duplicate_decls will have applied
1439 [temp.expl.spec]:
1440
1441 An explicit specialization of a function template
1442 is inline only if it is explicitly declared to be,
1443 and independently of whether its function template
1444 is.
1445
1446 to the primary function; now copy the inline bits to
1447 the various clones. */
1448 FOR_EACH_CLONE (clone, fn)
1449 {
1450 DECL_DECLARED_INLINE_P (clone)
1451 = DECL_DECLARED_INLINE_P (fn);
1452 DECL_SOURCE_LOCATION (clone)
1453 = DECL_SOURCE_LOCATION (fn);
1454 DECL_DELETED_FN (clone)
1455 = DECL_DELETED_FN (fn);
1456 }
1457 check_specialization_namespace (tmpl);
1458
1459 return fn;
1460 }
1461 }
1462 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1463 {
1464 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1465 /* Dup decl failed, but this is a new definition. Set the
1466 line number so any errors match this new
1467 definition. */
1468 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1469
1470 return fn;
1471 }
1472 }
1473 else if (fn)
1474 return duplicate_decls (spec, fn, is_friend);
1475
1476 /* A specialization must be declared in the same namespace as the
1477 template it is specializing. */
1478 if (DECL_P (spec) && DECL_TEMPLATE_SPECIALIZATION (spec)
1479 && !check_specialization_namespace (tmpl))
1480 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1481
1482 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1483 {
1484 spec_entry *entry = ggc_alloc<spec_entry> ();
1485 gcc_assert (tmpl && args && spec);
1486 *entry = elt;
1487 *slot = entry;
1488 if (TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1489 && PRIMARY_TEMPLATE_P (tmpl)
1490 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1491 /* TMPL is a forward declaration of a template function; keep a list
1492 of all specializations in case we need to reassign them to a friend
1493 template later in tsubst_friend_function. */
1494 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1495 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1496 }
1497
1498 return spec;
1499 }
1500
1501 /* Returns true iff two spec_entry nodes are equivalent. Only compares the
1502 TMPL and ARGS members, ignores SPEC. */
1503
1504 int comparing_specializations;
1505
1506 bool
1507 spec_hasher::equal (spec_entry *e1, spec_entry *e2)
1508 {
1509 int equal;
1510
1511 ++comparing_specializations;
1512 equal = (e1->tmpl == e2->tmpl
1513 && comp_template_args (e1->args, e2->args));
1514 --comparing_specializations;
1515
1516 return equal;
1517 }
1518
1519 /* Returns a hash for a template TMPL and template arguments ARGS. */
1520
1521 static hashval_t
1522 hash_tmpl_and_args (tree tmpl, tree args)
1523 {
1524 hashval_t val = DECL_UID (tmpl);
1525 return iterative_hash_template_arg (args, val);
1526 }
1527
1528 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1529 ignoring SPEC. */
1530
1531 hashval_t
1532 spec_hasher::hash (spec_entry *e)
1533 {
1534 return hash_tmpl_and_args (e->tmpl, e->args);
1535 }
1536
1537 /* Recursively calculate a hash value for a template argument ARG, for use
1538 in the hash tables of template specializations. */
1539
1540 hashval_t
1541 iterative_hash_template_arg (tree arg, hashval_t val)
1542 {
1543 unsigned HOST_WIDE_INT i;
1544 enum tree_code code;
1545 char tclass;
1546
1547 if (arg == NULL_TREE)
1548 return iterative_hash_object (arg, val);
1549
1550 if (!TYPE_P (arg))
1551 STRIP_NOPS (arg);
1552
1553 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1554 /* We can get one of these when re-hashing a previous entry in the middle
1555 of substituting into a pack expansion. Just look through it. */
1556 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1557
1558 code = TREE_CODE (arg);
1559 tclass = TREE_CODE_CLASS (code);
1560
1561 val = iterative_hash_object (code, val);
1562
1563 switch (code)
1564 {
1565 case ERROR_MARK:
1566 return val;
1567
1568 case IDENTIFIER_NODE:
1569 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1570
1571 case TREE_VEC:
1572 {
1573 int i, len = TREE_VEC_LENGTH (arg);
1574 for (i = 0; i < len; ++i)
1575 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1576 return val;
1577 }
1578
1579 case TYPE_PACK_EXPANSION:
1580 case EXPR_PACK_EXPANSION:
1581 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1582 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1583
1584 case TYPE_ARGUMENT_PACK:
1585 case NONTYPE_ARGUMENT_PACK:
1586 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1587
1588 case TREE_LIST:
1589 for (; arg; arg = TREE_CHAIN (arg))
1590 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1591 return val;
1592
1593 case OVERLOAD:
1594 for (; arg; arg = OVL_NEXT (arg))
1595 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1596 return val;
1597
1598 case CONSTRUCTOR:
1599 {
1600 tree field, value;
1601 iterative_hash_template_arg (TREE_TYPE (arg), val);
1602 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1603 {
1604 val = iterative_hash_template_arg (field, val);
1605 val = iterative_hash_template_arg (value, val);
1606 }
1607 return val;
1608 }
1609
1610 case PARM_DECL:
1611 if (!DECL_ARTIFICIAL (arg))
1612 {
1613 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1614 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1615 }
1616 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1617
1618 case TARGET_EXPR:
1619 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1620
1621 case PTRMEM_CST:
1622 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1623 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1624
1625 case TEMPLATE_PARM_INDEX:
1626 val = iterative_hash_template_arg
1627 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1628 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1629 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1630
1631 case TRAIT_EXPR:
1632 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1633 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1634 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1635
1636 case BASELINK:
1637 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1638 val);
1639 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1640 val);
1641
1642 case MODOP_EXPR:
1643 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1644 code = TREE_CODE (TREE_OPERAND (arg, 1));
1645 val = iterative_hash_object (code, val);
1646 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1647
1648 case LAMBDA_EXPR:
1649 /* A lambda can't appear in a template arg, but don't crash on
1650 erroneous input. */
1651 gcc_assert (seen_error ());
1652 return val;
1653
1654 case CAST_EXPR:
1655 case IMPLICIT_CONV_EXPR:
1656 case STATIC_CAST_EXPR:
1657 case REINTERPRET_CAST_EXPR:
1658 case CONST_CAST_EXPR:
1659 case DYNAMIC_CAST_EXPR:
1660 case NEW_EXPR:
1661 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1662 /* Now hash operands as usual. */
1663 break;
1664
1665 default:
1666 break;
1667 }
1668
1669 switch (tclass)
1670 {
1671 case tcc_type:
1672 if (TYPE_CANONICAL (arg))
1673 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1674 val);
1675 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1676 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1677 /* Otherwise just compare the types during lookup. */
1678 return val;
1679
1680 case tcc_declaration:
1681 case tcc_constant:
1682 return iterative_hash_expr (arg, val);
1683
1684 default:
1685 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1686 {
1687 unsigned n = cp_tree_operand_length (arg);
1688 for (i = 0; i < n; ++i)
1689 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1690 return val;
1691 }
1692 }
1693 gcc_unreachable ();
1694 return 0;
1695 }
1696
1697 /* Unregister the specialization SPEC as a specialization of TMPL.
1698 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1699 if the SPEC was listed as a specialization of TMPL.
1700
1701 Note that SPEC has been ggc_freed, so we can't look inside it. */
1702
1703 bool
1704 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1705 {
1706 spec_entry *entry;
1707 spec_entry elt;
1708
1709 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1710 elt.args = TI_ARGS (tinfo);
1711 elt.spec = NULL_TREE;
1712
1713 entry = decl_specializations->find (&elt);
1714 if (entry != NULL)
1715 {
1716 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1717 gcc_assert (new_spec != NULL_TREE);
1718 entry->spec = new_spec;
1719 return 1;
1720 }
1721
1722 return 0;
1723 }
1724
1725 /* Like register_specialization, but for local declarations. We are
1726 registering SPEC, an instantiation of TMPL. */
1727
1728 static void
1729 register_local_specialization (tree spec, tree tmpl)
1730 {
1731 local_specializations->put (tmpl, spec);
1732 }
1733
1734 /* TYPE is a class type. Returns true if TYPE is an explicitly
1735 specialized class. */
1736
1737 bool
1738 explicit_class_specialization_p (tree type)
1739 {
1740 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1741 return false;
1742 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1743 }
1744
1745 /* Print the list of functions at FNS, going through all the overloads
1746 for each element of the list. Alternatively, FNS can not be a
1747 TREE_LIST, in which case it will be printed together with all the
1748 overloads.
1749
1750 MORE and *STR should respectively be FALSE and NULL when the function
1751 is called from the outside. They are used internally on recursive
1752 calls. print_candidates manages the two parameters and leaves NULL
1753 in *STR when it ends. */
1754
1755 static void
1756 print_candidates_1 (tree fns, bool more, const char **str)
1757 {
1758 tree fn, fn2;
1759 char *spaces = NULL;
1760
1761 for (fn = fns; fn; fn = OVL_NEXT (fn))
1762 if (TREE_CODE (fn) == TREE_LIST)
1763 {
1764 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1765 print_candidates_1 (TREE_VALUE (fn2),
1766 TREE_CHAIN (fn2) || more, str);
1767 }
1768 else
1769 {
1770 tree cand = OVL_CURRENT (fn);
1771 if (!*str)
1772 {
1773 /* Pick the prefix string. */
1774 if (!more && !OVL_NEXT (fns))
1775 {
1776 inform (DECL_SOURCE_LOCATION (cand),
1777 "candidate is: %#D", cand);
1778 continue;
1779 }
1780
1781 *str = _("candidates are:");
1782 spaces = get_spaces (*str);
1783 }
1784 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1785 *str = spaces ? spaces : *str;
1786 }
1787
1788 if (!more)
1789 {
1790 free (spaces);
1791 *str = NULL;
1792 }
1793 }
1794
1795 /* Print the list of candidate FNS in an error message. FNS can also
1796 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1797
1798 void
1799 print_candidates (tree fns)
1800 {
1801 const char *str = NULL;
1802 print_candidates_1 (fns, false, &str);
1803 gcc_assert (str == NULL);
1804 }
1805
1806 /* Returns the template (one of the functions given by TEMPLATE_ID)
1807 which can be specialized to match the indicated DECL with the
1808 explicit template args given in TEMPLATE_ID. The DECL may be
1809 NULL_TREE if none is available. In that case, the functions in
1810 TEMPLATE_ID are non-members.
1811
1812 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
1813 specialization of a member template.
1814
1815 The TEMPLATE_COUNT is the number of references to qualifying
1816 template classes that appeared in the name of the function. See
1817 check_explicit_specialization for a more accurate description.
1818
1819 TSK indicates what kind of template declaration (if any) is being
1820 declared. TSK_TEMPLATE indicates that the declaration given by
1821 DECL, though a FUNCTION_DECL, has template parameters, and is
1822 therefore a template function.
1823
1824 The template args (those explicitly specified and those deduced)
1825 are output in a newly created vector *TARGS_OUT.
1826
1827 If it is impossible to determine the result, an error message is
1828 issued. The error_mark_node is returned to indicate failure. */
1829
1830 static tree
1831 determine_specialization (tree template_id,
1832 tree decl,
1833 tree* targs_out,
1834 int need_member_template,
1835 int template_count,
1836 tmpl_spec_kind tsk)
1837 {
1838 tree fns;
1839 tree targs;
1840 tree explicit_targs;
1841 tree candidates = NULL_TREE;
1842 /* A TREE_LIST of templates of which DECL may be a specialization.
1843 The TREE_VALUE of each node is a TEMPLATE_DECL. The
1844 corresponding TREE_PURPOSE is the set of template arguments that,
1845 when used to instantiate the template, would produce a function
1846 with the signature of DECL. */
1847 tree templates = NULL_TREE;
1848 int header_count;
1849 cp_binding_level *b;
1850
1851 *targs_out = NULL_TREE;
1852
1853 if (template_id == error_mark_node || decl == error_mark_node)
1854 return error_mark_node;
1855
1856 /* We shouldn't be specializing a member template of an
1857 unspecialized class template; we already gave an error in
1858 check_specialization_scope, now avoid crashing. */
1859 if (template_count && DECL_CLASS_SCOPE_P (decl)
1860 && template_class_depth (DECL_CONTEXT (decl)) > 0)
1861 {
1862 gcc_assert (errorcount);
1863 return error_mark_node;
1864 }
1865
1866 fns = TREE_OPERAND (template_id, 0);
1867 explicit_targs = TREE_OPERAND (template_id, 1);
1868
1869 if (fns == error_mark_node)
1870 return error_mark_node;
1871
1872 /* Check for baselinks. */
1873 if (BASELINK_P (fns))
1874 fns = BASELINK_FUNCTIONS (fns);
1875
1876 if (TREE_CODE (decl) == FUNCTION_DECL && !is_overloaded_fn (fns))
1877 {
1878 error ("%qD is not a function template", fns);
1879 return error_mark_node;
1880 }
1881 else if (VAR_P (decl) && !variable_template_p (fns))
1882 {
1883 error ("%qD is not a variable template", fns);
1884 return error_mark_node;
1885 }
1886
1887 /* Count the number of template headers specified for this
1888 specialization. */
1889 header_count = 0;
1890 for (b = current_binding_level;
1891 b->kind == sk_template_parms;
1892 b = b->level_chain)
1893 ++header_count;
1894
1895 if (variable_template_p (fns))
1896 templates = tree_cons (explicit_targs, fns, templates);
1897 else for (; fns; fns = OVL_NEXT (fns))
1898 {
1899 tree fn = OVL_CURRENT (fns);
1900
1901 if (TREE_CODE (fn) == TEMPLATE_DECL)
1902 {
1903 tree decl_arg_types;
1904 tree fn_arg_types;
1905 tree insttype;
1906
1907 /* In case of explicit specialization, we need to check if
1908 the number of template headers appearing in the specialization
1909 is correct. This is usually done in check_explicit_specialization,
1910 but the check done there cannot be exhaustive when specializing
1911 member functions. Consider the following code:
1912
1913 template <> void A<int>::f(int);
1914 template <> template <> void A<int>::f(int);
1915
1916 Assuming that A<int> is not itself an explicit specialization
1917 already, the first line specializes "f" which is a non-template
1918 member function, whilst the second line specializes "f" which
1919 is a template member function. So both lines are syntactically
1920 correct, and check_explicit_specialization does not reject
1921 them.
1922
1923 Here, we can do better, as we are matching the specialization
1924 against the declarations. We count the number of template
1925 headers, and we check if they match TEMPLATE_COUNT + 1
1926 (TEMPLATE_COUNT is the number of qualifying template classes,
1927 plus there must be another header for the member template
1928 itself).
1929
1930 Notice that if header_count is zero, this is not a
1931 specialization but rather a template instantiation, so there
1932 is no check we can perform here. */
1933 if (header_count && header_count != template_count + 1)
1934 continue;
1935
1936 /* Check that the number of template arguments at the
1937 innermost level for DECL is the same as for FN. */
1938 if (current_binding_level->kind == sk_template_parms
1939 && !current_binding_level->explicit_spec_p
1940 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
1941 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
1942 (current_template_parms))))
1943 continue;
1944
1945 /* DECL might be a specialization of FN. */
1946 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1947 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
1948
1949 /* For a non-static member function, we need to make sure
1950 that the const qualification is the same. Since
1951 get_bindings does not try to merge the "this" parameter,
1952 we must do the comparison explicitly. */
1953 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1954 && !same_type_p (TREE_VALUE (fn_arg_types),
1955 TREE_VALUE (decl_arg_types)))
1956 continue;
1957
1958 /* Skip the "this" parameter and, for constructors of
1959 classes with virtual bases, the VTT parameter. A
1960 full specialization of a constructor will have a VTT
1961 parameter, but a template never will. */
1962 decl_arg_types
1963 = skip_artificial_parms_for (decl, decl_arg_types);
1964 fn_arg_types
1965 = skip_artificial_parms_for (fn, fn_arg_types);
1966
1967 /* Function templates cannot be specializations; there are
1968 no partial specializations of functions. Therefore, if
1969 the type of DECL does not match FN, there is no
1970 match. */
1971 if (tsk == tsk_template)
1972 {
1973 if (compparms (fn_arg_types, decl_arg_types))
1974 candidates = tree_cons (NULL_TREE, fn, candidates);
1975 continue;
1976 }
1977
1978 /* See whether this function might be a specialization of this
1979 template. Suppress access control because we might be trying
1980 to make this specialization a friend, and we have already done
1981 access control for the declaration of the specialization. */
1982 push_deferring_access_checks (dk_no_check);
1983 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
1984 pop_deferring_access_checks ();
1985
1986 if (!targs)
1987 /* We cannot deduce template arguments that when used to
1988 specialize TMPL will produce DECL. */
1989 continue;
1990
1991 /* Make sure that the deduced arguments actually work. */
1992 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
1993 if (insttype == error_mark_node)
1994 continue;
1995 fn_arg_types
1996 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
1997 if (!compparms (fn_arg_types, decl_arg_types))
1998 continue;
1999
2000 /* Save this template, and the arguments deduced. */
2001 templates = tree_cons (targs, fn, templates);
2002 }
2003 else if (need_member_template)
2004 /* FN is an ordinary member function, and we need a
2005 specialization of a member template. */
2006 ;
2007 else if (TREE_CODE (fn) != FUNCTION_DECL)
2008 /* We can get IDENTIFIER_NODEs here in certain erroneous
2009 cases. */
2010 ;
2011 else if (!DECL_FUNCTION_MEMBER_P (fn))
2012 /* This is just an ordinary non-member function. Nothing can
2013 be a specialization of that. */
2014 ;
2015 else if (DECL_ARTIFICIAL (fn))
2016 /* Cannot specialize functions that are created implicitly. */
2017 ;
2018 else
2019 {
2020 tree decl_arg_types;
2021
2022 /* This is an ordinary member function. However, since
2023 we're here, we can assume its enclosing class is a
2024 template class. For example,
2025
2026 template <typename T> struct S { void f(); };
2027 template <> void S<int>::f() {}
2028
2029 Here, S<int>::f is a non-template, but S<int> is a
2030 template class. If FN has the same type as DECL, we
2031 might be in business. */
2032
2033 if (!DECL_TEMPLATE_INFO (fn))
2034 /* Its enclosing class is an explicit specialization
2035 of a template class. This is not a candidate. */
2036 continue;
2037
2038 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2039 TREE_TYPE (TREE_TYPE (fn))))
2040 /* The return types differ. */
2041 continue;
2042
2043 /* Adjust the type of DECL in case FN is a static member. */
2044 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2045 if (DECL_STATIC_FUNCTION_P (fn)
2046 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2047 decl_arg_types = TREE_CHAIN (decl_arg_types);
2048
2049 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2050 decl_arg_types))
2051 /* They match! */
2052 candidates = tree_cons (NULL_TREE, fn, candidates);
2053 }
2054 }
2055
2056 if (templates && TREE_CHAIN (templates))
2057 {
2058 /* We have:
2059
2060 [temp.expl.spec]
2061
2062 It is possible for a specialization with a given function
2063 signature to be instantiated from more than one function
2064 template. In such cases, explicit specification of the
2065 template arguments must be used to uniquely identify the
2066 function template specialization being specialized.
2067
2068 Note that here, there's no suggestion that we're supposed to
2069 determine which of the candidate templates is most
2070 specialized. However, we, also have:
2071
2072 [temp.func.order]
2073
2074 Partial ordering of overloaded function template
2075 declarations is used in the following contexts to select
2076 the function template to which a function template
2077 specialization refers:
2078
2079 -- when an explicit specialization refers to a function
2080 template.
2081
2082 So, we do use the partial ordering rules, at least for now.
2083 This extension can only serve to make invalid programs valid,
2084 so it's safe. And, there is strong anecdotal evidence that
2085 the committee intended the partial ordering rules to apply;
2086 the EDG front end has that behavior, and John Spicer claims
2087 that the committee simply forgot to delete the wording in
2088 [temp.expl.spec]. */
2089 tree tmpl = most_specialized_instantiation (templates);
2090 if (tmpl != error_mark_node)
2091 {
2092 templates = tmpl;
2093 TREE_CHAIN (templates) = NULL_TREE;
2094 }
2095 }
2096
2097 if (templates == NULL_TREE && candidates == NULL_TREE)
2098 {
2099 error ("template-id %qD for %q+D does not match any template "
2100 "declaration", template_id, decl);
2101 if (header_count && header_count != template_count + 1)
2102 inform (input_location, "saw %d %<template<>%>, need %d for "
2103 "specializing a member function template",
2104 header_count, template_count + 1);
2105 return error_mark_node;
2106 }
2107 else if ((templates && TREE_CHAIN (templates))
2108 || (candidates && TREE_CHAIN (candidates))
2109 || (templates && candidates))
2110 {
2111 error ("ambiguous template specialization %qD for %q+D",
2112 template_id, decl);
2113 candidates = chainon (candidates, templates);
2114 print_candidates (candidates);
2115 return error_mark_node;
2116 }
2117
2118 /* We have one, and exactly one, match. */
2119 if (candidates)
2120 {
2121 tree fn = TREE_VALUE (candidates);
2122 *targs_out = copy_node (DECL_TI_ARGS (fn));
2123 /* DECL is a re-declaration or partial instantiation of a template
2124 function. */
2125 if (TREE_CODE (fn) == TEMPLATE_DECL)
2126 return fn;
2127 /* It was a specialization of an ordinary member function in a
2128 template class. */
2129 return DECL_TI_TEMPLATE (fn);
2130 }
2131
2132 /* It was a specialization of a template. */
2133 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2134 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2135 {
2136 *targs_out = copy_node (targs);
2137 SET_TMPL_ARGS_LEVEL (*targs_out,
2138 TMPL_ARGS_DEPTH (*targs_out),
2139 TREE_PURPOSE (templates));
2140 }
2141 else
2142 *targs_out = TREE_PURPOSE (templates);
2143 return TREE_VALUE (templates);
2144 }
2145
2146 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2147 but with the default argument values filled in from those in the
2148 TMPL_TYPES. */
2149
2150 static tree
2151 copy_default_args_to_explicit_spec_1 (tree spec_types,
2152 tree tmpl_types)
2153 {
2154 tree new_spec_types;
2155
2156 if (!spec_types)
2157 return NULL_TREE;
2158
2159 if (spec_types == void_list_node)
2160 return void_list_node;
2161
2162 /* Substitute into the rest of the list. */
2163 new_spec_types =
2164 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2165 TREE_CHAIN (tmpl_types));
2166
2167 /* Add the default argument for this parameter. */
2168 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2169 TREE_VALUE (spec_types),
2170 new_spec_types);
2171 }
2172
2173 /* DECL is an explicit specialization. Replicate default arguments
2174 from the template it specializes. (That way, code like:
2175
2176 template <class T> void f(T = 3);
2177 template <> void f(double);
2178 void g () { f (); }
2179
2180 works, as required.) An alternative approach would be to look up
2181 the correct default arguments at the call-site, but this approach
2182 is consistent with how implicit instantiations are handled. */
2183
2184 static void
2185 copy_default_args_to_explicit_spec (tree decl)
2186 {
2187 tree tmpl;
2188 tree spec_types;
2189 tree tmpl_types;
2190 tree new_spec_types;
2191 tree old_type;
2192 tree new_type;
2193 tree t;
2194 tree object_type = NULL_TREE;
2195 tree in_charge = NULL_TREE;
2196 tree vtt = NULL_TREE;
2197
2198 /* See if there's anything we need to do. */
2199 tmpl = DECL_TI_TEMPLATE (decl);
2200 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2201 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2202 if (TREE_PURPOSE (t))
2203 break;
2204 if (!t)
2205 return;
2206
2207 old_type = TREE_TYPE (decl);
2208 spec_types = TYPE_ARG_TYPES (old_type);
2209
2210 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2211 {
2212 /* Remove the this pointer, but remember the object's type for
2213 CV quals. */
2214 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2215 spec_types = TREE_CHAIN (spec_types);
2216 tmpl_types = TREE_CHAIN (tmpl_types);
2217
2218 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2219 {
2220 /* DECL may contain more parameters than TMPL due to the extra
2221 in-charge parameter in constructors and destructors. */
2222 in_charge = spec_types;
2223 spec_types = TREE_CHAIN (spec_types);
2224 }
2225 if (DECL_HAS_VTT_PARM_P (decl))
2226 {
2227 vtt = spec_types;
2228 spec_types = TREE_CHAIN (spec_types);
2229 }
2230 }
2231
2232 /* Compute the merged default arguments. */
2233 new_spec_types =
2234 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2235
2236 /* Compute the new FUNCTION_TYPE. */
2237 if (object_type)
2238 {
2239 if (vtt)
2240 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2241 TREE_VALUE (vtt),
2242 new_spec_types);
2243
2244 if (in_charge)
2245 /* Put the in-charge parameter back. */
2246 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2247 TREE_VALUE (in_charge),
2248 new_spec_types);
2249
2250 new_type = build_method_type_directly (object_type,
2251 TREE_TYPE (old_type),
2252 new_spec_types);
2253 }
2254 else
2255 new_type = build_function_type (TREE_TYPE (old_type),
2256 new_spec_types);
2257 new_type = cp_build_type_attribute_variant (new_type,
2258 TYPE_ATTRIBUTES (old_type));
2259 new_type = build_exception_variant (new_type,
2260 TYPE_RAISES_EXCEPTIONS (old_type));
2261
2262 if (TYPE_HAS_LATE_RETURN_TYPE (old_type))
2263 TYPE_HAS_LATE_RETURN_TYPE (new_type) = 1;
2264
2265 TREE_TYPE (decl) = new_type;
2266 }
2267
2268 /* Return the number of template headers we expect to see for a definition
2269 or specialization of CTYPE or one of its non-template members. */
2270
2271 int
2272 num_template_headers_for_class (tree ctype)
2273 {
2274 int num_templates = 0;
2275
2276 while (ctype && CLASS_TYPE_P (ctype))
2277 {
2278 /* You're supposed to have one `template <...>' for every
2279 template class, but you don't need one for a full
2280 specialization. For example:
2281
2282 template <class T> struct S{};
2283 template <> struct S<int> { void f(); };
2284 void S<int>::f () {}
2285
2286 is correct; there shouldn't be a `template <>' for the
2287 definition of `S<int>::f'. */
2288 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2289 /* If CTYPE does not have template information of any
2290 kind, then it is not a template, nor is it nested
2291 within a template. */
2292 break;
2293 if (explicit_class_specialization_p (ctype))
2294 break;
2295 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2296 ++num_templates;
2297
2298 ctype = TYPE_CONTEXT (ctype);
2299 }
2300
2301 return num_templates;
2302 }
2303
2304 /* Do a simple sanity check on the template headers that precede the
2305 variable declaration DECL. */
2306
2307 void
2308 check_template_variable (tree decl)
2309 {
2310 tree ctx = CP_DECL_CONTEXT (decl);
2311 int wanted = num_template_headers_for_class (ctx);
2312 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
2313 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2314 {
2315 if (cxx_dialect < cxx14)
2316 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2317 "variable templates only available with "
2318 "-std=c++14 or -std=gnu++14");
2319
2320 // Namespace-scope variable templates should have a template header.
2321 ++wanted;
2322 }
2323 if (template_header_count > wanted)
2324 {
2325 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2326 "too many template headers for %D (should be %d)",
2327 decl, wanted);
2328 if (warned && CLASS_TYPE_P (ctx)
2329 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2330 inform (DECL_SOURCE_LOCATION (decl),
2331 "members of an explicitly specialized class are defined "
2332 "without a template header");
2333 }
2334 }
2335
2336 /* Check to see if the function just declared, as indicated in
2337 DECLARATOR, and in DECL, is a specialization of a function
2338 template. We may also discover that the declaration is an explicit
2339 instantiation at this point.
2340
2341 Returns DECL, or an equivalent declaration that should be used
2342 instead if all goes well. Issues an error message if something is
2343 amiss. Returns error_mark_node if the error is not easily
2344 recoverable.
2345
2346 FLAGS is a bitmask consisting of the following flags:
2347
2348 2: The function has a definition.
2349 4: The function is a friend.
2350
2351 The TEMPLATE_COUNT is the number of references to qualifying
2352 template classes that appeared in the name of the function. For
2353 example, in
2354
2355 template <class T> struct S { void f(); };
2356 void S<int>::f();
2357
2358 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2359 classes are not counted in the TEMPLATE_COUNT, so that in
2360
2361 template <class T> struct S {};
2362 template <> struct S<int> { void f(); }
2363 template <> void S<int>::f();
2364
2365 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2366 invalid; there should be no template <>.)
2367
2368 If the function is a specialization, it is marked as such via
2369 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2370 is set up correctly, and it is added to the list of specializations
2371 for that template. */
2372
2373 tree
2374 check_explicit_specialization (tree declarator,
2375 tree decl,
2376 int template_count,
2377 int flags)
2378 {
2379 int have_def = flags & 2;
2380 int is_friend = flags & 4;
2381 int specialization = 0;
2382 int explicit_instantiation = 0;
2383 int member_specialization = 0;
2384 tree ctype = DECL_CLASS_CONTEXT (decl);
2385 tree dname = DECL_NAME (decl);
2386 tmpl_spec_kind tsk;
2387
2388 if (is_friend)
2389 {
2390 if (!processing_specialization)
2391 tsk = tsk_none;
2392 else
2393 tsk = tsk_excessive_parms;
2394 }
2395 else
2396 tsk = current_tmpl_spec_kind (template_count);
2397
2398 switch (tsk)
2399 {
2400 case tsk_none:
2401 if (processing_specialization)
2402 {
2403 specialization = 1;
2404 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2405 }
2406 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2407 {
2408 if (is_friend)
2409 /* This could be something like:
2410
2411 template <class T> void f(T);
2412 class S { friend void f<>(int); } */
2413 specialization = 1;
2414 else
2415 {
2416 /* This case handles bogus declarations like template <>
2417 template <class T> void f<int>(); */
2418
2419 error ("template-id %qD in declaration of primary template",
2420 declarator);
2421 return decl;
2422 }
2423 }
2424 break;
2425
2426 case tsk_invalid_member_spec:
2427 /* The error has already been reported in
2428 check_specialization_scope. */
2429 return error_mark_node;
2430
2431 case tsk_invalid_expl_inst:
2432 error ("template parameter list used in explicit instantiation");
2433
2434 /* Fall through. */
2435
2436 case tsk_expl_inst:
2437 if (have_def)
2438 error ("definition provided for explicit instantiation");
2439
2440 explicit_instantiation = 1;
2441 break;
2442
2443 case tsk_excessive_parms:
2444 case tsk_insufficient_parms:
2445 if (tsk == tsk_excessive_parms)
2446 error ("too many template parameter lists in declaration of %qD",
2447 decl);
2448 else if (template_header_count)
2449 error("too few template parameter lists in declaration of %qD", decl);
2450 else
2451 error("explicit specialization of %qD must be introduced by "
2452 "%<template <>%>", decl);
2453
2454 /* Fall through. */
2455 case tsk_expl_spec:
2456 if (VAR_P (decl) && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2457 /* In cases like template<> constexpr bool v = true;
2458 We'll give an error in check_template_variable. */
2459 break;
2460
2461 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2462 if (ctype)
2463 member_specialization = 1;
2464 else
2465 specialization = 1;
2466 break;
2467
2468 case tsk_template:
2469 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2470 {
2471 /* This case handles bogus declarations like template <>
2472 template <class T> void f<int>(); */
2473
2474 if (uses_template_parms (declarator))
2475 error ("non-type partial specialization %qD "
2476 "is not allowed", declarator);
2477 else
2478 error ("template-id %qD in declaration of primary template",
2479 declarator);
2480 return decl;
2481 }
2482
2483 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2484 /* This is a specialization of a member template, without
2485 specialization the containing class. Something like:
2486
2487 template <class T> struct S {
2488 template <class U> void f (U);
2489 };
2490 template <> template <class U> void S<int>::f(U) {}
2491
2492 That's a specialization -- but of the entire template. */
2493 specialization = 1;
2494 break;
2495
2496 default:
2497 gcc_unreachable ();
2498 }
2499
2500 if ((specialization || member_specialization)
2501 /* This doesn't apply to variable templates. */
2502 && (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE
2503 || TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE))
2504 {
2505 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2506 for (; t; t = TREE_CHAIN (t))
2507 if (TREE_PURPOSE (t))
2508 {
2509 permerror (input_location,
2510 "default argument specified in explicit specialization");
2511 break;
2512 }
2513 }
2514
2515 if (specialization || member_specialization || explicit_instantiation)
2516 {
2517 tree tmpl = NULL_TREE;
2518 tree targs = NULL_TREE;
2519
2520 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2521 if (TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2522 {
2523 tree fns;
2524
2525 gcc_assert (identifier_p (declarator));
2526 if (ctype)
2527 fns = dname;
2528 else
2529 {
2530 /* If there is no class context, the explicit instantiation
2531 must be at namespace scope. */
2532 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2533
2534 /* Find the namespace binding, using the declaration
2535 context. */
2536 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2537 false, true);
2538 if (fns == error_mark_node || !is_overloaded_fn (fns))
2539 {
2540 error ("%qD is not a template function", dname);
2541 fns = error_mark_node;
2542 }
2543 else
2544 {
2545 tree fn = OVL_CURRENT (fns);
2546 if (!is_associated_namespace (CP_DECL_CONTEXT (decl),
2547 CP_DECL_CONTEXT (fn)))
2548 error ("%qD is not declared in %qD",
2549 decl, current_namespace);
2550 }
2551 }
2552
2553 declarator = lookup_template_function (fns, NULL_TREE);
2554 }
2555
2556 if (declarator == error_mark_node)
2557 return error_mark_node;
2558
2559 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2560 {
2561 if (!explicit_instantiation)
2562 /* A specialization in class scope. This is invalid,
2563 but the error will already have been flagged by
2564 check_specialization_scope. */
2565 return error_mark_node;
2566 else
2567 {
2568 /* It's not valid to write an explicit instantiation in
2569 class scope, e.g.:
2570
2571 class C { template void f(); }
2572
2573 This case is caught by the parser. However, on
2574 something like:
2575
2576 template class C { void f(); };
2577
2578 (which is invalid) we can get here. The error will be
2579 issued later. */
2580 ;
2581 }
2582
2583 return decl;
2584 }
2585 else if (ctype != NULL_TREE
2586 && (identifier_p (TREE_OPERAND (declarator, 0))))
2587 {
2588 // Ignore variable templates.
2589 if (VAR_P (decl))
2590 return decl;
2591
2592 /* Find the list of functions in ctype that have the same
2593 name as the declared function. */
2594 tree name = TREE_OPERAND (declarator, 0);
2595 tree fns = NULL_TREE;
2596 int idx;
2597
2598 if (constructor_name_p (name, ctype))
2599 {
2600 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2601
2602 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2603 : !CLASSTYPE_DESTRUCTORS (ctype))
2604 {
2605 /* From [temp.expl.spec]:
2606
2607 If such an explicit specialization for the member
2608 of a class template names an implicitly-declared
2609 special member function (clause _special_), the
2610 program is ill-formed.
2611
2612 Similar language is found in [temp.explicit]. */
2613 error ("specialization of implicitly-declared special member function");
2614 return error_mark_node;
2615 }
2616
2617 name = is_constructor ? ctor_identifier : dtor_identifier;
2618 }
2619
2620 if (!DECL_CONV_FN_P (decl))
2621 {
2622 idx = lookup_fnfields_1 (ctype, name);
2623 if (idx >= 0)
2624 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2625 }
2626 else
2627 {
2628 vec<tree, va_gc> *methods;
2629 tree ovl;
2630
2631 /* For a type-conversion operator, we cannot do a
2632 name-based lookup. We might be looking for `operator
2633 int' which will be a specialization of `operator T'.
2634 So, we find *all* the conversion operators, and then
2635 select from them. */
2636 fns = NULL_TREE;
2637
2638 methods = CLASSTYPE_METHOD_VEC (ctype);
2639 if (methods)
2640 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2641 methods->iterate (idx, &ovl);
2642 ++idx)
2643 {
2644 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2645 /* There are no more conversion functions. */
2646 break;
2647
2648 /* Glue all these conversion functions together
2649 with those we already have. */
2650 for (; ovl; ovl = OVL_NEXT (ovl))
2651 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2652 }
2653 }
2654
2655 if (fns == NULL_TREE)
2656 {
2657 error ("no member function %qD declared in %qT", name, ctype);
2658 return error_mark_node;
2659 }
2660 else
2661 TREE_OPERAND (declarator, 0) = fns;
2662 }
2663
2664 /* Figure out what exactly is being specialized at this point.
2665 Note that for an explicit instantiation, even one for a
2666 member function, we cannot tell apriori whether the
2667 instantiation is for a member template, or just a member
2668 function of a template class. Even if a member template is
2669 being instantiated, the member template arguments may be
2670 elided if they can be deduced from the rest of the
2671 declaration. */
2672 tmpl = determine_specialization (declarator, decl,
2673 &targs,
2674 member_specialization,
2675 template_count,
2676 tsk);
2677
2678 if (!tmpl || tmpl == error_mark_node)
2679 /* We couldn't figure out what this declaration was
2680 specializing. */
2681 return error_mark_node;
2682 else
2683 {
2684 tree gen_tmpl = most_general_template (tmpl);
2685
2686 if (explicit_instantiation)
2687 {
2688 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2689 is done by do_decl_instantiation later. */
2690
2691 int arg_depth = TMPL_ARGS_DEPTH (targs);
2692 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2693
2694 if (arg_depth > parm_depth)
2695 {
2696 /* If TMPL is not the most general template (for
2697 example, if TMPL is a friend template that is
2698 injected into namespace scope), then there will
2699 be too many levels of TARGS. Remove some of them
2700 here. */
2701 int i;
2702 tree new_targs;
2703
2704 new_targs = make_tree_vec (parm_depth);
2705 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2706 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2707 = TREE_VEC_ELT (targs, i);
2708 targs = new_targs;
2709 }
2710
2711 return instantiate_template (tmpl, targs, tf_error);
2712 }
2713
2714 /* If we thought that the DECL was a member function, but it
2715 turns out to be specializing a static member function,
2716 make DECL a static member function as well. */
2717 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
2718 && DECL_STATIC_FUNCTION_P (tmpl)
2719 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2720 revert_static_member_fn (decl);
2721
2722 /* If this is a specialization of a member template of a
2723 template class, we want to return the TEMPLATE_DECL, not
2724 the specialization of it. */
2725 if (tsk == tsk_template)
2726 {
2727 tree result = DECL_TEMPLATE_RESULT (tmpl);
2728 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2729 DECL_INITIAL (result) = NULL_TREE;
2730 if (have_def)
2731 {
2732 tree parm;
2733 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
2734 DECL_SOURCE_LOCATION (result)
2735 = DECL_SOURCE_LOCATION (decl);
2736 /* We want to use the argument list specified in the
2737 definition, not in the original declaration. */
2738 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
2739 for (parm = DECL_ARGUMENTS (result); parm;
2740 parm = DECL_CHAIN (parm))
2741 DECL_CONTEXT (parm) = result;
2742 }
2743 return register_specialization (tmpl, gen_tmpl, targs,
2744 is_friend, 0);
2745 }
2746
2747 /* Set up the DECL_TEMPLATE_INFO for DECL. */
2748 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
2749
2750 /* Inherit default function arguments from the template
2751 DECL is specializing. */
2752 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
2753 copy_default_args_to_explicit_spec (decl);
2754
2755 /* This specialization has the same protection as the
2756 template it specializes. */
2757 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
2758 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
2759
2760 /* 7.1.1-1 [dcl.stc]
2761
2762 A storage-class-specifier shall not be specified in an
2763 explicit specialization...
2764
2765 The parser rejects these, so unless action is taken here,
2766 explicit function specializations will always appear with
2767 global linkage.
2768
2769 The action recommended by the C++ CWG in response to C++
2770 defect report 605 is to make the storage class and linkage
2771 of the explicit specialization match the templated function:
2772
2773 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
2774 */
2775 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
2776 {
2777 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
2778 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
2779
2780 /* This specialization has the same linkage and visibility as
2781 the function template it specializes. */
2782 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
2783 if (! TREE_PUBLIC (decl))
2784 {
2785 DECL_INTERFACE_KNOWN (decl) = 1;
2786 DECL_NOT_REALLY_EXTERN (decl) = 1;
2787 }
2788 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
2789 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
2790 {
2791 DECL_VISIBILITY_SPECIFIED (decl) = 1;
2792 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
2793 }
2794 }
2795
2796 /* If DECL is a friend declaration, declared using an
2797 unqualified name, the namespace associated with DECL may
2798 have been set incorrectly. For example, in:
2799
2800 template <typename T> void f(T);
2801 namespace N {
2802 struct S { friend void f<int>(int); }
2803 }
2804
2805 we will have set the DECL_CONTEXT for the friend
2806 declaration to N, rather than to the global namespace. */
2807 if (DECL_NAMESPACE_SCOPE_P (decl))
2808 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
2809
2810 if (is_friend && !have_def)
2811 /* This is not really a declaration of a specialization.
2812 It's just the name of an instantiation. But, it's not
2813 a request for an instantiation, either. */
2814 SET_DECL_IMPLICIT_INSTANTIATION (decl);
2815 else if (TREE_CODE (decl) == FUNCTION_DECL)
2816 /* A specialization is not necessarily COMDAT. */
2817 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
2818 && DECL_DECLARED_INLINE_P (decl));
2819 else if (TREE_CODE (decl) == VAR_DECL)
2820 DECL_COMDAT (decl) = false;
2821
2822 /* Register this specialization so that we can find it
2823 again. */
2824 decl = register_specialization (decl, gen_tmpl, targs, is_friend, 0);
2825
2826 /* A 'structor should already have clones. */
2827 gcc_assert (decl == error_mark_node
2828 || variable_template_p (tmpl)
2829 || !(DECL_CONSTRUCTOR_P (decl)
2830 || DECL_DESTRUCTOR_P (decl))
2831 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
2832 }
2833 }
2834
2835 return decl;
2836 }
2837
2838 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
2839 parameters. These are represented in the same format used for
2840 DECL_TEMPLATE_PARMS. */
2841
2842 int
2843 comp_template_parms (const_tree parms1, const_tree parms2)
2844 {
2845 const_tree p1;
2846 const_tree p2;
2847
2848 if (parms1 == parms2)
2849 return 1;
2850
2851 for (p1 = parms1, p2 = parms2;
2852 p1 != NULL_TREE && p2 != NULL_TREE;
2853 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
2854 {
2855 tree t1 = TREE_VALUE (p1);
2856 tree t2 = TREE_VALUE (p2);
2857 int i;
2858
2859 gcc_assert (TREE_CODE (t1) == TREE_VEC);
2860 gcc_assert (TREE_CODE (t2) == TREE_VEC);
2861
2862 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2863 return 0;
2864
2865 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
2866 {
2867 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
2868 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
2869
2870 /* If either of the template parameters are invalid, assume
2871 they match for the sake of error recovery. */
2872 if (error_operand_p (parm1) || error_operand_p (parm2))
2873 return 1;
2874
2875 if (TREE_CODE (parm1) != TREE_CODE (parm2))
2876 return 0;
2877
2878 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
2879 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
2880 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
2881 continue;
2882 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
2883 return 0;
2884 }
2885 }
2886
2887 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
2888 /* One set of parameters has more parameters lists than the
2889 other. */
2890 return 0;
2891
2892 return 1;
2893 }
2894
2895 /* Determine whether PARM is a parameter pack. */
2896
2897 bool
2898 template_parameter_pack_p (const_tree parm)
2899 {
2900 /* Determine if we have a non-type template parameter pack. */
2901 if (TREE_CODE (parm) == PARM_DECL)
2902 return (DECL_TEMPLATE_PARM_P (parm)
2903 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
2904 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
2905 return TEMPLATE_PARM_PARAMETER_PACK (parm);
2906
2907 /* If this is a list of template parameters, we could get a
2908 TYPE_DECL or a TEMPLATE_DECL. */
2909 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
2910 parm = TREE_TYPE (parm);
2911
2912 /* Otherwise it must be a type template parameter. */
2913 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
2914 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
2915 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
2916 }
2917
2918 /* Determine if T is a function parameter pack. */
2919
2920 bool
2921 function_parameter_pack_p (const_tree t)
2922 {
2923 if (t && TREE_CODE (t) == PARM_DECL)
2924 return DECL_PACK_P (t);
2925 return false;
2926 }
2927
2928 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
2929 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
2930
2931 tree
2932 get_function_template_decl (const_tree primary_func_tmpl_inst)
2933 {
2934 if (! primary_func_tmpl_inst
2935 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
2936 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
2937 return NULL;
2938
2939 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
2940 }
2941
2942 /* Return true iff the function parameter PARAM_DECL was expanded
2943 from the function parameter pack PACK. */
2944
2945 bool
2946 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
2947 {
2948 if (DECL_ARTIFICIAL (param_decl)
2949 || !function_parameter_pack_p (pack))
2950 return false;
2951
2952 /* The parameter pack and its pack arguments have the same
2953 DECL_PARM_INDEX. */
2954 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
2955 }
2956
2957 /* Determine whether ARGS describes a variadic template args list,
2958 i.e., one that is terminated by a template argument pack. */
2959
2960 static bool
2961 template_args_variadic_p (tree args)
2962 {
2963 int nargs;
2964 tree last_parm;
2965
2966 if (args == NULL_TREE)
2967 return false;
2968
2969 args = INNERMOST_TEMPLATE_ARGS (args);
2970 nargs = TREE_VEC_LENGTH (args);
2971
2972 if (nargs == 0)
2973 return false;
2974
2975 last_parm = TREE_VEC_ELT (args, nargs - 1);
2976
2977 return ARGUMENT_PACK_P (last_parm);
2978 }
2979
2980 /* Generate a new name for the parameter pack name NAME (an
2981 IDENTIFIER_NODE) that incorporates its */
2982
2983 static tree
2984 make_ith_pack_parameter_name (tree name, int i)
2985 {
2986 /* Munge the name to include the parameter index. */
2987 #define NUMBUF_LEN 128
2988 char numbuf[NUMBUF_LEN];
2989 char* newname;
2990 int newname_len;
2991
2992 if (name == NULL_TREE)
2993 return name;
2994 snprintf (numbuf, NUMBUF_LEN, "%i", i);
2995 newname_len = IDENTIFIER_LENGTH (name)
2996 + strlen (numbuf) + 2;
2997 newname = (char*)alloca (newname_len);
2998 snprintf (newname, newname_len,
2999 "%s#%i", IDENTIFIER_POINTER (name), i);
3000 return get_identifier (newname);
3001 }
3002
3003 /* Return true if T is a primary function, class or alias template
3004 instantiation. */
3005
3006 bool
3007 primary_template_instantiation_p (const_tree t)
3008 {
3009 if (!t)
3010 return false;
3011
3012 if (TREE_CODE (t) == FUNCTION_DECL)
3013 return DECL_LANG_SPECIFIC (t)
3014 && DECL_TEMPLATE_INSTANTIATION (t)
3015 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
3016 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3017 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
3018 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
3019 else if (alias_template_specialization_p (t))
3020 return true;
3021 return false;
3022 }
3023
3024 /* Return true if PARM is a template template parameter. */
3025
3026 bool
3027 template_template_parameter_p (const_tree parm)
3028 {
3029 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
3030 }
3031
3032 /* Return true iff PARM is a DECL representing a type template
3033 parameter. */
3034
3035 bool
3036 template_type_parameter_p (const_tree parm)
3037 {
3038 return (parm
3039 && (TREE_CODE (parm) == TYPE_DECL
3040 || TREE_CODE (parm) == TEMPLATE_DECL)
3041 && DECL_TEMPLATE_PARM_P (parm));
3042 }
3043
3044 /* Return the template parameters of T if T is a
3045 primary template instantiation, NULL otherwise. */
3046
3047 tree
3048 get_primary_template_innermost_parameters (const_tree t)
3049 {
3050 tree parms = NULL, template_info = NULL;
3051
3052 if ((template_info = get_template_info (t))
3053 && primary_template_instantiation_p (t))
3054 parms = INNERMOST_TEMPLATE_PARMS
3055 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3056
3057 return parms;
3058 }
3059
3060 /* Return the template parameters of the LEVELth level from the full list
3061 of template parameters PARMS. */
3062
3063 tree
3064 get_template_parms_at_level (tree parms, int level)
3065 {
3066 tree p;
3067 if (!parms
3068 || TREE_CODE (parms) != TREE_LIST
3069 || level > TMPL_PARMS_DEPTH (parms))
3070 return NULL_TREE;
3071
3072 for (p = parms; p; p = TREE_CHAIN (p))
3073 if (TMPL_PARMS_DEPTH (p) == level)
3074 return p;
3075
3076 return NULL_TREE;
3077 }
3078
3079 /* Returns the template arguments of T if T is a template instantiation,
3080 NULL otherwise. */
3081
3082 tree
3083 get_template_innermost_arguments (const_tree t)
3084 {
3085 tree args = NULL, template_info = NULL;
3086
3087 if ((template_info = get_template_info (t))
3088 && TI_ARGS (template_info))
3089 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3090
3091 return args;
3092 }
3093
3094 /* Return the argument pack elements of T if T is a template argument pack,
3095 NULL otherwise. */
3096
3097 tree
3098 get_template_argument_pack_elems (const_tree t)
3099 {
3100 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3101 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3102 return NULL;
3103
3104 return ARGUMENT_PACK_ARGS (t);
3105 }
3106
3107 /* Structure used to track the progress of find_parameter_packs_r. */
3108 struct find_parameter_pack_data
3109 {
3110 /* TREE_LIST that will contain all of the parameter packs found by
3111 the traversal. */
3112 tree* parameter_packs;
3113
3114 /* Set of AST nodes that have been visited by the traversal. */
3115 hash_set<tree> *visited;
3116 };
3117
3118 /* Identifies all of the argument packs that occur in a template
3119 argument and appends them to the TREE_LIST inside DATA, which is a
3120 find_parameter_pack_data structure. This is a subroutine of
3121 make_pack_expansion and uses_parameter_packs. */
3122 static tree
3123 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3124 {
3125 tree t = *tp;
3126 struct find_parameter_pack_data* ppd =
3127 (struct find_parameter_pack_data*)data;
3128 bool parameter_pack_p = false;
3129
3130 /* Handle type aliases/typedefs. */
3131 if (TYPE_ALIAS_P (t))
3132 {
3133 if (TYPE_TEMPLATE_INFO (t))
3134 cp_walk_tree (&TYPE_TI_ARGS (t),
3135 &find_parameter_packs_r,
3136 ppd, ppd->visited);
3137 *walk_subtrees = 0;
3138 return NULL_TREE;
3139 }
3140
3141 /* Identify whether this is a parameter pack or not. */
3142 switch (TREE_CODE (t))
3143 {
3144 case TEMPLATE_PARM_INDEX:
3145 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3146 parameter_pack_p = true;
3147 break;
3148
3149 case TEMPLATE_TYPE_PARM:
3150 t = TYPE_MAIN_VARIANT (t);
3151 case TEMPLATE_TEMPLATE_PARM:
3152 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3153 parameter_pack_p = true;
3154 break;
3155
3156 case FIELD_DECL:
3157 case PARM_DECL:
3158 if (DECL_PACK_P (t))
3159 {
3160 /* We don't want to walk into the type of a PARM_DECL,
3161 because we don't want to see the type parameter pack. */
3162 *walk_subtrees = 0;
3163 parameter_pack_p = true;
3164 }
3165 break;
3166
3167 /* Look through a lambda capture proxy to the field pack. */
3168 case VAR_DECL:
3169 if (DECL_HAS_VALUE_EXPR_P (t))
3170 {
3171 tree v = DECL_VALUE_EXPR (t);
3172 cp_walk_tree (&v,
3173 &find_parameter_packs_r,
3174 ppd, ppd->visited);
3175 *walk_subtrees = 0;
3176 }
3177 break;
3178
3179 case BASES:
3180 parameter_pack_p = true;
3181 break;
3182 default:
3183 /* Not a parameter pack. */
3184 break;
3185 }
3186
3187 if (parameter_pack_p)
3188 {
3189 /* Add this parameter pack to the list. */
3190 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3191 }
3192
3193 if (TYPE_P (t))
3194 cp_walk_tree (&TYPE_CONTEXT (t),
3195 &find_parameter_packs_r, ppd, ppd->visited);
3196
3197 /* This switch statement will return immediately if we don't find a
3198 parameter pack. */
3199 switch (TREE_CODE (t))
3200 {
3201 case TEMPLATE_PARM_INDEX:
3202 return NULL_TREE;
3203
3204 case BOUND_TEMPLATE_TEMPLATE_PARM:
3205 /* Check the template itself. */
3206 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3207 &find_parameter_packs_r, ppd, ppd->visited);
3208 /* Check the template arguments. */
3209 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3210 ppd->visited);
3211 *walk_subtrees = 0;
3212 return NULL_TREE;
3213
3214 case TEMPLATE_TYPE_PARM:
3215 case TEMPLATE_TEMPLATE_PARM:
3216 return NULL_TREE;
3217
3218 case PARM_DECL:
3219 return NULL_TREE;
3220
3221 case RECORD_TYPE:
3222 if (TYPE_PTRMEMFUNC_P (t))
3223 return NULL_TREE;
3224 /* Fall through. */
3225
3226 case UNION_TYPE:
3227 case ENUMERAL_TYPE:
3228 if (TYPE_TEMPLATE_INFO (t))
3229 cp_walk_tree (&TYPE_TI_ARGS (t),
3230 &find_parameter_packs_r, ppd, ppd->visited);
3231
3232 *walk_subtrees = 0;
3233 return NULL_TREE;
3234
3235 case CONSTRUCTOR:
3236 case TEMPLATE_DECL:
3237 cp_walk_tree (&TREE_TYPE (t),
3238 &find_parameter_packs_r, ppd, ppd->visited);
3239 return NULL_TREE;
3240
3241 case TYPENAME_TYPE:
3242 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3243 ppd, ppd->visited);
3244 *walk_subtrees = 0;
3245 return NULL_TREE;
3246
3247 case TYPE_PACK_EXPANSION:
3248 case EXPR_PACK_EXPANSION:
3249 *walk_subtrees = 0;
3250 return NULL_TREE;
3251
3252 case INTEGER_TYPE:
3253 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3254 ppd, ppd->visited);
3255 *walk_subtrees = 0;
3256 return NULL_TREE;
3257
3258 case IDENTIFIER_NODE:
3259 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3260 ppd->visited);
3261 *walk_subtrees = 0;
3262 return NULL_TREE;
3263
3264 default:
3265 return NULL_TREE;
3266 }
3267
3268 return NULL_TREE;
3269 }
3270
3271 /* Determines if the expression or type T uses any parameter packs. */
3272 bool
3273 uses_parameter_packs (tree t)
3274 {
3275 tree parameter_packs = NULL_TREE;
3276 struct find_parameter_pack_data ppd;
3277 ppd.parameter_packs = &parameter_packs;
3278 ppd.visited = new hash_set<tree>;
3279 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3280 delete ppd.visited;
3281 return parameter_packs != NULL_TREE;
3282 }
3283
3284 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3285 representation a base-class initializer into a parameter pack
3286 expansion. If all goes well, the resulting node will be an
3287 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3288 respectively. */
3289 tree
3290 make_pack_expansion (tree arg)
3291 {
3292 tree result;
3293 tree parameter_packs = NULL_TREE;
3294 bool for_types = false;
3295 struct find_parameter_pack_data ppd;
3296
3297 if (!arg || arg == error_mark_node)
3298 return arg;
3299
3300 if (TREE_CODE (arg) == TREE_LIST)
3301 {
3302 /* The only time we will see a TREE_LIST here is for a base
3303 class initializer. In this case, the TREE_PURPOSE will be a
3304 _TYPE node (representing the base class expansion we're
3305 initializing) and the TREE_VALUE will be a TREE_LIST
3306 containing the initialization arguments.
3307
3308 The resulting expansion looks somewhat different from most
3309 expansions. Rather than returning just one _EXPANSION, we
3310 return a TREE_LIST whose TREE_PURPOSE is a
3311 TYPE_PACK_EXPANSION containing the bases that will be
3312 initialized. The TREE_VALUE will be identical to the
3313 original TREE_VALUE, which is a list of arguments that will
3314 be passed to each base. We do not introduce any new pack
3315 expansion nodes into the TREE_VALUE (although it is possible
3316 that some already exist), because the TREE_PURPOSE and
3317 TREE_VALUE all need to be expanded together with the same
3318 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3319 resulting TREE_PURPOSE will mention the parameter packs in
3320 both the bases and the arguments to the bases. */
3321 tree purpose;
3322 tree value;
3323 tree parameter_packs = NULL_TREE;
3324
3325 /* Determine which parameter packs will be used by the base
3326 class expansion. */
3327 ppd.visited = new hash_set<tree>;
3328 ppd.parameter_packs = &parameter_packs;
3329 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3330 &ppd, ppd.visited);
3331
3332 if (parameter_packs == NULL_TREE)
3333 {
3334 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3335 delete ppd.visited;
3336 return error_mark_node;
3337 }
3338
3339 if (TREE_VALUE (arg) != void_type_node)
3340 {
3341 /* Collect the sets of parameter packs used in each of the
3342 initialization arguments. */
3343 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3344 {
3345 /* Determine which parameter packs will be expanded in this
3346 argument. */
3347 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3348 &ppd, ppd.visited);
3349 }
3350 }
3351
3352 delete ppd.visited;
3353
3354 /* Create the pack expansion type for the base type. */
3355 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3356 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3357 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3358
3359 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3360 they will rarely be compared to anything. */
3361 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3362
3363 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3364 }
3365
3366 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3367 for_types = true;
3368
3369 /* Build the PACK_EXPANSION_* node. */
3370 result = for_types
3371 ? cxx_make_type (TYPE_PACK_EXPANSION)
3372 : make_node (EXPR_PACK_EXPANSION);
3373 SET_PACK_EXPANSION_PATTERN (result, arg);
3374 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3375 {
3376 /* Propagate type and const-expression information. */
3377 TREE_TYPE (result) = TREE_TYPE (arg);
3378 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3379 }
3380 else
3381 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3382 they will rarely be compared to anything. */
3383 SET_TYPE_STRUCTURAL_EQUALITY (result);
3384
3385 /* Determine which parameter packs will be expanded. */
3386 ppd.parameter_packs = &parameter_packs;
3387 ppd.visited = new hash_set<tree>;
3388 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3389 delete ppd.visited;
3390
3391 /* Make sure we found some parameter packs. */
3392 if (parameter_packs == NULL_TREE)
3393 {
3394 if (TYPE_P (arg))
3395 error ("expansion pattern %<%T%> contains no argument packs", arg);
3396 else
3397 error ("expansion pattern %<%E%> contains no argument packs", arg);
3398 return error_mark_node;
3399 }
3400 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3401
3402 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3403
3404 return result;
3405 }
3406
3407 /* Checks T for any "bare" parameter packs, which have not yet been
3408 expanded, and issues an error if any are found. This operation can
3409 only be done on full expressions or types (e.g., an expression
3410 statement, "if" condition, etc.), because we could have expressions like:
3411
3412 foo(f(g(h(args)))...)
3413
3414 where "args" is a parameter pack. check_for_bare_parameter_packs
3415 should not be called for the subexpressions args, h(args),
3416 g(h(args)), or f(g(h(args))), because we would produce erroneous
3417 error messages.
3418
3419 Returns TRUE and emits an error if there were bare parameter packs,
3420 returns FALSE otherwise. */
3421 bool
3422 check_for_bare_parameter_packs (tree t)
3423 {
3424 tree parameter_packs = NULL_TREE;
3425 struct find_parameter_pack_data ppd;
3426
3427 if (!processing_template_decl || !t || t == error_mark_node)
3428 return false;
3429
3430 if (TREE_CODE (t) == TYPE_DECL)
3431 t = TREE_TYPE (t);
3432
3433 ppd.parameter_packs = &parameter_packs;
3434 ppd.visited = new hash_set<tree>;
3435 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3436 delete ppd.visited;
3437
3438 if (parameter_packs)
3439 {
3440 error ("parameter packs not expanded with %<...%>:");
3441 while (parameter_packs)
3442 {
3443 tree pack = TREE_VALUE (parameter_packs);
3444 tree name = NULL_TREE;
3445
3446 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3447 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3448 name = TYPE_NAME (pack);
3449 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3450 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3451 else
3452 name = DECL_NAME (pack);
3453
3454 if (name)
3455 inform (input_location, " %qD", name);
3456 else
3457 inform (input_location, " <anonymous>");
3458
3459 parameter_packs = TREE_CHAIN (parameter_packs);
3460 }
3461
3462 return true;
3463 }
3464
3465 return false;
3466 }
3467
3468 /* Expand any parameter packs that occur in the template arguments in
3469 ARGS. */
3470 tree
3471 expand_template_argument_pack (tree args)
3472 {
3473 tree result_args = NULL_TREE;
3474 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3475 int num_result_args = -1;
3476 int non_default_args_count = -1;
3477
3478 /* First, determine if we need to expand anything, and the number of
3479 slots we'll need. */
3480 for (in_arg = 0; in_arg < nargs; ++in_arg)
3481 {
3482 tree arg = TREE_VEC_ELT (args, in_arg);
3483 if (arg == NULL_TREE)
3484 return args;
3485 if (ARGUMENT_PACK_P (arg))
3486 {
3487 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3488 if (num_result_args < 0)
3489 num_result_args = in_arg + num_packed;
3490 else
3491 num_result_args += num_packed;
3492 }
3493 else
3494 {
3495 if (num_result_args >= 0)
3496 num_result_args++;
3497 }
3498 }
3499
3500 /* If no expansion is necessary, we're done. */
3501 if (num_result_args < 0)
3502 return args;
3503
3504 /* Expand arguments. */
3505 result_args = make_tree_vec (num_result_args);
3506 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3507 non_default_args_count =
3508 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3509 for (in_arg = 0; in_arg < nargs; ++in_arg)
3510 {
3511 tree arg = TREE_VEC_ELT (args, in_arg);
3512 if (ARGUMENT_PACK_P (arg))
3513 {
3514 tree packed = ARGUMENT_PACK_ARGS (arg);
3515 int i, num_packed = TREE_VEC_LENGTH (packed);
3516 for (i = 0; i < num_packed; ++i, ++out_arg)
3517 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3518 if (non_default_args_count > 0)
3519 non_default_args_count += num_packed - 1;
3520 }
3521 else
3522 {
3523 TREE_VEC_ELT (result_args, out_arg) = arg;
3524 ++out_arg;
3525 }
3526 }
3527 if (non_default_args_count >= 0)
3528 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3529 return result_args;
3530 }
3531
3532 /* Checks if DECL shadows a template parameter.
3533
3534 [temp.local]: A template-parameter shall not be redeclared within its
3535 scope (including nested scopes).
3536
3537 Emits an error and returns TRUE if the DECL shadows a parameter,
3538 returns FALSE otherwise. */
3539
3540 bool
3541 check_template_shadow (tree decl)
3542 {
3543 tree olddecl;
3544
3545 /* If we're not in a template, we can't possibly shadow a template
3546 parameter. */
3547 if (!current_template_parms)
3548 return true;
3549
3550 /* Figure out what we're shadowing. */
3551 if (TREE_CODE (decl) == OVERLOAD)
3552 decl = OVL_CURRENT (decl);
3553 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3554
3555 /* If there's no previous binding for this name, we're not shadowing
3556 anything, let alone a template parameter. */
3557 if (!olddecl)
3558 return true;
3559
3560 /* If we're not shadowing a template parameter, we're done. Note
3561 that OLDDECL might be an OVERLOAD (or perhaps even an
3562 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3563 node. */
3564 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3565 return true;
3566
3567 /* We check for decl != olddecl to avoid bogus errors for using a
3568 name inside a class. We check TPFI to avoid duplicate errors for
3569 inline member templates. */
3570 if (decl == olddecl
3571 || (DECL_TEMPLATE_PARM_P (decl)
3572 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3573 return true;
3574
3575 /* Don't complain about the injected class name, as we've already
3576 complained about the class itself. */
3577 if (DECL_SELF_REFERENCE_P (decl))
3578 return false;
3579
3580 error ("declaration of %q+#D", decl);
3581 error (" shadows template parm %q+#D", olddecl);
3582 return false;
3583 }
3584
3585 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3586 ORIG_LEVEL, DECL, and TYPE. */
3587
3588 static tree
3589 build_template_parm_index (int index,
3590 int level,
3591 int orig_level,
3592 tree decl,
3593 tree type)
3594 {
3595 tree t = make_node (TEMPLATE_PARM_INDEX);
3596 TEMPLATE_PARM_IDX (t) = index;
3597 TEMPLATE_PARM_LEVEL (t) = level;
3598 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3599 TEMPLATE_PARM_DECL (t) = decl;
3600 TREE_TYPE (t) = type;
3601 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3602 TREE_READONLY (t) = TREE_READONLY (decl);
3603
3604 return t;
3605 }
3606
3607 /* Find the canonical type parameter for the given template type
3608 parameter. Returns the canonical type parameter, which may be TYPE
3609 if no such parameter existed. */
3610
3611 static tree
3612 canonical_type_parameter (tree type)
3613 {
3614 tree list;
3615 int idx = TEMPLATE_TYPE_IDX (type);
3616 if (!canonical_template_parms)
3617 vec_alloc (canonical_template_parms, idx+1);
3618
3619 while (canonical_template_parms->length () <= (unsigned)idx)
3620 vec_safe_push (canonical_template_parms, NULL_TREE);
3621
3622 list = (*canonical_template_parms)[idx];
3623 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3624 list = TREE_CHAIN (list);
3625
3626 if (list)
3627 return TREE_VALUE (list);
3628 else
3629 {
3630 (*canonical_template_parms)[idx]
3631 = tree_cons (NULL_TREE, type,
3632 (*canonical_template_parms)[idx]);
3633 return type;
3634 }
3635 }
3636
3637 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3638 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3639 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3640 new one is created. */
3641
3642 static tree
3643 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3644 tsubst_flags_t complain)
3645 {
3646 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3647 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3648 != TEMPLATE_PARM_LEVEL (index) - levels)
3649 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3650 {
3651 tree orig_decl = TEMPLATE_PARM_DECL (index);
3652 tree decl, t;
3653
3654 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3655 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3656 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3657 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3658 DECL_ARTIFICIAL (decl) = 1;
3659 SET_DECL_TEMPLATE_PARM_P (decl);
3660
3661 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3662 TEMPLATE_PARM_LEVEL (index) - levels,
3663 TEMPLATE_PARM_ORIG_LEVEL (index),
3664 decl, type);
3665 TEMPLATE_PARM_DESCENDANTS (index) = t;
3666 TEMPLATE_PARM_PARAMETER_PACK (t)
3667 = TEMPLATE_PARM_PARAMETER_PACK (index);
3668
3669 /* Template template parameters need this. */
3670 if (TREE_CODE (decl) == TEMPLATE_DECL)
3671 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3672 (DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index)),
3673 args, complain);
3674 }
3675
3676 return TEMPLATE_PARM_DESCENDANTS (index);
3677 }
3678
3679 /* Process information from new template parameter PARM and append it
3680 to the LIST being built. This new parameter is a non-type
3681 parameter iff IS_NON_TYPE is true. This new parameter is a
3682 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
3683 is in PARM_LOC. */
3684
3685 tree
3686 process_template_parm (tree list, location_t parm_loc, tree parm,
3687 bool is_non_type, bool is_parameter_pack)
3688 {
3689 tree decl = 0;
3690 tree defval;
3691 int idx = 0;
3692
3693 gcc_assert (TREE_CODE (parm) == TREE_LIST);
3694 defval = TREE_PURPOSE (parm);
3695
3696 if (list)
3697 {
3698 tree p = tree_last (list);
3699
3700 if (p && TREE_VALUE (p) != error_mark_node)
3701 {
3702 p = TREE_VALUE (p);
3703 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
3704 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
3705 else
3706 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
3707 }
3708
3709 ++idx;
3710 }
3711
3712 if (is_non_type)
3713 {
3714 parm = TREE_VALUE (parm);
3715
3716 SET_DECL_TEMPLATE_PARM_P (parm);
3717
3718 if (TREE_TYPE (parm) != error_mark_node)
3719 {
3720 /* [temp.param]
3721
3722 The top-level cv-qualifiers on the template-parameter are
3723 ignored when determining its type. */
3724 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
3725 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
3726 TREE_TYPE (parm) = error_mark_node;
3727 else if (uses_parameter_packs (TREE_TYPE (parm))
3728 && !is_parameter_pack
3729 /* If we're in a nested template parameter list, the template
3730 template parameter could be a parameter pack. */
3731 && processing_template_parmlist == 1)
3732 {
3733 /* This template parameter is not a parameter pack, but it
3734 should be. Complain about "bare" parameter packs. */
3735 check_for_bare_parameter_packs (TREE_TYPE (parm));
3736
3737 /* Recover by calling this a parameter pack. */
3738 is_parameter_pack = true;
3739 }
3740 }
3741
3742 /* A template parameter is not modifiable. */
3743 TREE_CONSTANT (parm) = 1;
3744 TREE_READONLY (parm) = 1;
3745 decl = build_decl (parm_loc,
3746 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
3747 TREE_CONSTANT (decl) = 1;
3748 TREE_READONLY (decl) = 1;
3749 DECL_INITIAL (parm) = DECL_INITIAL (decl)
3750 = build_template_parm_index (idx, processing_template_decl,
3751 processing_template_decl,
3752 decl, TREE_TYPE (parm));
3753
3754 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
3755 = is_parameter_pack;
3756 }
3757 else
3758 {
3759 tree t;
3760 parm = TREE_VALUE (TREE_VALUE (parm));
3761
3762 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
3763 {
3764 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
3765 /* This is for distinguishing between real templates and template
3766 template parameters */
3767 TREE_TYPE (parm) = t;
3768 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
3769 decl = parm;
3770 }
3771 else
3772 {
3773 t = cxx_make_type (TEMPLATE_TYPE_PARM);
3774 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
3775 decl = build_decl (parm_loc,
3776 TYPE_DECL, parm, t);
3777 }
3778
3779 TYPE_NAME (t) = decl;
3780 TYPE_STUB_DECL (t) = decl;
3781 parm = decl;
3782 TEMPLATE_TYPE_PARM_INDEX (t)
3783 = build_template_parm_index (idx, processing_template_decl,
3784 processing_template_decl,
3785 decl, TREE_TYPE (parm));
3786 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
3787 TYPE_CANONICAL (t) = canonical_type_parameter (t);
3788 }
3789 DECL_ARTIFICIAL (decl) = 1;
3790 SET_DECL_TEMPLATE_PARM_P (decl);
3791 pushdecl (decl);
3792 parm = build_tree_list (defval, parm);
3793 return chainon (list, parm);
3794 }
3795
3796 /* The end of a template parameter list has been reached. Process the
3797 tree list into a parameter vector, converting each parameter into a more
3798 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
3799 as PARM_DECLs. */
3800
3801 tree
3802 end_template_parm_list (tree parms)
3803 {
3804 int nparms;
3805 tree parm, next;
3806 tree saved_parmlist = make_tree_vec (list_length (parms));
3807
3808 current_template_parms
3809 = tree_cons (size_int (processing_template_decl),
3810 saved_parmlist, current_template_parms);
3811
3812 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
3813 {
3814 next = TREE_CHAIN (parm);
3815 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
3816 TREE_CHAIN (parm) = NULL_TREE;
3817 }
3818
3819 --processing_template_parmlist;
3820
3821 return saved_parmlist;
3822 }
3823
3824 /* end_template_decl is called after a template declaration is seen. */
3825
3826 void
3827 end_template_decl (void)
3828 {
3829 reset_specialization ();
3830
3831 if (! processing_template_decl)
3832 return;
3833
3834 /* This matches the pushlevel in begin_template_parm_list. */
3835 finish_scope ();
3836
3837 --processing_template_decl;
3838 current_template_parms = TREE_CHAIN (current_template_parms);
3839 }
3840
3841 /* Takes a TREE_LIST representing a template parameter and convert it
3842 into an argument suitable to be passed to the type substitution
3843 functions. Note that If the TREE_LIST contains an error_mark
3844 node, the returned argument is error_mark_node. */
3845
3846 static tree
3847 template_parm_to_arg (tree t)
3848 {
3849
3850 if (t == NULL_TREE
3851 || TREE_CODE (t) != TREE_LIST)
3852 return t;
3853
3854 if (error_operand_p (TREE_VALUE (t)))
3855 return error_mark_node;
3856
3857 t = TREE_VALUE (t);
3858
3859 if (TREE_CODE (t) == TYPE_DECL
3860 || TREE_CODE (t) == TEMPLATE_DECL)
3861 {
3862 t = TREE_TYPE (t);
3863
3864 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3865 {
3866 /* Turn this argument into a TYPE_ARGUMENT_PACK
3867 with a single element, which expands T. */
3868 tree vec = make_tree_vec (1);
3869 #ifdef ENABLE_CHECKING
3870 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3871 (vec, TREE_VEC_LENGTH (vec));
3872 #endif
3873 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3874
3875 t = cxx_make_type (TYPE_ARGUMENT_PACK);
3876 SET_ARGUMENT_PACK_ARGS (t, vec);
3877 }
3878 }
3879 else
3880 {
3881 t = DECL_INITIAL (t);
3882
3883 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3884 {
3885 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
3886 with a single element, which expands T. */
3887 tree vec = make_tree_vec (1);
3888 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
3889 #ifdef ENABLE_CHECKING
3890 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3891 (vec, TREE_VEC_LENGTH (vec));
3892 #endif
3893 t = convert_from_reference (t);
3894 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3895
3896 t = make_node (NONTYPE_ARGUMENT_PACK);
3897 SET_ARGUMENT_PACK_ARGS (t, vec);
3898 TREE_TYPE (t) = type;
3899 }
3900 else
3901 t = convert_from_reference (t);
3902 }
3903 return t;
3904 }
3905
3906 /* Given a set of template parameters, return them as a set of template
3907 arguments. The template parameters are represented as a TREE_VEC, in
3908 the form documented in cp-tree.h for template arguments. */
3909
3910 static tree
3911 template_parms_to_args (tree parms)
3912 {
3913 tree header;
3914 tree args = NULL_TREE;
3915 int length = TMPL_PARMS_DEPTH (parms);
3916 int l = length;
3917
3918 /* If there is only one level of template parameters, we do not
3919 create a TREE_VEC of TREE_VECs. Instead, we return a single
3920 TREE_VEC containing the arguments. */
3921 if (length > 1)
3922 args = make_tree_vec (length);
3923
3924 for (header = parms; header; header = TREE_CHAIN (header))
3925 {
3926 tree a = copy_node (TREE_VALUE (header));
3927 int i;
3928
3929 TREE_TYPE (a) = NULL_TREE;
3930 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
3931 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
3932
3933 #ifdef ENABLE_CHECKING
3934 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
3935 #endif
3936
3937 if (length > 1)
3938 TREE_VEC_ELT (args, --l) = a;
3939 else
3940 args = a;
3941 }
3942
3943 if (length > 1 && TREE_VEC_ELT (args, 0) == NULL_TREE)
3944 /* This can happen for template parms of a template template
3945 parameter, e.g:
3946
3947 template<template<class T, class U> class TT> struct S;
3948
3949 Consider the level of the parms of TT; T and U both have
3950 level 2; TT has no template parm of level 1. So in this case
3951 the first element of full_template_args is NULL_TREE. If we
3952 leave it like this TMPL_ARGS_DEPTH on args returns 1 instead
3953 of 2. This will make tsubst wrongly consider that T and U
3954 have level 1. Instead, let's create a dummy vector as the
3955 first element of full_template_args so that TMPL_ARGS_DEPTH
3956 returns the correct depth for args. */
3957 TREE_VEC_ELT (args, 0) = make_tree_vec (1);
3958 return args;
3959 }
3960
3961 /* Within the declaration of a template, return the currently active
3962 template parameters as an argument TREE_VEC. */
3963
3964 static tree
3965 current_template_args (void)
3966 {
3967 return template_parms_to_args (current_template_parms);
3968 }
3969
3970 /* Update the declared TYPE by doing any lookups which were thought to be
3971 dependent, but are not now that we know the SCOPE of the declarator. */
3972
3973 tree
3974 maybe_update_decl_type (tree orig_type, tree scope)
3975 {
3976 tree type = orig_type;
3977
3978 if (type == NULL_TREE)
3979 return type;
3980
3981 if (TREE_CODE (orig_type) == TYPE_DECL)
3982 type = TREE_TYPE (type);
3983
3984 if (scope && TYPE_P (scope) && dependent_type_p (scope)
3985 && dependent_type_p (type)
3986 /* Don't bother building up the args in this case. */
3987 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
3988 {
3989 /* tsubst in the args corresponding to the template parameters,
3990 including auto if present. Most things will be unchanged, but
3991 make_typename_type and tsubst_qualified_id will resolve
3992 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
3993 tree args = current_template_args ();
3994 tree auto_node = type_uses_auto (type);
3995 tree pushed;
3996 if (auto_node)
3997 {
3998 tree auto_vec = make_tree_vec (1);
3999 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4000 args = add_to_template_args (args, auto_vec);
4001 }
4002 pushed = push_scope (scope);
4003 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4004 if (pushed)
4005 pop_scope (scope);
4006 }
4007
4008 if (type == error_mark_node)
4009 return orig_type;
4010
4011 if (TREE_CODE (orig_type) == TYPE_DECL)
4012 {
4013 if (same_type_p (type, TREE_TYPE (orig_type)))
4014 type = orig_type;
4015 else
4016 type = TYPE_NAME (type);
4017 }
4018 return type;
4019 }
4020
4021 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4022 template PARMS. If MEMBER_TEMPLATE_P is true, the new template is
4023 a member template. Used by push_template_decl below. */
4024
4025 static tree
4026 build_template_decl (tree decl, tree parms, bool member_template_p)
4027 {
4028 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4029 DECL_TEMPLATE_PARMS (tmpl) = parms;
4030 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4031 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4032 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4033
4034 return tmpl;
4035 }
4036
4037 struct template_parm_data
4038 {
4039 /* The level of the template parameters we are currently
4040 processing. */
4041 int level;
4042
4043 /* The index of the specialization argument we are currently
4044 processing. */
4045 int current_arg;
4046
4047 /* An array whose size is the number of template parameters. The
4048 elements are nonzero if the parameter has been used in any one
4049 of the arguments processed so far. */
4050 int* parms;
4051
4052 /* An array whose size is the number of template arguments. The
4053 elements are nonzero if the argument makes use of template
4054 parameters of this level. */
4055 int* arg_uses_template_parms;
4056 };
4057
4058 /* Subroutine of push_template_decl used to see if each template
4059 parameter in a partial specialization is used in the explicit
4060 argument list. If T is of the LEVEL given in DATA (which is
4061 treated as a template_parm_data*), then DATA->PARMS is marked
4062 appropriately. */
4063
4064 static int
4065 mark_template_parm (tree t, void* data)
4066 {
4067 int level;
4068 int idx;
4069 struct template_parm_data* tpd = (struct template_parm_data*) data;
4070
4071 template_parm_level_and_index (t, &level, &idx);
4072
4073 if (level == tpd->level)
4074 {
4075 tpd->parms[idx] = 1;
4076 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4077 }
4078
4079 /* Return zero so that for_each_template_parm will continue the
4080 traversal of the tree; we want to mark *every* template parm. */
4081 return 0;
4082 }
4083
4084 /* Process the partial specialization DECL. */
4085
4086 static tree
4087 process_partial_specialization (tree decl)
4088 {
4089 tree type = TREE_TYPE (decl);
4090 tree maintmpl = CLASSTYPE_TI_TEMPLATE (type);
4091 tree specargs = CLASSTYPE_TI_ARGS (type);
4092 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4093 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4094 tree inner_parms;
4095 tree inst;
4096 int nargs = TREE_VEC_LENGTH (inner_args);
4097 int ntparms;
4098 int i;
4099 bool did_error_intro = false;
4100 struct template_parm_data tpd;
4101 struct template_parm_data tpd2;
4102
4103 gcc_assert (current_template_parms);
4104
4105 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4106 ntparms = TREE_VEC_LENGTH (inner_parms);
4107
4108 /* We check that each of the template parameters given in the
4109 partial specialization is used in the argument list to the
4110 specialization. For example:
4111
4112 template <class T> struct S;
4113 template <class T> struct S<T*>;
4114
4115 The second declaration is OK because `T*' uses the template
4116 parameter T, whereas
4117
4118 template <class T> struct S<int>;
4119
4120 is no good. Even trickier is:
4121
4122 template <class T>
4123 struct S1
4124 {
4125 template <class U>
4126 struct S2;
4127 template <class U>
4128 struct S2<T>;
4129 };
4130
4131 The S2<T> declaration is actually invalid; it is a
4132 full-specialization. Of course,
4133
4134 template <class U>
4135 struct S2<T (*)(U)>;
4136
4137 or some such would have been OK. */
4138 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4139 tpd.parms = XALLOCAVEC (int, ntparms);
4140 memset (tpd.parms, 0, sizeof (int) * ntparms);
4141
4142 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4143 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4144 for (i = 0; i < nargs; ++i)
4145 {
4146 tpd.current_arg = i;
4147 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4148 &mark_template_parm,
4149 &tpd,
4150 NULL,
4151 /*include_nondeduced_p=*/false);
4152 }
4153 for (i = 0; i < ntparms; ++i)
4154 if (tpd.parms[i] == 0)
4155 {
4156 /* One of the template parms was not used in a deduced context in the
4157 specialization. */
4158 if (!did_error_intro)
4159 {
4160 error ("template parameters not deducible in "
4161 "partial specialization:");
4162 did_error_intro = true;
4163 }
4164
4165 inform (input_location, " %qD",
4166 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4167 }
4168
4169 if (did_error_intro)
4170 return error_mark_node;
4171
4172 /* [temp.class.spec]
4173
4174 The argument list of the specialization shall not be identical to
4175 the implicit argument list of the primary template. */
4176 if (comp_template_args
4177 (inner_args,
4178 INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE
4179 (maintmpl)))))
4180 error ("partial specialization %qT does not specialize any template arguments", type);
4181
4182 /* A partial specialization that replaces multiple parameters of the
4183 primary template with a pack expansion is less specialized for those
4184 parameters. */
4185 if (nargs < DECL_NTPARMS (maintmpl))
4186 {
4187 error ("partial specialization is not more specialized than the "
4188 "primary template because it replaces multiple parameters "
4189 "with a pack expansion");
4190 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4191 return decl;
4192 }
4193
4194 /* [temp.class.spec]
4195
4196 A partially specialized non-type argument expression shall not
4197 involve template parameters of the partial specialization except
4198 when the argument expression is a simple identifier.
4199
4200 The type of a template parameter corresponding to a specialized
4201 non-type argument shall not be dependent on a parameter of the
4202 specialization.
4203
4204 Also, we verify that pack expansions only occur at the
4205 end of the argument list. */
4206 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4207 tpd2.parms = 0;
4208 for (i = 0; i < nargs; ++i)
4209 {
4210 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4211 tree arg = TREE_VEC_ELT (inner_args, i);
4212 tree packed_args = NULL_TREE;
4213 int j, len = 1;
4214
4215 if (ARGUMENT_PACK_P (arg))
4216 {
4217 /* Extract the arguments from the argument pack. We'll be
4218 iterating over these in the following loop. */
4219 packed_args = ARGUMENT_PACK_ARGS (arg);
4220 len = TREE_VEC_LENGTH (packed_args);
4221 }
4222
4223 for (j = 0; j < len; j++)
4224 {
4225 if (packed_args)
4226 /* Get the Jth argument in the parameter pack. */
4227 arg = TREE_VEC_ELT (packed_args, j);
4228
4229 if (PACK_EXPANSION_P (arg))
4230 {
4231 /* Pack expansions must come at the end of the
4232 argument list. */
4233 if ((packed_args && j < len - 1)
4234 || (!packed_args && i < nargs - 1))
4235 {
4236 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4237 error ("parameter pack argument %qE must be at the "
4238 "end of the template argument list", arg);
4239 else
4240 error ("parameter pack argument %qT must be at the "
4241 "end of the template argument list", arg);
4242 }
4243 }
4244
4245 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4246 /* We only care about the pattern. */
4247 arg = PACK_EXPANSION_PATTERN (arg);
4248
4249 if (/* These first two lines are the `non-type' bit. */
4250 !TYPE_P (arg)
4251 && TREE_CODE (arg) != TEMPLATE_DECL
4252 /* This next two lines are the `argument expression is not just a
4253 simple identifier' condition and also the `specialized
4254 non-type argument' bit. */
4255 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4256 && !(REFERENCE_REF_P (arg)
4257 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4258 {
4259 if ((!packed_args && tpd.arg_uses_template_parms[i])
4260 || (packed_args && uses_template_parms (arg)))
4261 error ("template argument %qE involves template parameter(s)",
4262 arg);
4263 else
4264 {
4265 /* Look at the corresponding template parameter,
4266 marking which template parameters its type depends
4267 upon. */
4268 tree type = TREE_TYPE (parm);
4269
4270 if (!tpd2.parms)
4271 {
4272 /* We haven't yet initialized TPD2. Do so now. */
4273 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4274 /* The number of parameters here is the number in the
4275 main template, which, as checked in the assertion
4276 above, is NARGS. */
4277 tpd2.parms = XALLOCAVEC (int, nargs);
4278 tpd2.level =
4279 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4280 }
4281
4282 /* Mark the template parameters. But this time, we're
4283 looking for the template parameters of the main
4284 template, not in the specialization. */
4285 tpd2.current_arg = i;
4286 tpd2.arg_uses_template_parms[i] = 0;
4287 memset (tpd2.parms, 0, sizeof (int) * nargs);
4288 for_each_template_parm (type,
4289 &mark_template_parm,
4290 &tpd2,
4291 NULL,
4292 /*include_nondeduced_p=*/false);
4293
4294 if (tpd2.arg_uses_template_parms [i])
4295 {
4296 /* The type depended on some template parameters.
4297 If they are fully specialized in the
4298 specialization, that's OK. */
4299 int j;
4300 int count = 0;
4301 for (j = 0; j < nargs; ++j)
4302 if (tpd2.parms[j] != 0
4303 && tpd.arg_uses_template_parms [j])
4304 ++count;
4305 if (count != 0)
4306 error_n (input_location, count,
4307 "type %qT of template argument %qE depends "
4308 "on a template parameter",
4309 "type %qT of template argument %qE depends "
4310 "on template parameters",
4311 type,
4312 arg);
4313 }
4314 }
4315 }
4316 }
4317 }
4318
4319 /* We should only get here once. */
4320 gcc_assert (!COMPLETE_TYPE_P (type));
4321
4322 tree tmpl = build_template_decl (decl, current_template_parms,
4323 DECL_MEMBER_TEMPLATE_P (maintmpl));
4324 TREE_TYPE (tmpl) = type;
4325 DECL_TEMPLATE_RESULT (tmpl) = decl;
4326 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4327 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4328 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4329
4330 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4331 = tree_cons (specargs, tmpl,
4332 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4333 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4334
4335 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4336 inst = TREE_CHAIN (inst))
4337 {
4338 tree inst_type = TREE_VALUE (inst);
4339 if (COMPLETE_TYPE_P (inst_type)
4340 && CLASSTYPE_IMPLICIT_INSTANTIATION (inst_type))
4341 {
4342 tree spec = most_specialized_class (inst_type, tf_none);
4343 if (spec && TREE_TYPE (spec) == type)
4344 permerror (input_location,
4345 "partial specialization of %qT after instantiation "
4346 "of %qT", type, inst_type);
4347 }
4348 }
4349
4350 return decl;
4351 }
4352
4353 /* PARM is a template parameter of some form; return the corresponding
4354 TEMPLATE_PARM_INDEX. */
4355
4356 static tree
4357 get_template_parm_index (tree parm)
4358 {
4359 if (TREE_CODE (parm) == PARM_DECL
4360 || TREE_CODE (parm) == CONST_DECL)
4361 parm = DECL_INITIAL (parm);
4362 else if (TREE_CODE (parm) == TYPE_DECL
4363 || TREE_CODE (parm) == TEMPLATE_DECL)
4364 parm = TREE_TYPE (parm);
4365 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4366 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4367 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4368 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4369 return parm;
4370 }
4371
4372 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4373 parameter packs used by the template parameter PARM. */
4374
4375 static void
4376 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4377 {
4378 /* A type parm can't refer to another parm. */
4379 if (TREE_CODE (parm) == TYPE_DECL)
4380 return;
4381 else if (TREE_CODE (parm) == PARM_DECL)
4382 {
4383 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4384 ppd, ppd->visited);
4385 return;
4386 }
4387
4388 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4389
4390 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4391 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4392 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4393 }
4394
4395 /* PARM is a template parameter pack. Return any parameter packs used in
4396 its type or the type of any of its template parameters. If there are
4397 any such packs, it will be instantiated into a fixed template parameter
4398 list by partial instantiation rather than be fully deduced. */
4399
4400 tree
4401 fixed_parameter_pack_p (tree parm)
4402 {
4403 /* This can only be true in a member template. */
4404 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4405 return NULL_TREE;
4406 /* This can only be true for a parameter pack. */
4407 if (!template_parameter_pack_p (parm))
4408 return NULL_TREE;
4409 /* A type parm can't refer to another parm. */
4410 if (TREE_CODE (parm) == TYPE_DECL)
4411 return NULL_TREE;
4412
4413 tree parameter_packs = NULL_TREE;
4414 struct find_parameter_pack_data ppd;
4415 ppd.parameter_packs = &parameter_packs;
4416 ppd.visited = new hash_set<tree>;
4417
4418 fixed_parameter_pack_p_1 (parm, &ppd);
4419
4420 delete ppd.visited;
4421 return parameter_packs;
4422 }
4423
4424 /* Check that a template declaration's use of default arguments and
4425 parameter packs is not invalid. Here, PARMS are the template
4426 parameters. IS_PRIMARY is true if DECL is the thing declared by
4427 a primary template. IS_PARTIAL is true if DECL is a partial
4428 specialization.
4429
4430 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4431 declaration (but not a definition); 1 indicates a declaration, 2
4432 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4433 emitted for extraneous default arguments.
4434
4435 Returns TRUE if there were no errors found, FALSE otherwise. */
4436
4437 bool
4438 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4439 bool is_partial, int is_friend_decl)
4440 {
4441 const char *msg;
4442 int last_level_to_check;
4443 tree parm_level;
4444 bool no_errors = true;
4445
4446 /* [temp.param]
4447
4448 A default template-argument shall not be specified in a
4449 function template declaration or a function template definition, nor
4450 in the template-parameter-list of the definition of a member of a
4451 class template. */
4452
4453 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
4454 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
4455 /* You can't have a function template declaration in a local
4456 scope, nor you can you define a member of a class template in a
4457 local scope. */
4458 return true;
4459
4460 if ((TREE_CODE (decl) == TYPE_DECL
4461 && TREE_TYPE (decl)
4462 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4463 || (TREE_CODE (decl) == FUNCTION_DECL
4464 && LAMBDA_FUNCTION_P (decl)))
4465 /* A lambda doesn't have an explicit declaration; don't complain
4466 about the parms of the enclosing class. */
4467 return true;
4468
4469 if (current_class_type
4470 && !TYPE_BEING_DEFINED (current_class_type)
4471 && DECL_LANG_SPECIFIC (decl)
4472 && DECL_DECLARES_FUNCTION_P (decl)
4473 /* If this is either a friend defined in the scope of the class
4474 or a member function. */
4475 && (DECL_FUNCTION_MEMBER_P (decl)
4476 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4477 : DECL_FRIEND_CONTEXT (decl)
4478 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4479 : false)
4480 /* And, if it was a member function, it really was defined in
4481 the scope of the class. */
4482 && (!DECL_FUNCTION_MEMBER_P (decl)
4483 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4484 /* We already checked these parameters when the template was
4485 declared, so there's no need to do it again now. This function
4486 was defined in class scope, but we're processing its body now
4487 that the class is complete. */
4488 return true;
4489
4490 /* Core issue 226 (C++0x only): the following only applies to class
4491 templates. */
4492 if (is_primary
4493 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4494 {
4495 /* [temp.param]
4496
4497 If a template-parameter has a default template-argument, all
4498 subsequent template-parameters shall have a default
4499 template-argument supplied. */
4500 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4501 {
4502 tree inner_parms = TREE_VALUE (parm_level);
4503 int ntparms = TREE_VEC_LENGTH (inner_parms);
4504 int seen_def_arg_p = 0;
4505 int i;
4506
4507 for (i = 0; i < ntparms; ++i)
4508 {
4509 tree parm = TREE_VEC_ELT (inner_parms, i);
4510
4511 if (parm == error_mark_node)
4512 continue;
4513
4514 if (TREE_PURPOSE (parm))
4515 seen_def_arg_p = 1;
4516 else if (seen_def_arg_p
4517 && !template_parameter_pack_p (TREE_VALUE (parm)))
4518 {
4519 error ("no default argument for %qD", TREE_VALUE (parm));
4520 /* For better subsequent error-recovery, we indicate that
4521 there should have been a default argument. */
4522 TREE_PURPOSE (parm) = error_mark_node;
4523 no_errors = false;
4524 }
4525 else if (!is_partial
4526 && !is_friend_decl
4527 /* Don't complain about an enclosing partial
4528 specialization. */
4529 && parm_level == parms
4530 && TREE_CODE (decl) == TYPE_DECL
4531 && i < ntparms - 1
4532 && template_parameter_pack_p (TREE_VALUE (parm))
4533 /* A fixed parameter pack will be partially
4534 instantiated into a fixed length list. */
4535 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
4536 {
4537 /* A primary class template can only have one
4538 parameter pack, at the end of the template
4539 parameter list. */
4540
4541 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL)
4542 error ("parameter pack %qE must be at the end of the"
4543 " template parameter list", TREE_VALUE (parm));
4544 else
4545 error ("parameter pack %qT must be at the end of the"
4546 " template parameter list",
4547 TREE_TYPE (TREE_VALUE (parm)));
4548
4549 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4550 = error_mark_node;
4551 no_errors = false;
4552 }
4553 }
4554 }
4555 }
4556
4557 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4558 || is_partial
4559 || !is_primary
4560 || is_friend_decl)
4561 /* For an ordinary class template, default template arguments are
4562 allowed at the innermost level, e.g.:
4563 template <class T = int>
4564 struct S {};
4565 but, in a partial specialization, they're not allowed even
4566 there, as we have in [temp.class.spec]:
4567
4568 The template parameter list of a specialization shall not
4569 contain default template argument values.
4570
4571 So, for a partial specialization, or for a function template
4572 (in C++98/C++03), we look at all of them. */
4573 ;
4574 else
4575 /* But, for a primary class template that is not a partial
4576 specialization we look at all template parameters except the
4577 innermost ones. */
4578 parms = TREE_CHAIN (parms);
4579
4580 /* Figure out what error message to issue. */
4581 if (is_friend_decl == 2)
4582 msg = G_("default template arguments may not be used in function template "
4583 "friend re-declaration");
4584 else if (is_friend_decl)
4585 msg = G_("default template arguments may not be used in function template "
4586 "friend declarations");
4587 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4588 msg = G_("default template arguments may not be used in function templates "
4589 "without -std=c++11 or -std=gnu++11");
4590 else if (is_partial)
4591 msg = G_("default template arguments may not be used in "
4592 "partial specializations");
4593 else
4594 msg = G_("default argument for template parameter for class enclosing %qD");
4595
4596 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4597 /* If we're inside a class definition, there's no need to
4598 examine the parameters to the class itself. On the one
4599 hand, they will be checked when the class is defined, and,
4600 on the other, default arguments are valid in things like:
4601 template <class T = double>
4602 struct S { template <class U> void f(U); };
4603 Here the default argument for `S' has no bearing on the
4604 declaration of `f'. */
4605 last_level_to_check = template_class_depth (current_class_type) + 1;
4606 else
4607 /* Check everything. */
4608 last_level_to_check = 0;
4609
4610 for (parm_level = parms;
4611 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4612 parm_level = TREE_CHAIN (parm_level))
4613 {
4614 tree inner_parms = TREE_VALUE (parm_level);
4615 int i;
4616 int ntparms;
4617
4618 ntparms = TREE_VEC_LENGTH (inner_parms);
4619 for (i = 0; i < ntparms; ++i)
4620 {
4621 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4622 continue;
4623
4624 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4625 {
4626 if (msg)
4627 {
4628 no_errors = false;
4629 if (is_friend_decl == 2)
4630 return no_errors;
4631
4632 error (msg, decl);
4633 msg = 0;
4634 }
4635
4636 /* Clear out the default argument so that we are not
4637 confused later. */
4638 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
4639 }
4640 }
4641
4642 /* At this point, if we're still interested in issuing messages,
4643 they must apply to classes surrounding the object declared. */
4644 if (msg)
4645 msg = G_("default argument for template parameter for class "
4646 "enclosing %qD");
4647 }
4648
4649 return no_errors;
4650 }
4651
4652 /* Worker for push_template_decl_real, called via
4653 for_each_template_parm. DATA is really an int, indicating the
4654 level of the parameters we are interested in. If T is a template
4655 parameter of that level, return nonzero. */
4656
4657 static int
4658 template_parm_this_level_p (tree t, void* data)
4659 {
4660 int this_level = *(int *)data;
4661 int level;
4662
4663 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
4664 level = TEMPLATE_PARM_LEVEL (t);
4665 else
4666 level = TEMPLATE_TYPE_LEVEL (t);
4667 return level == this_level;
4668 }
4669
4670 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
4671 parameters given by current_template_args, or reuses a
4672 previously existing one, if appropriate. Returns the DECL, or an
4673 equivalent one, if it is replaced via a call to duplicate_decls.
4674
4675 If IS_FRIEND is true, DECL is a friend declaration. */
4676
4677 tree
4678 push_template_decl_real (tree decl, bool is_friend)
4679 {
4680 tree tmpl;
4681 tree args;
4682 tree info;
4683 tree ctx;
4684 bool is_primary;
4685 bool is_partial;
4686 int new_template_p = 0;
4687 /* True if the template is a member template, in the sense of
4688 [temp.mem]. */
4689 bool member_template_p = false;
4690
4691 if (decl == error_mark_node || !current_template_parms)
4692 return error_mark_node;
4693
4694 /* See if this is a partial specialization. */
4695 is_partial = (DECL_IMPLICIT_TYPEDEF_P (decl)
4696 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
4697 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)));
4698
4699 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
4700 is_friend = true;
4701
4702 if (is_friend)
4703 /* For a friend, we want the context of the friend function, not
4704 the type of which it is a friend. */
4705 ctx = CP_DECL_CONTEXT (decl);
4706 else if (CP_DECL_CONTEXT (decl)
4707 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
4708 /* In the case of a virtual function, we want the class in which
4709 it is defined. */
4710 ctx = CP_DECL_CONTEXT (decl);
4711 else
4712 /* Otherwise, if we're currently defining some class, the DECL
4713 is assumed to be a member of the class. */
4714 ctx = current_scope ();
4715
4716 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
4717 ctx = NULL_TREE;
4718
4719 if (!DECL_CONTEXT (decl))
4720 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
4721
4722 /* See if this is a primary template. */
4723 if (is_friend && ctx
4724 && uses_template_parms_level (ctx, processing_template_decl))
4725 /* A friend template that specifies a class context, i.e.
4726 template <typename T> friend void A<T>::f();
4727 is not primary. */
4728 is_primary = false;
4729 else if (TREE_CODE (decl) == TYPE_DECL
4730 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4731 is_primary = false;
4732 else
4733 is_primary = template_parm_scope_p ();
4734
4735 if (is_primary)
4736 {
4737 if (DECL_CLASS_SCOPE_P (decl))
4738 member_template_p = true;
4739 if (TREE_CODE (decl) == TYPE_DECL
4740 && ANON_AGGRNAME_P (DECL_NAME (decl)))
4741 {
4742 error ("template class without a name");
4743 return error_mark_node;
4744 }
4745 else if (TREE_CODE (decl) == FUNCTION_DECL)
4746 {
4747 if (member_template_p)
4748 {
4749 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
4750 error ("member template %qD may not have virt-specifiers", decl);
4751 }
4752 if (DECL_DESTRUCTOR_P (decl))
4753 {
4754 /* [temp.mem]
4755
4756 A destructor shall not be a member template. */
4757 error ("destructor %qD declared as member template", decl);
4758 return error_mark_node;
4759 }
4760 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
4761 && (!prototype_p (TREE_TYPE (decl))
4762 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
4763 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
4764 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
4765 == void_list_node)))
4766 {
4767 /* [basic.stc.dynamic.allocation]
4768
4769 An allocation function can be a function
4770 template. ... Template allocation functions shall
4771 have two or more parameters. */
4772 error ("invalid template declaration of %qD", decl);
4773 return error_mark_node;
4774 }
4775 }
4776 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4777 && CLASS_TYPE_P (TREE_TYPE (decl)))
4778 /* OK */;
4779 else if (TREE_CODE (decl) == TYPE_DECL
4780 && TYPE_DECL_ALIAS_P (decl))
4781 /* alias-declaration */
4782 gcc_assert (!DECL_ARTIFICIAL (decl));
4783 else if (VAR_P (decl))
4784 /* C++14 variable template. */;
4785 else
4786 {
4787 error ("template declaration of %q#D", decl);
4788 return error_mark_node;
4789 }
4790 }
4791
4792 /* Check to see that the rules regarding the use of default
4793 arguments are not being violated. */
4794 check_default_tmpl_args (decl, current_template_parms,
4795 is_primary, is_partial, /*is_friend_decl=*/0);
4796
4797 /* Ensure that there are no parameter packs in the type of this
4798 declaration that have not been expanded. */
4799 if (TREE_CODE (decl) == FUNCTION_DECL)
4800 {
4801 /* Check each of the arguments individually to see if there are
4802 any bare parameter packs. */
4803 tree type = TREE_TYPE (decl);
4804 tree arg = DECL_ARGUMENTS (decl);
4805 tree argtype = TYPE_ARG_TYPES (type);
4806
4807 while (arg && argtype)
4808 {
4809 if (!DECL_PACK_P (arg)
4810 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
4811 {
4812 /* This is a PARM_DECL that contains unexpanded parameter
4813 packs. We have already complained about this in the
4814 check_for_bare_parameter_packs call, so just replace
4815 these types with ERROR_MARK_NODE. */
4816 TREE_TYPE (arg) = error_mark_node;
4817 TREE_VALUE (argtype) = error_mark_node;
4818 }
4819
4820 arg = DECL_CHAIN (arg);
4821 argtype = TREE_CHAIN (argtype);
4822 }
4823
4824 /* Check for bare parameter packs in the return type and the
4825 exception specifiers. */
4826 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
4827 /* Errors were already issued, set return type to int
4828 as the frontend doesn't expect error_mark_node as
4829 the return type. */
4830 TREE_TYPE (type) = integer_type_node;
4831 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
4832 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
4833 }
4834 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
4835 && TYPE_DECL_ALIAS_P (decl))
4836 ? DECL_ORIGINAL_TYPE (decl)
4837 : TREE_TYPE (decl)))
4838 {
4839 TREE_TYPE (decl) = error_mark_node;
4840 return error_mark_node;
4841 }
4842
4843 if (is_partial)
4844 return process_partial_specialization (decl);
4845
4846 args = current_template_args ();
4847
4848 if (!ctx
4849 || TREE_CODE (ctx) == FUNCTION_DECL
4850 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
4851 || (TREE_CODE (decl) == TYPE_DECL
4852 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4853 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
4854 {
4855 if (DECL_LANG_SPECIFIC (decl)
4856 && DECL_TEMPLATE_INFO (decl)
4857 && DECL_TI_TEMPLATE (decl))
4858 tmpl = DECL_TI_TEMPLATE (decl);
4859 /* If DECL is a TYPE_DECL for a class-template, then there won't
4860 be DECL_LANG_SPECIFIC. The information equivalent to
4861 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
4862 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4863 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
4864 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
4865 {
4866 /* Since a template declaration already existed for this
4867 class-type, we must be redeclaring it here. Make sure
4868 that the redeclaration is valid. */
4869 redeclare_class_template (TREE_TYPE (decl),
4870 current_template_parms);
4871 /* We don't need to create a new TEMPLATE_DECL; just use the
4872 one we already had. */
4873 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
4874 }
4875 else
4876 {
4877 tmpl = build_template_decl (decl, current_template_parms,
4878 member_template_p);
4879 new_template_p = 1;
4880
4881 if (DECL_LANG_SPECIFIC (decl)
4882 && DECL_TEMPLATE_SPECIALIZATION (decl))
4883 {
4884 /* A specialization of a member template of a template
4885 class. */
4886 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4887 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
4888 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
4889 }
4890 }
4891 }
4892 else
4893 {
4894 tree a, t, current, parms;
4895 int i;
4896 tree tinfo = get_template_info (decl);
4897
4898 if (!tinfo)
4899 {
4900 error ("template definition of non-template %q#D", decl);
4901 return error_mark_node;
4902 }
4903
4904 tmpl = TI_TEMPLATE (tinfo);
4905
4906 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
4907 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
4908 && DECL_TEMPLATE_SPECIALIZATION (decl)
4909 && DECL_MEMBER_TEMPLATE_P (tmpl))
4910 {
4911 tree new_tmpl;
4912
4913 /* The declaration is a specialization of a member
4914 template, declared outside the class. Therefore, the
4915 innermost template arguments will be NULL, so we
4916 replace them with the arguments determined by the
4917 earlier call to check_explicit_specialization. */
4918 args = DECL_TI_ARGS (decl);
4919
4920 new_tmpl
4921 = build_template_decl (decl, current_template_parms,
4922 member_template_p);
4923 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
4924 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
4925 DECL_TI_TEMPLATE (decl) = new_tmpl;
4926 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
4927 DECL_TEMPLATE_INFO (new_tmpl)
4928 = build_template_info (tmpl, args);
4929
4930 register_specialization (new_tmpl,
4931 most_general_template (tmpl),
4932 args,
4933 is_friend, 0);
4934 return decl;
4935 }
4936
4937 /* Make sure the template headers we got make sense. */
4938
4939 parms = DECL_TEMPLATE_PARMS (tmpl);
4940 i = TMPL_PARMS_DEPTH (parms);
4941 if (TMPL_ARGS_DEPTH (args) != i)
4942 {
4943 error ("expected %d levels of template parms for %q#D, got %d",
4944 i, decl, TMPL_ARGS_DEPTH (args));
4945 DECL_INTERFACE_KNOWN (decl) = 1;
4946 return error_mark_node;
4947 }
4948 else
4949 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
4950 {
4951 a = TMPL_ARGS_LEVEL (args, i);
4952 t = INNERMOST_TEMPLATE_PARMS (parms);
4953
4954 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
4955 {
4956 if (current == decl)
4957 error ("got %d template parameters for %q#D",
4958 TREE_VEC_LENGTH (a), decl);
4959 else
4960 error ("got %d template parameters for %q#T",
4961 TREE_VEC_LENGTH (a), current);
4962 error (" but %d required", TREE_VEC_LENGTH (t));
4963 /* Avoid crash in import_export_decl. */
4964 DECL_INTERFACE_KNOWN (decl) = 1;
4965 return error_mark_node;
4966 }
4967
4968 if (current == decl)
4969 current = ctx;
4970 else if (current == NULL_TREE)
4971 /* Can happen in erroneous input. */
4972 break;
4973 else
4974 current = get_containing_scope (current);
4975 }
4976
4977 /* Check that the parms are used in the appropriate qualifying scopes
4978 in the declarator. */
4979 if (!comp_template_args
4980 (TI_ARGS (tinfo),
4981 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
4982 {
4983 error ("\
4984 template arguments to %qD do not match original template %qD",
4985 decl, DECL_TEMPLATE_RESULT (tmpl));
4986 if (!uses_template_parms (TI_ARGS (tinfo)))
4987 inform (input_location, "use template<> for an explicit specialization");
4988 /* Avoid crash in import_export_decl. */
4989 DECL_INTERFACE_KNOWN (decl) = 1;
4990 return error_mark_node;
4991 }
4992 }
4993
4994 DECL_TEMPLATE_RESULT (tmpl) = decl;
4995 TREE_TYPE (tmpl) = TREE_TYPE (decl);
4996
4997 /* Push template declarations for global functions and types. Note
4998 that we do not try to push a global template friend declared in a
4999 template class; such a thing may well depend on the template
5000 parameters of the class. */
5001 if (new_template_p && !ctx
5002 && !(is_friend && template_class_depth (current_class_type) > 0))
5003 {
5004 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5005 if (tmpl == error_mark_node)
5006 return error_mark_node;
5007
5008 /* Hide template friend classes that haven't been declared yet. */
5009 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5010 {
5011 DECL_ANTICIPATED (tmpl) = 1;
5012 DECL_FRIEND_P (tmpl) = 1;
5013 }
5014 }
5015
5016 if (is_primary)
5017 {
5018 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5019 int i;
5020
5021 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5022 if (DECL_CONV_FN_P (tmpl))
5023 {
5024 int depth = TMPL_PARMS_DEPTH (parms);
5025
5026 /* It is a conversion operator. See if the type converted to
5027 depends on innermost template operands. */
5028
5029 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5030 depth))
5031 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5032 }
5033
5034 /* Give template template parms a DECL_CONTEXT of the template
5035 for which they are a parameter. */
5036 parms = INNERMOST_TEMPLATE_PARMS (parms);
5037 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5038 {
5039 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5040 if (TREE_CODE (parm) == TEMPLATE_DECL)
5041 DECL_CONTEXT (parm) = tmpl;
5042 }
5043 }
5044
5045 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5046 back to its most general template. If TMPL is a specialization,
5047 ARGS may only have the innermost set of arguments. Add the missing
5048 argument levels if necessary. */
5049 if (DECL_TEMPLATE_INFO (tmpl))
5050 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5051
5052 info = build_template_info (tmpl, args);
5053
5054 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5055 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5056 else
5057 {
5058 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5059 retrofit_lang_decl (decl);
5060 if (DECL_LANG_SPECIFIC (decl))
5061 DECL_TEMPLATE_INFO (decl) = info;
5062 }
5063
5064 if (flag_implicit_templates
5065 && !is_friend
5066 && TREE_PUBLIC (decl)
5067 && VAR_OR_FUNCTION_DECL_P (decl))
5068 /* Set DECL_COMDAT on template instantiations; if we force
5069 them to be emitted by explicit instantiation or -frepo,
5070 mark_needed will tell cgraph to do the right thing. */
5071 DECL_COMDAT (decl) = true;
5072
5073 return DECL_TEMPLATE_RESULT (tmpl);
5074 }
5075
5076 tree
5077 push_template_decl (tree decl)
5078 {
5079 return push_template_decl_real (decl, false);
5080 }
5081
5082 /* FN is an inheriting constructor that inherits from the constructor
5083 template INHERITED; turn FN into a constructor template with a matching
5084 template header. */
5085
5086 tree
5087 add_inherited_template_parms (tree fn, tree inherited)
5088 {
5089 tree inner_parms
5090 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5091 inner_parms = copy_node (inner_parms);
5092 tree parms
5093 = tree_cons (size_int (processing_template_decl + 1),
5094 inner_parms, current_template_parms);
5095 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5096 tree args = template_parms_to_args (parms);
5097 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5098 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5099 DECL_TEMPLATE_RESULT (tmpl) = fn;
5100 DECL_ARTIFICIAL (tmpl) = true;
5101 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5102 return tmpl;
5103 }
5104
5105 /* Called when a class template TYPE is redeclared with the indicated
5106 template PARMS, e.g.:
5107
5108 template <class T> struct S;
5109 template <class T> struct S {}; */
5110
5111 bool
5112 redeclare_class_template (tree type, tree parms)
5113 {
5114 tree tmpl;
5115 tree tmpl_parms;
5116 int i;
5117
5118 if (!TYPE_TEMPLATE_INFO (type))
5119 {
5120 error ("%qT is not a template type", type);
5121 return false;
5122 }
5123
5124 tmpl = TYPE_TI_TEMPLATE (type);
5125 if (!PRIMARY_TEMPLATE_P (tmpl))
5126 /* The type is nested in some template class. Nothing to worry
5127 about here; there are no new template parameters for the nested
5128 type. */
5129 return true;
5130
5131 if (!parms)
5132 {
5133 error ("template specifiers not specified in declaration of %qD",
5134 tmpl);
5135 return false;
5136 }
5137
5138 parms = INNERMOST_TEMPLATE_PARMS (parms);
5139 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5140
5141 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5142 {
5143 error_n (input_location, TREE_VEC_LENGTH (parms),
5144 "redeclared with %d template parameter",
5145 "redeclared with %d template parameters",
5146 TREE_VEC_LENGTH (parms));
5147 inform_n (input_location, TREE_VEC_LENGTH (tmpl_parms),
5148 "previous declaration %q+D used %d template parameter",
5149 "previous declaration %q+D used %d template parameters",
5150 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5151 return false;
5152 }
5153
5154 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5155 {
5156 tree tmpl_parm;
5157 tree parm;
5158 tree tmpl_default;
5159 tree parm_default;
5160
5161 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5162 || TREE_VEC_ELT (parms, i) == error_mark_node)
5163 continue;
5164
5165 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5166 if (error_operand_p (tmpl_parm))
5167 return false;
5168
5169 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5170 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5171 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5172
5173 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5174 TEMPLATE_DECL. */
5175 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5176 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5177 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5178 || (TREE_CODE (tmpl_parm) != PARM_DECL
5179 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5180 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5181 || (TREE_CODE (tmpl_parm) == PARM_DECL
5182 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5183 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5184 {
5185 error ("template parameter %q+#D", tmpl_parm);
5186 error ("redeclared here as %q#D", parm);
5187 return false;
5188 }
5189
5190 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5191 {
5192 /* We have in [temp.param]:
5193
5194 A template-parameter may not be given default arguments
5195 by two different declarations in the same scope. */
5196 error_at (input_location, "redefinition of default argument for %q#D", parm);
5197 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5198 "original definition appeared here");
5199 return false;
5200 }
5201
5202 if (parm_default != NULL_TREE)
5203 /* Update the previous template parameters (which are the ones
5204 that will really count) with the new default value. */
5205 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5206 else if (tmpl_default != NULL_TREE)
5207 /* Update the new parameters, too; they'll be used as the
5208 parameters for any members. */
5209 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5210 }
5211
5212 return true;
5213 }
5214
5215 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5216 to be used when the caller has already checked
5217 (processing_template_decl
5218 && !instantiation_dependent_expression_p (expr)
5219 && potential_constant_expression (expr))
5220 and cleared processing_template_decl. */
5221
5222 tree
5223 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
5224 {
5225 return tsubst_copy_and_build (expr,
5226 /*args=*/NULL_TREE,
5227 complain,
5228 /*in_decl=*/NULL_TREE,
5229 /*function_p=*/false,
5230 /*integral_constant_expression_p=*/true);
5231 }
5232
5233 /* Simplify EXPR if it is a non-dependent expression. Returns the
5234 (possibly simplified) expression. */
5235
5236 tree
5237 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5238 {
5239 if (expr == NULL_TREE)
5240 return NULL_TREE;
5241
5242 /* If we're in a template, but EXPR isn't value dependent, simplify
5243 it. We're supposed to treat:
5244
5245 template <typename T> void f(T[1 + 1]);
5246 template <typename T> void f(T[2]);
5247
5248 as two declarations of the same function, for example. */
5249 if (processing_template_decl
5250 && !instantiation_dependent_expression_p (expr)
5251 && potential_constant_expression (expr))
5252 {
5253 processing_template_decl_sentinel s;
5254 expr = instantiate_non_dependent_expr_internal (expr, complain);
5255 }
5256 return expr;
5257 }
5258
5259 tree
5260 instantiate_non_dependent_expr (tree expr)
5261 {
5262 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
5263 }
5264
5265 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5266 template declaration, or a TYPE_DECL for an alias declaration. */
5267
5268 bool
5269 alias_type_or_template_p (tree t)
5270 {
5271 if (t == NULL_TREE)
5272 return false;
5273 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5274 || (TYPE_P (t)
5275 && TYPE_NAME (t)
5276 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5277 || DECL_ALIAS_TEMPLATE_P (t));
5278 }
5279
5280 /* Return TRUE iff T is a specialization of an alias template. */
5281
5282 bool
5283 alias_template_specialization_p (const_tree t)
5284 {
5285 if (t == NULL_TREE)
5286 return false;
5287
5288 return (TYPE_P (t)
5289 && TYPE_TEMPLATE_INFO (t)
5290 && PRIMARY_TEMPLATE_P (TYPE_TI_TEMPLATE (t))
5291 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (t)));
5292 }
5293
5294 /* Return TRUE iff T is a specialization of an alias template with
5295 dependent template-arguments. */
5296
5297 bool
5298 dependent_alias_template_spec_p (const_tree t)
5299 {
5300 return (alias_template_specialization_p (t)
5301 && any_dependent_template_arguments_p (TYPE_TI_ARGS (t)));
5302 }
5303
5304 /* Return the number of innermost template parameters in TMPL. */
5305
5306 static int
5307 num_innermost_template_parms (tree tmpl)
5308 {
5309 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5310 return TREE_VEC_LENGTH (parms);
5311 }
5312
5313 /* Return either TMPL or another template that it is equivalent to under DR
5314 1286: An alias that just changes the name of a template is equivalent to
5315 the other template. */
5316
5317 static tree
5318 get_underlying_template (tree tmpl)
5319 {
5320 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5321 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5322 {
5323 tree result = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5324 if (TYPE_TEMPLATE_INFO (result))
5325 {
5326 tree sub = TYPE_TI_TEMPLATE (result);
5327 if (PRIMARY_TEMPLATE_P (sub)
5328 && (num_innermost_template_parms (tmpl)
5329 == num_innermost_template_parms (sub)))
5330 {
5331 tree alias_args = INNERMOST_TEMPLATE_ARGS
5332 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5333 if (!comp_template_args (TYPE_TI_ARGS (result), alias_args))
5334 break;
5335 /* The alias type is equivalent to the pattern of the
5336 underlying template, so strip the alias. */
5337 tmpl = sub;
5338 continue;
5339 }
5340 }
5341 break;
5342 }
5343 return tmpl;
5344 }
5345
5346 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5347 must be a function or a pointer-to-function type, as specified
5348 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5349 and check that the resulting function has external linkage. */
5350
5351 static tree
5352 convert_nontype_argument_function (tree type, tree expr,
5353 tsubst_flags_t complain)
5354 {
5355 tree fns = expr;
5356 tree fn, fn_no_ptr;
5357 linkage_kind linkage;
5358
5359 fn = instantiate_type (type, fns, tf_none);
5360 if (fn == error_mark_node)
5361 return error_mark_node;
5362
5363 fn_no_ptr = fn;
5364 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5365 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5366 if (BASELINK_P (fn_no_ptr))
5367 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5368
5369 /* [temp.arg.nontype]/1
5370
5371 A template-argument for a non-type, non-template template-parameter
5372 shall be one of:
5373 [...]
5374 -- the address of an object or function with external [C++11: or
5375 internal] linkage. */
5376
5377 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5378 {
5379 if (complain & tf_error)
5380 {
5381 error ("%qE is not a valid template argument for type %qT",
5382 expr, type);
5383 if (TYPE_PTR_P (type))
5384 error ("it must be the address of a function with "
5385 "external linkage");
5386 else
5387 error ("it must be the name of a function with "
5388 "external linkage");
5389 }
5390 return NULL_TREE;
5391 }
5392
5393 linkage = decl_linkage (fn_no_ptr);
5394 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
5395 {
5396 if (complain & tf_error)
5397 {
5398 if (cxx_dialect >= cxx11)
5399 error ("%qE is not a valid template argument for type %qT "
5400 "because %qD has no linkage",
5401 expr, type, fn_no_ptr);
5402 else
5403 error ("%qE is not a valid template argument for type %qT "
5404 "because %qD does not have external linkage",
5405 expr, type, fn_no_ptr);
5406 }
5407 return NULL_TREE;
5408 }
5409
5410 return fn;
5411 }
5412
5413 /* Subroutine of convert_nontype_argument.
5414 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5415 Emit an error otherwise. */
5416
5417 static bool
5418 check_valid_ptrmem_cst_expr (tree type, tree expr,
5419 tsubst_flags_t complain)
5420 {
5421 STRIP_NOPS (expr);
5422 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5423 return true;
5424 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
5425 return true;
5426 if (processing_template_decl
5427 && TREE_CODE (expr) == ADDR_EXPR
5428 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
5429 return true;
5430 if (complain & tf_error)
5431 {
5432 error ("%qE is not a valid template argument for type %qT",
5433 expr, type);
5434 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5435 }
5436 return false;
5437 }
5438
5439 /* Returns TRUE iff the address of OP is value-dependent.
5440
5441 14.6.2.4 [temp.dep.temp]:
5442 A non-integral non-type template-argument is dependent if its type is
5443 dependent or it has either of the following forms
5444 qualified-id
5445 & qualified-id
5446 and contains a nested-name-specifier which specifies a class-name that
5447 names a dependent type.
5448
5449 We generalize this to just say that the address of a member of a
5450 dependent class is value-dependent; the above doesn't cover the
5451 address of a static data member named with an unqualified-id. */
5452
5453 static bool
5454 has_value_dependent_address (tree op)
5455 {
5456 /* We could use get_inner_reference here, but there's no need;
5457 this is only relevant for template non-type arguments, which
5458 can only be expressed as &id-expression. */
5459 if (DECL_P (op))
5460 {
5461 tree ctx = CP_DECL_CONTEXT (op);
5462 if (TYPE_P (ctx) && dependent_type_p (ctx))
5463 return true;
5464 }
5465
5466 return false;
5467 }
5468
5469 /* The next set of functions are used for providing helpful explanatory
5470 diagnostics for failed overload resolution. Their messages should be
5471 indented by two spaces for consistency with the messages in
5472 call.c */
5473
5474 static int
5475 unify_success (bool /*explain_p*/)
5476 {
5477 return 0;
5478 }
5479
5480 static int
5481 unify_parameter_deduction_failure (bool explain_p, tree parm)
5482 {
5483 if (explain_p)
5484 inform (input_location,
5485 " couldn't deduce template parameter %qD", parm);
5486 return 1;
5487 }
5488
5489 static int
5490 unify_invalid (bool /*explain_p*/)
5491 {
5492 return 1;
5493 }
5494
5495 static int
5496 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5497 {
5498 if (explain_p)
5499 inform (input_location,
5500 " types %qT and %qT have incompatible cv-qualifiers",
5501 parm, arg);
5502 return 1;
5503 }
5504
5505 static int
5506 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5507 {
5508 if (explain_p)
5509 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5510 return 1;
5511 }
5512
5513 static int
5514 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
5515 {
5516 if (explain_p)
5517 inform (input_location,
5518 " template parameter %qD is not a parameter pack, but "
5519 "argument %qD is",
5520 parm, arg);
5521 return 1;
5522 }
5523
5524 static int
5525 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
5526 {
5527 if (explain_p)
5528 inform (input_location,
5529 " template argument %qE does not match "
5530 "pointer-to-member constant %qE",
5531 arg, parm);
5532 return 1;
5533 }
5534
5535 static int
5536 unify_expression_unequal (bool explain_p, tree parm, tree arg)
5537 {
5538 if (explain_p)
5539 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
5540 return 1;
5541 }
5542
5543 static int
5544 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
5545 {
5546 if (explain_p)
5547 inform (input_location,
5548 " inconsistent parameter pack deduction with %qT and %qT",
5549 old_arg, new_arg);
5550 return 1;
5551 }
5552
5553 static int
5554 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
5555 {
5556 if (explain_p)
5557 {
5558 if (TYPE_P (parm))
5559 inform (input_location,
5560 " deduced conflicting types for parameter %qT (%qT and %qT)",
5561 parm, first, second);
5562 else
5563 inform (input_location,
5564 " deduced conflicting values for non-type parameter "
5565 "%qE (%qE and %qE)", parm, first, second);
5566 }
5567 return 1;
5568 }
5569
5570 static int
5571 unify_vla_arg (bool explain_p, tree arg)
5572 {
5573 if (explain_p)
5574 inform (input_location,
5575 " variable-sized array type %qT is not "
5576 "a valid template argument",
5577 arg);
5578 return 1;
5579 }
5580
5581 static int
5582 unify_method_type_error (bool explain_p, tree arg)
5583 {
5584 if (explain_p)
5585 inform (input_location,
5586 " member function type %qT is not a valid template argument",
5587 arg);
5588 return 1;
5589 }
5590
5591 static int
5592 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
5593 {
5594 if (explain_p)
5595 {
5596 if (least_p)
5597 inform_n (input_location, wanted,
5598 " candidate expects at least %d argument, %d provided",
5599 " candidate expects at least %d arguments, %d provided",
5600 wanted, have);
5601 else
5602 inform_n (input_location, wanted,
5603 " candidate expects %d argument, %d provided",
5604 " candidate expects %d arguments, %d provided",
5605 wanted, have);
5606 }
5607 return 1;
5608 }
5609
5610 static int
5611 unify_too_many_arguments (bool explain_p, int have, int wanted)
5612 {
5613 return unify_arity (explain_p, have, wanted);
5614 }
5615
5616 static int
5617 unify_too_few_arguments (bool explain_p, int have, int wanted,
5618 bool least_p = false)
5619 {
5620 return unify_arity (explain_p, have, wanted, least_p);
5621 }
5622
5623 static int
5624 unify_arg_conversion (bool explain_p, tree to_type,
5625 tree from_type, tree arg)
5626 {
5627 if (explain_p)
5628 inform (EXPR_LOC_OR_LOC (arg, input_location),
5629 " cannot convert %qE (type %qT) to type %qT",
5630 arg, from_type, to_type);
5631 return 1;
5632 }
5633
5634 static int
5635 unify_no_common_base (bool explain_p, enum template_base_result r,
5636 tree parm, tree arg)
5637 {
5638 if (explain_p)
5639 switch (r)
5640 {
5641 case tbr_ambiguous_baseclass:
5642 inform (input_location, " %qT is an ambiguous base class of %qT",
5643 parm, arg);
5644 break;
5645 default:
5646 inform (input_location, " %qT is not derived from %qT", arg, parm);
5647 break;
5648 }
5649 return 1;
5650 }
5651
5652 static int
5653 unify_inconsistent_template_template_parameters (bool explain_p)
5654 {
5655 if (explain_p)
5656 inform (input_location,
5657 " template parameters of a template template argument are "
5658 "inconsistent with other deduced template arguments");
5659 return 1;
5660 }
5661
5662 static int
5663 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
5664 {
5665 if (explain_p)
5666 inform (input_location,
5667 " can't deduce a template for %qT from non-template type %qT",
5668 parm, arg);
5669 return 1;
5670 }
5671
5672 static int
5673 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
5674 {
5675 if (explain_p)
5676 inform (input_location,
5677 " template argument %qE does not match %qD", arg, parm);
5678 return 1;
5679 }
5680
5681 static int
5682 unify_overload_resolution_failure (bool explain_p, tree arg)
5683 {
5684 if (explain_p)
5685 inform (input_location,
5686 " could not resolve address from overloaded function %qE",
5687 arg);
5688 return 1;
5689 }
5690
5691 /* Attempt to convert the non-type template parameter EXPR to the
5692 indicated TYPE. If the conversion is successful, return the
5693 converted value. If the conversion is unsuccessful, return
5694 NULL_TREE if we issued an error message, or error_mark_node if we
5695 did not. We issue error messages for out-and-out bad template
5696 parameters, but not simply because the conversion failed, since we
5697 might be just trying to do argument deduction. Both TYPE and EXPR
5698 must be non-dependent.
5699
5700 The conversion follows the special rules described in
5701 [temp.arg.nontype], and it is much more strict than an implicit
5702 conversion.
5703
5704 This function is called twice for each template argument (see
5705 lookup_template_class for a more accurate description of this
5706 problem). This means that we need to handle expressions which
5707 are not valid in a C++ source, but can be created from the
5708 first call (for instance, casts to perform conversions). These
5709 hacks can go away after we fix the double coercion problem. */
5710
5711 static tree
5712 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
5713 {
5714 tree expr_type;
5715
5716 /* Detect immediately string literals as invalid non-type argument.
5717 This special-case is not needed for correctness (we would easily
5718 catch this later), but only to provide better diagnostic for this
5719 common user mistake. As suggested by DR 100, we do not mention
5720 linkage issues in the diagnostic as this is not the point. */
5721 /* FIXME we're making this OK. */
5722 if (TREE_CODE (expr) == STRING_CST)
5723 {
5724 if (complain & tf_error)
5725 error ("%qE is not a valid template argument for type %qT "
5726 "because string literals can never be used in this context",
5727 expr, type);
5728 return NULL_TREE;
5729 }
5730
5731 /* Add the ADDR_EXPR now for the benefit of
5732 value_dependent_expression_p. */
5733 if (TYPE_PTROBV_P (type)
5734 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
5735 {
5736 expr = decay_conversion (expr, complain);
5737 if (expr == error_mark_node)
5738 return error_mark_node;
5739 }
5740
5741 /* If we are in a template, EXPR may be non-dependent, but still
5742 have a syntactic, rather than semantic, form. For example, EXPR
5743 might be a SCOPE_REF, rather than the VAR_DECL to which the
5744 SCOPE_REF refers. Preserving the qualifying scope is necessary
5745 so that access checking can be performed when the template is
5746 instantiated -- but here we need the resolved form so that we can
5747 convert the argument. */
5748 bool non_dep = false;
5749 if (TYPE_REF_OBJ_P (type)
5750 && has_value_dependent_address (expr))
5751 /* If we want the address and it's value-dependent, don't fold. */;
5752 else if (!type_unknown_p (expr)
5753 && processing_template_decl
5754 && !instantiation_dependent_expression_p (expr)
5755 && potential_constant_expression (expr))
5756 non_dep = true;
5757 if (error_operand_p (expr))
5758 return error_mark_node;
5759 expr_type = TREE_TYPE (expr);
5760 if (TREE_CODE (type) == REFERENCE_TYPE)
5761 expr = mark_lvalue_use (expr);
5762 else
5763 expr = mark_rvalue_use (expr);
5764
5765 /* If the argument is non-dependent, perform any conversions in
5766 non-dependent context as well. */
5767 processing_template_decl_sentinel s (non_dep);
5768 if (non_dep)
5769 expr = instantiate_non_dependent_expr_internal (expr, complain);
5770
5771 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
5772 to a non-type argument of "nullptr". */
5773 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
5774 expr = convert (type, expr);
5775
5776 /* In C++11, integral or enumeration non-type template arguments can be
5777 arbitrary constant expressions. Pointer and pointer to
5778 member arguments can be general constant expressions that evaluate
5779 to a null value, but otherwise still need to be of a specific form. */
5780 if (cxx_dialect >= cxx11)
5781 {
5782 if (TREE_CODE (expr) == PTRMEM_CST)
5783 /* A PTRMEM_CST is already constant, and a valid template
5784 argument for a parameter of pointer to member type, we just want
5785 to leave it in that form rather than lower it to a
5786 CONSTRUCTOR. */;
5787 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5788 expr = maybe_constant_value (expr);
5789 else if (TYPE_PTR_OR_PTRMEM_P (type))
5790 {
5791 tree folded = maybe_constant_value (expr);
5792 if (TYPE_PTR_P (type) ? integer_zerop (folded)
5793 : null_member_pointer_value_p (folded))
5794 expr = folded;
5795 }
5796 }
5797
5798 /* HACK: Due to double coercion, we can get a
5799 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
5800 which is the tree that we built on the first call (see
5801 below when coercing to reference to object or to reference to
5802 function). We just strip everything and get to the arg.
5803 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
5804 for examples. */
5805 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
5806 {
5807 tree probe_type, probe = expr;
5808 if (REFERENCE_REF_P (probe))
5809 probe = TREE_OPERAND (probe, 0);
5810 probe_type = TREE_TYPE (probe);
5811 if (TREE_CODE (probe) == NOP_EXPR)
5812 {
5813 /* ??? Maybe we could use convert_from_reference here, but we
5814 would need to relax its constraints because the NOP_EXPR
5815 could actually change the type to something more cv-qualified,
5816 and this is not folded by convert_from_reference. */
5817 tree addr = TREE_OPERAND (probe, 0);
5818 if (TREE_CODE (probe_type) == REFERENCE_TYPE
5819 && TREE_CODE (addr) == ADDR_EXPR
5820 && TYPE_PTR_P (TREE_TYPE (addr))
5821 && (same_type_ignoring_top_level_qualifiers_p
5822 (TREE_TYPE (probe_type),
5823 TREE_TYPE (TREE_TYPE (addr)))))
5824 {
5825 expr = TREE_OPERAND (addr, 0);
5826 expr_type = TREE_TYPE (probe_type);
5827 }
5828 }
5829 }
5830
5831 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
5832 parameter is a pointer to object, through decay and
5833 qualification conversion. Let's strip everything. */
5834 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
5835 {
5836 tree probe = expr;
5837 STRIP_NOPS (probe);
5838 if (TREE_CODE (probe) == ADDR_EXPR
5839 && TYPE_PTR_P (TREE_TYPE (probe)))
5840 {
5841 /* Skip the ADDR_EXPR only if it is part of the decay for
5842 an array. Otherwise, it is part of the original argument
5843 in the source code. */
5844 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
5845 probe = TREE_OPERAND (probe, 0);
5846 expr = probe;
5847 expr_type = TREE_TYPE (expr);
5848 }
5849 }
5850
5851 /* [temp.arg.nontype]/5, bullet 1
5852
5853 For a non-type template-parameter of integral or enumeration type,
5854 integral promotions (_conv.prom_) and integral conversions
5855 (_conv.integral_) are applied. */
5856 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5857 {
5858 tree t = build_integral_nontype_arg_conv (type, expr, complain);
5859 t = maybe_constant_value (t);
5860 if (t != error_mark_node)
5861 expr = t;
5862
5863 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
5864 return error_mark_node;
5865
5866 /* Notice that there are constant expressions like '4 % 0' which
5867 do not fold into integer constants. */
5868 if (TREE_CODE (expr) != INTEGER_CST)
5869 {
5870 if (complain & tf_error)
5871 {
5872 int errs = errorcount, warns = warningcount + werrorcount;
5873 if (processing_template_decl
5874 && !require_potential_constant_expression (expr))
5875 return NULL_TREE;
5876 expr = cxx_constant_value (expr);
5877 if (errorcount > errs || warningcount + werrorcount > warns)
5878 inform (EXPR_LOC_OR_LOC (expr, input_location),
5879 "in template argument for type %qT ", type);
5880 if (expr == error_mark_node)
5881 return NULL_TREE;
5882 /* else cxx_constant_value complained but gave us
5883 a real constant, so go ahead. */
5884 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
5885 }
5886 else
5887 return NULL_TREE;
5888 }
5889
5890 /* Avoid typedef problems. */
5891 if (TREE_TYPE (expr) != type)
5892 expr = fold_convert (type, expr);
5893 }
5894 /* [temp.arg.nontype]/5, bullet 2
5895
5896 For a non-type template-parameter of type pointer to object,
5897 qualification conversions (_conv.qual_) and the array-to-pointer
5898 conversion (_conv.array_) are applied. */
5899 else if (TYPE_PTROBV_P (type))
5900 {
5901 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
5902
5903 A template-argument for a non-type, non-template template-parameter
5904 shall be one of: [...]
5905
5906 -- the name of a non-type template-parameter;
5907 -- the address of an object or function with external linkage, [...]
5908 expressed as "& id-expression" where the & is optional if the name
5909 refers to a function or array, or if the corresponding
5910 template-parameter is a reference.
5911
5912 Here, we do not care about functions, as they are invalid anyway
5913 for a parameter of type pointer-to-object. */
5914
5915 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
5916 /* Non-type template parameters are OK. */
5917 ;
5918 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
5919 /* Null pointer values are OK in C++11. */;
5920 else if (TREE_CODE (expr) != ADDR_EXPR
5921 && TREE_CODE (expr_type) != ARRAY_TYPE)
5922 {
5923 if (VAR_P (expr))
5924 {
5925 if (complain & tf_error)
5926 error ("%qD is not a valid template argument "
5927 "because %qD is a variable, not the address of "
5928 "a variable", expr, expr);
5929 return NULL_TREE;
5930 }
5931 if (POINTER_TYPE_P (expr_type))
5932 {
5933 if (complain & tf_error)
5934 error ("%qE is not a valid template argument for %qT "
5935 "because it is not the address of a variable",
5936 expr, type);
5937 return NULL_TREE;
5938 }
5939 /* Other values, like integer constants, might be valid
5940 non-type arguments of some other type. */
5941 return error_mark_node;
5942 }
5943 else
5944 {
5945 tree decl;
5946
5947 decl = ((TREE_CODE (expr) == ADDR_EXPR)
5948 ? TREE_OPERAND (expr, 0) : expr);
5949 if (!VAR_P (decl))
5950 {
5951 if (complain & tf_error)
5952 error ("%qE is not a valid template argument of type %qT "
5953 "because %qE is not a variable", expr, type, decl);
5954 return NULL_TREE;
5955 }
5956 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
5957 {
5958 if (complain & tf_error)
5959 error ("%qE is not a valid template argument of type %qT "
5960 "because %qD does not have external linkage",
5961 expr, type, decl);
5962 return NULL_TREE;
5963 }
5964 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
5965 {
5966 if (complain & tf_error)
5967 error ("%qE is not a valid template argument of type %qT "
5968 "because %qD has no linkage", expr, type, decl);
5969 return NULL_TREE;
5970 }
5971 }
5972
5973 expr = decay_conversion (expr, complain);
5974 if (expr == error_mark_node)
5975 return error_mark_node;
5976
5977 expr = perform_qualification_conversions (type, expr);
5978 if (expr == error_mark_node)
5979 return error_mark_node;
5980 }
5981 /* [temp.arg.nontype]/5, bullet 3
5982
5983 For a non-type template-parameter of type reference to object, no
5984 conversions apply. The type referred to by the reference may be more
5985 cv-qualified than the (otherwise identical) type of the
5986 template-argument. The template-parameter is bound directly to the
5987 template-argument, which must be an lvalue. */
5988 else if (TYPE_REF_OBJ_P (type))
5989 {
5990 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
5991 expr_type))
5992 return error_mark_node;
5993
5994 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
5995 {
5996 if (complain & tf_error)
5997 error ("%qE is not a valid template argument for type %qT "
5998 "because of conflicts in cv-qualification", expr, type);
5999 return NULL_TREE;
6000 }
6001
6002 if (!real_lvalue_p (expr))
6003 {
6004 if (complain & tf_error)
6005 error ("%qE is not a valid template argument for type %qT "
6006 "because it is not an lvalue", expr, type);
6007 return NULL_TREE;
6008 }
6009
6010 /* [temp.arg.nontype]/1
6011
6012 A template-argument for a non-type, non-template template-parameter
6013 shall be one of: [...]
6014
6015 -- the address of an object or function with external linkage. */
6016 if (INDIRECT_REF_P (expr)
6017 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
6018 {
6019 expr = TREE_OPERAND (expr, 0);
6020 if (DECL_P (expr))
6021 {
6022 if (complain & tf_error)
6023 error ("%q#D is not a valid template argument for type %qT "
6024 "because a reference variable does not have a constant "
6025 "address", expr, type);
6026 return NULL_TREE;
6027 }
6028 }
6029
6030 if (!DECL_P (expr))
6031 {
6032 if (complain & tf_error)
6033 error ("%qE is not a valid template argument for type %qT "
6034 "because it is not an object with external linkage",
6035 expr, type);
6036 return NULL_TREE;
6037 }
6038
6039 if (!DECL_EXTERNAL_LINKAGE_P (expr))
6040 {
6041 if (complain & tf_error)
6042 error ("%qE is not a valid template argument for type %qT "
6043 "because object %qD has not external linkage",
6044 expr, type, expr);
6045 return NULL_TREE;
6046 }
6047
6048 expr = build_nop (type, build_address (expr));
6049 }
6050 /* [temp.arg.nontype]/5, bullet 4
6051
6052 For a non-type template-parameter of type pointer to function, only
6053 the function-to-pointer conversion (_conv.func_) is applied. If the
6054 template-argument represents a set of overloaded functions (or a
6055 pointer to such), the matching function is selected from the set
6056 (_over.over_). */
6057 else if (TYPE_PTRFN_P (type))
6058 {
6059 /* If the argument is a template-id, we might not have enough
6060 context information to decay the pointer. */
6061 if (!type_unknown_p (expr_type))
6062 {
6063 expr = decay_conversion (expr, complain);
6064 if (expr == error_mark_node)
6065 return error_mark_node;
6066 }
6067
6068 if (cxx_dialect >= cxx11 && integer_zerop (expr))
6069 /* Null pointer values are OK in C++11. */
6070 return perform_qualification_conversions (type, expr);
6071
6072 expr = convert_nontype_argument_function (type, expr, complain);
6073 if (!expr || expr == error_mark_node)
6074 return expr;
6075 }
6076 /* [temp.arg.nontype]/5, bullet 5
6077
6078 For a non-type template-parameter of type reference to function, no
6079 conversions apply. If the template-argument represents a set of
6080 overloaded functions, the matching function is selected from the set
6081 (_over.over_). */
6082 else if (TYPE_REFFN_P (type))
6083 {
6084 if (TREE_CODE (expr) == ADDR_EXPR)
6085 {
6086 if (complain & tf_error)
6087 {
6088 error ("%qE is not a valid template argument for type %qT "
6089 "because it is a pointer", expr, type);
6090 inform (input_location, "try using %qE instead",
6091 TREE_OPERAND (expr, 0));
6092 }
6093 return NULL_TREE;
6094 }
6095
6096 expr = convert_nontype_argument_function (type, expr, complain);
6097 if (!expr || expr == error_mark_node)
6098 return expr;
6099
6100 expr = build_nop (type, build_address (expr));
6101 }
6102 /* [temp.arg.nontype]/5, bullet 6
6103
6104 For a non-type template-parameter of type pointer to member function,
6105 no conversions apply. If the template-argument represents a set of
6106 overloaded member functions, the matching member function is selected
6107 from the set (_over.over_). */
6108 else if (TYPE_PTRMEMFUNC_P (type))
6109 {
6110 expr = instantiate_type (type, expr, tf_none);
6111 if (expr == error_mark_node)
6112 return error_mark_node;
6113
6114 /* [temp.arg.nontype] bullet 1 says the pointer to member
6115 expression must be a pointer-to-member constant. */
6116 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6117 return error_mark_node;
6118
6119 /* There is no way to disable standard conversions in
6120 resolve_address_of_overloaded_function (called by
6121 instantiate_type). It is possible that the call succeeded by
6122 converting &B::I to &D::I (where B is a base of D), so we need
6123 to reject this conversion here.
6124
6125 Actually, even if there was a way to disable standard conversions,
6126 it would still be better to reject them here so that we can
6127 provide a superior diagnostic. */
6128 if (!same_type_p (TREE_TYPE (expr), type))
6129 {
6130 if (complain & tf_error)
6131 {
6132 error ("%qE is not a valid template argument for type %qT "
6133 "because it is of type %qT", expr, type,
6134 TREE_TYPE (expr));
6135 /* If we are just one standard conversion off, explain. */
6136 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6137 inform (input_location,
6138 "standard conversions are not allowed in this context");
6139 }
6140 return NULL_TREE;
6141 }
6142 }
6143 /* [temp.arg.nontype]/5, bullet 7
6144
6145 For a non-type template-parameter of type pointer to data member,
6146 qualification conversions (_conv.qual_) are applied. */
6147 else if (TYPE_PTRDATAMEM_P (type))
6148 {
6149 /* [temp.arg.nontype] bullet 1 says the pointer to member
6150 expression must be a pointer-to-member constant. */
6151 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6152 return error_mark_node;
6153
6154 expr = perform_qualification_conversions (type, expr);
6155 if (expr == error_mark_node)
6156 return expr;
6157 }
6158 else if (NULLPTR_TYPE_P (type))
6159 {
6160 if (expr != nullptr_node)
6161 {
6162 if (complain & tf_error)
6163 error ("%qE is not a valid template argument for type %qT "
6164 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6165 return NULL_TREE;
6166 }
6167 return expr;
6168 }
6169 /* A template non-type parameter must be one of the above. */
6170 else
6171 gcc_unreachable ();
6172
6173 /* Sanity check: did we actually convert the argument to the
6174 right type? */
6175 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6176 (type, TREE_TYPE (expr)));
6177 return convert_from_reference (expr);
6178 }
6179
6180 /* Subroutine of coerce_template_template_parms, which returns 1 if
6181 PARM_PARM and ARG_PARM match using the rule for the template
6182 parameters of template template parameters. Both PARM and ARG are
6183 template parameters; the rest of the arguments are the same as for
6184 coerce_template_template_parms.
6185 */
6186 static int
6187 coerce_template_template_parm (tree parm,
6188 tree arg,
6189 tsubst_flags_t complain,
6190 tree in_decl,
6191 tree outer_args)
6192 {
6193 if (arg == NULL_TREE || error_operand_p (arg)
6194 || parm == NULL_TREE || error_operand_p (parm))
6195 return 0;
6196
6197 if (TREE_CODE (arg) != TREE_CODE (parm))
6198 return 0;
6199
6200 switch (TREE_CODE (parm))
6201 {
6202 case TEMPLATE_DECL:
6203 /* We encounter instantiations of templates like
6204 template <template <template <class> class> class TT>
6205 class C; */
6206 {
6207 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6208 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6209
6210 if (!coerce_template_template_parms
6211 (parmparm, argparm, complain, in_decl, outer_args))
6212 return 0;
6213 }
6214 /* Fall through. */
6215
6216 case TYPE_DECL:
6217 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6218 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6219 /* Argument is a parameter pack but parameter is not. */
6220 return 0;
6221 break;
6222
6223 case PARM_DECL:
6224 /* The tsubst call is used to handle cases such as
6225
6226 template <int> class C {};
6227 template <class T, template <T> class TT> class D {};
6228 D<int, C> d;
6229
6230 i.e. the parameter list of TT depends on earlier parameters. */
6231 if (!uses_template_parms (TREE_TYPE (arg))
6232 && !same_type_p
6233 (tsubst (TREE_TYPE (parm), outer_args, complain, in_decl),
6234 TREE_TYPE (arg)))
6235 return 0;
6236
6237 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6238 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6239 /* Argument is a parameter pack but parameter is not. */
6240 return 0;
6241
6242 break;
6243
6244 default:
6245 gcc_unreachable ();
6246 }
6247
6248 return 1;
6249 }
6250
6251
6252 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6253 template template parameters. Both PARM_PARMS and ARG_PARMS are
6254 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6255 or PARM_DECL.
6256
6257 Consider the example:
6258 template <class T> class A;
6259 template<template <class U> class TT> class B;
6260
6261 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6262 the parameters to A, and OUTER_ARGS contains A. */
6263
6264 static int
6265 coerce_template_template_parms (tree parm_parms,
6266 tree arg_parms,
6267 tsubst_flags_t complain,
6268 tree in_decl,
6269 tree outer_args)
6270 {
6271 int nparms, nargs, i;
6272 tree parm, arg;
6273 int variadic_p = 0;
6274
6275 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
6276 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
6277
6278 nparms = TREE_VEC_LENGTH (parm_parms);
6279 nargs = TREE_VEC_LENGTH (arg_parms);
6280
6281 /* Determine whether we have a parameter pack at the end of the
6282 template template parameter's template parameter list. */
6283 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
6284 {
6285 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
6286
6287 if (error_operand_p (parm))
6288 return 0;
6289
6290 switch (TREE_CODE (parm))
6291 {
6292 case TEMPLATE_DECL:
6293 case TYPE_DECL:
6294 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6295 variadic_p = 1;
6296 break;
6297
6298 case PARM_DECL:
6299 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6300 variadic_p = 1;
6301 break;
6302
6303 default:
6304 gcc_unreachable ();
6305 }
6306 }
6307
6308 if (nargs != nparms
6309 && !(variadic_p && nargs >= nparms - 1))
6310 return 0;
6311
6312 /* Check all of the template parameters except the parameter pack at
6313 the end (if any). */
6314 for (i = 0; i < nparms - variadic_p; ++i)
6315 {
6316 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6317 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6318 continue;
6319
6320 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6321 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6322
6323 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6324 outer_args))
6325 return 0;
6326
6327 }
6328
6329 if (variadic_p)
6330 {
6331 /* Check each of the template parameters in the template
6332 argument against the template parameter pack at the end of
6333 the template template parameter. */
6334 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6335 return 0;
6336
6337 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6338
6339 for (; i < nargs; ++i)
6340 {
6341 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6342 continue;
6343
6344 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6345
6346 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6347 outer_args))
6348 return 0;
6349 }
6350 }
6351
6352 return 1;
6353 }
6354
6355 /* Verifies that the deduced template arguments (in TARGS) for the
6356 template template parameters (in TPARMS) represent valid bindings,
6357 by comparing the template parameter list of each template argument
6358 to the template parameter list of its corresponding template
6359 template parameter, in accordance with DR150. This
6360 routine can only be called after all template arguments have been
6361 deduced. It will return TRUE if all of the template template
6362 parameter bindings are okay, FALSE otherwise. */
6363 bool
6364 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6365 {
6366 int i, ntparms = TREE_VEC_LENGTH (tparms);
6367 bool ret = true;
6368
6369 /* We're dealing with template parms in this process. */
6370 ++processing_template_decl;
6371
6372 targs = INNERMOST_TEMPLATE_ARGS (targs);
6373
6374 for (i = 0; i < ntparms; ++i)
6375 {
6376 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6377 tree targ = TREE_VEC_ELT (targs, i);
6378
6379 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6380 {
6381 tree packed_args = NULL_TREE;
6382 int idx, len = 1;
6383
6384 if (ARGUMENT_PACK_P (targ))
6385 {
6386 /* Look inside the argument pack. */
6387 packed_args = ARGUMENT_PACK_ARGS (targ);
6388 len = TREE_VEC_LENGTH (packed_args);
6389 }
6390
6391 for (idx = 0; idx < len; ++idx)
6392 {
6393 tree targ_parms = NULL_TREE;
6394
6395 if (packed_args)
6396 /* Extract the next argument from the argument
6397 pack. */
6398 targ = TREE_VEC_ELT (packed_args, idx);
6399
6400 if (PACK_EXPANSION_P (targ))
6401 /* Look at the pattern of the pack expansion. */
6402 targ = PACK_EXPANSION_PATTERN (targ);
6403
6404 /* Extract the template parameters from the template
6405 argument. */
6406 if (TREE_CODE (targ) == TEMPLATE_DECL)
6407 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6408 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6409 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6410
6411 /* Verify that we can coerce the template template
6412 parameters from the template argument to the template
6413 parameter. This requires an exact match. */
6414 if (targ_parms
6415 && !coerce_template_template_parms
6416 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6417 targ_parms,
6418 tf_none,
6419 tparm,
6420 targs))
6421 {
6422 ret = false;
6423 goto out;
6424 }
6425 }
6426 }
6427 }
6428
6429 out:
6430
6431 --processing_template_decl;
6432 return ret;
6433 }
6434
6435 /* Since type attributes aren't mangled, we need to strip them from
6436 template type arguments. */
6437
6438 static tree
6439 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6440 {
6441 tree mv;
6442 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6443 return arg;
6444 mv = TYPE_MAIN_VARIANT (arg);
6445 arg = strip_typedefs (arg);
6446 if (TYPE_ALIGN (arg) != TYPE_ALIGN (mv)
6447 || TYPE_ATTRIBUTES (arg) != TYPE_ATTRIBUTES (mv))
6448 {
6449 if (complain & tf_warning)
6450 warning (0, "ignoring attributes on template argument %qT", arg);
6451 arg = build_aligned_type (arg, TYPE_ALIGN (mv));
6452 arg = cp_build_type_attribute_variant (arg, TYPE_ATTRIBUTES (mv));
6453 }
6454 return arg;
6455 }
6456
6457 /* Convert the indicated template ARG as necessary to match the
6458 indicated template PARM. Returns the converted ARG, or
6459 error_mark_node if the conversion was unsuccessful. Error and
6460 warning messages are issued under control of COMPLAIN. This
6461 conversion is for the Ith parameter in the parameter list. ARGS is
6462 the full set of template arguments deduced so far. */
6463
6464 static tree
6465 convert_template_argument (tree parm,
6466 tree arg,
6467 tree args,
6468 tsubst_flags_t complain,
6469 int i,
6470 tree in_decl)
6471 {
6472 tree orig_arg;
6473 tree val;
6474 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
6475
6476 if (TREE_CODE (arg) == TREE_LIST
6477 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
6478 {
6479 /* The template argument was the name of some
6480 member function. That's usually
6481 invalid, but static members are OK. In any
6482 case, grab the underlying fields/functions
6483 and issue an error later if required. */
6484 orig_arg = TREE_VALUE (arg);
6485 TREE_TYPE (arg) = unknown_type_node;
6486 }
6487
6488 orig_arg = arg;
6489
6490 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
6491 requires_type = (TREE_CODE (parm) == TYPE_DECL
6492 || requires_tmpl_type);
6493
6494 /* When determining whether an argument pack expansion is a template,
6495 look at the pattern. */
6496 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
6497 arg = PACK_EXPANSION_PATTERN (arg);
6498
6499 /* Deal with an injected-class-name used as a template template arg. */
6500 if (requires_tmpl_type && CLASS_TYPE_P (arg))
6501 {
6502 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
6503 if (TREE_CODE (t) == TEMPLATE_DECL)
6504 {
6505 if (cxx_dialect >= cxx11)
6506 /* OK under DR 1004. */;
6507 else if (complain & tf_warning_or_error)
6508 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
6509 " used as template template argument", TYPE_NAME (arg));
6510 else if (flag_pedantic_errors)
6511 t = arg;
6512
6513 arg = t;
6514 }
6515 }
6516
6517 is_tmpl_type =
6518 ((TREE_CODE (arg) == TEMPLATE_DECL
6519 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
6520 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
6521 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6522 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
6523
6524 if (is_tmpl_type
6525 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6526 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
6527 arg = TYPE_STUB_DECL (arg);
6528
6529 is_type = TYPE_P (arg) || is_tmpl_type;
6530
6531 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
6532 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
6533 {
6534 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
6535 {
6536 if (complain & tf_error)
6537 error ("invalid use of destructor %qE as a type", orig_arg);
6538 return error_mark_node;
6539 }
6540
6541 permerror (input_location,
6542 "to refer to a type member of a template parameter, "
6543 "use %<typename %E%>", orig_arg);
6544
6545 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
6546 TREE_OPERAND (arg, 1),
6547 typename_type,
6548 complain);
6549 arg = orig_arg;
6550 is_type = 1;
6551 }
6552 if (is_type != requires_type)
6553 {
6554 if (in_decl)
6555 {
6556 if (complain & tf_error)
6557 {
6558 error ("type/value mismatch at argument %d in template "
6559 "parameter list for %qD",
6560 i + 1, in_decl);
6561 if (is_type)
6562 inform (input_location,
6563 " expected a constant of type %qT, got %qT",
6564 TREE_TYPE (parm),
6565 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
6566 else if (requires_tmpl_type)
6567 inform (input_location,
6568 " expected a class template, got %qE", orig_arg);
6569 else
6570 inform (input_location,
6571 " expected a type, got %qE", orig_arg);
6572 }
6573 }
6574 return error_mark_node;
6575 }
6576 if (is_tmpl_type ^ requires_tmpl_type)
6577 {
6578 if (in_decl && (complain & tf_error))
6579 {
6580 error ("type/value mismatch at argument %d in template "
6581 "parameter list for %qD",
6582 i + 1, in_decl);
6583 if (is_tmpl_type)
6584 inform (input_location,
6585 " expected a type, got %qT", DECL_NAME (arg));
6586 else
6587 inform (input_location,
6588 " expected a class template, got %qT", orig_arg);
6589 }
6590 return error_mark_node;
6591 }
6592
6593 if (is_type)
6594 {
6595 if (requires_tmpl_type)
6596 {
6597 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6598 val = orig_arg;
6599 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
6600 /* The number of argument required is not known yet.
6601 Just accept it for now. */
6602 val = TREE_TYPE (arg);
6603 else
6604 {
6605 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6606 tree argparm;
6607
6608 /* Strip alias templates that are equivalent to another
6609 template. */
6610 arg = get_underlying_template (arg);
6611 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6612
6613 if (coerce_template_template_parms (parmparm, argparm,
6614 complain, in_decl,
6615 args))
6616 {
6617 val = arg;
6618
6619 /* TEMPLATE_TEMPLATE_PARM node is preferred over
6620 TEMPLATE_DECL. */
6621 if (val != error_mark_node)
6622 {
6623 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
6624 val = TREE_TYPE (val);
6625 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
6626 val = make_pack_expansion (val);
6627 }
6628 }
6629 else
6630 {
6631 if (in_decl && (complain & tf_error))
6632 {
6633 error ("type/value mismatch at argument %d in "
6634 "template parameter list for %qD",
6635 i + 1, in_decl);
6636 inform (input_location,
6637 " expected a template of type %qD, got %qT",
6638 parm, orig_arg);
6639 }
6640
6641 val = error_mark_node;
6642 }
6643 }
6644 }
6645 else
6646 val = orig_arg;
6647 /* We only form one instance of each template specialization.
6648 Therefore, if we use a non-canonical variant (i.e., a
6649 typedef), any future messages referring to the type will use
6650 the typedef, which is confusing if those future uses do not
6651 themselves also use the typedef. */
6652 if (TYPE_P (val))
6653 val = canonicalize_type_argument (val, complain);
6654 }
6655 else
6656 {
6657 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
6658
6659 if (invalid_nontype_parm_type_p (t, complain))
6660 return error_mark_node;
6661
6662 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6663 {
6664 if (same_type_p (t, TREE_TYPE (orig_arg)))
6665 val = orig_arg;
6666 else
6667 {
6668 /* Not sure if this is reachable, but it doesn't hurt
6669 to be robust. */
6670 error ("type mismatch in nontype parameter pack");
6671 val = error_mark_node;
6672 }
6673 }
6674 else if (!dependent_template_arg_p (orig_arg)
6675 && !uses_template_parms (t))
6676 /* We used to call digest_init here. However, digest_init
6677 will report errors, which we don't want when complain
6678 is zero. More importantly, digest_init will try too
6679 hard to convert things: for example, `0' should not be
6680 converted to pointer type at this point according to
6681 the standard. Accepting this is not merely an
6682 extension, since deciding whether or not these
6683 conversions can occur is part of determining which
6684 function template to call, or whether a given explicit
6685 argument specification is valid. */
6686 val = convert_nontype_argument (t, orig_arg, complain);
6687 else
6688 val = strip_typedefs_expr (orig_arg);
6689
6690 if (val == NULL_TREE)
6691 val = error_mark_node;
6692 else if (val == error_mark_node && (complain & tf_error))
6693 error ("could not convert template argument %qE to %qT", orig_arg, t);
6694
6695 if (TREE_CODE (val) == SCOPE_REF)
6696 {
6697 /* Strip typedefs from the SCOPE_REF. */
6698 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
6699 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
6700 complain);
6701 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
6702 QUALIFIED_NAME_IS_TEMPLATE (val));
6703 }
6704 }
6705
6706 return val;
6707 }
6708
6709 /* Coerces the remaining template arguments in INNER_ARGS (from
6710 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
6711 Returns the coerced argument pack. PARM_IDX is the position of this
6712 parameter in the template parameter list. ARGS is the original
6713 template argument list. */
6714 static tree
6715 coerce_template_parameter_pack (tree parms,
6716 int parm_idx,
6717 tree args,
6718 tree inner_args,
6719 int arg_idx,
6720 tree new_args,
6721 int* lost,
6722 tree in_decl,
6723 tsubst_flags_t complain)
6724 {
6725 tree parm = TREE_VEC_ELT (parms, parm_idx);
6726 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6727 tree packed_args;
6728 tree argument_pack;
6729 tree packed_parms = NULL_TREE;
6730
6731 if (arg_idx > nargs)
6732 arg_idx = nargs;
6733
6734 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
6735 {
6736 /* When the template parameter is a non-type template parameter pack
6737 or template template parameter pack whose type or template
6738 parameters use parameter packs, we know exactly how many arguments
6739 we are looking for. Build a vector of the instantiated decls for
6740 these template parameters in PACKED_PARMS. */
6741 /* We can't use make_pack_expansion here because it would interpret a
6742 _DECL as a use rather than a declaration. */
6743 tree decl = TREE_VALUE (parm);
6744 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
6745 SET_PACK_EXPANSION_PATTERN (exp, decl);
6746 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
6747 SET_TYPE_STRUCTURAL_EQUALITY (exp);
6748
6749 TREE_VEC_LENGTH (args)--;
6750 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
6751 TREE_VEC_LENGTH (args)++;
6752
6753 if (packed_parms == error_mark_node)
6754 return error_mark_node;
6755
6756 /* If we're doing a partial instantiation of a member template,
6757 verify that all of the types used for the non-type
6758 template parameter pack are, in fact, valid for non-type
6759 template parameters. */
6760 if (arg_idx < nargs
6761 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
6762 {
6763 int j, len = TREE_VEC_LENGTH (packed_parms);
6764 for (j = 0; j < len; ++j)
6765 {
6766 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
6767 if (invalid_nontype_parm_type_p (t, complain))
6768 return error_mark_node;
6769 }
6770 }
6771
6772 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
6773 }
6774 else
6775 packed_args = make_tree_vec (nargs - arg_idx);
6776
6777 /* Convert the remaining arguments, which will be a part of the
6778 parameter pack "parm". */
6779 for (; arg_idx < nargs; ++arg_idx)
6780 {
6781 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
6782 tree actual_parm = TREE_VALUE (parm);
6783 int pack_idx = arg_idx - parm_idx;
6784
6785 if (packed_parms)
6786 {
6787 /* Once we've packed as many args as we have types, stop. */
6788 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
6789 break;
6790 else if (PACK_EXPANSION_P (arg))
6791 /* We don't know how many args we have yet, just
6792 use the unconverted ones for now. */
6793 return NULL_TREE;
6794 else
6795 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
6796 }
6797
6798 if (arg == error_mark_node)
6799 {
6800 if (complain & tf_error)
6801 error ("template argument %d is invalid", arg_idx + 1);
6802 }
6803 else
6804 arg = convert_template_argument (actual_parm,
6805 arg, new_args, complain, parm_idx,
6806 in_decl);
6807 if (arg == error_mark_node)
6808 (*lost)++;
6809 TREE_VEC_ELT (packed_args, pack_idx) = arg;
6810 }
6811
6812 if (arg_idx - parm_idx < TREE_VEC_LENGTH (packed_args)
6813 && TREE_VEC_LENGTH (packed_args) > 0)
6814 {
6815 if (complain & tf_error)
6816 error ("wrong number of template arguments (%d, should be %d)",
6817 arg_idx - parm_idx, TREE_VEC_LENGTH (packed_args));
6818 return error_mark_node;
6819 }
6820
6821 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
6822 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
6823 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
6824 else
6825 {
6826 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
6827 TREE_TYPE (argument_pack)
6828 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
6829 TREE_CONSTANT (argument_pack) = 1;
6830 }
6831
6832 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
6833 #ifdef ENABLE_CHECKING
6834 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
6835 TREE_VEC_LENGTH (packed_args));
6836 #endif
6837 return argument_pack;
6838 }
6839
6840 /* Returns the number of pack expansions in the template argument vector
6841 ARGS. */
6842
6843 static int
6844 pack_expansion_args_count (tree args)
6845 {
6846 int i;
6847 int count = 0;
6848 if (args)
6849 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
6850 {
6851 tree elt = TREE_VEC_ELT (args, i);
6852 if (elt && PACK_EXPANSION_P (elt))
6853 ++count;
6854 }
6855 return count;
6856 }
6857
6858 /* Convert all template arguments to their appropriate types, and
6859 return a vector containing the innermost resulting template
6860 arguments. If any error occurs, return error_mark_node. Error and
6861 warning messages are issued under control of COMPLAIN.
6862
6863 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
6864 for arguments not specified in ARGS. Otherwise, if
6865 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
6866 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
6867 USE_DEFAULT_ARGS is false, then all arguments must be specified in
6868 ARGS. */
6869
6870 static tree
6871 coerce_template_parms (tree parms,
6872 tree args,
6873 tree in_decl,
6874 tsubst_flags_t complain,
6875 bool require_all_args,
6876 bool use_default_args)
6877 {
6878 int nparms, nargs, parm_idx, arg_idx, lost = 0;
6879 tree orig_inner_args;
6880 tree inner_args;
6881 tree new_args;
6882 tree new_inner_args;
6883 int saved_unevaluated_operand;
6884 int saved_inhibit_evaluation_warnings;
6885
6886 /* When used as a boolean value, indicates whether this is a
6887 variadic template parameter list. Since it's an int, we can also
6888 subtract it from nparms to get the number of non-variadic
6889 parameters. */
6890 int variadic_p = 0;
6891 int variadic_args_p = 0;
6892 int post_variadic_parms = 0;
6893
6894 /* Likewise for parameters with default arguments. */
6895 int default_p = 0;
6896
6897 if (args == error_mark_node)
6898 return error_mark_node;
6899
6900 nparms = TREE_VEC_LENGTH (parms);
6901
6902 /* Determine if there are any parameter packs or default arguments. */
6903 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
6904 {
6905 tree parm = TREE_VEC_ELT (parms, parm_idx);
6906 if (variadic_p)
6907 ++post_variadic_parms;
6908 if (template_parameter_pack_p (TREE_VALUE (parm)))
6909 ++variadic_p;
6910 if (TREE_PURPOSE (parm))
6911 ++default_p;
6912 }
6913
6914 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
6915 /* If there are no parameters that follow a parameter pack, we need to
6916 expand any argument packs so that we can deduce a parameter pack from
6917 some non-packed args followed by an argument pack, as in variadic85.C.
6918 If there are such parameters, we need to leave argument packs intact
6919 so the arguments are assigned properly. This can happen when dealing
6920 with a nested class inside a partial specialization of a class
6921 template, as in variadic92.C, or when deducing a template parameter pack
6922 from a sub-declarator, as in variadic114.C. */
6923 if (!post_variadic_parms)
6924 inner_args = expand_template_argument_pack (inner_args);
6925
6926 /* Count any pack expansion args. */
6927 variadic_args_p = pack_expansion_args_count (inner_args);
6928
6929 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6930 if ((nargs > nparms && !variadic_p)
6931 || (nargs < nparms - variadic_p
6932 && require_all_args
6933 && !variadic_args_p
6934 && (!use_default_args
6935 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
6936 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
6937 {
6938 if (complain & tf_error)
6939 {
6940 if (variadic_p || default_p)
6941 {
6942 nparms -= variadic_p + default_p;
6943 error ("wrong number of template arguments "
6944 "(%d, should be at least %d)", nargs, nparms);
6945 }
6946 else
6947 error ("wrong number of template arguments "
6948 "(%d, should be %d)", nargs, nparms);
6949
6950 if (in_decl)
6951 inform (input_location, "provided for %q+D", in_decl);
6952 }
6953
6954 return error_mark_node;
6955 }
6956 /* We can't pass a pack expansion to a non-pack parameter of an alias
6957 template (DR 1430). */
6958 else if (in_decl && DECL_ALIAS_TEMPLATE_P (in_decl)
6959 && variadic_args_p
6960 && nargs - variadic_args_p < nparms - variadic_p)
6961 {
6962 if (complain & tf_error)
6963 {
6964 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
6965 {
6966 tree arg = TREE_VEC_ELT (inner_args, i);
6967 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
6968
6969 if (PACK_EXPANSION_P (arg)
6970 && !template_parameter_pack_p (parm))
6971 {
6972 error ("pack expansion argument for non-pack parameter "
6973 "%qD of alias template %qD", parm, in_decl);
6974 inform (DECL_SOURCE_LOCATION (parm), "declared here");
6975 goto found;
6976 }
6977 }
6978 gcc_unreachable ();
6979 found:;
6980 }
6981 return error_mark_node;
6982 }
6983
6984 /* We need to evaluate the template arguments, even though this
6985 template-id may be nested within a "sizeof". */
6986 saved_unevaluated_operand = cp_unevaluated_operand;
6987 cp_unevaluated_operand = 0;
6988 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
6989 c_inhibit_evaluation_warnings = 0;
6990 new_inner_args = make_tree_vec (nparms);
6991 new_args = add_outermost_template_args (args, new_inner_args);
6992 int pack_adjust = 0;
6993 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
6994 {
6995 tree arg;
6996 tree parm;
6997
6998 /* Get the Ith template parameter. */
6999 parm = TREE_VEC_ELT (parms, parm_idx);
7000
7001 if (parm == error_mark_node)
7002 {
7003 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
7004 continue;
7005 }
7006
7007 /* Calculate the next argument. */
7008 if (arg_idx < nargs)
7009 arg = TREE_VEC_ELT (inner_args, arg_idx);
7010 else
7011 arg = NULL_TREE;
7012
7013 if (template_parameter_pack_p (TREE_VALUE (parm))
7014 && !(arg && ARGUMENT_PACK_P (arg)))
7015 {
7016 /* Some arguments will be placed in the
7017 template parameter pack PARM. */
7018 arg = coerce_template_parameter_pack (parms, parm_idx, args,
7019 inner_args, arg_idx,
7020 new_args, &lost,
7021 in_decl, complain);
7022
7023 if (arg == NULL_TREE)
7024 {
7025 /* We don't know how many args we have yet, just use the
7026 unconverted (and still packed) ones for now. */
7027 new_inner_args = orig_inner_args;
7028 arg_idx = nargs;
7029 break;
7030 }
7031
7032 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
7033
7034 /* Store this argument. */
7035 if (arg == error_mark_node)
7036 {
7037 lost++;
7038 /* We are done with all of the arguments. */
7039 arg_idx = nargs;
7040 }
7041 else
7042 {
7043 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
7044 arg_idx += pack_adjust;
7045 }
7046
7047 continue;
7048 }
7049 else if (arg)
7050 {
7051 if (PACK_EXPANSION_P (arg))
7052 {
7053 /* "If every valid specialization of a variadic template
7054 requires an empty template parameter pack, the template is
7055 ill-formed, no diagnostic required." So check that the
7056 pattern works with this parameter. */
7057 tree pattern = PACK_EXPANSION_PATTERN (arg);
7058 tree conv = convert_template_argument (TREE_VALUE (parm),
7059 pattern, new_args,
7060 complain, parm_idx,
7061 in_decl);
7062 if (conv == error_mark_node)
7063 {
7064 inform (input_location, "so any instantiation with a "
7065 "non-empty parameter pack would be ill-formed");
7066 ++lost;
7067 }
7068 else if (TYPE_P (conv) && !TYPE_P (pattern))
7069 /* Recover from missing typename. */
7070 TREE_VEC_ELT (inner_args, arg_idx)
7071 = make_pack_expansion (conv);
7072
7073 /* We don't know how many args we have yet, just
7074 use the unconverted ones for now. */
7075 new_inner_args = inner_args;
7076 arg_idx = nargs;
7077 break;
7078 }
7079 }
7080 else if (require_all_args)
7081 {
7082 /* There must be a default arg in this case. */
7083 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
7084 complain, in_decl);
7085 /* The position of the first default template argument,
7086 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
7087 Record that. */
7088 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7089 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7090 arg_idx - pack_adjust);
7091 }
7092 else
7093 break;
7094
7095 if (arg == error_mark_node)
7096 {
7097 if (complain & tf_error)
7098 error ("template argument %d is invalid", arg_idx + 1);
7099 }
7100 else if (!arg)
7101 /* This only occurs if there was an error in the template
7102 parameter list itself (which we would already have
7103 reported) that we are trying to recover from, e.g., a class
7104 template with a parameter list such as
7105 template<typename..., typename>. */
7106 ++lost;
7107 else
7108 arg = convert_template_argument (TREE_VALUE (parm),
7109 arg, new_args, complain,
7110 parm_idx, in_decl);
7111
7112 if (arg == error_mark_node)
7113 lost++;
7114 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
7115 }
7116 cp_unevaluated_operand = saved_unevaluated_operand;
7117 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
7118
7119 if (variadic_p && arg_idx < nargs)
7120 {
7121 if (complain & tf_error)
7122 {
7123 error ("wrong number of template arguments "
7124 "(%d, should be %d)", nargs, arg_idx);
7125 if (in_decl)
7126 error ("provided for %q+D", in_decl);
7127 }
7128 return error_mark_node;
7129 }
7130
7131 if (lost)
7132 return error_mark_node;
7133
7134 #ifdef ENABLE_CHECKING
7135 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7136 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7137 TREE_VEC_LENGTH (new_inner_args));
7138 #endif
7139
7140 return new_inner_args;
7141 }
7142
7143 /* Like coerce_template_parms. If PARMS represents all template
7144 parameters levels, this function returns a vector of vectors
7145 representing all the resulting argument levels. Note that in this
7146 case, only the innermost arguments are coerced because the
7147 outermost ones are supposed to have been coerced already.
7148
7149 Otherwise, if PARMS represents only (the innermost) vector of
7150 parameters, this function returns a vector containing just the
7151 innermost resulting arguments. */
7152
7153 static tree
7154 coerce_innermost_template_parms (tree parms,
7155 tree args,
7156 tree in_decl,
7157 tsubst_flags_t complain,
7158 bool require_all_args,
7159 bool use_default_args)
7160 {
7161 int parms_depth = TMPL_PARMS_DEPTH (parms);
7162 int args_depth = TMPL_ARGS_DEPTH (args);
7163 tree coerced_args;
7164
7165 if (parms_depth > 1)
7166 {
7167 coerced_args = make_tree_vec (parms_depth);
7168 tree level;
7169 int cur_depth;
7170
7171 for (level = parms, cur_depth = parms_depth;
7172 parms_depth > 0 && level != NULL_TREE;
7173 level = TREE_CHAIN (level), --cur_depth)
7174 {
7175 tree l;
7176 if (cur_depth == args_depth)
7177 l = coerce_template_parms (TREE_VALUE (level),
7178 args, in_decl, complain,
7179 require_all_args,
7180 use_default_args);
7181 else
7182 l = TMPL_ARGS_LEVEL (args, cur_depth);
7183
7184 if (l == error_mark_node)
7185 return error_mark_node;
7186
7187 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
7188 }
7189 }
7190 else
7191 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
7192 args, in_decl, complain,
7193 require_all_args,
7194 use_default_args);
7195 return coerced_args;
7196 }
7197
7198 /* Returns 1 if template args OT and NT are equivalent. */
7199
7200 static int
7201 template_args_equal (tree ot, tree nt)
7202 {
7203 if (nt == ot)
7204 return 1;
7205 if (nt == NULL_TREE || ot == NULL_TREE)
7206 return false;
7207
7208 if (TREE_CODE (nt) == TREE_VEC)
7209 /* For member templates */
7210 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
7211 else if (PACK_EXPANSION_P (ot))
7212 return (PACK_EXPANSION_P (nt)
7213 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
7214 PACK_EXPANSION_PATTERN (nt))
7215 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
7216 PACK_EXPANSION_EXTRA_ARGS (nt)));
7217 else if (ARGUMENT_PACK_P (ot))
7218 {
7219 int i, len;
7220 tree opack, npack;
7221
7222 if (!ARGUMENT_PACK_P (nt))
7223 return 0;
7224
7225 opack = ARGUMENT_PACK_ARGS (ot);
7226 npack = ARGUMENT_PACK_ARGS (nt);
7227 len = TREE_VEC_LENGTH (opack);
7228 if (TREE_VEC_LENGTH (npack) != len)
7229 return 0;
7230 for (i = 0; i < len; ++i)
7231 if (!template_args_equal (TREE_VEC_ELT (opack, i),
7232 TREE_VEC_ELT (npack, i)))
7233 return 0;
7234 return 1;
7235 }
7236 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
7237 {
7238 /* We get here probably because we are in the middle of substituting
7239 into the pattern of a pack expansion. In that case the
7240 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
7241 interested in. So we want to use the initial pack argument for
7242 the comparison. */
7243 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
7244 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
7245 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
7246 return template_args_equal (ot, nt);
7247 }
7248 else if (TYPE_P (nt))
7249 {
7250 if (!TYPE_P (ot))
7251 return false;
7252 /* Don't treat an alias template specialization with dependent
7253 arguments as equivalent to its underlying type when used as a
7254 template argument; we need them to hash differently. */
7255 bool ndep = dependent_alias_template_spec_p (nt);
7256 ++processing_template_decl;
7257 bool odep = dependent_alias_template_spec_p (ot);
7258 --processing_template_decl;
7259 if (ndep != odep)
7260 return false;
7261 else if (ndep)
7262 return (TYPE_TI_TEMPLATE (nt) == TYPE_TI_TEMPLATE (ot)
7263 && template_args_equal (TYPE_TI_ARGS (nt), TYPE_TI_ARGS (ot)));
7264 else
7265 return same_type_p (ot, nt);
7266 }
7267 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
7268 return 0;
7269 else
7270 return cp_tree_equal (ot, nt);
7271 }
7272
7273 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
7274 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
7275 NEWARG_PTR with the offending arguments if they are non-NULL. */
7276
7277 static int
7278 comp_template_args_with_info (tree oldargs, tree newargs,
7279 tree *oldarg_ptr, tree *newarg_ptr)
7280 {
7281 int i;
7282
7283 if (oldargs == newargs)
7284 return 1;
7285
7286 if (!oldargs || !newargs)
7287 return 0;
7288
7289 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
7290 return 0;
7291
7292 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
7293 {
7294 tree nt = TREE_VEC_ELT (newargs, i);
7295 tree ot = TREE_VEC_ELT (oldargs, i);
7296
7297 if (! template_args_equal (ot, nt))
7298 {
7299 if (oldarg_ptr != NULL)
7300 *oldarg_ptr = ot;
7301 if (newarg_ptr != NULL)
7302 *newarg_ptr = nt;
7303 return 0;
7304 }
7305 }
7306 return 1;
7307 }
7308
7309 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
7310 of template arguments. Returns 0 otherwise. */
7311
7312 int
7313 comp_template_args (tree oldargs, tree newargs)
7314 {
7315 return comp_template_args_with_info (oldargs, newargs, NULL, NULL);
7316 }
7317
7318 static void
7319 add_pending_template (tree d)
7320 {
7321 tree ti = (TYPE_P (d)
7322 ? CLASSTYPE_TEMPLATE_INFO (d)
7323 : DECL_TEMPLATE_INFO (d));
7324 struct pending_template *pt;
7325 int level;
7326
7327 if (TI_PENDING_TEMPLATE_FLAG (ti))
7328 return;
7329
7330 /* We are called both from instantiate_decl, where we've already had a
7331 tinst_level pushed, and instantiate_template, where we haven't.
7332 Compensate. */
7333 level = !current_tinst_level || current_tinst_level->decl != d;
7334
7335 if (level)
7336 push_tinst_level (d);
7337
7338 pt = ggc_alloc<pending_template> ();
7339 pt->next = NULL;
7340 pt->tinst = current_tinst_level;
7341 if (last_pending_template)
7342 last_pending_template->next = pt;
7343 else
7344 pending_templates = pt;
7345
7346 last_pending_template = pt;
7347
7348 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
7349
7350 if (level)
7351 pop_tinst_level ();
7352 }
7353
7354
7355 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
7356 ARGLIST. Valid choices for FNS are given in the cp-tree.def
7357 documentation for TEMPLATE_ID_EXPR. */
7358
7359 tree
7360 lookup_template_function (tree fns, tree arglist)
7361 {
7362 tree type;
7363
7364 if (fns == error_mark_node || arglist == error_mark_node)
7365 return error_mark_node;
7366
7367 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
7368
7369 if (!is_overloaded_fn (fns) && !identifier_p (fns))
7370 {
7371 error ("%q#D is not a function template", fns);
7372 return error_mark_node;
7373 }
7374
7375 if (BASELINK_P (fns))
7376 {
7377 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
7378 unknown_type_node,
7379 BASELINK_FUNCTIONS (fns),
7380 arglist);
7381 return fns;
7382 }
7383
7384 type = TREE_TYPE (fns);
7385 if (TREE_CODE (fns) == OVERLOAD || !type)
7386 type = unknown_type_node;
7387
7388 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
7389 }
7390
7391 /* Within the scope of a template class S<T>, the name S gets bound
7392 (in build_self_reference) to a TYPE_DECL for the class, not a
7393 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
7394 or one of its enclosing classes, and that type is a template,
7395 return the associated TEMPLATE_DECL. Otherwise, the original
7396 DECL is returned.
7397
7398 Also handle the case when DECL is a TREE_LIST of ambiguous
7399 injected-class-names from different bases. */
7400
7401 tree
7402 maybe_get_template_decl_from_type_decl (tree decl)
7403 {
7404 if (decl == NULL_TREE)
7405 return decl;
7406
7407 /* DR 176: A lookup that finds an injected-class-name (10.2
7408 [class.member.lookup]) can result in an ambiguity in certain cases
7409 (for example, if it is found in more than one base class). If all of
7410 the injected-class-names that are found refer to specializations of
7411 the same class template, and if the name is followed by a
7412 template-argument-list, the reference refers to the class template
7413 itself and not a specialization thereof, and is not ambiguous. */
7414 if (TREE_CODE (decl) == TREE_LIST)
7415 {
7416 tree t, tmpl = NULL_TREE;
7417 for (t = decl; t; t = TREE_CHAIN (t))
7418 {
7419 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
7420 if (!tmpl)
7421 tmpl = elt;
7422 else if (tmpl != elt)
7423 break;
7424 }
7425 if (tmpl && t == NULL_TREE)
7426 return tmpl;
7427 else
7428 return decl;
7429 }
7430
7431 return (decl != NULL_TREE
7432 && DECL_SELF_REFERENCE_P (decl)
7433 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
7434 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
7435 }
7436
7437 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
7438 parameters, find the desired type.
7439
7440 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
7441
7442 IN_DECL, if non-NULL, is the template declaration we are trying to
7443 instantiate.
7444
7445 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
7446 the class we are looking up.
7447
7448 Issue error and warning messages under control of COMPLAIN.
7449
7450 If the template class is really a local class in a template
7451 function, then the FUNCTION_CONTEXT is the function in which it is
7452 being instantiated.
7453
7454 ??? Note that this function is currently called *twice* for each
7455 template-id: the first time from the parser, while creating the
7456 incomplete type (finish_template_type), and the second type during the
7457 real instantiation (instantiate_template_class). This is surely something
7458 that we want to avoid. It also causes some problems with argument
7459 coercion (see convert_nontype_argument for more information on this). */
7460
7461 static tree
7462 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
7463 int entering_scope, tsubst_flags_t complain)
7464 {
7465 tree templ = NULL_TREE, parmlist;
7466 tree t;
7467 spec_entry **slot;
7468 spec_entry *entry;
7469 spec_entry elt;
7470 hashval_t hash;
7471
7472 if (identifier_p (d1))
7473 {
7474 tree value = innermost_non_namespace_value (d1);
7475 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
7476 templ = value;
7477 else
7478 {
7479 if (context)
7480 push_decl_namespace (context);
7481 templ = lookup_name (d1);
7482 templ = maybe_get_template_decl_from_type_decl (templ);
7483 if (context)
7484 pop_decl_namespace ();
7485 }
7486 if (templ)
7487 context = DECL_CONTEXT (templ);
7488 }
7489 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
7490 {
7491 tree type = TREE_TYPE (d1);
7492
7493 /* If we are declaring a constructor, say A<T>::A<T>, we will get
7494 an implicit typename for the second A. Deal with it. */
7495 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
7496 type = TREE_TYPE (type);
7497
7498 if (CLASSTYPE_TEMPLATE_INFO (type))
7499 {
7500 templ = CLASSTYPE_TI_TEMPLATE (type);
7501 d1 = DECL_NAME (templ);
7502 }
7503 }
7504 else if (TREE_CODE (d1) == ENUMERAL_TYPE
7505 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
7506 {
7507 templ = TYPE_TI_TEMPLATE (d1);
7508 d1 = DECL_NAME (templ);
7509 }
7510 else if (DECL_TYPE_TEMPLATE_P (d1))
7511 {
7512 templ = d1;
7513 d1 = DECL_NAME (templ);
7514 context = DECL_CONTEXT (templ);
7515 }
7516 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
7517 {
7518 templ = d1;
7519 d1 = DECL_NAME (templ);
7520 }
7521
7522 /* Issue an error message if we didn't find a template. */
7523 if (! templ)
7524 {
7525 if (complain & tf_error)
7526 error ("%qT is not a template", d1);
7527 return error_mark_node;
7528 }
7529
7530 if (TREE_CODE (templ) != TEMPLATE_DECL
7531 /* Make sure it's a user visible template, if it was named by
7532 the user. */
7533 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
7534 && !PRIMARY_TEMPLATE_P (templ)))
7535 {
7536 if (complain & tf_error)
7537 {
7538 error ("non-template type %qT used as a template", d1);
7539 if (in_decl)
7540 error ("for template declaration %q+D", in_decl);
7541 }
7542 return error_mark_node;
7543 }
7544
7545 complain &= ~tf_user;
7546
7547 /* An alias that just changes the name of a template is equivalent to the
7548 other template, so if any of the arguments are pack expansions, strip
7549 the alias to avoid problems with a pack expansion passed to a non-pack
7550 alias template parameter (DR 1430). */
7551 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
7552 templ = get_underlying_template (templ);
7553
7554 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
7555 {
7556 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
7557 template arguments */
7558
7559 tree parm;
7560 tree arglist2;
7561 tree outer;
7562
7563 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
7564
7565 /* Consider an example where a template template parameter declared as
7566
7567 template <class T, class U = std::allocator<T> > class TT
7568
7569 The template parameter level of T and U are one level larger than
7570 of TT. To proper process the default argument of U, say when an
7571 instantiation `TT<int>' is seen, we need to build the full
7572 arguments containing {int} as the innermost level. Outer levels,
7573 available when not appearing as default template argument, can be
7574 obtained from the arguments of the enclosing template.
7575
7576 Suppose that TT is later substituted with std::vector. The above
7577 instantiation is `TT<int, std::allocator<T> >' with TT at
7578 level 1, and T at level 2, while the template arguments at level 1
7579 becomes {std::vector} and the inner level 2 is {int}. */
7580
7581 outer = DECL_CONTEXT (templ);
7582 if (outer)
7583 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
7584 else if (current_template_parms)
7585 /* This is an argument of the current template, so we haven't set
7586 DECL_CONTEXT yet. */
7587 outer = current_template_args ();
7588
7589 if (outer)
7590 arglist = add_to_template_args (outer, arglist);
7591
7592 arglist2 = coerce_template_parms (parmlist, arglist, templ,
7593 complain,
7594 /*require_all_args=*/true,
7595 /*use_default_args=*/true);
7596 if (arglist2 == error_mark_node
7597 || (!uses_template_parms (arglist2)
7598 && check_instantiated_args (templ, arglist2, complain)))
7599 return error_mark_node;
7600
7601 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
7602 return parm;
7603 }
7604 else
7605 {
7606 tree template_type = TREE_TYPE (templ);
7607 tree gen_tmpl;
7608 tree type_decl;
7609 tree found = NULL_TREE;
7610 int arg_depth;
7611 int parm_depth;
7612 int is_dependent_type;
7613 int use_partial_inst_tmpl = false;
7614
7615 if (template_type == error_mark_node)
7616 /* An error occurred while building the template TEMPL, and a
7617 diagnostic has most certainly been emitted for that
7618 already. Let's propagate that error. */
7619 return error_mark_node;
7620
7621 gen_tmpl = most_general_template (templ);
7622 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
7623 parm_depth = TMPL_PARMS_DEPTH (parmlist);
7624 arg_depth = TMPL_ARGS_DEPTH (arglist);
7625
7626 if (arg_depth == 1 && parm_depth > 1)
7627 {
7628 /* We've been given an incomplete set of template arguments.
7629 For example, given:
7630
7631 template <class T> struct S1 {
7632 template <class U> struct S2 {};
7633 template <class U> struct S2<U*> {};
7634 };
7635
7636 we will be called with an ARGLIST of `U*', but the
7637 TEMPLATE will be `template <class T> template
7638 <class U> struct S1<T>::S2'. We must fill in the missing
7639 arguments. */
7640 arglist
7641 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
7642 arglist);
7643 arg_depth = TMPL_ARGS_DEPTH (arglist);
7644 }
7645
7646 /* Now we should have enough arguments. */
7647 gcc_assert (parm_depth == arg_depth);
7648
7649 /* From here on, we're only interested in the most general
7650 template. */
7651
7652 /* Calculate the BOUND_ARGS. These will be the args that are
7653 actually tsubst'd into the definition to create the
7654 instantiation. */
7655 if (parm_depth > 1)
7656 {
7657 /* We have multiple levels of arguments to coerce, at once. */
7658 int i;
7659 int saved_depth = TMPL_ARGS_DEPTH (arglist);
7660
7661 tree bound_args = make_tree_vec (parm_depth);
7662
7663 for (i = saved_depth,
7664 t = DECL_TEMPLATE_PARMS (gen_tmpl);
7665 i > 0 && t != NULL_TREE;
7666 --i, t = TREE_CHAIN (t))
7667 {
7668 tree a;
7669 if (i == saved_depth)
7670 a = coerce_template_parms (TREE_VALUE (t),
7671 arglist, gen_tmpl,
7672 complain,
7673 /*require_all_args=*/true,
7674 /*use_default_args=*/true);
7675 else
7676 /* Outer levels should have already been coerced. */
7677 a = TMPL_ARGS_LEVEL (arglist, i);
7678
7679 /* Don't process further if one of the levels fails. */
7680 if (a == error_mark_node)
7681 {
7682 /* Restore the ARGLIST to its full size. */
7683 TREE_VEC_LENGTH (arglist) = saved_depth;
7684 return error_mark_node;
7685 }
7686
7687 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
7688
7689 /* We temporarily reduce the length of the ARGLIST so
7690 that coerce_template_parms will see only the arguments
7691 corresponding to the template parameters it is
7692 examining. */
7693 TREE_VEC_LENGTH (arglist)--;
7694 }
7695
7696 /* Restore the ARGLIST to its full size. */
7697 TREE_VEC_LENGTH (arglist) = saved_depth;
7698
7699 arglist = bound_args;
7700 }
7701 else
7702 arglist
7703 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
7704 INNERMOST_TEMPLATE_ARGS (arglist),
7705 gen_tmpl,
7706 complain,
7707 /*require_all_args=*/true,
7708 /*use_default_args=*/true);
7709
7710 if (arglist == error_mark_node)
7711 /* We were unable to bind the arguments. */
7712 return error_mark_node;
7713
7714 /* In the scope of a template class, explicit references to the
7715 template class refer to the type of the template, not any
7716 instantiation of it. For example, in:
7717
7718 template <class T> class C { void f(C<T>); }
7719
7720 the `C<T>' is just the same as `C'. Outside of the
7721 class, however, such a reference is an instantiation. */
7722 if ((entering_scope
7723 || !PRIMARY_TEMPLATE_P (gen_tmpl)
7724 || currently_open_class (template_type))
7725 /* comp_template_args is expensive, check it last. */
7726 && comp_template_args (TYPE_TI_ARGS (template_type),
7727 arglist))
7728 return template_type;
7729
7730 /* If we already have this specialization, return it. */
7731 elt.tmpl = gen_tmpl;
7732 elt.args = arglist;
7733 hash = spec_hasher::hash (&elt);
7734 entry = type_specializations->find_with_hash (&elt, hash);
7735
7736 if (entry)
7737 return entry->spec;
7738
7739 is_dependent_type = uses_template_parms (arglist);
7740
7741 /* If the deduced arguments are invalid, then the binding
7742 failed. */
7743 if (!is_dependent_type
7744 && check_instantiated_args (gen_tmpl,
7745 INNERMOST_TEMPLATE_ARGS (arglist),
7746 complain))
7747 return error_mark_node;
7748
7749 if (!is_dependent_type
7750 && !PRIMARY_TEMPLATE_P (gen_tmpl)
7751 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
7752 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
7753 {
7754 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
7755 DECL_NAME (gen_tmpl),
7756 /*tag_scope=*/ts_global);
7757 return found;
7758 }
7759
7760 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
7761 complain, in_decl);
7762 if (context == error_mark_node)
7763 return error_mark_node;
7764
7765 if (!context)
7766 context = global_namespace;
7767
7768 /* Create the type. */
7769 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7770 {
7771 /* The user referred to a specialization of an alias
7772 template represented by GEN_TMPL.
7773
7774 [temp.alias]/2 says:
7775
7776 When a template-id refers to the specialization of an
7777 alias template, it is equivalent to the associated
7778 type obtained by substitution of its
7779 template-arguments for the template-parameters in the
7780 type-id of the alias template. */
7781
7782 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
7783 /* Note that the call above (by indirectly calling
7784 register_specialization in tsubst_decl) registers the
7785 TYPE_DECL representing the specialization of the alias
7786 template. So next time someone substitutes ARGLIST for
7787 the template parms into the alias template (GEN_TMPL),
7788 she'll get that TYPE_DECL back. */
7789
7790 if (t == error_mark_node)
7791 return t;
7792 }
7793 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
7794 {
7795 if (!is_dependent_type)
7796 {
7797 set_current_access_from_decl (TYPE_NAME (template_type));
7798 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
7799 tsubst (ENUM_UNDERLYING_TYPE (template_type),
7800 arglist, complain, in_decl),
7801 SCOPED_ENUM_P (template_type), NULL);
7802
7803 if (t == error_mark_node)
7804 return t;
7805 }
7806 else
7807 {
7808 /* We don't want to call start_enum for this type, since
7809 the values for the enumeration constants may involve
7810 template parameters. And, no one should be interested
7811 in the enumeration constants for such a type. */
7812 t = cxx_make_type (ENUMERAL_TYPE);
7813 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
7814 }
7815 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
7816 ENUM_FIXED_UNDERLYING_TYPE_P (t)
7817 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
7818 }
7819 else if (CLASS_TYPE_P (template_type))
7820 {
7821 t = make_class_type (TREE_CODE (template_type));
7822 CLASSTYPE_DECLARED_CLASS (t)
7823 = CLASSTYPE_DECLARED_CLASS (template_type);
7824 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
7825 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
7826
7827 /* A local class. Make sure the decl gets registered properly. */
7828 if (context == current_function_decl)
7829 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
7830
7831 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
7832 /* This instantiation is another name for the primary
7833 template type. Set the TYPE_CANONICAL field
7834 appropriately. */
7835 TYPE_CANONICAL (t) = template_type;
7836 else if (any_template_arguments_need_structural_equality_p (arglist))
7837 /* Some of the template arguments require structural
7838 equality testing, so this template class requires
7839 structural equality testing. */
7840 SET_TYPE_STRUCTURAL_EQUALITY (t);
7841 }
7842 else
7843 gcc_unreachable ();
7844
7845 /* If we called start_enum or pushtag above, this information
7846 will already be set up. */
7847 if (!TYPE_NAME (t))
7848 {
7849 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
7850
7851 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
7852 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
7853 DECL_SOURCE_LOCATION (type_decl)
7854 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
7855 }
7856 else
7857 type_decl = TYPE_NAME (t);
7858
7859 if (CLASS_TYPE_P (template_type))
7860 {
7861 TREE_PRIVATE (type_decl)
7862 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
7863 TREE_PROTECTED (type_decl)
7864 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
7865 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
7866 {
7867 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
7868 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
7869 }
7870 }
7871
7872 if (OVERLOAD_TYPE_P (t)
7873 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7874 {
7875 if (tree attributes
7876 = lookup_attribute ("abi_tag", TYPE_ATTRIBUTES (template_type)))
7877 {
7878 if (!TREE_CHAIN (attributes))
7879 TYPE_ATTRIBUTES (t) = attributes;
7880 else
7881 TYPE_ATTRIBUTES (t)
7882 = build_tree_list (TREE_PURPOSE (attributes),
7883 TREE_VALUE (attributes));
7884 }
7885 }
7886
7887 /* Let's consider the explicit specialization of a member
7888 of a class template specialization that is implicitly instantiated,
7889 e.g.:
7890 template<class T>
7891 struct S
7892 {
7893 template<class U> struct M {}; //#0
7894 };
7895
7896 template<>
7897 template<>
7898 struct S<int>::M<char> //#1
7899 {
7900 int i;
7901 };
7902 [temp.expl.spec]/4 says this is valid.
7903
7904 In this case, when we write:
7905 S<int>::M<char> m;
7906
7907 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
7908 the one of #0.
7909
7910 When we encounter #1, we want to store the partial instantiation
7911 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
7912
7913 For all cases other than this "explicit specialization of member of a
7914 class template", we just want to store the most general template into
7915 the CLASSTYPE_TI_TEMPLATE of M.
7916
7917 This case of "explicit specialization of member of a class template"
7918 only happens when:
7919 1/ the enclosing class is an instantiation of, and therefore not
7920 the same as, the context of the most general template, and
7921 2/ we aren't looking at the partial instantiation itself, i.e.
7922 the innermost arguments are not the same as the innermost parms of
7923 the most general template.
7924
7925 So it's only when 1/ and 2/ happens that we want to use the partial
7926 instantiation of the member template in lieu of its most general
7927 template. */
7928
7929 if (PRIMARY_TEMPLATE_P (gen_tmpl)
7930 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
7931 /* the enclosing class must be an instantiation... */
7932 && CLASS_TYPE_P (context)
7933 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
7934 {
7935 tree partial_inst_args;
7936 TREE_VEC_LENGTH (arglist)--;
7937 ++processing_template_decl;
7938 partial_inst_args =
7939 tsubst (INNERMOST_TEMPLATE_ARGS
7940 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
7941 arglist, complain, NULL_TREE);
7942 --processing_template_decl;
7943 TREE_VEC_LENGTH (arglist)++;
7944 use_partial_inst_tmpl =
7945 /*...and we must not be looking at the partial instantiation
7946 itself. */
7947 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
7948 partial_inst_args);
7949 }
7950
7951 if (!use_partial_inst_tmpl)
7952 /* This case is easy; there are no member templates involved. */
7953 found = gen_tmpl;
7954 else
7955 {
7956 /* This is a full instantiation of a member template. Find
7957 the partial instantiation of which this is an instance. */
7958
7959 /* Temporarily reduce by one the number of levels in the ARGLIST
7960 so as to avoid comparing the last set of arguments. */
7961 TREE_VEC_LENGTH (arglist)--;
7962 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
7963 TREE_VEC_LENGTH (arglist)++;
7964 /* FOUND is either a proper class type, or an alias
7965 template specialization. In the later case, it's a
7966 TYPE_DECL, resulting from the substituting of arguments
7967 for parameters in the TYPE_DECL of the alias template
7968 done earlier. So be careful while getting the template
7969 of FOUND. */
7970 found = TREE_CODE (found) == TYPE_DECL
7971 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
7972 : CLASSTYPE_TI_TEMPLATE (found);
7973 }
7974
7975 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
7976
7977 elt.spec = t;
7978 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
7979 entry = ggc_alloc<spec_entry> ();
7980 *entry = elt;
7981 *slot = entry;
7982
7983 /* Note this use of the partial instantiation so we can check it
7984 later in maybe_process_partial_specialization. */
7985 DECL_TEMPLATE_INSTANTIATIONS (found)
7986 = tree_cons (arglist, t,
7987 DECL_TEMPLATE_INSTANTIATIONS (found));
7988
7989 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
7990 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7991 /* Now that the type has been registered on the instantiations
7992 list, we set up the enumerators. Because the enumeration
7993 constants may involve the enumeration type itself, we make
7994 sure to register the type first, and then create the
7995 constants. That way, doing tsubst_expr for the enumeration
7996 constants won't result in recursive calls here; we'll find
7997 the instantiation and exit above. */
7998 tsubst_enum (template_type, t, arglist);
7999
8000 if (CLASS_TYPE_P (template_type) && is_dependent_type)
8001 /* If the type makes use of template parameters, the
8002 code that generates debugging information will crash. */
8003 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
8004
8005 /* Possibly limit visibility based on template args. */
8006 TREE_PUBLIC (type_decl) = 1;
8007 determine_visibility (type_decl);
8008
8009 inherit_targ_abi_tags (t);
8010
8011 return t;
8012 }
8013 }
8014
8015 /* Wrapper for lookup_template_class_1. */
8016
8017 tree
8018 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
8019 int entering_scope, tsubst_flags_t complain)
8020 {
8021 tree ret;
8022 timevar_push (TV_TEMPLATE_INST);
8023 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
8024 entering_scope, complain);
8025 timevar_pop (TV_TEMPLATE_INST);
8026 return ret;
8027 }
8028
8029 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST.
8030 The type of the expression is the unknown_type_node since the
8031 template-id could refer to an explicit or partial specialization. */
8032
8033 tree
8034 lookup_template_variable (tree templ, tree arglist)
8035 {
8036 tree type = unknown_type_node;
8037 tsubst_flags_t complain = tf_warning_or_error;
8038 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (templ));
8039 arglist = coerce_template_parms (parms, arglist, templ, complain,
8040 /*req_all*/true, /*use_default*/true);
8041 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
8042 }
8043
8044 \f
8045 struct pair_fn_data
8046 {
8047 tree_fn_t fn;
8048 void *data;
8049 /* True when we should also visit template parameters that occur in
8050 non-deduced contexts. */
8051 bool include_nondeduced_p;
8052 hash_set<tree> *visited;
8053 };
8054
8055 /* Called from for_each_template_parm via walk_tree. */
8056
8057 static tree
8058 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
8059 {
8060 tree t = *tp;
8061 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
8062 tree_fn_t fn = pfd->fn;
8063 void *data = pfd->data;
8064
8065 if (TYPE_P (t)
8066 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE)
8067 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited,
8068 pfd->include_nondeduced_p))
8069 return error_mark_node;
8070
8071 switch (TREE_CODE (t))
8072 {
8073 case RECORD_TYPE:
8074 if (TYPE_PTRMEMFUNC_P (t))
8075 break;
8076 /* Fall through. */
8077
8078 case UNION_TYPE:
8079 case ENUMERAL_TYPE:
8080 if (!TYPE_TEMPLATE_INFO (t))
8081 *walk_subtrees = 0;
8082 else if (for_each_template_parm (TYPE_TI_ARGS (t),
8083 fn, data, pfd->visited,
8084 pfd->include_nondeduced_p))
8085 return error_mark_node;
8086 break;
8087
8088 case INTEGER_TYPE:
8089 if (for_each_template_parm (TYPE_MIN_VALUE (t),
8090 fn, data, pfd->visited,
8091 pfd->include_nondeduced_p)
8092 || for_each_template_parm (TYPE_MAX_VALUE (t),
8093 fn, data, pfd->visited,
8094 pfd->include_nondeduced_p))
8095 return error_mark_node;
8096 break;
8097
8098 case METHOD_TYPE:
8099 /* Since we're not going to walk subtrees, we have to do this
8100 explicitly here. */
8101 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
8102 pfd->visited, pfd->include_nondeduced_p))
8103 return error_mark_node;
8104 /* Fall through. */
8105
8106 case FUNCTION_TYPE:
8107 /* Check the return type. */
8108 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
8109 pfd->include_nondeduced_p))
8110 return error_mark_node;
8111
8112 /* Check the parameter types. Since default arguments are not
8113 instantiated until they are needed, the TYPE_ARG_TYPES may
8114 contain expressions that involve template parameters. But,
8115 no-one should be looking at them yet. And, once they're
8116 instantiated, they don't contain template parameters, so
8117 there's no point in looking at them then, either. */
8118 {
8119 tree parm;
8120
8121 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
8122 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
8123 pfd->visited, pfd->include_nondeduced_p))
8124 return error_mark_node;
8125
8126 /* Since we've already handled the TYPE_ARG_TYPES, we don't
8127 want walk_tree walking into them itself. */
8128 *walk_subtrees = 0;
8129 }
8130 break;
8131
8132 case TYPEOF_TYPE:
8133 case UNDERLYING_TYPE:
8134 if (pfd->include_nondeduced_p
8135 && for_each_template_parm (TYPE_FIELDS (t), fn, data,
8136 pfd->visited,
8137 pfd->include_nondeduced_p))
8138 return error_mark_node;
8139 break;
8140
8141 case FUNCTION_DECL:
8142 case VAR_DECL:
8143 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
8144 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
8145 pfd->visited, pfd->include_nondeduced_p))
8146 return error_mark_node;
8147 /* Fall through. */
8148
8149 case PARM_DECL:
8150 case CONST_DECL:
8151 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
8152 && for_each_template_parm (DECL_INITIAL (t), fn, data,
8153 pfd->visited, pfd->include_nondeduced_p))
8154 return error_mark_node;
8155 if (DECL_CONTEXT (t)
8156 && pfd->include_nondeduced_p
8157 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
8158 pfd->visited, pfd->include_nondeduced_p))
8159 return error_mark_node;
8160 break;
8161
8162 case BOUND_TEMPLATE_TEMPLATE_PARM:
8163 /* Record template parameters such as `T' inside `TT<T>'. */
8164 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited,
8165 pfd->include_nondeduced_p))
8166 return error_mark_node;
8167 /* Fall through. */
8168
8169 case TEMPLATE_TEMPLATE_PARM:
8170 case TEMPLATE_TYPE_PARM:
8171 case TEMPLATE_PARM_INDEX:
8172 if (fn && (*fn)(t, data))
8173 return error_mark_node;
8174 else if (!fn)
8175 return error_mark_node;
8176 break;
8177
8178 case TEMPLATE_DECL:
8179 /* A template template parameter is encountered. */
8180 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
8181 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
8182 pfd->include_nondeduced_p))
8183 return error_mark_node;
8184
8185 /* Already substituted template template parameter */
8186 *walk_subtrees = 0;
8187 break;
8188
8189 case TYPENAME_TYPE:
8190 if (!fn
8191 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
8192 data, pfd->visited,
8193 pfd->include_nondeduced_p))
8194 return error_mark_node;
8195 break;
8196
8197 case CONSTRUCTOR:
8198 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
8199 && pfd->include_nondeduced_p
8200 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
8201 (TREE_TYPE (t)), fn, data,
8202 pfd->visited, pfd->include_nondeduced_p))
8203 return error_mark_node;
8204 break;
8205
8206 case INDIRECT_REF:
8207 case COMPONENT_REF:
8208 /* If there's no type, then this thing must be some expression
8209 involving template parameters. */
8210 if (!fn && !TREE_TYPE (t))
8211 return error_mark_node;
8212 break;
8213
8214 case MODOP_EXPR:
8215 case CAST_EXPR:
8216 case IMPLICIT_CONV_EXPR:
8217 case REINTERPRET_CAST_EXPR:
8218 case CONST_CAST_EXPR:
8219 case STATIC_CAST_EXPR:
8220 case DYNAMIC_CAST_EXPR:
8221 case ARROW_EXPR:
8222 case DOTSTAR_EXPR:
8223 case TYPEID_EXPR:
8224 case PSEUDO_DTOR_EXPR:
8225 if (!fn)
8226 return error_mark_node;
8227 break;
8228
8229 default:
8230 break;
8231 }
8232
8233 /* We didn't find any template parameters we liked. */
8234 return NULL_TREE;
8235 }
8236
8237 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
8238 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
8239 call FN with the parameter and the DATA.
8240 If FN returns nonzero, the iteration is terminated, and
8241 for_each_template_parm returns 1. Otherwise, the iteration
8242 continues. If FN never returns a nonzero value, the value
8243 returned by for_each_template_parm is 0. If FN is NULL, it is
8244 considered to be the function which always returns 1.
8245
8246 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
8247 parameters that occur in non-deduced contexts. When false, only
8248 visits those template parameters that can be deduced. */
8249
8250 static int
8251 for_each_template_parm (tree t, tree_fn_t fn, void* data,
8252 hash_set<tree> *visited,
8253 bool include_nondeduced_p)
8254 {
8255 struct pair_fn_data pfd;
8256 int result;
8257
8258 /* Set up. */
8259 pfd.fn = fn;
8260 pfd.data = data;
8261 pfd.include_nondeduced_p = include_nondeduced_p;
8262
8263 /* Walk the tree. (Conceptually, we would like to walk without
8264 duplicates, but for_each_template_parm_r recursively calls
8265 for_each_template_parm, so we would need to reorganize a fair
8266 bit to use walk_tree_without_duplicates, so we keep our own
8267 visited list.) */
8268 if (visited)
8269 pfd.visited = visited;
8270 else
8271 pfd.visited = new hash_set<tree>;
8272 result = cp_walk_tree (&t,
8273 for_each_template_parm_r,
8274 &pfd,
8275 pfd.visited) != NULL_TREE;
8276
8277 /* Clean up. */
8278 if (!visited)
8279 {
8280 delete pfd.visited;
8281 pfd.visited = 0;
8282 }
8283
8284 return result;
8285 }
8286
8287 /* Returns true if T depends on any template parameter. */
8288
8289 int
8290 uses_template_parms (tree t)
8291 {
8292 if (t == NULL_TREE)
8293 return false;
8294
8295 bool dependent_p;
8296 int saved_processing_template_decl;
8297
8298 saved_processing_template_decl = processing_template_decl;
8299 if (!saved_processing_template_decl)
8300 processing_template_decl = 1;
8301 if (TYPE_P (t))
8302 dependent_p = dependent_type_p (t);
8303 else if (TREE_CODE (t) == TREE_VEC)
8304 dependent_p = any_dependent_template_arguments_p (t);
8305 else if (TREE_CODE (t) == TREE_LIST)
8306 dependent_p = (uses_template_parms (TREE_VALUE (t))
8307 || uses_template_parms (TREE_CHAIN (t)));
8308 else if (TREE_CODE (t) == TYPE_DECL)
8309 dependent_p = dependent_type_p (TREE_TYPE (t));
8310 else if (DECL_P (t)
8311 || EXPR_P (t)
8312 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
8313 || TREE_CODE (t) == OVERLOAD
8314 || BASELINK_P (t)
8315 || identifier_p (t)
8316 || TREE_CODE (t) == TRAIT_EXPR
8317 || TREE_CODE (t) == CONSTRUCTOR
8318 || CONSTANT_CLASS_P (t))
8319 dependent_p = (type_dependent_expression_p (t)
8320 || value_dependent_expression_p (t));
8321 else
8322 {
8323 gcc_assert (t == error_mark_node);
8324 dependent_p = false;
8325 }
8326
8327 processing_template_decl = saved_processing_template_decl;
8328
8329 return dependent_p;
8330 }
8331
8332 /* Returns true iff current_function_decl is an incompletely instantiated
8333 template. Useful instead of processing_template_decl because the latter
8334 is set to 0 during instantiate_non_dependent_expr. */
8335
8336 bool
8337 in_template_function (void)
8338 {
8339 tree fn = current_function_decl;
8340 bool ret;
8341 ++processing_template_decl;
8342 ret = (fn && DECL_LANG_SPECIFIC (fn)
8343 && DECL_TEMPLATE_INFO (fn)
8344 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
8345 --processing_template_decl;
8346 return ret;
8347 }
8348
8349 /* Returns true if T depends on any template parameter with level LEVEL. */
8350
8351 int
8352 uses_template_parms_level (tree t, int level)
8353 {
8354 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
8355 /*include_nondeduced_p=*/true);
8356 }
8357
8358 /* Returns TRUE iff INST is an instantiation we don't need to do in an
8359 ill-formed translation unit, i.e. a variable or function that isn't
8360 usable in a constant expression. */
8361
8362 static inline bool
8363 neglectable_inst_p (tree d)
8364 {
8365 return (DECL_P (d)
8366 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
8367 : decl_maybe_constant_var_p (d)));
8368 }
8369
8370 /* Returns TRUE iff we should refuse to instantiate DECL because it's
8371 neglectable and instantiated from within an erroneous instantiation. */
8372
8373 static bool
8374 limit_bad_template_recursion (tree decl)
8375 {
8376 struct tinst_level *lev = current_tinst_level;
8377 int errs = errorcount + sorrycount;
8378 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
8379 return false;
8380
8381 for (; lev; lev = lev->next)
8382 if (neglectable_inst_p (lev->decl))
8383 break;
8384
8385 return (lev && errs > lev->errors);
8386 }
8387
8388 static int tinst_depth;
8389 extern int max_tinst_depth;
8390 int depth_reached;
8391
8392 static GTY(()) struct tinst_level *last_error_tinst_level;
8393
8394 /* We're starting to instantiate D; record the template instantiation context
8395 for diagnostics and to restore it later. */
8396
8397 bool
8398 push_tinst_level (tree d)
8399 {
8400 return push_tinst_level_loc (d, input_location);
8401 }
8402
8403 /* We're starting to instantiate D; record the template instantiation context
8404 at LOC for diagnostics and to restore it later. */
8405
8406 bool
8407 push_tinst_level_loc (tree d, location_t loc)
8408 {
8409 struct tinst_level *new_level;
8410
8411 if (tinst_depth >= max_tinst_depth)
8412 {
8413 fatal_error ("template instantiation depth exceeds maximum of %d"
8414 " (use -ftemplate-depth= to increase the maximum)",
8415 max_tinst_depth);
8416 return false;
8417 }
8418
8419 /* If the current instantiation caused problems, don't let it instantiate
8420 anything else. Do allow deduction substitution and decls usable in
8421 constant expressions. */
8422 if (limit_bad_template_recursion (d))
8423 return false;
8424
8425 new_level = ggc_alloc<tinst_level> ();
8426 new_level->decl = d;
8427 new_level->locus = loc;
8428 new_level->errors = errorcount+sorrycount;
8429 new_level->in_system_header_p = in_system_header_at (input_location);
8430 new_level->next = current_tinst_level;
8431 current_tinst_level = new_level;
8432
8433 ++tinst_depth;
8434 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
8435 depth_reached = tinst_depth;
8436
8437 return true;
8438 }
8439
8440 /* We're done instantiating this template; return to the instantiation
8441 context. */
8442
8443 void
8444 pop_tinst_level (void)
8445 {
8446 /* Restore the filename and line number stashed away when we started
8447 this instantiation. */
8448 input_location = current_tinst_level->locus;
8449 current_tinst_level = current_tinst_level->next;
8450 --tinst_depth;
8451 }
8452
8453 /* We're instantiating a deferred template; restore the template
8454 instantiation context in which the instantiation was requested, which
8455 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
8456
8457 static tree
8458 reopen_tinst_level (struct tinst_level *level)
8459 {
8460 struct tinst_level *t;
8461
8462 tinst_depth = 0;
8463 for (t = level; t; t = t->next)
8464 ++tinst_depth;
8465
8466 current_tinst_level = level;
8467 pop_tinst_level ();
8468 if (current_tinst_level)
8469 current_tinst_level->errors = errorcount+sorrycount;
8470 return level->decl;
8471 }
8472
8473 /* Returns the TINST_LEVEL which gives the original instantiation
8474 context. */
8475
8476 struct tinst_level *
8477 outermost_tinst_level (void)
8478 {
8479 struct tinst_level *level = current_tinst_level;
8480 if (level)
8481 while (level->next)
8482 level = level->next;
8483 return level;
8484 }
8485
8486 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
8487 vector of template arguments, as for tsubst.
8488
8489 Returns an appropriate tsubst'd friend declaration. */
8490
8491 static tree
8492 tsubst_friend_function (tree decl, tree args)
8493 {
8494 tree new_friend;
8495
8496 if (TREE_CODE (decl) == FUNCTION_DECL
8497 && DECL_TEMPLATE_INSTANTIATION (decl)
8498 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
8499 /* This was a friend declared with an explicit template
8500 argument list, e.g.:
8501
8502 friend void f<>(T);
8503
8504 to indicate that f was a template instantiation, not a new
8505 function declaration. Now, we have to figure out what
8506 instantiation of what template. */
8507 {
8508 tree template_id, arglist, fns;
8509 tree new_args;
8510 tree tmpl;
8511 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
8512
8513 /* Friend functions are looked up in the containing namespace scope.
8514 We must enter that scope, to avoid finding member functions of the
8515 current class with same name. */
8516 push_nested_namespace (ns);
8517 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
8518 tf_warning_or_error, NULL_TREE,
8519 /*integral_constant_expression_p=*/false);
8520 pop_nested_namespace (ns);
8521 arglist = tsubst (DECL_TI_ARGS (decl), args,
8522 tf_warning_or_error, NULL_TREE);
8523 template_id = lookup_template_function (fns, arglist);
8524
8525 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8526 tmpl = determine_specialization (template_id, new_friend,
8527 &new_args,
8528 /*need_member_template=*/0,
8529 TREE_VEC_LENGTH (args),
8530 tsk_none);
8531 return instantiate_template (tmpl, new_args, tf_error);
8532 }
8533
8534 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8535
8536 /* The NEW_FRIEND will look like an instantiation, to the
8537 compiler, but is not an instantiation from the point of view of
8538 the language. For example, we might have had:
8539
8540 template <class T> struct S {
8541 template <class U> friend void f(T, U);
8542 };
8543
8544 Then, in S<int>, template <class U> void f(int, U) is not an
8545 instantiation of anything. */
8546 if (new_friend == error_mark_node)
8547 return error_mark_node;
8548
8549 DECL_USE_TEMPLATE (new_friend) = 0;
8550 if (TREE_CODE (decl) == TEMPLATE_DECL)
8551 {
8552 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
8553 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
8554 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
8555 }
8556
8557 /* The mangled name for the NEW_FRIEND is incorrect. The function
8558 is not a template instantiation and should not be mangled like
8559 one. Therefore, we forget the mangling here; we'll recompute it
8560 later if we need it. */
8561 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
8562 {
8563 SET_DECL_RTL (new_friend, NULL);
8564 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
8565 }
8566
8567 if (DECL_NAMESPACE_SCOPE_P (new_friend))
8568 {
8569 tree old_decl;
8570 tree new_friend_template_info;
8571 tree new_friend_result_template_info;
8572 tree ns;
8573 int new_friend_is_defn;
8574
8575 /* We must save some information from NEW_FRIEND before calling
8576 duplicate decls since that function will free NEW_FRIEND if
8577 possible. */
8578 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
8579 new_friend_is_defn =
8580 (DECL_INITIAL (DECL_TEMPLATE_RESULT
8581 (template_for_substitution (new_friend)))
8582 != NULL_TREE);
8583 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
8584 {
8585 /* This declaration is a `primary' template. */
8586 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
8587
8588 new_friend_result_template_info
8589 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
8590 }
8591 else
8592 new_friend_result_template_info = NULL_TREE;
8593
8594 /* Make the init_value nonzero so pushdecl knows this is a defn. */
8595 if (new_friend_is_defn)
8596 DECL_INITIAL (new_friend) = error_mark_node;
8597
8598 /* Inside pushdecl_namespace_level, we will push into the
8599 current namespace. However, the friend function should go
8600 into the namespace of the template. */
8601 ns = decl_namespace_context (new_friend);
8602 push_nested_namespace (ns);
8603 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
8604 pop_nested_namespace (ns);
8605
8606 if (old_decl == error_mark_node)
8607 return error_mark_node;
8608
8609 if (old_decl != new_friend)
8610 {
8611 /* This new friend declaration matched an existing
8612 declaration. For example, given:
8613
8614 template <class T> void f(T);
8615 template <class U> class C {
8616 template <class T> friend void f(T) {}
8617 };
8618
8619 the friend declaration actually provides the definition
8620 of `f', once C has been instantiated for some type. So,
8621 old_decl will be the out-of-class template declaration,
8622 while new_friend is the in-class definition.
8623
8624 But, if `f' was called before this point, the
8625 instantiation of `f' will have DECL_TI_ARGS corresponding
8626 to `T' but not to `U', references to which might appear
8627 in the definition of `f'. Previously, the most general
8628 template for an instantiation of `f' was the out-of-class
8629 version; now it is the in-class version. Therefore, we
8630 run through all specialization of `f', adding to their
8631 DECL_TI_ARGS appropriately. In particular, they need a
8632 new set of outer arguments, corresponding to the
8633 arguments for this class instantiation.
8634
8635 The same situation can arise with something like this:
8636
8637 friend void f(int);
8638 template <class T> class C {
8639 friend void f(T) {}
8640 };
8641
8642 when `C<int>' is instantiated. Now, `f(int)' is defined
8643 in the class. */
8644
8645 if (!new_friend_is_defn)
8646 /* On the other hand, if the in-class declaration does
8647 *not* provide a definition, then we don't want to alter
8648 existing definitions. We can just leave everything
8649 alone. */
8650 ;
8651 else
8652 {
8653 tree new_template = TI_TEMPLATE (new_friend_template_info);
8654 tree new_args = TI_ARGS (new_friend_template_info);
8655
8656 /* Overwrite whatever template info was there before, if
8657 any, with the new template information pertaining to
8658 the declaration. */
8659 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
8660
8661 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
8662 {
8663 /* We should have called reregister_specialization in
8664 duplicate_decls. */
8665 gcc_assert (retrieve_specialization (new_template,
8666 new_args, 0)
8667 == old_decl);
8668
8669 /* Instantiate it if the global has already been used. */
8670 if (DECL_ODR_USED (old_decl))
8671 instantiate_decl (old_decl, /*defer_ok=*/true,
8672 /*expl_inst_class_mem_p=*/false);
8673 }
8674 else
8675 {
8676 tree t;
8677
8678 /* Indicate that the old function template is a partial
8679 instantiation. */
8680 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
8681 = new_friend_result_template_info;
8682
8683 gcc_assert (new_template
8684 == most_general_template (new_template));
8685 gcc_assert (new_template != old_decl);
8686
8687 /* Reassign any specializations already in the hash table
8688 to the new more general template, and add the
8689 additional template args. */
8690 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
8691 t != NULL_TREE;
8692 t = TREE_CHAIN (t))
8693 {
8694 tree spec = TREE_VALUE (t);
8695 spec_entry elt;
8696
8697 elt.tmpl = old_decl;
8698 elt.args = DECL_TI_ARGS (spec);
8699 elt.spec = NULL_TREE;
8700
8701 decl_specializations->remove_elt (&elt);
8702
8703 DECL_TI_ARGS (spec)
8704 = add_outermost_template_args (new_args,
8705 DECL_TI_ARGS (spec));
8706
8707 register_specialization
8708 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
8709
8710 }
8711 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
8712 }
8713 }
8714
8715 /* The information from NEW_FRIEND has been merged into OLD_DECL
8716 by duplicate_decls. */
8717 new_friend = old_decl;
8718 }
8719 }
8720 else
8721 {
8722 tree context = DECL_CONTEXT (new_friend);
8723 bool dependent_p;
8724
8725 /* In the code
8726 template <class T> class C {
8727 template <class U> friend void C1<U>::f (); // case 1
8728 friend void C2<T>::f (); // case 2
8729 };
8730 we only need to make sure CONTEXT is a complete type for
8731 case 2. To distinguish between the two cases, we note that
8732 CONTEXT of case 1 remains dependent type after tsubst while
8733 this isn't true for case 2. */
8734 ++processing_template_decl;
8735 dependent_p = dependent_type_p (context);
8736 --processing_template_decl;
8737
8738 if (!dependent_p
8739 && !complete_type_or_else (context, NULL_TREE))
8740 return error_mark_node;
8741
8742 if (COMPLETE_TYPE_P (context))
8743 {
8744 tree fn = new_friend;
8745 /* do_friend adds the TEMPLATE_DECL for any member friend
8746 template even if it isn't a member template, i.e.
8747 template <class T> friend A<T>::f();
8748 Look through it in that case. */
8749 if (TREE_CODE (fn) == TEMPLATE_DECL
8750 && !PRIMARY_TEMPLATE_P (fn))
8751 fn = DECL_TEMPLATE_RESULT (fn);
8752 /* Check to see that the declaration is really present, and,
8753 possibly obtain an improved declaration. */
8754 fn = check_classfn (context, fn, NULL_TREE);
8755
8756 if (fn)
8757 new_friend = fn;
8758 }
8759 }
8760
8761 return new_friend;
8762 }
8763
8764 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
8765 template arguments, as for tsubst.
8766
8767 Returns an appropriate tsubst'd friend type or error_mark_node on
8768 failure. */
8769
8770 static tree
8771 tsubst_friend_class (tree friend_tmpl, tree args)
8772 {
8773 tree friend_type;
8774 tree tmpl;
8775 tree context;
8776
8777 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
8778 {
8779 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
8780 return TREE_TYPE (t);
8781 }
8782
8783 context = CP_DECL_CONTEXT (friend_tmpl);
8784
8785 if (context != global_namespace)
8786 {
8787 if (TREE_CODE (context) == NAMESPACE_DECL)
8788 push_nested_namespace (context);
8789 else
8790 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
8791 }
8792
8793 /* Look for a class template declaration. We look for hidden names
8794 because two friend declarations of the same template are the
8795 same. For example, in:
8796
8797 struct A {
8798 template <typename> friend class F;
8799 };
8800 template <typename> struct B {
8801 template <typename> friend class F;
8802 };
8803
8804 both F templates are the same. */
8805 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
8806 /*block_p=*/true, 0, LOOKUP_HIDDEN);
8807
8808 /* But, if we don't find one, it might be because we're in a
8809 situation like this:
8810
8811 template <class T>
8812 struct S {
8813 template <class U>
8814 friend struct S;
8815 };
8816
8817 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
8818 for `S<int>', not the TEMPLATE_DECL. */
8819 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
8820 {
8821 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
8822 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
8823 }
8824
8825 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
8826 {
8827 /* The friend template has already been declared. Just
8828 check to see that the declarations match, and install any new
8829 default parameters. We must tsubst the default parameters,
8830 of course. We only need the innermost template parameters
8831 because that is all that redeclare_class_template will look
8832 at. */
8833 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
8834 > TMPL_ARGS_DEPTH (args))
8835 {
8836 tree parms;
8837 location_t saved_input_location;
8838 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
8839 args, tf_warning_or_error);
8840
8841 saved_input_location = input_location;
8842 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
8843 redeclare_class_template (TREE_TYPE (tmpl), parms);
8844 input_location = saved_input_location;
8845
8846 }
8847
8848 friend_type = TREE_TYPE (tmpl);
8849 }
8850 else
8851 {
8852 /* The friend template has not already been declared. In this
8853 case, the instantiation of the template class will cause the
8854 injection of this template into the global scope. */
8855 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
8856 if (tmpl == error_mark_node)
8857 return error_mark_node;
8858
8859 /* The new TMPL is not an instantiation of anything, so we
8860 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
8861 the new type because that is supposed to be the corresponding
8862 template decl, i.e., TMPL. */
8863 DECL_USE_TEMPLATE (tmpl) = 0;
8864 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
8865 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
8866 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
8867 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
8868
8869 /* Inject this template into the global scope. */
8870 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
8871 }
8872
8873 if (context != global_namespace)
8874 {
8875 if (TREE_CODE (context) == NAMESPACE_DECL)
8876 pop_nested_namespace (context);
8877 else
8878 pop_nested_class ();
8879 }
8880
8881 return friend_type;
8882 }
8883
8884 /* Returns zero if TYPE cannot be completed later due to circularity.
8885 Otherwise returns one. */
8886
8887 static int
8888 can_complete_type_without_circularity (tree type)
8889 {
8890 if (type == NULL_TREE || type == error_mark_node)
8891 return 0;
8892 else if (COMPLETE_TYPE_P (type))
8893 return 1;
8894 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
8895 return can_complete_type_without_circularity (TREE_TYPE (type));
8896 else if (CLASS_TYPE_P (type)
8897 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
8898 return 0;
8899 else
8900 return 1;
8901 }
8902
8903 static tree tsubst_omp_clauses (tree, bool, tree, tsubst_flags_t, tree);
8904
8905 /* Apply any attributes which had to be deferred until instantiation
8906 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
8907 ARGS, COMPLAIN, IN_DECL are as tsubst. */
8908
8909 static void
8910 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
8911 tree args, tsubst_flags_t complain, tree in_decl)
8912 {
8913 tree last_dep = NULL_TREE;
8914 tree t;
8915 tree *p;
8916
8917 for (t = attributes; t; t = TREE_CHAIN (t))
8918 if (ATTR_IS_DEPENDENT (t))
8919 {
8920 last_dep = t;
8921 attributes = copy_list (attributes);
8922 break;
8923 }
8924
8925 if (DECL_P (*decl_p))
8926 {
8927 if (TREE_TYPE (*decl_p) == error_mark_node)
8928 return;
8929 p = &DECL_ATTRIBUTES (*decl_p);
8930 }
8931 else
8932 p = &TYPE_ATTRIBUTES (*decl_p);
8933
8934 if (last_dep)
8935 {
8936 tree late_attrs = NULL_TREE;
8937 tree *q = &late_attrs;
8938
8939 for (*p = attributes; *p; )
8940 {
8941 t = *p;
8942 if (ATTR_IS_DEPENDENT (t))
8943 {
8944 *p = TREE_CHAIN (t);
8945 TREE_CHAIN (t) = NULL_TREE;
8946 if ((flag_openmp || flag_cilkplus)
8947 && is_attribute_p ("omp declare simd",
8948 get_attribute_name (t))
8949 && TREE_VALUE (t))
8950 {
8951 tree clauses = TREE_VALUE (TREE_VALUE (t));
8952 clauses = tsubst_omp_clauses (clauses, true, args,
8953 complain, in_decl);
8954 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
8955 clauses = finish_omp_clauses (clauses);
8956 tree parms = DECL_ARGUMENTS (*decl_p);
8957 clauses
8958 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
8959 if (clauses)
8960 TREE_VALUE (TREE_VALUE (t)) = clauses;
8961 else
8962 TREE_VALUE (t) = NULL_TREE;
8963 }
8964 /* If the first attribute argument is an identifier, don't
8965 pass it through tsubst. Attributes like mode, format,
8966 cleanup and several target specific attributes expect it
8967 unmodified. */
8968 else if (attribute_takes_identifier_p (get_attribute_name (t))
8969 && TREE_VALUE (t))
8970 {
8971 tree chain
8972 = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain,
8973 in_decl,
8974 /*integral_constant_expression_p=*/false);
8975 if (chain != TREE_CHAIN (TREE_VALUE (t)))
8976 TREE_VALUE (t)
8977 = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)),
8978 chain);
8979 }
8980 else
8981 TREE_VALUE (t)
8982 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
8983 /*integral_constant_expression_p=*/false);
8984 *q = t;
8985 q = &TREE_CHAIN (t);
8986 }
8987 else
8988 p = &TREE_CHAIN (t);
8989 }
8990
8991 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
8992 }
8993 }
8994
8995 /* Perform (or defer) access check for typedefs that were referenced
8996 from within the template TMPL code.
8997 This is a subroutine of instantiate_decl and instantiate_class_template.
8998 TMPL is the template to consider and TARGS is the list of arguments of
8999 that template. */
9000
9001 static void
9002 perform_typedefs_access_check (tree tmpl, tree targs)
9003 {
9004 location_t saved_location;
9005 unsigned i;
9006 qualified_typedef_usage_t *iter;
9007
9008 if (!tmpl
9009 || (!CLASS_TYPE_P (tmpl)
9010 && TREE_CODE (tmpl) != FUNCTION_DECL))
9011 return;
9012
9013 saved_location = input_location;
9014 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
9015 {
9016 tree type_decl = iter->typedef_decl;
9017 tree type_scope = iter->context;
9018
9019 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
9020 continue;
9021
9022 if (uses_template_parms (type_decl))
9023 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
9024 if (uses_template_parms (type_scope))
9025 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
9026
9027 /* Make access check error messages point to the location
9028 of the use of the typedef. */
9029 input_location = iter->locus;
9030 perform_or_defer_access_check (TYPE_BINFO (type_scope),
9031 type_decl, type_decl,
9032 tf_warning_or_error);
9033 }
9034 input_location = saved_location;
9035 }
9036
9037 static tree
9038 instantiate_class_template_1 (tree type)
9039 {
9040 tree templ, args, pattern, t, member;
9041 tree typedecl;
9042 tree pbinfo;
9043 tree base_list;
9044 unsigned int saved_maximum_field_alignment;
9045 tree fn_context;
9046
9047 if (type == error_mark_node)
9048 return error_mark_node;
9049
9050 if (COMPLETE_OR_OPEN_TYPE_P (type)
9051 || uses_template_parms (type))
9052 return type;
9053
9054 /* Figure out which template is being instantiated. */
9055 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
9056 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
9057
9058 /* Determine what specialization of the original template to
9059 instantiate. */
9060 t = most_specialized_class (type, tf_warning_or_error);
9061 if (t == error_mark_node)
9062 {
9063 TYPE_BEING_DEFINED (type) = 1;
9064 return error_mark_node;
9065 }
9066 else if (t)
9067 {
9068 /* This TYPE is actually an instantiation of a partial
9069 specialization. We replace the innermost set of ARGS with
9070 the arguments appropriate for substitution. For example,
9071 given:
9072
9073 template <class T> struct S {};
9074 template <class T> struct S<T*> {};
9075
9076 and supposing that we are instantiating S<int*>, ARGS will
9077 presently be {int*} -- but we need {int}. */
9078 pattern = TREE_TYPE (t);
9079 args = TREE_PURPOSE (t);
9080 }
9081 else
9082 {
9083 pattern = TREE_TYPE (templ);
9084 args = CLASSTYPE_TI_ARGS (type);
9085 }
9086
9087 /* If the template we're instantiating is incomplete, then clearly
9088 there's nothing we can do. */
9089 if (!COMPLETE_TYPE_P (pattern))
9090 return type;
9091
9092 /* If we've recursively instantiated too many templates, stop. */
9093 if (! push_tinst_level (type))
9094 return type;
9095
9096 /* Now we're really doing the instantiation. Mark the type as in
9097 the process of being defined. */
9098 TYPE_BEING_DEFINED (type) = 1;
9099
9100 /* We may be in the middle of deferred access check. Disable
9101 it now. */
9102 push_deferring_access_checks (dk_no_deferred);
9103
9104 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
9105 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
9106 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
9107 fn_context = error_mark_node;
9108 if (!fn_context)
9109 push_to_top_level ();
9110 /* Use #pragma pack from the template context. */
9111 saved_maximum_field_alignment = maximum_field_alignment;
9112 maximum_field_alignment = TYPE_PRECISION (pattern);
9113
9114 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
9115
9116 /* Set the input location to the most specialized template definition.
9117 This is needed if tsubsting causes an error. */
9118 typedecl = TYPE_MAIN_DECL (pattern);
9119 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
9120 DECL_SOURCE_LOCATION (typedecl);
9121
9122 TYPE_PACKED (type) = TYPE_PACKED (pattern);
9123 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
9124 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
9125 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
9126 if (ANON_AGGR_TYPE_P (pattern))
9127 SET_ANON_AGGR_TYPE_P (type);
9128 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
9129 {
9130 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
9131 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
9132 /* Adjust visibility for template arguments. */
9133 determine_visibility (TYPE_MAIN_DECL (type));
9134 }
9135 if (CLASS_TYPE_P (type))
9136 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
9137
9138 pbinfo = TYPE_BINFO (pattern);
9139
9140 /* We should never instantiate a nested class before its enclosing
9141 class; we need to look up the nested class by name before we can
9142 instantiate it, and that lookup should instantiate the enclosing
9143 class. */
9144 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
9145 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
9146
9147 base_list = NULL_TREE;
9148 if (BINFO_N_BASE_BINFOS (pbinfo))
9149 {
9150 tree pbase_binfo;
9151 tree pushed_scope;
9152 int i;
9153
9154 /* We must enter the scope containing the type, as that is where
9155 the accessibility of types named in dependent bases are
9156 looked up from. */
9157 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
9158
9159 /* Substitute into each of the bases to determine the actual
9160 basetypes. */
9161 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
9162 {
9163 tree base;
9164 tree access = BINFO_BASE_ACCESS (pbinfo, i);
9165 tree expanded_bases = NULL_TREE;
9166 int idx, len = 1;
9167
9168 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
9169 {
9170 expanded_bases =
9171 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
9172 args, tf_error, NULL_TREE);
9173 if (expanded_bases == error_mark_node)
9174 continue;
9175
9176 len = TREE_VEC_LENGTH (expanded_bases);
9177 }
9178
9179 for (idx = 0; idx < len; idx++)
9180 {
9181 if (expanded_bases)
9182 /* Extract the already-expanded base class. */
9183 base = TREE_VEC_ELT (expanded_bases, idx);
9184 else
9185 /* Substitute to figure out the base class. */
9186 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
9187 NULL_TREE);
9188
9189 if (base == error_mark_node)
9190 continue;
9191
9192 base_list = tree_cons (access, base, base_list);
9193 if (BINFO_VIRTUAL_P (pbase_binfo))
9194 TREE_TYPE (base_list) = integer_type_node;
9195 }
9196 }
9197
9198 /* The list is now in reverse order; correct that. */
9199 base_list = nreverse (base_list);
9200
9201 if (pushed_scope)
9202 pop_scope (pushed_scope);
9203 }
9204 /* Now call xref_basetypes to set up all the base-class
9205 information. */
9206 xref_basetypes (type, base_list);
9207
9208 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
9209 (int) ATTR_FLAG_TYPE_IN_PLACE,
9210 args, tf_error, NULL_TREE);
9211 fixup_attribute_variants (type);
9212
9213 /* Now that our base classes are set up, enter the scope of the
9214 class, so that name lookups into base classes, etc. will work
9215 correctly. This is precisely analogous to what we do in
9216 begin_class_definition when defining an ordinary non-template
9217 class, except we also need to push the enclosing classes. */
9218 push_nested_class (type);
9219
9220 /* Now members are processed in the order of declaration. */
9221 for (member = CLASSTYPE_DECL_LIST (pattern);
9222 member; member = TREE_CHAIN (member))
9223 {
9224 tree t = TREE_VALUE (member);
9225
9226 if (TREE_PURPOSE (member))
9227 {
9228 if (TYPE_P (t))
9229 {
9230 /* Build new CLASSTYPE_NESTED_UTDS. */
9231
9232 tree newtag;
9233 bool class_template_p;
9234
9235 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
9236 && TYPE_LANG_SPECIFIC (t)
9237 && CLASSTYPE_IS_TEMPLATE (t));
9238 /* If the member is a class template, then -- even after
9239 substitution -- there may be dependent types in the
9240 template argument list for the class. We increment
9241 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
9242 that function will assume that no types are dependent
9243 when outside of a template. */
9244 if (class_template_p)
9245 ++processing_template_decl;
9246 newtag = tsubst (t, args, tf_error, NULL_TREE);
9247 if (class_template_p)
9248 --processing_template_decl;
9249 if (newtag == error_mark_node)
9250 continue;
9251
9252 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
9253 {
9254 tree name = TYPE_IDENTIFIER (t);
9255
9256 if (class_template_p)
9257 /* Unfortunately, lookup_template_class sets
9258 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
9259 instantiation (i.e., for the type of a member
9260 template class nested within a template class.)
9261 This behavior is required for
9262 maybe_process_partial_specialization to work
9263 correctly, but is not accurate in this case;
9264 the TAG is not an instantiation of anything.
9265 (The corresponding TEMPLATE_DECL is an
9266 instantiation, but the TYPE is not.) */
9267 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
9268
9269 /* Now, we call pushtag to put this NEWTAG into the scope of
9270 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
9271 pushtag calling push_template_decl. We don't have to do
9272 this for enums because it will already have been done in
9273 tsubst_enum. */
9274 if (name)
9275 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
9276 pushtag (name, newtag, /*tag_scope=*/ts_current);
9277 }
9278 }
9279 else if (DECL_DECLARES_FUNCTION_P (t))
9280 {
9281 /* Build new TYPE_METHODS. */
9282 tree r;
9283
9284 if (TREE_CODE (t) == TEMPLATE_DECL)
9285 ++processing_template_decl;
9286 r = tsubst (t, args, tf_error, NULL_TREE);
9287 if (TREE_CODE (t) == TEMPLATE_DECL)
9288 --processing_template_decl;
9289 set_current_access_from_decl (r);
9290 finish_member_declaration (r);
9291 /* Instantiate members marked with attribute used. */
9292 if (r != error_mark_node && DECL_PRESERVE_P (r))
9293 mark_used (r);
9294 if (TREE_CODE (r) == FUNCTION_DECL
9295 && DECL_OMP_DECLARE_REDUCTION_P (r))
9296 cp_check_omp_declare_reduction (r);
9297 }
9298 else if (DECL_CLASS_TEMPLATE_P (t)
9299 && LAMBDA_TYPE_P (TREE_TYPE (t)))
9300 /* A closure type for a lambda in a default argument for a
9301 member template. Ignore it; it will be instantiated with
9302 the default argument. */;
9303 else
9304 {
9305 /* Build new TYPE_FIELDS. */
9306 if (TREE_CODE (t) == STATIC_ASSERT)
9307 {
9308 tree condition;
9309
9310 ++c_inhibit_evaluation_warnings;
9311 condition =
9312 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
9313 tf_warning_or_error, NULL_TREE,
9314 /*integral_constant_expression_p=*/true);
9315 --c_inhibit_evaluation_warnings;
9316
9317 finish_static_assert (condition,
9318 STATIC_ASSERT_MESSAGE (t),
9319 STATIC_ASSERT_SOURCE_LOCATION (t),
9320 /*member_p=*/true);
9321 }
9322 else if (TREE_CODE (t) != CONST_DECL)
9323 {
9324 tree r;
9325 tree vec = NULL_TREE;
9326 int len = 1;
9327
9328 /* The file and line for this declaration, to
9329 assist in error message reporting. Since we
9330 called push_tinst_level above, we don't need to
9331 restore these. */
9332 input_location = DECL_SOURCE_LOCATION (t);
9333
9334 if (TREE_CODE (t) == TEMPLATE_DECL)
9335 ++processing_template_decl;
9336 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
9337 if (TREE_CODE (t) == TEMPLATE_DECL)
9338 --processing_template_decl;
9339
9340 if (TREE_CODE (r) == TREE_VEC)
9341 {
9342 /* A capture pack became multiple fields. */
9343 vec = r;
9344 len = TREE_VEC_LENGTH (vec);
9345 }
9346
9347 for (int i = 0; i < len; ++i)
9348 {
9349 if (vec)
9350 r = TREE_VEC_ELT (vec, i);
9351 if (VAR_P (r))
9352 {
9353 /* In [temp.inst]:
9354
9355 [t]he initialization (and any associated
9356 side-effects) of a static data member does
9357 not occur unless the static data member is
9358 itself used in a way that requires the
9359 definition of the static data member to
9360 exist.
9361
9362 Therefore, we do not substitute into the
9363 initialized for the static data member here. */
9364 finish_static_data_member_decl
9365 (r,
9366 /*init=*/NULL_TREE,
9367 /*init_const_expr_p=*/false,
9368 /*asmspec_tree=*/NULL_TREE,
9369 /*flags=*/0);
9370 /* Instantiate members marked with attribute used. */
9371 if (r != error_mark_node && DECL_PRESERVE_P (r))
9372 mark_used (r);
9373 }
9374 else if (TREE_CODE (r) == FIELD_DECL)
9375 {
9376 /* Determine whether R has a valid type and can be
9377 completed later. If R is invalid, then its type
9378 is replaced by error_mark_node. */
9379 tree rtype = TREE_TYPE (r);
9380 if (can_complete_type_without_circularity (rtype))
9381 complete_type (rtype);
9382
9383 if (!COMPLETE_TYPE_P (rtype))
9384 {
9385 cxx_incomplete_type_error (r, rtype);
9386 TREE_TYPE (r) = error_mark_node;
9387 }
9388 }
9389
9390 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
9391 such a thing will already have been added to the field
9392 list by tsubst_enum in finish_member_declaration in the
9393 CLASSTYPE_NESTED_UTDS case above. */
9394 if (!(TREE_CODE (r) == TYPE_DECL
9395 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
9396 && DECL_ARTIFICIAL (r)))
9397 {
9398 set_current_access_from_decl (r);
9399 finish_member_declaration (r);
9400 }
9401 }
9402 }
9403 }
9404 }
9405 else
9406 {
9407 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
9408 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
9409 {
9410 /* Build new CLASSTYPE_FRIEND_CLASSES. */
9411
9412 tree friend_type = t;
9413 bool adjust_processing_template_decl = false;
9414
9415 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
9416 {
9417 /* template <class T> friend class C; */
9418 friend_type = tsubst_friend_class (friend_type, args);
9419 adjust_processing_template_decl = true;
9420 }
9421 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
9422 {
9423 /* template <class T> friend class C::D; */
9424 friend_type = tsubst (friend_type, args,
9425 tf_warning_or_error, NULL_TREE);
9426 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
9427 friend_type = TREE_TYPE (friend_type);
9428 adjust_processing_template_decl = true;
9429 }
9430 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
9431 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
9432 {
9433 /* This could be either
9434
9435 friend class T::C;
9436
9437 when dependent_type_p is false or
9438
9439 template <class U> friend class T::C;
9440
9441 otherwise. */
9442 friend_type = tsubst (friend_type, args,
9443 tf_warning_or_error, NULL_TREE);
9444 /* Bump processing_template_decl for correct
9445 dependent_type_p calculation. */
9446 ++processing_template_decl;
9447 if (dependent_type_p (friend_type))
9448 adjust_processing_template_decl = true;
9449 --processing_template_decl;
9450 }
9451 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
9452 && hidden_name_p (TYPE_NAME (friend_type)))
9453 {
9454 /* friend class C;
9455
9456 where C hasn't been declared yet. Let's lookup name
9457 from namespace scope directly, bypassing any name that
9458 come from dependent base class. */
9459 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
9460
9461 /* The call to xref_tag_from_type does injection for friend
9462 classes. */
9463 push_nested_namespace (ns);
9464 friend_type =
9465 xref_tag_from_type (friend_type, NULL_TREE,
9466 /*tag_scope=*/ts_current);
9467 pop_nested_namespace (ns);
9468 }
9469 else if (uses_template_parms (friend_type))
9470 /* friend class C<T>; */
9471 friend_type = tsubst (friend_type, args,
9472 tf_warning_or_error, NULL_TREE);
9473 /* Otherwise it's
9474
9475 friend class C;
9476
9477 where C is already declared or
9478
9479 friend class C<int>;
9480
9481 We don't have to do anything in these cases. */
9482
9483 if (adjust_processing_template_decl)
9484 /* Trick make_friend_class into realizing that the friend
9485 we're adding is a template, not an ordinary class. It's
9486 important that we use make_friend_class since it will
9487 perform some error-checking and output cross-reference
9488 information. */
9489 ++processing_template_decl;
9490
9491 if (friend_type != error_mark_node)
9492 make_friend_class (type, friend_type, /*complain=*/false);
9493
9494 if (adjust_processing_template_decl)
9495 --processing_template_decl;
9496 }
9497 else
9498 {
9499 /* Build new DECL_FRIENDLIST. */
9500 tree r;
9501
9502 /* The file and line for this declaration, to
9503 assist in error message reporting. Since we
9504 called push_tinst_level above, we don't need to
9505 restore these. */
9506 input_location = DECL_SOURCE_LOCATION (t);
9507
9508 if (TREE_CODE (t) == TEMPLATE_DECL)
9509 {
9510 ++processing_template_decl;
9511 push_deferring_access_checks (dk_no_check);
9512 }
9513
9514 r = tsubst_friend_function (t, args);
9515 add_friend (type, r, /*complain=*/false);
9516 if (TREE_CODE (t) == TEMPLATE_DECL)
9517 {
9518 pop_deferring_access_checks ();
9519 --processing_template_decl;
9520 }
9521 }
9522 }
9523 }
9524
9525 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
9526 {
9527 tree decl = lambda_function (type);
9528 if (decl)
9529 {
9530 if (!DECL_TEMPLATE_INFO (decl)
9531 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
9532 instantiate_decl (decl, false, false);
9533
9534 /* We need to instantiate the capture list from the template
9535 after we've instantiated the closure members, but before we
9536 consider adding the conversion op. Also keep any captures
9537 that may have been added during instantiation of the op(). */
9538 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
9539 tree tmpl_cap
9540 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
9541 args, tf_warning_or_error, NULL_TREE,
9542 false, false);
9543
9544 LAMBDA_EXPR_CAPTURE_LIST (expr)
9545 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
9546
9547 maybe_add_lambda_conv_op (type);
9548 }
9549 else
9550 gcc_assert (errorcount);
9551 }
9552
9553 /* Set the file and line number information to whatever is given for
9554 the class itself. This puts error messages involving generated
9555 implicit functions at a predictable point, and the same point
9556 that would be used for non-template classes. */
9557 input_location = DECL_SOURCE_LOCATION (typedecl);
9558
9559 unreverse_member_declarations (type);
9560 finish_struct_1 (type);
9561 TYPE_BEING_DEFINED (type) = 0;
9562
9563 /* We don't instantiate default arguments for member functions. 14.7.1:
9564
9565 The implicit instantiation of a class template specialization causes
9566 the implicit instantiation of the declarations, but not of the
9567 definitions or default arguments, of the class member functions,
9568 member classes, static data members and member templates.... */
9569
9570 /* Some typedefs referenced from within the template code need to be access
9571 checked at template instantiation time, i.e now. These types were
9572 added to the template at parsing time. Let's get those and perform
9573 the access checks then. */
9574 perform_typedefs_access_check (pattern, args);
9575 perform_deferred_access_checks (tf_warning_or_error);
9576 pop_nested_class ();
9577 maximum_field_alignment = saved_maximum_field_alignment;
9578 if (!fn_context)
9579 pop_from_top_level ();
9580 pop_deferring_access_checks ();
9581 pop_tinst_level ();
9582
9583 /* The vtable for a template class can be emitted in any translation
9584 unit in which the class is instantiated. When there is no key
9585 method, however, finish_struct_1 will already have added TYPE to
9586 the keyed_classes list. */
9587 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
9588 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
9589
9590 return type;
9591 }
9592
9593 /* Wrapper for instantiate_class_template_1. */
9594
9595 tree
9596 instantiate_class_template (tree type)
9597 {
9598 tree ret;
9599 timevar_push (TV_TEMPLATE_INST);
9600 ret = instantiate_class_template_1 (type);
9601 timevar_pop (TV_TEMPLATE_INST);
9602 return ret;
9603 }
9604
9605 static tree
9606 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9607 {
9608 tree r;
9609
9610 if (!t)
9611 r = t;
9612 else if (TYPE_P (t))
9613 r = tsubst (t, args, complain, in_decl);
9614 else
9615 {
9616 if (!(complain & tf_warning))
9617 ++c_inhibit_evaluation_warnings;
9618 r = tsubst_expr (t, args, complain, in_decl,
9619 /*integral_constant_expression_p=*/true);
9620 if (!(complain & tf_warning))
9621 --c_inhibit_evaluation_warnings;
9622 }
9623 return r;
9624 }
9625
9626 /* Given a function parameter pack TMPL_PARM and some function parameters
9627 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
9628 and set *SPEC_P to point at the next point in the list. */
9629
9630 static tree
9631 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
9632 {
9633 /* Collect all of the extra "packed" parameters into an
9634 argument pack. */
9635 tree parmvec;
9636 tree parmtypevec;
9637 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
9638 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
9639 tree spec_parm = *spec_p;
9640 int i, len;
9641
9642 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
9643 if (tmpl_parm
9644 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
9645 break;
9646
9647 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
9648 parmvec = make_tree_vec (len);
9649 parmtypevec = make_tree_vec (len);
9650 spec_parm = *spec_p;
9651 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
9652 {
9653 TREE_VEC_ELT (parmvec, i) = spec_parm;
9654 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
9655 }
9656
9657 /* Build the argument packs. */
9658 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
9659 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
9660 TREE_TYPE (argpack) = argtypepack;
9661 *spec_p = spec_parm;
9662
9663 return argpack;
9664 }
9665
9666 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
9667 NONTYPE_ARGUMENT_PACK. */
9668
9669 static tree
9670 make_fnparm_pack (tree spec_parm)
9671 {
9672 return extract_fnparm_pack (NULL_TREE, &spec_parm);
9673 }
9674
9675 /* Return true iff the Ith element of the argument pack ARG_PACK is a
9676 pack expansion. */
9677
9678 static bool
9679 argument_pack_element_is_expansion_p (tree arg_pack, int i)
9680 {
9681 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
9682 if (i >= TREE_VEC_LENGTH (vec))
9683 return false;
9684 return PACK_EXPANSION_P (TREE_VEC_ELT (vec, i));
9685 }
9686
9687
9688 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
9689
9690 static tree
9691 make_argument_pack_select (tree arg_pack, unsigned index)
9692 {
9693 tree aps = make_node (ARGUMENT_PACK_SELECT);
9694
9695 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
9696 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
9697
9698 return aps;
9699 }
9700
9701 /* This is a subroutine of tsubst_pack_expansion.
9702
9703 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
9704 mechanism to store the (non complete list of) arguments of the
9705 substitution and return a non substituted pack expansion, in order
9706 to wait for when we have enough arguments to really perform the
9707 substitution. */
9708
9709 static bool
9710 use_pack_expansion_extra_args_p (tree parm_packs,
9711 int arg_pack_len,
9712 bool has_empty_arg)
9713 {
9714 /* If one pack has an expansion and another pack has a normal
9715 argument or if one pack has an empty argument and an another
9716 one hasn't then tsubst_pack_expansion cannot perform the
9717 substitution and need to fall back on the
9718 PACK_EXPANSION_EXTRA mechanism. */
9719 if (parm_packs == NULL_TREE)
9720 return false;
9721 else if (has_empty_arg)
9722 return true;
9723
9724 bool has_expansion_arg = false;
9725 for (int i = 0 ; i < arg_pack_len; ++i)
9726 {
9727 bool has_non_expansion_arg = false;
9728 for (tree parm_pack = parm_packs;
9729 parm_pack;
9730 parm_pack = TREE_CHAIN (parm_pack))
9731 {
9732 tree arg = TREE_VALUE (parm_pack);
9733
9734 if (argument_pack_element_is_expansion_p (arg, i))
9735 has_expansion_arg = true;
9736 else
9737 has_non_expansion_arg = true;
9738 }
9739
9740 if (has_expansion_arg && has_non_expansion_arg)
9741 return true;
9742 }
9743 return false;
9744 }
9745
9746 /* [temp.variadic]/6 says that:
9747
9748 The instantiation of a pack expansion [...]
9749 produces a list E1,E2, ..., En, where N is the number of elements
9750 in the pack expansion parameters.
9751
9752 This subroutine of tsubst_pack_expansion produces one of these Ei.
9753
9754 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
9755 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
9756 PATTERN, and each TREE_VALUE is its corresponding argument pack.
9757 INDEX is the index 'i' of the element Ei to produce. ARGS,
9758 COMPLAIN, and IN_DECL are the same parameters as for the
9759 tsubst_pack_expansion function.
9760
9761 The function returns the resulting Ei upon successful completion,
9762 or error_mark_node.
9763
9764 Note that this function possibly modifies the ARGS parameter, so
9765 it's the responsibility of the caller to restore it. */
9766
9767 static tree
9768 gen_elem_of_pack_expansion_instantiation (tree pattern,
9769 tree parm_packs,
9770 unsigned index,
9771 tree args /* This parm gets
9772 modified. */,
9773 tsubst_flags_t complain,
9774 tree in_decl)
9775 {
9776 tree t;
9777 bool ith_elem_is_expansion = false;
9778
9779 /* For each parameter pack, change the substitution of the parameter
9780 pack to the ith argument in its argument pack, then expand the
9781 pattern. */
9782 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
9783 {
9784 tree parm = TREE_PURPOSE (pack);
9785 tree arg_pack = TREE_VALUE (pack);
9786 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
9787
9788 ith_elem_is_expansion |=
9789 argument_pack_element_is_expansion_p (arg_pack, index);
9790
9791 /* Select the Ith argument from the pack. */
9792 if (TREE_CODE (parm) == PARM_DECL
9793 || TREE_CODE (parm) == FIELD_DECL)
9794 {
9795 if (index == 0)
9796 {
9797 aps = make_argument_pack_select (arg_pack, index);
9798 mark_used (parm);
9799 register_local_specialization (aps, parm);
9800 }
9801 else
9802 aps = retrieve_local_specialization (parm);
9803 }
9804 else
9805 {
9806 int idx, level;
9807 template_parm_level_and_index (parm, &level, &idx);
9808
9809 if (index == 0)
9810 {
9811 aps = make_argument_pack_select (arg_pack, index);
9812 /* Update the corresponding argument. */
9813 TMPL_ARG (args, level, idx) = aps;
9814 }
9815 else
9816 /* Re-use the ARGUMENT_PACK_SELECT. */
9817 aps = TMPL_ARG (args, level, idx);
9818 }
9819 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
9820 }
9821
9822 /* Substitute into the PATTERN with the (possibly altered)
9823 arguments. */
9824 if (pattern == in_decl)
9825 /* Expanding a fixed parameter pack from
9826 coerce_template_parameter_pack. */
9827 t = tsubst_decl (pattern, args, complain);
9828 else if (!TYPE_P (pattern))
9829 t = tsubst_expr (pattern, args, complain, in_decl,
9830 /*integral_constant_expression_p=*/false);
9831 else
9832 t = tsubst (pattern, args, complain, in_decl);
9833
9834 /* If the Ith argument pack element is a pack expansion, then
9835 the Ith element resulting from the substituting is going to
9836 be a pack expansion as well. */
9837 if (ith_elem_is_expansion)
9838 t = make_pack_expansion (t);
9839
9840 return t;
9841 }
9842
9843 /* Substitute ARGS into T, which is an pack expansion
9844 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
9845 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
9846 (if only a partial substitution could be performed) or
9847 ERROR_MARK_NODE if there was an error. */
9848 tree
9849 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
9850 tree in_decl)
9851 {
9852 tree pattern;
9853 tree pack, packs = NULL_TREE;
9854 bool unsubstituted_packs = false;
9855 int i, len = -1;
9856 tree result;
9857 hash_map<tree, tree> *saved_local_specializations = NULL;
9858 bool need_local_specializations = false;
9859 int levels;
9860
9861 gcc_assert (PACK_EXPANSION_P (t));
9862 pattern = PACK_EXPANSION_PATTERN (t);
9863
9864 /* Add in any args remembered from an earlier partial instantiation. */
9865 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
9866
9867 levels = TMPL_ARGS_DEPTH (args);
9868
9869 /* Determine the argument packs that will instantiate the parameter
9870 packs used in the expansion expression. While we're at it,
9871 compute the number of arguments to be expanded and make sure it
9872 is consistent. */
9873 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
9874 pack = TREE_CHAIN (pack))
9875 {
9876 tree parm_pack = TREE_VALUE (pack);
9877 tree arg_pack = NULL_TREE;
9878 tree orig_arg = NULL_TREE;
9879 int level = 0;
9880
9881 if (TREE_CODE (parm_pack) == BASES)
9882 {
9883 if (BASES_DIRECT (parm_pack))
9884 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
9885 args, complain, in_decl, false));
9886 else
9887 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
9888 args, complain, in_decl, false));
9889 }
9890 if (TREE_CODE (parm_pack) == PARM_DECL)
9891 {
9892 if (PACK_EXPANSION_LOCAL_P (t))
9893 arg_pack = retrieve_local_specialization (parm_pack);
9894 else
9895 {
9896 /* We can't rely on local_specializations for a parameter
9897 name used later in a function declaration (such as in a
9898 late-specified return type). Even if it exists, it might
9899 have the wrong value for a recursive call. Just make a
9900 dummy decl, since it's only used for its type. */
9901 arg_pack = tsubst_decl (parm_pack, args, complain);
9902 if (arg_pack && DECL_PACK_P (arg_pack))
9903 /* Partial instantiation of the parm_pack, we can't build
9904 up an argument pack yet. */
9905 arg_pack = NULL_TREE;
9906 else
9907 arg_pack = make_fnparm_pack (arg_pack);
9908 need_local_specializations = true;
9909 }
9910 }
9911 else if (TREE_CODE (parm_pack) == FIELD_DECL)
9912 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
9913 else
9914 {
9915 int idx;
9916 template_parm_level_and_index (parm_pack, &level, &idx);
9917
9918 if (level <= levels)
9919 arg_pack = TMPL_ARG (args, level, idx);
9920 }
9921
9922 orig_arg = arg_pack;
9923 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
9924 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
9925
9926 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
9927 /* This can only happen if we forget to expand an argument
9928 pack somewhere else. Just return an error, silently. */
9929 {
9930 result = make_tree_vec (1);
9931 TREE_VEC_ELT (result, 0) = error_mark_node;
9932 return result;
9933 }
9934
9935 if (arg_pack)
9936 {
9937 int my_len =
9938 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
9939
9940 /* Don't bother trying to do a partial substitution with
9941 incomplete packs; we'll try again after deduction. */
9942 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
9943 return t;
9944
9945 if (len < 0)
9946 len = my_len;
9947 else if (len != my_len)
9948 {
9949 if (!(complain & tf_error))
9950 /* Fail quietly. */;
9951 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
9952 error ("mismatched argument pack lengths while expanding "
9953 "%<%T%>",
9954 pattern);
9955 else
9956 error ("mismatched argument pack lengths while expanding "
9957 "%<%E%>",
9958 pattern);
9959 return error_mark_node;
9960 }
9961
9962 /* Keep track of the parameter packs and their corresponding
9963 argument packs. */
9964 packs = tree_cons (parm_pack, arg_pack, packs);
9965 TREE_TYPE (packs) = orig_arg;
9966 }
9967 else
9968 {
9969 /* We can't substitute for this parameter pack. We use a flag as
9970 well as the missing_level counter because function parameter
9971 packs don't have a level. */
9972 unsubstituted_packs = true;
9973 }
9974 }
9975
9976 /* If the expansion is just T..., return the matching argument pack. */
9977 if (!unsubstituted_packs
9978 && TREE_PURPOSE (packs) == pattern)
9979 {
9980 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
9981 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
9982 || pack_expansion_args_count (args))
9983 return args;
9984 /* Otherwise use the normal path so we get convert_from_reference. */
9985 }
9986
9987 /* We cannot expand this expansion expression, because we don't have
9988 all of the argument packs we need. */
9989 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
9990 {
9991 /* We got some full packs, but we can't substitute them in until we
9992 have values for all the packs. So remember these until then. */
9993
9994 t = make_pack_expansion (pattern);
9995 PACK_EXPANSION_EXTRA_ARGS (t) = args;
9996 return t;
9997 }
9998 else if (unsubstituted_packs)
9999 {
10000 /* There were no real arguments, we're just replacing a parameter
10001 pack with another version of itself. Substitute into the
10002 pattern and return a PACK_EXPANSION_*. The caller will need to
10003 deal with that. */
10004 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
10005 t = tsubst_expr (pattern, args, complain, in_decl,
10006 /*integral_constant_expression_p=*/false);
10007 else
10008 t = tsubst (pattern, args, complain, in_decl);
10009 t = make_pack_expansion (t);
10010 return t;
10011 }
10012
10013 gcc_assert (len >= 0);
10014
10015 if (need_local_specializations)
10016 {
10017 /* We're in a late-specified return type, so create our own local
10018 specializations map; the current map is either NULL or (in the
10019 case of recursive unification) might have bindings that we don't
10020 want to use or alter. */
10021 saved_local_specializations = local_specializations;
10022 local_specializations = new hash_map<tree, tree>;
10023 }
10024
10025 /* For each argument in each argument pack, substitute into the
10026 pattern. */
10027 result = make_tree_vec (len);
10028 for (i = 0; i < len; ++i)
10029 {
10030 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
10031 i,
10032 args, complain,
10033 in_decl);
10034 TREE_VEC_ELT (result, i) = t;
10035 if (t == error_mark_node)
10036 {
10037 result = error_mark_node;
10038 break;
10039 }
10040 }
10041
10042 /* Update ARGS to restore the substitution from parameter packs to
10043 their argument packs. */
10044 for (pack = packs; pack; pack = TREE_CHAIN (pack))
10045 {
10046 tree parm = TREE_PURPOSE (pack);
10047
10048 if (TREE_CODE (parm) == PARM_DECL
10049 || TREE_CODE (parm) == FIELD_DECL)
10050 register_local_specialization (TREE_TYPE (pack), parm);
10051 else
10052 {
10053 int idx, level;
10054
10055 if (TREE_VALUE (pack) == NULL_TREE)
10056 continue;
10057
10058 template_parm_level_and_index (parm, &level, &idx);
10059
10060 /* Update the corresponding argument. */
10061 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
10062 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
10063 TREE_TYPE (pack);
10064 else
10065 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
10066 }
10067 }
10068
10069 if (need_local_specializations)
10070 {
10071 delete local_specializations;
10072 local_specializations = saved_local_specializations;
10073 }
10074
10075 return result;
10076 }
10077
10078 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
10079 TMPL. We do this using DECL_PARM_INDEX, which should work even with
10080 parameter packs; all parms generated from a function parameter pack will
10081 have the same DECL_PARM_INDEX. */
10082
10083 tree
10084 get_pattern_parm (tree parm, tree tmpl)
10085 {
10086 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
10087 tree patparm;
10088
10089 if (DECL_ARTIFICIAL (parm))
10090 {
10091 for (patparm = DECL_ARGUMENTS (pattern);
10092 patparm; patparm = DECL_CHAIN (patparm))
10093 if (DECL_ARTIFICIAL (patparm)
10094 && DECL_NAME (parm) == DECL_NAME (patparm))
10095 break;
10096 }
10097 else
10098 {
10099 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
10100 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
10101 gcc_assert (DECL_PARM_INDEX (patparm)
10102 == DECL_PARM_INDEX (parm));
10103 }
10104
10105 return patparm;
10106 }
10107
10108 /* Substitute ARGS into the vector or list of template arguments T. */
10109
10110 static tree
10111 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10112 {
10113 tree orig_t = t;
10114 int len, need_new = 0, i, expanded_len_adjust = 0, out;
10115 tree *elts;
10116
10117 if (t == error_mark_node)
10118 return error_mark_node;
10119
10120 len = TREE_VEC_LENGTH (t);
10121 elts = XALLOCAVEC (tree, len);
10122
10123 for (i = 0; i < len; i++)
10124 {
10125 tree orig_arg = TREE_VEC_ELT (t, i);
10126 tree new_arg;
10127
10128 if (TREE_CODE (orig_arg) == TREE_VEC)
10129 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
10130 else if (PACK_EXPANSION_P (orig_arg))
10131 {
10132 /* Substitute into an expansion expression. */
10133 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
10134
10135 if (TREE_CODE (new_arg) == TREE_VEC)
10136 /* Add to the expanded length adjustment the number of
10137 expanded arguments. We subtract one from this
10138 measurement, because the argument pack expression
10139 itself is already counted as 1 in
10140 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
10141 the argument pack is empty. */
10142 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
10143 }
10144 else if (ARGUMENT_PACK_P (orig_arg))
10145 {
10146 /* Substitute into each of the arguments. */
10147 new_arg = TYPE_P (orig_arg)
10148 ? cxx_make_type (TREE_CODE (orig_arg))
10149 : make_node (TREE_CODE (orig_arg));
10150
10151 SET_ARGUMENT_PACK_ARGS (
10152 new_arg,
10153 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
10154 args, complain, in_decl));
10155
10156 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
10157 new_arg = error_mark_node;
10158
10159 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
10160 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
10161 complain, in_decl);
10162 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
10163
10164 if (TREE_TYPE (new_arg) == error_mark_node)
10165 new_arg = error_mark_node;
10166 }
10167 }
10168 else
10169 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
10170
10171 if (new_arg == error_mark_node)
10172 return error_mark_node;
10173
10174 elts[i] = new_arg;
10175 if (new_arg != orig_arg)
10176 need_new = 1;
10177 }
10178
10179 if (!need_new)
10180 return t;
10181
10182 /* Make space for the expanded arguments coming from template
10183 argument packs. */
10184 t = make_tree_vec (len + expanded_len_adjust);
10185 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
10186 arguments for a member template.
10187 In that case each TREE_VEC in ORIG_T represents a level of template
10188 arguments, and ORIG_T won't carry any non defaulted argument count.
10189 It will rather be the nested TREE_VECs that will carry one.
10190 In other words, ORIG_T carries a non defaulted argument count only
10191 if it doesn't contain any nested TREE_VEC. */
10192 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
10193 {
10194 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
10195 count += expanded_len_adjust;
10196 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
10197 }
10198 for (i = 0, out = 0; i < len; i++)
10199 {
10200 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
10201 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
10202 && TREE_CODE (elts[i]) == TREE_VEC)
10203 {
10204 int idx;
10205
10206 /* Now expand the template argument pack "in place". */
10207 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
10208 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
10209 }
10210 else
10211 {
10212 TREE_VEC_ELT (t, out) = elts[i];
10213 out++;
10214 }
10215 }
10216
10217 return t;
10218 }
10219
10220 /* Return the result of substituting ARGS into the template parameters
10221 given by PARMS. If there are m levels of ARGS and m + n levels of
10222 PARMS, then the result will contain n levels of PARMS. For
10223 example, if PARMS is `template <class T> template <class U>
10224 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
10225 result will be `template <int*, double, class V>'. */
10226
10227 static tree
10228 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
10229 {
10230 tree r = NULL_TREE;
10231 tree* new_parms;
10232
10233 /* When substituting into a template, we must set
10234 PROCESSING_TEMPLATE_DECL as the template parameters may be
10235 dependent if they are based on one-another, and the dependency
10236 predicates are short-circuit outside of templates. */
10237 ++processing_template_decl;
10238
10239 for (new_parms = &r;
10240 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
10241 new_parms = &(TREE_CHAIN (*new_parms)),
10242 parms = TREE_CHAIN (parms))
10243 {
10244 tree new_vec =
10245 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
10246 int i;
10247
10248 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
10249 {
10250 tree tuple;
10251
10252 if (parms == error_mark_node)
10253 continue;
10254
10255 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
10256
10257 if (tuple == error_mark_node)
10258 continue;
10259
10260 TREE_VEC_ELT (new_vec, i) =
10261 tsubst_template_parm (tuple, args, complain);
10262 }
10263
10264 *new_parms =
10265 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
10266 - TMPL_ARGS_DEPTH (args)),
10267 new_vec, NULL_TREE);
10268 }
10269
10270 --processing_template_decl;
10271
10272 return r;
10273 }
10274
10275 /* Return the result of substituting ARGS into one template parameter
10276 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
10277 parameter and which TREE_PURPOSE is the default argument of the
10278 template parameter. */
10279
10280 static tree
10281 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
10282 {
10283 tree default_value, parm_decl;
10284
10285 if (args == NULL_TREE
10286 || t == NULL_TREE
10287 || t == error_mark_node)
10288 return t;
10289
10290 gcc_assert (TREE_CODE (t) == TREE_LIST);
10291
10292 default_value = TREE_PURPOSE (t);
10293 parm_decl = TREE_VALUE (t);
10294
10295 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
10296 if (TREE_CODE (parm_decl) == PARM_DECL
10297 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
10298 parm_decl = error_mark_node;
10299 default_value = tsubst_template_arg (default_value, args,
10300 complain, NULL_TREE);
10301
10302 return build_tree_list (default_value, parm_decl);
10303 }
10304
10305 /* Substitute the ARGS into the indicated aggregate (or enumeration)
10306 type T. If T is not an aggregate or enumeration type, it is
10307 handled as if by tsubst. IN_DECL is as for tsubst. If
10308 ENTERING_SCOPE is nonzero, T is the context for a template which
10309 we are presently tsubst'ing. Return the substituted value. */
10310
10311 static tree
10312 tsubst_aggr_type (tree t,
10313 tree args,
10314 tsubst_flags_t complain,
10315 tree in_decl,
10316 int entering_scope)
10317 {
10318 if (t == NULL_TREE)
10319 return NULL_TREE;
10320
10321 switch (TREE_CODE (t))
10322 {
10323 case RECORD_TYPE:
10324 if (TYPE_PTRMEMFUNC_P (t))
10325 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
10326
10327 /* Else fall through. */
10328 case ENUMERAL_TYPE:
10329 case UNION_TYPE:
10330 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
10331 {
10332 tree argvec;
10333 tree context;
10334 tree r;
10335 int saved_unevaluated_operand;
10336 int saved_inhibit_evaluation_warnings;
10337
10338 /* In "sizeof(X<I>)" we need to evaluate "I". */
10339 saved_unevaluated_operand = cp_unevaluated_operand;
10340 cp_unevaluated_operand = 0;
10341 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
10342 c_inhibit_evaluation_warnings = 0;
10343
10344 /* First, determine the context for the type we are looking
10345 up. */
10346 context = TYPE_CONTEXT (t);
10347 if (context && TYPE_P (context))
10348 {
10349 context = tsubst_aggr_type (context, args, complain,
10350 in_decl, /*entering_scope=*/1);
10351 /* If context is a nested class inside a class template,
10352 it may still need to be instantiated (c++/33959). */
10353 context = complete_type (context);
10354 }
10355
10356 /* Then, figure out what arguments are appropriate for the
10357 type we are trying to find. For example, given:
10358
10359 template <class T> struct S;
10360 template <class T, class U> void f(T, U) { S<U> su; }
10361
10362 and supposing that we are instantiating f<int, double>,
10363 then our ARGS will be {int, double}, but, when looking up
10364 S we only want {double}. */
10365 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
10366 complain, in_decl);
10367 if (argvec == error_mark_node)
10368 r = error_mark_node;
10369 else
10370 {
10371 r = lookup_template_class (t, argvec, in_decl, context,
10372 entering_scope, complain);
10373 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
10374 }
10375
10376 cp_unevaluated_operand = saved_unevaluated_operand;
10377 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10378
10379 return r;
10380 }
10381 else
10382 /* This is not a template type, so there's nothing to do. */
10383 return t;
10384
10385 default:
10386 return tsubst (t, args, complain, in_decl);
10387 }
10388 }
10389
10390 /* Substitute into the default argument ARG (a default argument for
10391 FN), which has the indicated TYPE. */
10392
10393 tree
10394 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
10395 {
10396 tree saved_class_ptr = NULL_TREE;
10397 tree saved_class_ref = NULL_TREE;
10398 int errs = errorcount + sorrycount;
10399
10400 /* This can happen in invalid code. */
10401 if (TREE_CODE (arg) == DEFAULT_ARG)
10402 return arg;
10403
10404 /* This default argument came from a template. Instantiate the
10405 default argument here, not in tsubst. In the case of
10406 something like:
10407
10408 template <class T>
10409 struct S {
10410 static T t();
10411 void f(T = t());
10412 };
10413
10414 we must be careful to do name lookup in the scope of S<T>,
10415 rather than in the current class. */
10416 push_access_scope (fn);
10417 /* The "this" pointer is not valid in a default argument. */
10418 if (cfun)
10419 {
10420 saved_class_ptr = current_class_ptr;
10421 cp_function_chain->x_current_class_ptr = NULL_TREE;
10422 saved_class_ref = current_class_ref;
10423 cp_function_chain->x_current_class_ref = NULL_TREE;
10424 }
10425
10426 push_deferring_access_checks(dk_no_deferred);
10427 /* The default argument expression may cause implicitly defined
10428 member functions to be synthesized, which will result in garbage
10429 collection. We must treat this situation as if we were within
10430 the body of function so as to avoid collecting live data on the
10431 stack. */
10432 ++function_depth;
10433 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
10434 complain, NULL_TREE,
10435 /*integral_constant_expression_p=*/false);
10436 --function_depth;
10437 pop_deferring_access_checks();
10438
10439 /* Restore the "this" pointer. */
10440 if (cfun)
10441 {
10442 cp_function_chain->x_current_class_ptr = saved_class_ptr;
10443 cp_function_chain->x_current_class_ref = saved_class_ref;
10444 }
10445
10446 if (errorcount+sorrycount > errs
10447 && (complain & tf_warning_or_error))
10448 inform (input_location,
10449 " when instantiating default argument for call to %D", fn);
10450
10451 /* Make sure the default argument is reasonable. */
10452 arg = check_default_argument (type, arg, complain);
10453
10454 pop_access_scope (fn);
10455
10456 return arg;
10457 }
10458
10459 /* Substitute into all the default arguments for FN. */
10460
10461 static void
10462 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
10463 {
10464 tree arg;
10465 tree tmpl_args;
10466
10467 tmpl_args = DECL_TI_ARGS (fn);
10468
10469 /* If this function is not yet instantiated, we certainly don't need
10470 its default arguments. */
10471 if (uses_template_parms (tmpl_args))
10472 return;
10473 /* Don't do this again for clones. */
10474 if (DECL_CLONED_FUNCTION_P (fn))
10475 return;
10476
10477 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
10478 arg;
10479 arg = TREE_CHAIN (arg))
10480 if (TREE_PURPOSE (arg))
10481 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
10482 TREE_VALUE (arg),
10483 TREE_PURPOSE (arg),
10484 complain);
10485 }
10486
10487 /* Substitute the ARGS into the T, which is a _DECL. Return the
10488 result of the substitution. Issue error and warning messages under
10489 control of COMPLAIN. */
10490
10491 static tree
10492 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
10493 {
10494 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
10495 location_t saved_loc;
10496 tree r = NULL_TREE;
10497 tree in_decl = t;
10498 hashval_t hash = 0;
10499
10500 /* Set the filename and linenumber to improve error-reporting. */
10501 saved_loc = input_location;
10502 input_location = DECL_SOURCE_LOCATION (t);
10503
10504 switch (TREE_CODE (t))
10505 {
10506 case TEMPLATE_DECL:
10507 {
10508 /* We can get here when processing a member function template,
10509 member class template, or template template parameter. */
10510 tree decl = DECL_TEMPLATE_RESULT (t);
10511 tree spec;
10512 tree tmpl_args;
10513 tree full_args;
10514
10515 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10516 {
10517 /* Template template parameter is treated here. */
10518 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10519 if (new_type == error_mark_node)
10520 RETURN (error_mark_node);
10521 /* If we get a real template back, return it. This can happen in
10522 the context of most_specialized_class. */
10523 if (TREE_CODE (new_type) == TEMPLATE_DECL)
10524 return new_type;
10525
10526 r = copy_decl (t);
10527 DECL_CHAIN (r) = NULL_TREE;
10528 TREE_TYPE (r) = new_type;
10529 DECL_TEMPLATE_RESULT (r)
10530 = build_decl (DECL_SOURCE_LOCATION (decl),
10531 TYPE_DECL, DECL_NAME (decl), new_type);
10532 DECL_TEMPLATE_PARMS (r)
10533 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
10534 complain);
10535 TYPE_NAME (new_type) = r;
10536 break;
10537 }
10538
10539 /* We might already have an instance of this template.
10540 The ARGS are for the surrounding class type, so the
10541 full args contain the tsubst'd args for the context,
10542 plus the innermost args from the template decl. */
10543 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
10544 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
10545 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
10546 /* Because this is a template, the arguments will still be
10547 dependent, even after substitution. If
10548 PROCESSING_TEMPLATE_DECL is not set, the dependency
10549 predicates will short-circuit. */
10550 ++processing_template_decl;
10551 full_args = tsubst_template_args (tmpl_args, args,
10552 complain, in_decl);
10553 --processing_template_decl;
10554 if (full_args == error_mark_node)
10555 RETURN (error_mark_node);
10556
10557 /* If this is a default template template argument,
10558 tsubst might not have changed anything. */
10559 if (full_args == tmpl_args)
10560 RETURN (t);
10561
10562 hash = hash_tmpl_and_args (t, full_args);
10563 spec = retrieve_specialization (t, full_args, hash);
10564 if (spec != NULL_TREE)
10565 {
10566 r = spec;
10567 break;
10568 }
10569
10570 /* Make a new template decl. It will be similar to the
10571 original, but will record the current template arguments.
10572 We also create a new function declaration, which is just
10573 like the old one, but points to this new template, rather
10574 than the old one. */
10575 r = copy_decl (t);
10576 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
10577 DECL_CHAIN (r) = NULL_TREE;
10578
10579 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
10580
10581 if (TREE_CODE (decl) == TYPE_DECL
10582 && !TYPE_DECL_ALIAS_P (decl))
10583 {
10584 tree new_type;
10585 ++processing_template_decl;
10586 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10587 --processing_template_decl;
10588 if (new_type == error_mark_node)
10589 RETURN (error_mark_node);
10590
10591 TREE_TYPE (r) = new_type;
10592 /* For a partial specialization, we need to keep pointing to
10593 the primary template. */
10594 if (!DECL_TEMPLATE_SPECIALIZATION (t))
10595 CLASSTYPE_TI_TEMPLATE (new_type) = r;
10596 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
10597 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
10598 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
10599 }
10600 else
10601 {
10602 tree new_decl;
10603 ++processing_template_decl;
10604 new_decl = tsubst (decl, args, complain, in_decl);
10605 --processing_template_decl;
10606 if (new_decl == error_mark_node)
10607 RETURN (error_mark_node);
10608
10609 DECL_TEMPLATE_RESULT (r) = new_decl;
10610 DECL_TI_TEMPLATE (new_decl) = r;
10611 TREE_TYPE (r) = TREE_TYPE (new_decl);
10612 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
10613 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
10614 }
10615
10616 SET_DECL_IMPLICIT_INSTANTIATION (r);
10617 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
10618 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
10619
10620 /* The template parameters for this new template are all the
10621 template parameters for the old template, except the
10622 outermost level of parameters. */
10623 DECL_TEMPLATE_PARMS (r)
10624 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
10625 complain);
10626
10627 if (PRIMARY_TEMPLATE_P (t))
10628 DECL_PRIMARY_TEMPLATE (r) = r;
10629
10630 if (TREE_CODE (decl) != TYPE_DECL && TREE_CODE (decl) != VAR_DECL)
10631 /* Record this non-type partial instantiation. */
10632 register_specialization (r, t,
10633 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
10634 false, hash);
10635 }
10636 break;
10637
10638 case FUNCTION_DECL:
10639 {
10640 tree ctx;
10641 tree argvec = NULL_TREE;
10642 tree *friends;
10643 tree gen_tmpl;
10644 tree type;
10645 int member;
10646 int args_depth;
10647 int parms_depth;
10648
10649 /* Nobody should be tsubst'ing into non-template functions. */
10650 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
10651
10652 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
10653 {
10654 tree spec;
10655 bool dependent_p;
10656
10657 /* If T is not dependent, just return it. We have to
10658 increment PROCESSING_TEMPLATE_DECL because
10659 value_dependent_expression_p assumes that nothing is
10660 dependent when PROCESSING_TEMPLATE_DECL is zero. */
10661 ++processing_template_decl;
10662 dependent_p = value_dependent_expression_p (t);
10663 --processing_template_decl;
10664 if (!dependent_p)
10665 RETURN (t);
10666
10667 /* Calculate the most general template of which R is a
10668 specialization, and the complete set of arguments used to
10669 specialize R. */
10670 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
10671 argvec = tsubst_template_args (DECL_TI_ARGS
10672 (DECL_TEMPLATE_RESULT
10673 (DECL_TI_TEMPLATE (t))),
10674 args, complain, in_decl);
10675 if (argvec == error_mark_node)
10676 RETURN (error_mark_node);
10677
10678 /* Check to see if we already have this specialization. */
10679 hash = hash_tmpl_and_args (gen_tmpl, argvec);
10680 spec = retrieve_specialization (gen_tmpl, argvec, hash);
10681
10682 if (spec)
10683 {
10684 r = spec;
10685 break;
10686 }
10687
10688 /* We can see more levels of arguments than parameters if
10689 there was a specialization of a member template, like
10690 this:
10691
10692 template <class T> struct S { template <class U> void f(); }
10693 template <> template <class U> void S<int>::f(U);
10694
10695 Here, we'll be substituting into the specialization,
10696 because that's where we can find the code we actually
10697 want to generate, but we'll have enough arguments for
10698 the most general template.
10699
10700 We also deal with the peculiar case:
10701
10702 template <class T> struct S {
10703 template <class U> friend void f();
10704 };
10705 template <class U> void f() {}
10706 template S<int>;
10707 template void f<double>();
10708
10709 Here, the ARGS for the instantiation of will be {int,
10710 double}. But, we only need as many ARGS as there are
10711 levels of template parameters in CODE_PATTERN. We are
10712 careful not to get fooled into reducing the ARGS in
10713 situations like:
10714
10715 template <class T> struct S { template <class U> void f(U); }
10716 template <class T> template <> void S<T>::f(int) {}
10717
10718 which we can spot because the pattern will be a
10719 specialization in this case. */
10720 args_depth = TMPL_ARGS_DEPTH (args);
10721 parms_depth =
10722 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
10723 if (args_depth > parms_depth
10724 && !DECL_TEMPLATE_SPECIALIZATION (t))
10725 args = get_innermost_template_args (args, parms_depth);
10726 }
10727 else
10728 {
10729 /* This special case arises when we have something like this:
10730
10731 template <class T> struct S {
10732 friend void f<int>(int, double);
10733 };
10734
10735 Here, the DECL_TI_TEMPLATE for the friend declaration
10736 will be an IDENTIFIER_NODE. We are being called from
10737 tsubst_friend_function, and we want only to create a
10738 new decl (R) with appropriate types so that we can call
10739 determine_specialization. */
10740 gen_tmpl = NULL_TREE;
10741 }
10742
10743 if (DECL_CLASS_SCOPE_P (t))
10744 {
10745 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
10746 member = 2;
10747 else
10748 member = 1;
10749 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
10750 complain, t, /*entering_scope=*/1);
10751 }
10752 else
10753 {
10754 member = 0;
10755 ctx = DECL_CONTEXT (t);
10756 }
10757 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10758 if (type == error_mark_node)
10759 RETURN (error_mark_node);
10760
10761 /* If we hit excessive deduction depth, the type is bogus even if
10762 it isn't error_mark_node, so don't build a decl. */
10763 if (excessive_deduction_depth)
10764 RETURN (error_mark_node);
10765
10766 /* We do NOT check for matching decls pushed separately at this
10767 point, as they may not represent instantiations of this
10768 template, and in any case are considered separate under the
10769 discrete model. */
10770 r = copy_decl (t);
10771 DECL_USE_TEMPLATE (r) = 0;
10772 TREE_TYPE (r) = type;
10773 /* Clear out the mangled name and RTL for the instantiation. */
10774 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
10775 SET_DECL_RTL (r, NULL);
10776 /* Leave DECL_INITIAL set on deleted instantiations. */
10777 if (!DECL_DELETED_FN (r))
10778 DECL_INITIAL (r) = NULL_TREE;
10779 DECL_CONTEXT (r) = ctx;
10780
10781 /* OpenMP UDRs have the only argument a reference to the declared
10782 type. We want to diagnose if the declared type is a reference,
10783 which is invalid, but as references to references are usually
10784 quietly merged, diagnose it here. */
10785 if (DECL_OMP_DECLARE_REDUCTION_P (t))
10786 {
10787 tree argtype
10788 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
10789 argtype = tsubst (argtype, args, complain, in_decl);
10790 if (TREE_CODE (argtype) == REFERENCE_TYPE)
10791 error_at (DECL_SOURCE_LOCATION (t),
10792 "reference type %qT in "
10793 "%<#pragma omp declare reduction%>", argtype);
10794 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
10795 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
10796 argtype);
10797 }
10798
10799 if (member && DECL_CONV_FN_P (r))
10800 /* Type-conversion operator. Reconstruct the name, in
10801 case it's the name of one of the template's parameters. */
10802 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
10803
10804 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
10805 complain, t);
10806 DECL_RESULT (r) = NULL_TREE;
10807
10808 TREE_STATIC (r) = 0;
10809 TREE_PUBLIC (r) = TREE_PUBLIC (t);
10810 DECL_EXTERNAL (r) = 1;
10811 /* If this is an instantiation of a function with internal
10812 linkage, we already know what object file linkage will be
10813 assigned to the instantiation. */
10814 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
10815 DECL_DEFER_OUTPUT (r) = 0;
10816 DECL_CHAIN (r) = NULL_TREE;
10817 DECL_PENDING_INLINE_INFO (r) = 0;
10818 DECL_PENDING_INLINE_P (r) = 0;
10819 DECL_SAVED_TREE (r) = NULL_TREE;
10820 DECL_STRUCT_FUNCTION (r) = NULL;
10821 TREE_USED (r) = 0;
10822 /* We'll re-clone as appropriate in instantiate_template. */
10823 DECL_CLONED_FUNCTION (r) = NULL_TREE;
10824
10825 /* If we aren't complaining now, return on error before we register
10826 the specialization so that we'll complain eventually. */
10827 if ((complain & tf_error) == 0
10828 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10829 && !grok_op_properties (r, /*complain=*/false))
10830 RETURN (error_mark_node);
10831
10832 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
10833 this in the special friend case mentioned above where
10834 GEN_TMPL is NULL. */
10835 if (gen_tmpl)
10836 {
10837 DECL_TEMPLATE_INFO (r)
10838 = build_template_info (gen_tmpl, argvec);
10839 SET_DECL_IMPLICIT_INSTANTIATION (r);
10840
10841 tree new_r
10842 = register_specialization (r, gen_tmpl, argvec, false, hash);
10843 if (new_r != r)
10844 /* We instantiated this while substituting into
10845 the type earlier (template/friend54.C). */
10846 RETURN (new_r);
10847
10848 /* We're not supposed to instantiate default arguments
10849 until they are called, for a template. But, for a
10850 declaration like:
10851
10852 template <class T> void f ()
10853 { extern void g(int i = T()); }
10854
10855 we should do the substitution when the template is
10856 instantiated. We handle the member function case in
10857 instantiate_class_template since the default arguments
10858 might refer to other members of the class. */
10859 if (!member
10860 && !PRIMARY_TEMPLATE_P (gen_tmpl)
10861 && !uses_template_parms (argvec))
10862 tsubst_default_arguments (r, complain);
10863 }
10864 else
10865 DECL_TEMPLATE_INFO (r) = NULL_TREE;
10866
10867 /* Copy the list of befriending classes. */
10868 for (friends = &DECL_BEFRIENDING_CLASSES (r);
10869 *friends;
10870 friends = &TREE_CHAIN (*friends))
10871 {
10872 *friends = copy_node (*friends);
10873 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
10874 args, complain,
10875 in_decl);
10876 }
10877
10878 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
10879 {
10880 maybe_retrofit_in_chrg (r);
10881 if (DECL_CONSTRUCTOR_P (r))
10882 grok_ctor_properties (ctx, r);
10883 if (DECL_INHERITED_CTOR_BASE (r))
10884 deduce_inheriting_ctor (r);
10885 /* If this is an instantiation of a member template, clone it.
10886 If it isn't, that'll be handled by
10887 clone_constructors_and_destructors. */
10888 if (PRIMARY_TEMPLATE_P (gen_tmpl))
10889 clone_function_decl (r, /*update_method_vec_p=*/0);
10890 }
10891 else if ((complain & tf_error) != 0
10892 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10893 && !grok_op_properties (r, /*complain=*/true))
10894 RETURN (error_mark_node);
10895
10896 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
10897 SET_DECL_FRIEND_CONTEXT (r,
10898 tsubst (DECL_FRIEND_CONTEXT (t),
10899 args, complain, in_decl));
10900
10901 /* Possibly limit visibility based on template args. */
10902 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
10903 if (DECL_VISIBILITY_SPECIFIED (t))
10904 {
10905 DECL_VISIBILITY_SPECIFIED (r) = 0;
10906 DECL_ATTRIBUTES (r)
10907 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
10908 }
10909 determine_visibility (r);
10910 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
10911 && !processing_template_decl)
10912 defaulted_late_check (r);
10913
10914 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10915 args, complain, in_decl);
10916 }
10917 break;
10918
10919 case PARM_DECL:
10920 {
10921 tree type = NULL_TREE;
10922 int i, len = 1;
10923 tree expanded_types = NULL_TREE;
10924 tree prev_r = NULL_TREE;
10925 tree first_r = NULL_TREE;
10926
10927 if (DECL_PACK_P (t))
10928 {
10929 /* If there is a local specialization that isn't a
10930 parameter pack, it means that we're doing a "simple"
10931 substitution from inside tsubst_pack_expansion. Just
10932 return the local specialization (which will be a single
10933 parm). */
10934 tree spec = retrieve_local_specialization (t);
10935 if (spec
10936 && TREE_CODE (spec) == PARM_DECL
10937 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
10938 RETURN (spec);
10939
10940 /* Expand the TYPE_PACK_EXPANSION that provides the types for
10941 the parameters in this function parameter pack. */
10942 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
10943 complain, in_decl);
10944 if (TREE_CODE (expanded_types) == TREE_VEC)
10945 {
10946 len = TREE_VEC_LENGTH (expanded_types);
10947
10948 /* Zero-length parameter packs are boring. Just substitute
10949 into the chain. */
10950 if (len == 0)
10951 RETURN (tsubst (TREE_CHAIN (t), args, complain,
10952 TREE_CHAIN (t)));
10953 }
10954 else
10955 {
10956 /* All we did was update the type. Make a note of that. */
10957 type = expanded_types;
10958 expanded_types = NULL_TREE;
10959 }
10960 }
10961
10962 /* Loop through all of the parameters we'll build. When T is
10963 a function parameter pack, LEN is the number of expanded
10964 types in EXPANDED_TYPES; otherwise, LEN is 1. */
10965 r = NULL_TREE;
10966 for (i = 0; i < len; ++i)
10967 {
10968 prev_r = r;
10969 r = copy_node (t);
10970 if (DECL_TEMPLATE_PARM_P (t))
10971 SET_DECL_TEMPLATE_PARM_P (r);
10972
10973 if (expanded_types)
10974 /* We're on the Ith parameter of the function parameter
10975 pack. */
10976 {
10977 /* Get the Ith type. */
10978 type = TREE_VEC_ELT (expanded_types, i);
10979
10980 /* Rename the parameter to include the index. */
10981 DECL_NAME (r)
10982 = make_ith_pack_parameter_name (DECL_NAME (r), i);
10983 }
10984 else if (!type)
10985 /* We're dealing with a normal parameter. */
10986 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10987
10988 type = type_decays_to (type);
10989 TREE_TYPE (r) = type;
10990 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10991
10992 if (DECL_INITIAL (r))
10993 {
10994 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
10995 DECL_INITIAL (r) = TREE_TYPE (r);
10996 else
10997 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
10998 complain, in_decl);
10999 }
11000
11001 DECL_CONTEXT (r) = NULL_TREE;
11002
11003 if (!DECL_TEMPLATE_PARM_P (r))
11004 DECL_ARG_TYPE (r) = type_passed_as (type);
11005
11006 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11007 args, complain, in_decl);
11008
11009 /* Keep track of the first new parameter we
11010 generate. That's what will be returned to the
11011 caller. */
11012 if (!first_r)
11013 first_r = r;
11014
11015 /* Build a proper chain of parameters when substituting
11016 into a function parameter pack. */
11017 if (prev_r)
11018 DECL_CHAIN (prev_r) = r;
11019 }
11020
11021 /* If cp_unevaluated_operand is set, we're just looking for a
11022 single dummy parameter, so don't keep going. */
11023 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
11024 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
11025 complain, DECL_CHAIN (t));
11026
11027 /* FIRST_R contains the start of the chain we've built. */
11028 r = first_r;
11029 }
11030 break;
11031
11032 case FIELD_DECL:
11033 {
11034 tree type = NULL_TREE;
11035 tree vec = NULL_TREE;
11036 tree expanded_types = NULL_TREE;
11037 int len = 1;
11038
11039 if (PACK_EXPANSION_P (TREE_TYPE (t)))
11040 {
11041 /* This field is a lambda capture pack. Return a TREE_VEC of
11042 the expanded fields to instantiate_class_template_1 and
11043 store them in the specializations hash table as a
11044 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
11045 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11046 complain, in_decl);
11047 if (TREE_CODE (expanded_types) == TREE_VEC)
11048 {
11049 len = TREE_VEC_LENGTH (expanded_types);
11050 vec = make_tree_vec (len);
11051 }
11052 else
11053 {
11054 /* All we did was update the type. Make a note of that. */
11055 type = expanded_types;
11056 expanded_types = NULL_TREE;
11057 }
11058 }
11059
11060 for (int i = 0; i < len; ++i)
11061 {
11062 r = copy_decl (t);
11063 if (expanded_types)
11064 {
11065 type = TREE_VEC_ELT (expanded_types, i);
11066 DECL_NAME (r)
11067 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11068 }
11069 else if (!type)
11070 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11071
11072 if (type == error_mark_node)
11073 RETURN (error_mark_node);
11074 TREE_TYPE (r) = type;
11075 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11076
11077 if (DECL_C_BIT_FIELD (r))
11078 /* For bit-fields, DECL_INITIAL gives the number of bits. For
11079 non-bit-fields DECL_INITIAL is a non-static data member
11080 initializer, which gets deferred instantiation. */
11081 DECL_INITIAL (r)
11082 = tsubst_expr (DECL_INITIAL (t), args,
11083 complain, in_decl,
11084 /*integral_constant_expression_p=*/true);
11085 else if (DECL_INITIAL (t))
11086 {
11087 /* Set up DECL_TEMPLATE_INFO so that we can get at the
11088 NSDMI in perform_member_init. Still set DECL_INITIAL
11089 so that we know there is one. */
11090 DECL_INITIAL (r) = void_node;
11091 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
11092 retrofit_lang_decl (r);
11093 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11094 }
11095 /* We don't have to set DECL_CONTEXT here; it is set by
11096 finish_member_declaration. */
11097 DECL_CHAIN (r) = NULL_TREE;
11098
11099 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11100 args, complain, in_decl);
11101
11102 if (vec)
11103 TREE_VEC_ELT (vec, i) = r;
11104 }
11105
11106 if (vec)
11107 {
11108 r = vec;
11109 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
11110 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
11111 SET_ARGUMENT_PACK_ARGS (pack, vec);
11112 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
11113 TREE_TYPE (pack) = tpack;
11114 register_specialization (pack, t, args, false, 0);
11115 }
11116 }
11117 break;
11118
11119 case USING_DECL:
11120 /* We reach here only for member using decls. We also need to check
11121 uses_template_parms because DECL_DEPENDENT_P is not set for a
11122 using-declaration that designates a member of the current
11123 instantiation (c++/53549). */
11124 if (DECL_DEPENDENT_P (t)
11125 || uses_template_parms (USING_DECL_SCOPE (t)))
11126 {
11127 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
11128 complain, in_decl);
11129 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
11130 r = do_class_using_decl (inst_scope, name);
11131 if (!r)
11132 r = error_mark_node;
11133 else
11134 {
11135 TREE_PROTECTED (r) = TREE_PROTECTED (t);
11136 TREE_PRIVATE (r) = TREE_PRIVATE (t);
11137 }
11138 }
11139 else
11140 {
11141 r = copy_node (t);
11142 DECL_CHAIN (r) = NULL_TREE;
11143 }
11144 break;
11145
11146 case TYPE_DECL:
11147 case VAR_DECL:
11148 {
11149 tree argvec = NULL_TREE;
11150 tree gen_tmpl = NULL_TREE;
11151 tree spec;
11152 tree tmpl = NULL_TREE;
11153 tree ctx;
11154 tree type = NULL_TREE;
11155 bool local_p;
11156
11157 if (TREE_TYPE (t) == error_mark_node)
11158 RETURN (error_mark_node);
11159
11160 if (TREE_CODE (t) == TYPE_DECL
11161 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
11162 {
11163 /* If this is the canonical decl, we don't have to
11164 mess with instantiations, and often we can't (for
11165 typename, template type parms and such). Note that
11166 TYPE_NAME is not correct for the above test if
11167 we've copied the type for a typedef. */
11168 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11169 if (type == error_mark_node)
11170 RETURN (error_mark_node);
11171 r = TYPE_NAME (type);
11172 break;
11173 }
11174
11175 /* Check to see if we already have the specialization we
11176 need. */
11177 spec = NULL_TREE;
11178 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
11179 {
11180 /* T is a static data member or namespace-scope entity.
11181 We have to substitute into namespace-scope variables
11182 (even though such entities are never templates) because
11183 of cases like:
11184
11185 template <class T> void f() { extern T t; }
11186
11187 where the entity referenced is not known until
11188 instantiation time. */
11189 local_p = false;
11190 ctx = DECL_CONTEXT (t);
11191 if (DECL_CLASS_SCOPE_P (t))
11192 {
11193 ctx = tsubst_aggr_type (ctx, args,
11194 complain,
11195 in_decl, /*entering_scope=*/1);
11196 /* If CTX is unchanged, then T is in fact the
11197 specialization we want. That situation occurs when
11198 referencing a static data member within in its own
11199 class. We can use pointer equality, rather than
11200 same_type_p, because DECL_CONTEXT is always
11201 canonical... */
11202 if (ctx == DECL_CONTEXT (t)
11203 /* ... unless T is a member template; in which
11204 case our caller can be willing to create a
11205 specialization of that template represented
11206 by T. */
11207 && !(DECL_TI_TEMPLATE (t)
11208 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
11209 spec = t;
11210 }
11211
11212 if (!spec)
11213 {
11214 tmpl = DECL_TI_TEMPLATE (t);
11215 gen_tmpl = most_general_template (tmpl);
11216 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
11217 if (argvec == error_mark_node)
11218 RETURN (error_mark_node);
11219 hash = hash_tmpl_and_args (gen_tmpl, argvec);
11220 spec = retrieve_specialization (gen_tmpl, argvec, hash);
11221 }
11222 }
11223 else
11224 {
11225 /* A local variable. */
11226 local_p = true;
11227 /* Subsequent calls to pushdecl will fill this in. */
11228 ctx = NULL_TREE;
11229 spec = retrieve_local_specialization (t);
11230 }
11231 /* If we already have the specialization we need, there is
11232 nothing more to do. */
11233 if (spec)
11234 {
11235 r = spec;
11236 break;
11237 }
11238
11239 /* Create a new node for the specialization we need. */
11240 r = copy_decl (t);
11241 if (type == NULL_TREE)
11242 {
11243 if (is_typedef_decl (t))
11244 type = DECL_ORIGINAL_TYPE (t);
11245 else
11246 type = TREE_TYPE (t);
11247 if (VAR_P (t)
11248 && VAR_HAD_UNKNOWN_BOUND (t)
11249 && type != error_mark_node)
11250 type = strip_array_domain (type);
11251 type = tsubst (type, args, complain, in_decl);
11252 }
11253 if (VAR_P (r))
11254 {
11255 /* Even if the original location is out of scope, the
11256 newly substituted one is not. */
11257 DECL_DEAD_FOR_LOCAL (r) = 0;
11258 DECL_INITIALIZED_P (r) = 0;
11259 DECL_TEMPLATE_INSTANTIATED (r) = 0;
11260 if (type == error_mark_node)
11261 RETURN (error_mark_node);
11262 if (TREE_CODE (type) == FUNCTION_TYPE)
11263 {
11264 /* It may seem that this case cannot occur, since:
11265
11266 typedef void f();
11267 void g() { f x; }
11268
11269 declares a function, not a variable. However:
11270
11271 typedef void f();
11272 template <typename T> void g() { T t; }
11273 template void g<f>();
11274
11275 is an attempt to declare a variable with function
11276 type. */
11277 error ("variable %qD has function type",
11278 /* R is not yet sufficiently initialized, so we
11279 just use its name. */
11280 DECL_NAME (r));
11281 RETURN (error_mark_node);
11282 }
11283 type = complete_type (type);
11284 /* Wait until cp_finish_decl to set this again, to handle
11285 circular dependency (template/instantiate6.C). */
11286 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
11287 type = check_var_type (DECL_NAME (r), type);
11288
11289 if (DECL_HAS_VALUE_EXPR_P (t))
11290 {
11291 tree ve = DECL_VALUE_EXPR (t);
11292 ve = tsubst_expr (ve, args, complain, in_decl,
11293 /*constant_expression_p=*/false);
11294 if (REFERENCE_REF_P (ve))
11295 {
11296 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
11297 ve = TREE_OPERAND (ve, 0);
11298 }
11299 SET_DECL_VALUE_EXPR (r, ve);
11300 }
11301 if (TREE_STATIC (r) || DECL_EXTERNAL (r))
11302 set_decl_tls_model (r, decl_tls_model (t));
11303 }
11304 else if (DECL_SELF_REFERENCE_P (t))
11305 SET_DECL_SELF_REFERENCE_P (r);
11306 TREE_TYPE (r) = type;
11307 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11308 DECL_CONTEXT (r) = ctx;
11309 /* Clear out the mangled name and RTL for the instantiation. */
11310 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
11311 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
11312 SET_DECL_RTL (r, NULL);
11313 /* The initializer must not be expanded until it is required;
11314 see [temp.inst]. */
11315 DECL_INITIAL (r) = NULL_TREE;
11316 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
11317 SET_DECL_RTL (r, NULL);
11318 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
11319 if (VAR_P (r))
11320 {
11321 /* Possibly limit visibility based on template args. */
11322 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
11323 if (DECL_VISIBILITY_SPECIFIED (t))
11324 {
11325 DECL_VISIBILITY_SPECIFIED (r) = 0;
11326 DECL_ATTRIBUTES (r)
11327 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
11328 }
11329 determine_visibility (r);
11330 }
11331
11332 if (!local_p)
11333 {
11334 /* A static data member declaration is always marked
11335 external when it is declared in-class, even if an
11336 initializer is present. We mimic the non-template
11337 processing here. */
11338 DECL_EXTERNAL (r) = 1;
11339
11340 register_specialization (r, gen_tmpl, argvec, false, hash);
11341 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
11342 SET_DECL_IMPLICIT_INSTANTIATION (r);
11343 }
11344 else if (!cp_unevaluated_operand)
11345 register_local_specialization (r, t);
11346
11347 DECL_CHAIN (r) = NULL_TREE;
11348
11349 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
11350 /*flags=*/0,
11351 args, complain, in_decl);
11352
11353 /* Preserve a typedef that names a type. */
11354 if (is_typedef_decl (r))
11355 {
11356 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
11357 set_underlying_type (r);
11358 }
11359
11360 layout_decl (r, 0);
11361 }
11362 break;
11363
11364 default:
11365 gcc_unreachable ();
11366 }
11367 #undef RETURN
11368
11369 out:
11370 /* Restore the file and line information. */
11371 input_location = saved_loc;
11372
11373 return r;
11374 }
11375
11376 /* Substitute into the ARG_TYPES of a function type.
11377 If END is a TREE_CHAIN, leave it and any following types
11378 un-substituted. */
11379
11380 static tree
11381 tsubst_arg_types (tree arg_types,
11382 tree args,
11383 tree end,
11384 tsubst_flags_t complain,
11385 tree in_decl)
11386 {
11387 tree remaining_arg_types;
11388 tree type = NULL_TREE;
11389 int i = 1;
11390 tree expanded_args = NULL_TREE;
11391 tree default_arg;
11392
11393 if (!arg_types || arg_types == void_list_node || arg_types == end)
11394 return arg_types;
11395
11396 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
11397 args, end, complain, in_decl);
11398 if (remaining_arg_types == error_mark_node)
11399 return error_mark_node;
11400
11401 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
11402 {
11403 /* For a pack expansion, perform substitution on the
11404 entire expression. Later on, we'll handle the arguments
11405 one-by-one. */
11406 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
11407 args, complain, in_decl);
11408
11409 if (TREE_CODE (expanded_args) == TREE_VEC)
11410 /* So that we'll spin through the parameters, one by one. */
11411 i = TREE_VEC_LENGTH (expanded_args);
11412 else
11413 {
11414 /* We only partially substituted into the parameter
11415 pack. Our type is TYPE_PACK_EXPANSION. */
11416 type = expanded_args;
11417 expanded_args = NULL_TREE;
11418 }
11419 }
11420
11421 while (i > 0) {
11422 --i;
11423
11424 if (expanded_args)
11425 type = TREE_VEC_ELT (expanded_args, i);
11426 else if (!type)
11427 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
11428
11429 if (type == error_mark_node)
11430 return error_mark_node;
11431 if (VOID_TYPE_P (type))
11432 {
11433 if (complain & tf_error)
11434 {
11435 error ("invalid parameter type %qT", type);
11436 if (in_decl)
11437 error ("in declaration %q+D", in_decl);
11438 }
11439 return error_mark_node;
11440 }
11441 /* DR 657. */
11442 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
11443 return error_mark_node;
11444
11445 /* Do array-to-pointer, function-to-pointer conversion, and ignore
11446 top-level qualifiers as required. */
11447 type = cv_unqualified (type_decays_to (type));
11448
11449 /* We do not substitute into default arguments here. The standard
11450 mandates that they be instantiated only when needed, which is
11451 done in build_over_call. */
11452 default_arg = TREE_PURPOSE (arg_types);
11453
11454 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
11455 {
11456 /* We've instantiated a template before its default arguments
11457 have been parsed. This can happen for a nested template
11458 class, and is not an error unless we require the default
11459 argument in a call of this function. */
11460 remaining_arg_types =
11461 tree_cons (default_arg, type, remaining_arg_types);
11462 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
11463 }
11464 else
11465 remaining_arg_types =
11466 hash_tree_cons (default_arg, type, remaining_arg_types);
11467 }
11468
11469 return remaining_arg_types;
11470 }
11471
11472 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
11473 *not* handle the exception-specification for FNTYPE, because the
11474 initial substitution of explicitly provided template parameters
11475 during argument deduction forbids substitution into the
11476 exception-specification:
11477
11478 [temp.deduct]
11479
11480 All references in the function type of the function template to the
11481 corresponding template parameters are replaced by the specified tem-
11482 plate argument values. If a substitution in a template parameter or
11483 in the function type of the function template results in an invalid
11484 type, type deduction fails. [Note: The equivalent substitution in
11485 exception specifications is done only when the function is instanti-
11486 ated, at which point a program is ill-formed if the substitution
11487 results in an invalid type.] */
11488
11489 static tree
11490 tsubst_function_type (tree t,
11491 tree args,
11492 tsubst_flags_t complain,
11493 tree in_decl)
11494 {
11495 tree return_type;
11496 tree arg_types = NULL_TREE;
11497 tree fntype;
11498
11499 /* The TYPE_CONTEXT is not used for function/method types. */
11500 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
11501
11502 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
11503 failure. */
11504 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
11505
11506 if (late_return_type_p)
11507 {
11508 /* Substitute the argument types. */
11509 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
11510 complain, in_decl);
11511 if (arg_types == error_mark_node)
11512 return error_mark_node;
11513
11514 tree save_ccp = current_class_ptr;
11515 tree save_ccr = current_class_ref;
11516 tree this_type = (TREE_CODE (t) == METHOD_TYPE
11517 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
11518 bool do_inject = this_type && CLASS_TYPE_P (this_type);
11519 if (do_inject)
11520 {
11521 /* DR 1207: 'this' is in scope in the trailing return type. */
11522 inject_this_parameter (this_type, cp_type_quals (this_type));
11523 }
11524
11525 /* Substitute the return type. */
11526 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11527
11528 if (do_inject)
11529 {
11530 current_class_ptr = save_ccp;
11531 current_class_ref = save_ccr;
11532 }
11533 }
11534 else
11535 /* Substitute the return type. */
11536 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11537
11538 if (return_type == error_mark_node)
11539 return error_mark_node;
11540 /* DR 486 clarifies that creation of a function type with an
11541 invalid return type is a deduction failure. */
11542 if (TREE_CODE (return_type) == ARRAY_TYPE
11543 || TREE_CODE (return_type) == FUNCTION_TYPE)
11544 {
11545 if (complain & tf_error)
11546 {
11547 if (TREE_CODE (return_type) == ARRAY_TYPE)
11548 error ("function returning an array");
11549 else
11550 error ("function returning a function");
11551 }
11552 return error_mark_node;
11553 }
11554 /* And DR 657. */
11555 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
11556 return error_mark_node;
11557
11558 if (!late_return_type_p)
11559 {
11560 /* Substitute the argument types. */
11561 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
11562 complain, in_decl);
11563 if (arg_types == error_mark_node)
11564 return error_mark_node;
11565 }
11566
11567 /* Construct a new type node and return it. */
11568 if (TREE_CODE (t) == FUNCTION_TYPE)
11569 {
11570 fntype = build_function_type (return_type, arg_types);
11571 fntype = apply_memfn_quals (fntype,
11572 type_memfn_quals (t),
11573 type_memfn_rqual (t));
11574 }
11575 else
11576 {
11577 tree r = TREE_TYPE (TREE_VALUE (arg_types));
11578 /* Don't pick up extra function qualifiers from the basetype. */
11579 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
11580 if (! MAYBE_CLASS_TYPE_P (r))
11581 {
11582 /* [temp.deduct]
11583
11584 Type deduction may fail for any of the following
11585 reasons:
11586
11587 -- Attempting to create "pointer to member of T" when T
11588 is not a class type. */
11589 if (complain & tf_error)
11590 error ("creating pointer to member function of non-class type %qT",
11591 r);
11592 return error_mark_node;
11593 }
11594
11595 fntype = build_method_type_directly (r, return_type,
11596 TREE_CHAIN (arg_types));
11597 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
11598 }
11599 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
11600
11601 if (late_return_type_p)
11602 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
11603
11604 return fntype;
11605 }
11606
11607 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
11608 ARGS into that specification, and return the substituted
11609 specification. If there is no specification, return NULL_TREE. */
11610
11611 static tree
11612 tsubst_exception_specification (tree fntype,
11613 tree args,
11614 tsubst_flags_t complain,
11615 tree in_decl,
11616 bool defer_ok)
11617 {
11618 tree specs;
11619 tree new_specs;
11620
11621 specs = TYPE_RAISES_EXCEPTIONS (fntype);
11622 new_specs = NULL_TREE;
11623 if (specs && TREE_PURPOSE (specs))
11624 {
11625 /* A noexcept-specifier. */
11626 tree expr = TREE_PURPOSE (specs);
11627 if (TREE_CODE (expr) == INTEGER_CST)
11628 new_specs = expr;
11629 else if (defer_ok)
11630 {
11631 /* Defer instantiation of noexcept-specifiers to avoid
11632 excessive instantiations (c++/49107). */
11633 new_specs = make_node (DEFERRED_NOEXCEPT);
11634 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
11635 {
11636 /* We already partially instantiated this member template,
11637 so combine the new args with the old. */
11638 DEFERRED_NOEXCEPT_PATTERN (new_specs)
11639 = DEFERRED_NOEXCEPT_PATTERN (expr);
11640 DEFERRED_NOEXCEPT_ARGS (new_specs)
11641 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
11642 }
11643 else
11644 {
11645 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
11646 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
11647 }
11648 }
11649 else
11650 new_specs = tsubst_copy_and_build
11651 (expr, args, complain, in_decl, /*function_p=*/false,
11652 /*integral_constant_expression_p=*/true);
11653 new_specs = build_noexcept_spec (new_specs, complain);
11654 }
11655 else if (specs)
11656 {
11657 if (! TREE_VALUE (specs))
11658 new_specs = specs;
11659 else
11660 while (specs)
11661 {
11662 tree spec;
11663 int i, len = 1;
11664 tree expanded_specs = NULL_TREE;
11665
11666 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
11667 {
11668 /* Expand the pack expansion type. */
11669 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
11670 args, complain,
11671 in_decl);
11672
11673 if (expanded_specs == error_mark_node)
11674 return error_mark_node;
11675 else if (TREE_CODE (expanded_specs) == TREE_VEC)
11676 len = TREE_VEC_LENGTH (expanded_specs);
11677 else
11678 {
11679 /* We're substituting into a member template, so
11680 we got a TYPE_PACK_EXPANSION back. Add that
11681 expansion and move on. */
11682 gcc_assert (TREE_CODE (expanded_specs)
11683 == TYPE_PACK_EXPANSION);
11684 new_specs = add_exception_specifier (new_specs,
11685 expanded_specs,
11686 complain);
11687 specs = TREE_CHAIN (specs);
11688 continue;
11689 }
11690 }
11691
11692 for (i = 0; i < len; ++i)
11693 {
11694 if (expanded_specs)
11695 spec = TREE_VEC_ELT (expanded_specs, i);
11696 else
11697 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
11698 if (spec == error_mark_node)
11699 return spec;
11700 new_specs = add_exception_specifier (new_specs, spec,
11701 complain);
11702 }
11703
11704 specs = TREE_CHAIN (specs);
11705 }
11706 }
11707 return new_specs;
11708 }
11709
11710 /* Take the tree structure T and replace template parameters used
11711 therein with the argument vector ARGS. IN_DECL is an associated
11712 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
11713 Issue error and warning messages under control of COMPLAIN. Note
11714 that we must be relatively non-tolerant of extensions here, in
11715 order to preserve conformance; if we allow substitutions that
11716 should not be allowed, we may allow argument deductions that should
11717 not succeed, and therefore report ambiguous overload situations
11718 where there are none. In theory, we could allow the substitution,
11719 but indicate that it should have failed, and allow our caller to
11720 make sure that the right thing happens, but we don't try to do this
11721 yet.
11722
11723 This function is used for dealing with types, decls and the like;
11724 for expressions, use tsubst_expr or tsubst_copy. */
11725
11726 tree
11727 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11728 {
11729 enum tree_code code;
11730 tree type, r = NULL_TREE;
11731
11732 if (t == NULL_TREE || t == error_mark_node
11733 || t == integer_type_node
11734 || t == void_type_node
11735 || t == char_type_node
11736 || t == unknown_type_node
11737 || TREE_CODE (t) == NAMESPACE_DECL
11738 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
11739 return t;
11740
11741 if (DECL_P (t))
11742 return tsubst_decl (t, args, complain);
11743
11744 if (args == NULL_TREE)
11745 return t;
11746
11747 code = TREE_CODE (t);
11748
11749 if (code == IDENTIFIER_NODE)
11750 type = IDENTIFIER_TYPE_VALUE (t);
11751 else
11752 type = TREE_TYPE (t);
11753
11754 gcc_assert (type != unknown_type_node);
11755
11756 /* Reuse typedefs. We need to do this to handle dependent attributes,
11757 such as attribute aligned. */
11758 if (TYPE_P (t)
11759 && typedef_variant_p (t))
11760 {
11761 tree decl = TYPE_NAME (t);
11762
11763 if (alias_template_specialization_p (t))
11764 {
11765 /* DECL represents an alias template and we want to
11766 instantiate it. */
11767 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11768 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11769 r = instantiate_alias_template (tmpl, gen_args, complain);
11770 }
11771 else if (DECL_CLASS_SCOPE_P (decl)
11772 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
11773 && uses_template_parms (DECL_CONTEXT (decl)))
11774 {
11775 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11776 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11777 r = retrieve_specialization (tmpl, gen_args, 0);
11778 }
11779 else if (DECL_FUNCTION_SCOPE_P (decl)
11780 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
11781 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
11782 r = retrieve_local_specialization (decl);
11783 else
11784 /* The typedef is from a non-template context. */
11785 return t;
11786
11787 if (r)
11788 {
11789 r = TREE_TYPE (r);
11790 r = cp_build_qualified_type_real
11791 (r, cp_type_quals (t) | cp_type_quals (r),
11792 complain | tf_ignore_bad_quals);
11793 return r;
11794 }
11795 else
11796 {
11797 /* We don't have an instantiation yet, so drop the typedef. */
11798 int quals = cp_type_quals (t);
11799 t = DECL_ORIGINAL_TYPE (decl);
11800 t = cp_build_qualified_type_real (t, quals,
11801 complain | tf_ignore_bad_quals);
11802 }
11803 }
11804
11805 if (type
11806 && code != TYPENAME_TYPE
11807 && code != TEMPLATE_TYPE_PARM
11808 && code != IDENTIFIER_NODE
11809 && code != FUNCTION_TYPE
11810 && code != METHOD_TYPE)
11811 type = tsubst (type, args, complain, in_decl);
11812 if (type == error_mark_node)
11813 return error_mark_node;
11814
11815 switch (code)
11816 {
11817 case RECORD_TYPE:
11818 case UNION_TYPE:
11819 case ENUMERAL_TYPE:
11820 return tsubst_aggr_type (t, args, complain, in_decl,
11821 /*entering_scope=*/0);
11822
11823 case ERROR_MARK:
11824 case IDENTIFIER_NODE:
11825 case VOID_TYPE:
11826 case REAL_TYPE:
11827 case COMPLEX_TYPE:
11828 case VECTOR_TYPE:
11829 case BOOLEAN_TYPE:
11830 case NULLPTR_TYPE:
11831 case LANG_TYPE:
11832 return t;
11833
11834 case INTEGER_TYPE:
11835 if (t == integer_type_node)
11836 return t;
11837
11838 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
11839 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
11840 return t;
11841
11842 {
11843 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
11844
11845 max = tsubst_expr (omax, args, complain, in_decl,
11846 /*integral_constant_expression_p=*/false);
11847
11848 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
11849 needed. */
11850 if (TREE_CODE (max) == NOP_EXPR
11851 && TREE_SIDE_EFFECTS (omax)
11852 && !TREE_TYPE (max))
11853 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
11854
11855 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
11856 with TREE_SIDE_EFFECTS that indicates this is not an integral
11857 constant expression. */
11858 if (processing_template_decl
11859 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
11860 {
11861 gcc_assert (TREE_CODE (max) == NOP_EXPR);
11862 TREE_SIDE_EFFECTS (max) = 1;
11863 }
11864
11865 return compute_array_index_type (NULL_TREE, max, complain);
11866 }
11867
11868 case TEMPLATE_TYPE_PARM:
11869 case TEMPLATE_TEMPLATE_PARM:
11870 case BOUND_TEMPLATE_TEMPLATE_PARM:
11871 case TEMPLATE_PARM_INDEX:
11872 {
11873 int idx;
11874 int level;
11875 int levels;
11876 tree arg = NULL_TREE;
11877
11878 r = NULL_TREE;
11879
11880 gcc_assert (TREE_VEC_LENGTH (args) > 0);
11881 template_parm_level_and_index (t, &level, &idx);
11882
11883 levels = TMPL_ARGS_DEPTH (args);
11884 if (level <= levels)
11885 {
11886 arg = TMPL_ARG (args, level, idx);
11887
11888 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
11889 {
11890 /* See through ARGUMENT_PACK_SELECT arguments. */
11891 arg = ARGUMENT_PACK_SELECT_ARG (arg);
11892 /* If the selected argument is an expansion E, that most
11893 likely means we were called from
11894 gen_elem_of_pack_expansion_instantiation during the
11895 substituting of pack an argument pack (which Ith
11896 element is a pack expansion, where I is
11897 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
11898 In this case, the Ith element resulting from this
11899 substituting is going to be a pack expansion, which
11900 pattern is the pattern of E. Let's return the
11901 pattern of E, and
11902 gen_elem_of_pack_expansion_instantiation will
11903 build the resulting pack expansion from it. */
11904 if (PACK_EXPANSION_P (arg))
11905 {
11906 /* Make sure we aren't throwing away arg info. */
11907 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
11908 arg = PACK_EXPANSION_PATTERN (arg);
11909 }
11910 }
11911 }
11912
11913 if (arg == error_mark_node)
11914 return error_mark_node;
11915 else if (arg != NULL_TREE)
11916 {
11917 if (ARGUMENT_PACK_P (arg))
11918 /* If ARG is an argument pack, we don't actually want to
11919 perform a substitution here, because substitutions
11920 for argument packs are only done
11921 element-by-element. We can get to this point when
11922 substituting the type of a non-type template
11923 parameter pack, when that type actually contains
11924 template parameter packs from an outer template, e.g.,
11925
11926 template<typename... Types> struct A {
11927 template<Types... Values> struct B { };
11928 }; */
11929 return t;
11930
11931 if (code == TEMPLATE_TYPE_PARM)
11932 {
11933 int quals;
11934 gcc_assert (TYPE_P (arg));
11935
11936 quals = cp_type_quals (arg) | cp_type_quals (t);
11937
11938 return cp_build_qualified_type_real
11939 (arg, quals, complain | tf_ignore_bad_quals);
11940 }
11941 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
11942 {
11943 /* We are processing a type constructed from a
11944 template template parameter. */
11945 tree argvec = tsubst (TYPE_TI_ARGS (t),
11946 args, complain, in_decl);
11947 if (argvec == error_mark_node)
11948 return error_mark_node;
11949
11950 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
11951 || TREE_CODE (arg) == TEMPLATE_DECL
11952 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
11953
11954 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
11955 /* Consider this code:
11956
11957 template <template <class> class Template>
11958 struct Internal {
11959 template <class Arg> using Bind = Template<Arg>;
11960 };
11961
11962 template <template <class> class Template, class Arg>
11963 using Instantiate = Template<Arg>; //#0
11964
11965 template <template <class> class Template,
11966 class Argument>
11967 using Bind =
11968 Instantiate<Internal<Template>::template Bind,
11969 Argument>; //#1
11970
11971 When #1 is parsed, the
11972 BOUND_TEMPLATE_TEMPLATE_PARM representing the
11973 parameter `Template' in #0 matches the
11974 UNBOUND_CLASS_TEMPLATE representing the argument
11975 `Internal<Template>::template Bind'; We then want
11976 to assemble the type `Bind<Argument>' that can't
11977 be fully created right now, because
11978 `Internal<Template>' not being complete, the Bind
11979 template cannot be looked up in that context. So
11980 we need to "store" `Bind<Argument>' for later
11981 when the context of Bind becomes complete. Let's
11982 store that in a TYPENAME_TYPE. */
11983 return make_typename_type (TYPE_CONTEXT (arg),
11984 build_nt (TEMPLATE_ID_EXPR,
11985 TYPE_IDENTIFIER (arg),
11986 argvec),
11987 typename_type,
11988 complain);
11989
11990 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
11991 are resolving nested-types in the signature of a
11992 member function templates. Otherwise ARG is a
11993 TEMPLATE_DECL and is the real template to be
11994 instantiated. */
11995 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
11996 arg = TYPE_NAME (arg);
11997
11998 r = lookup_template_class (arg,
11999 argvec, in_decl,
12000 DECL_CONTEXT (arg),
12001 /*entering_scope=*/0,
12002 complain);
12003 return cp_build_qualified_type_real
12004 (r, cp_type_quals (t) | cp_type_quals (r), complain);
12005 }
12006 else
12007 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
12008 return convert_from_reference (unshare_expr (arg));
12009 }
12010
12011 if (level == 1)
12012 /* This can happen during the attempted tsubst'ing in
12013 unify. This means that we don't yet have any information
12014 about the template parameter in question. */
12015 return t;
12016
12017 /* Early in template argument deduction substitution, we don't
12018 want to reduce the level of 'auto', or it will be confused
12019 with a normal template parm in subsequent deduction. */
12020 if (is_auto (t) && (complain & tf_partial))
12021 return t;
12022
12023 /* If we get here, we must have been looking at a parm for a
12024 more deeply nested template. Make a new version of this
12025 template parameter, but with a lower level. */
12026 switch (code)
12027 {
12028 case TEMPLATE_TYPE_PARM:
12029 case TEMPLATE_TEMPLATE_PARM:
12030 case BOUND_TEMPLATE_TEMPLATE_PARM:
12031 if (cp_type_quals (t))
12032 {
12033 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
12034 r = cp_build_qualified_type_real
12035 (r, cp_type_quals (t),
12036 complain | (code == TEMPLATE_TYPE_PARM
12037 ? tf_ignore_bad_quals : 0));
12038 }
12039 else
12040 {
12041 r = copy_type (t);
12042 TEMPLATE_TYPE_PARM_INDEX (r)
12043 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
12044 r, levels, args, complain);
12045 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
12046 TYPE_MAIN_VARIANT (r) = r;
12047 TYPE_POINTER_TO (r) = NULL_TREE;
12048 TYPE_REFERENCE_TO (r) = NULL_TREE;
12049
12050 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
12051 /* We have reduced the level of the template
12052 template parameter, but not the levels of its
12053 template parameters, so canonical_type_parameter
12054 will not be able to find the canonical template
12055 template parameter for this level. Thus, we
12056 require structural equality checking to compare
12057 TEMPLATE_TEMPLATE_PARMs. */
12058 SET_TYPE_STRUCTURAL_EQUALITY (r);
12059 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
12060 SET_TYPE_STRUCTURAL_EQUALITY (r);
12061 else
12062 TYPE_CANONICAL (r) = canonical_type_parameter (r);
12063
12064 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
12065 {
12066 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
12067 complain, in_decl);
12068 if (argvec == error_mark_node)
12069 return error_mark_node;
12070
12071 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
12072 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
12073 }
12074 }
12075 break;
12076
12077 case TEMPLATE_PARM_INDEX:
12078 r = reduce_template_parm_level (t, type, levels, args, complain);
12079 break;
12080
12081 default:
12082 gcc_unreachable ();
12083 }
12084
12085 return r;
12086 }
12087
12088 case TREE_LIST:
12089 {
12090 tree purpose, value, chain;
12091
12092 if (t == void_list_node)
12093 return t;
12094
12095 purpose = TREE_PURPOSE (t);
12096 if (purpose)
12097 {
12098 purpose = tsubst (purpose, args, complain, in_decl);
12099 if (purpose == error_mark_node)
12100 return error_mark_node;
12101 }
12102 value = TREE_VALUE (t);
12103 if (value)
12104 {
12105 value = tsubst (value, args, complain, in_decl);
12106 if (value == error_mark_node)
12107 return error_mark_node;
12108 }
12109 chain = TREE_CHAIN (t);
12110 if (chain && chain != void_type_node)
12111 {
12112 chain = tsubst (chain, args, complain, in_decl);
12113 if (chain == error_mark_node)
12114 return error_mark_node;
12115 }
12116 if (purpose == TREE_PURPOSE (t)
12117 && value == TREE_VALUE (t)
12118 && chain == TREE_CHAIN (t))
12119 return t;
12120 return hash_tree_cons (purpose, value, chain);
12121 }
12122
12123 case TREE_BINFO:
12124 /* We should never be tsubsting a binfo. */
12125 gcc_unreachable ();
12126
12127 case TREE_VEC:
12128 /* A vector of template arguments. */
12129 gcc_assert (!type);
12130 return tsubst_template_args (t, args, complain, in_decl);
12131
12132 case POINTER_TYPE:
12133 case REFERENCE_TYPE:
12134 {
12135 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
12136 return t;
12137
12138 /* [temp.deduct]
12139
12140 Type deduction may fail for any of the following
12141 reasons:
12142
12143 -- Attempting to create a pointer to reference type.
12144 -- Attempting to create a reference to a reference type or
12145 a reference to void.
12146
12147 Core issue 106 says that creating a reference to a reference
12148 during instantiation is no longer a cause for failure. We
12149 only enforce this check in strict C++98 mode. */
12150 if ((TREE_CODE (type) == REFERENCE_TYPE
12151 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
12152 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
12153 {
12154 static location_t last_loc;
12155
12156 /* We keep track of the last time we issued this error
12157 message to avoid spewing a ton of messages during a
12158 single bad template instantiation. */
12159 if (complain & tf_error
12160 && last_loc != input_location)
12161 {
12162 if (VOID_TYPE_P (type))
12163 error ("forming reference to void");
12164 else if (code == POINTER_TYPE)
12165 error ("forming pointer to reference type %qT", type);
12166 else
12167 error ("forming reference to reference type %qT", type);
12168 last_loc = input_location;
12169 }
12170
12171 return error_mark_node;
12172 }
12173 else if (TREE_CODE (type) == FUNCTION_TYPE
12174 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
12175 || type_memfn_rqual (type) != REF_QUAL_NONE))
12176 {
12177 if (complain & tf_error)
12178 {
12179 if (code == POINTER_TYPE)
12180 error ("forming pointer to qualified function type %qT",
12181 type);
12182 else
12183 error ("forming reference to qualified function type %qT",
12184 type);
12185 }
12186 return error_mark_node;
12187 }
12188 else if (code == POINTER_TYPE)
12189 {
12190 r = build_pointer_type (type);
12191 if (TREE_CODE (type) == METHOD_TYPE)
12192 r = build_ptrmemfunc_type (r);
12193 }
12194 else if (TREE_CODE (type) == REFERENCE_TYPE)
12195 /* In C++0x, during template argument substitution, when there is an
12196 attempt to create a reference to a reference type, reference
12197 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
12198
12199 "If a template-argument for a template-parameter T names a type
12200 that is a reference to a type A, an attempt to create the type
12201 'lvalue reference to cv T' creates the type 'lvalue reference to
12202 A,' while an attempt to create the type type rvalue reference to
12203 cv T' creates the type T"
12204 */
12205 r = cp_build_reference_type
12206 (TREE_TYPE (type),
12207 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
12208 else
12209 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
12210 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
12211
12212 if (cxx_dialect >= cxx14
12213 && !(TREE_CODE (t) == REFERENCE_TYPE && REFERENCE_VLA_OK (t))
12214 && array_of_runtime_bound_p (type)
12215 && (flag_iso || warn_vla > 0))
12216 {
12217 if (complain & tf_warning_or_error)
12218 pedwarn
12219 (input_location, OPT_Wvla,
12220 code == REFERENCE_TYPE
12221 ? G_("cannot declare reference to array of runtime bound")
12222 : G_("cannot declare pointer to array of runtime bound"));
12223 else
12224 r = error_mark_node;
12225 }
12226
12227 if (r != error_mark_node)
12228 /* Will this ever be needed for TYPE_..._TO values? */
12229 layout_type (r);
12230
12231 return r;
12232 }
12233 case OFFSET_TYPE:
12234 {
12235 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
12236 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
12237 {
12238 /* [temp.deduct]
12239
12240 Type deduction may fail for any of the following
12241 reasons:
12242
12243 -- Attempting to create "pointer to member of T" when T
12244 is not a class type. */
12245 if (complain & tf_error)
12246 error ("creating pointer to member of non-class type %qT", r);
12247 return error_mark_node;
12248 }
12249 if (TREE_CODE (type) == REFERENCE_TYPE)
12250 {
12251 if (complain & tf_error)
12252 error ("creating pointer to member reference type %qT", type);
12253 return error_mark_node;
12254 }
12255 if (VOID_TYPE_P (type))
12256 {
12257 if (complain & tf_error)
12258 error ("creating pointer to member of type void");
12259 return error_mark_node;
12260 }
12261 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
12262 if (TREE_CODE (type) == FUNCTION_TYPE)
12263 {
12264 /* The type of the implicit object parameter gets its
12265 cv-qualifiers from the FUNCTION_TYPE. */
12266 tree memptr;
12267 tree method_type
12268 = build_memfn_type (type, r, type_memfn_quals (type),
12269 type_memfn_rqual (type));
12270 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
12271 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
12272 complain);
12273 }
12274 else
12275 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
12276 cp_type_quals (t),
12277 complain);
12278 }
12279 case FUNCTION_TYPE:
12280 case METHOD_TYPE:
12281 {
12282 tree fntype;
12283 tree specs;
12284 fntype = tsubst_function_type (t, args, complain, in_decl);
12285 if (fntype == error_mark_node)
12286 return error_mark_node;
12287
12288 /* Substitute the exception specification. */
12289 specs = tsubst_exception_specification (t, args, complain,
12290 in_decl, /*defer_ok*/true);
12291 if (specs == error_mark_node)
12292 return error_mark_node;
12293 if (specs)
12294 fntype = build_exception_variant (fntype, specs);
12295 return fntype;
12296 }
12297 case ARRAY_TYPE:
12298 {
12299 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
12300 if (domain == error_mark_node)
12301 return error_mark_node;
12302
12303 /* As an optimization, we avoid regenerating the array type if
12304 it will obviously be the same as T. */
12305 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
12306 return t;
12307
12308 /* These checks should match the ones in create_array_type_for_decl.
12309
12310 [temp.deduct]
12311
12312 The deduction may fail for any of the following reasons:
12313
12314 -- Attempting to create an array with an element type that
12315 is void, a function type, or a reference type, or [DR337]
12316 an abstract class type. */
12317 if (VOID_TYPE_P (type)
12318 || TREE_CODE (type) == FUNCTION_TYPE
12319 || (TREE_CODE (type) == ARRAY_TYPE
12320 && TYPE_DOMAIN (type) == NULL_TREE)
12321 || TREE_CODE (type) == REFERENCE_TYPE)
12322 {
12323 if (complain & tf_error)
12324 error ("creating array of %qT", type);
12325 return error_mark_node;
12326 }
12327
12328 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
12329 return error_mark_node;
12330
12331 r = build_cplus_array_type (type, domain);
12332
12333 if (TYPE_USER_ALIGN (t))
12334 {
12335 TYPE_ALIGN (r) = TYPE_ALIGN (t);
12336 TYPE_USER_ALIGN (r) = 1;
12337 }
12338
12339 return r;
12340 }
12341
12342 case TYPENAME_TYPE:
12343 {
12344 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
12345 in_decl, /*entering_scope=*/1);
12346 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
12347 complain, in_decl);
12348
12349 if (ctx == error_mark_node || f == error_mark_node)
12350 return error_mark_node;
12351
12352 if (!MAYBE_CLASS_TYPE_P (ctx))
12353 {
12354 if (complain & tf_error)
12355 error ("%qT is not a class, struct, or union type", ctx);
12356 return error_mark_node;
12357 }
12358 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
12359 {
12360 /* Normally, make_typename_type does not require that the CTX
12361 have complete type in order to allow things like:
12362
12363 template <class T> struct S { typename S<T>::X Y; };
12364
12365 But, such constructs have already been resolved by this
12366 point, so here CTX really should have complete type, unless
12367 it's a partial instantiation. */
12368 ctx = complete_type (ctx);
12369 if (!COMPLETE_TYPE_P (ctx))
12370 {
12371 if (complain & tf_error)
12372 cxx_incomplete_type_error (NULL_TREE, ctx);
12373 return error_mark_node;
12374 }
12375 }
12376
12377 f = make_typename_type (ctx, f, typename_type,
12378 complain | tf_keep_type_decl);
12379 if (f == error_mark_node)
12380 return f;
12381 if (TREE_CODE (f) == TYPE_DECL)
12382 {
12383 complain |= tf_ignore_bad_quals;
12384 f = TREE_TYPE (f);
12385 }
12386
12387 if (TREE_CODE (f) != TYPENAME_TYPE)
12388 {
12389 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
12390 {
12391 if (complain & tf_error)
12392 error ("%qT resolves to %qT, which is not an enumeration type",
12393 t, f);
12394 else
12395 return error_mark_node;
12396 }
12397 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
12398 {
12399 if (complain & tf_error)
12400 error ("%qT resolves to %qT, which is is not a class type",
12401 t, f);
12402 else
12403 return error_mark_node;
12404 }
12405 }
12406
12407 return cp_build_qualified_type_real
12408 (f, cp_type_quals (f) | cp_type_quals (t), complain);
12409 }
12410
12411 case UNBOUND_CLASS_TEMPLATE:
12412 {
12413 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
12414 in_decl, /*entering_scope=*/1);
12415 tree name = TYPE_IDENTIFIER (t);
12416 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
12417
12418 if (ctx == error_mark_node || name == error_mark_node)
12419 return error_mark_node;
12420
12421 if (parm_list)
12422 parm_list = tsubst_template_parms (parm_list, args, complain);
12423 return make_unbound_class_template (ctx, name, parm_list, complain);
12424 }
12425
12426 case TYPEOF_TYPE:
12427 {
12428 tree type;
12429
12430 ++cp_unevaluated_operand;
12431 ++c_inhibit_evaluation_warnings;
12432
12433 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
12434 complain, in_decl,
12435 /*integral_constant_expression_p=*/false);
12436
12437 --cp_unevaluated_operand;
12438 --c_inhibit_evaluation_warnings;
12439
12440 type = finish_typeof (type);
12441 return cp_build_qualified_type_real (type,
12442 cp_type_quals (t)
12443 | cp_type_quals (type),
12444 complain);
12445 }
12446
12447 case DECLTYPE_TYPE:
12448 {
12449 tree type;
12450
12451 ++cp_unevaluated_operand;
12452 ++c_inhibit_evaluation_warnings;
12453
12454 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
12455 complain|tf_decltype, in_decl,
12456 /*function_p*/false,
12457 /*integral_constant_expression*/false);
12458
12459 --cp_unevaluated_operand;
12460 --c_inhibit_evaluation_warnings;
12461
12462 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
12463 type = lambda_capture_field_type (type,
12464 DECLTYPE_FOR_INIT_CAPTURE (t));
12465 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
12466 type = lambda_proxy_type (type);
12467 else
12468 {
12469 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
12470 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
12471 && EXPR_P (type))
12472 /* In a template ~id could be either a complement expression
12473 or an unqualified-id naming a destructor; if instantiating
12474 it produces an expression, it's not an id-expression or
12475 member access. */
12476 id = false;
12477 type = finish_decltype_type (type, id, complain);
12478 }
12479 return cp_build_qualified_type_real (type,
12480 cp_type_quals (t)
12481 | cp_type_quals (type),
12482 complain | tf_ignore_bad_quals);
12483 }
12484
12485 case UNDERLYING_TYPE:
12486 {
12487 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
12488 complain, in_decl);
12489 return finish_underlying_type (type);
12490 }
12491
12492 case TYPE_ARGUMENT_PACK:
12493 case NONTYPE_ARGUMENT_PACK:
12494 {
12495 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
12496 tree packed_out =
12497 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
12498 args,
12499 complain,
12500 in_decl);
12501 SET_ARGUMENT_PACK_ARGS (r, packed_out);
12502
12503 /* For template nontype argument packs, also substitute into
12504 the type. */
12505 if (code == NONTYPE_ARGUMENT_PACK)
12506 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
12507
12508 return r;
12509 }
12510 break;
12511
12512 case VOID_CST:
12513 case INTEGER_CST:
12514 case REAL_CST:
12515 case STRING_CST:
12516 case PLUS_EXPR:
12517 case MINUS_EXPR:
12518 case NEGATE_EXPR:
12519 case NOP_EXPR:
12520 case INDIRECT_REF:
12521 case ADDR_EXPR:
12522 case CALL_EXPR:
12523 case ARRAY_REF:
12524 case SCOPE_REF:
12525 /* We should use one of the expression tsubsts for these codes. */
12526 gcc_unreachable ();
12527
12528 default:
12529 sorry ("use of %qs in template", get_tree_code_name (code));
12530 return error_mark_node;
12531 }
12532 }
12533
12534 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
12535 type of the expression on the left-hand side of the "." or "->"
12536 operator. */
12537
12538 static tree
12539 tsubst_baselink (tree baselink, tree object_type,
12540 tree args, tsubst_flags_t complain, tree in_decl)
12541 {
12542 tree name;
12543 tree qualifying_scope;
12544 tree fns;
12545 tree optype;
12546 tree template_args = 0;
12547 bool template_id_p = false;
12548 bool qualified = BASELINK_QUALIFIED_P (baselink);
12549
12550 /* A baselink indicates a function from a base class. Both the
12551 BASELINK_ACCESS_BINFO and the base class referenced may
12552 indicate bases of the template class, rather than the
12553 instantiated class. In addition, lookups that were not
12554 ambiguous before may be ambiguous now. Therefore, we perform
12555 the lookup again. */
12556 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
12557 qualifying_scope = tsubst (qualifying_scope, args,
12558 complain, in_decl);
12559 fns = BASELINK_FUNCTIONS (baselink);
12560 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
12561 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
12562 {
12563 template_id_p = true;
12564 template_args = TREE_OPERAND (fns, 1);
12565 fns = TREE_OPERAND (fns, 0);
12566 if (template_args)
12567 template_args = tsubst_template_args (template_args, args,
12568 complain, in_decl);
12569 }
12570 name = DECL_NAME (get_first_fn (fns));
12571 if (IDENTIFIER_TYPENAME_P (name))
12572 name = mangle_conv_op_name_for_type (optype);
12573 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
12574 if (!baselink)
12575 return error_mark_node;
12576
12577 /* If lookup found a single function, mark it as used at this
12578 point. (If it lookup found multiple functions the one selected
12579 later by overload resolution will be marked as used at that
12580 point.) */
12581 if (BASELINK_P (baselink))
12582 fns = BASELINK_FUNCTIONS (baselink);
12583 if (!template_id_p && !really_overloaded_fn (fns))
12584 mark_used (OVL_CURRENT (fns));
12585
12586 /* Add back the template arguments, if present. */
12587 if (BASELINK_P (baselink) && template_id_p)
12588 BASELINK_FUNCTIONS (baselink)
12589 = build_nt (TEMPLATE_ID_EXPR,
12590 BASELINK_FUNCTIONS (baselink),
12591 template_args);
12592 /* Update the conversion operator type. */
12593 BASELINK_OPTYPE (baselink) = optype;
12594
12595 if (!object_type)
12596 object_type = current_class_type;
12597
12598 if (qualified)
12599 baselink = adjust_result_of_qualified_name_lookup (baselink,
12600 qualifying_scope,
12601 object_type);
12602 return baselink;
12603 }
12604
12605 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
12606 true if the qualified-id will be a postfix-expression in-and-of
12607 itself; false if more of the postfix-expression follows the
12608 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
12609 of "&". */
12610
12611 static tree
12612 tsubst_qualified_id (tree qualified_id, tree args,
12613 tsubst_flags_t complain, tree in_decl,
12614 bool done, bool address_p)
12615 {
12616 tree expr;
12617 tree scope;
12618 tree name;
12619 bool is_template;
12620 tree template_args;
12621 location_t loc = UNKNOWN_LOCATION;
12622
12623 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
12624
12625 /* Figure out what name to look up. */
12626 name = TREE_OPERAND (qualified_id, 1);
12627 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
12628 {
12629 is_template = true;
12630 loc = EXPR_LOCATION (name);
12631 template_args = TREE_OPERAND (name, 1);
12632 if (template_args)
12633 template_args = tsubst_template_args (template_args, args,
12634 complain, in_decl);
12635 name = TREE_OPERAND (name, 0);
12636 }
12637 else
12638 {
12639 is_template = false;
12640 template_args = NULL_TREE;
12641 }
12642
12643 /* Substitute into the qualifying scope. When there are no ARGS, we
12644 are just trying to simplify a non-dependent expression. In that
12645 case the qualifying scope may be dependent, and, in any case,
12646 substituting will not help. */
12647 scope = TREE_OPERAND (qualified_id, 0);
12648 if (args)
12649 {
12650 scope = tsubst (scope, args, complain, in_decl);
12651 expr = tsubst_copy (name, args, complain, in_decl);
12652 }
12653 else
12654 expr = name;
12655
12656 if (dependent_scope_p (scope))
12657 {
12658 if (is_template)
12659 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
12660 return build_qualified_name (NULL_TREE, scope, expr,
12661 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
12662 }
12663
12664 if (!BASELINK_P (name) && !DECL_P (expr))
12665 {
12666 if (TREE_CODE (expr) == BIT_NOT_EXPR)
12667 {
12668 /* A BIT_NOT_EXPR is used to represent a destructor. */
12669 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
12670 {
12671 error ("qualifying type %qT does not match destructor name ~%qT",
12672 scope, TREE_OPERAND (expr, 0));
12673 expr = error_mark_node;
12674 }
12675 else
12676 expr = lookup_qualified_name (scope, complete_dtor_identifier,
12677 /*is_type_p=*/0, false);
12678 }
12679 else
12680 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
12681 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
12682 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
12683 {
12684 if (complain & tf_error)
12685 {
12686 error ("dependent-name %qE is parsed as a non-type, but "
12687 "instantiation yields a type", qualified_id);
12688 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
12689 }
12690 return error_mark_node;
12691 }
12692 }
12693
12694 if (DECL_P (expr))
12695 {
12696 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
12697 scope);
12698 /* Remember that there was a reference to this entity. */
12699 mark_used (expr);
12700 }
12701
12702 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
12703 {
12704 if (complain & tf_error)
12705 qualified_name_lookup_error (scope,
12706 TREE_OPERAND (qualified_id, 1),
12707 expr, input_location);
12708 return error_mark_node;
12709 }
12710
12711 if (is_template)
12712 expr = lookup_template_function (expr, template_args);
12713
12714 if (expr == error_mark_node && complain & tf_error)
12715 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
12716 expr, input_location);
12717 else if (TYPE_P (scope))
12718 {
12719 expr = (adjust_result_of_qualified_name_lookup
12720 (expr, scope, current_nonlambda_class_type ()));
12721 expr = (finish_qualified_id_expr
12722 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
12723 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
12724 /*template_arg_p=*/false, complain));
12725 }
12726
12727 /* Expressions do not generally have reference type. */
12728 if (TREE_CODE (expr) != SCOPE_REF
12729 /* However, if we're about to form a pointer-to-member, we just
12730 want the referenced member referenced. */
12731 && TREE_CODE (expr) != OFFSET_REF)
12732 expr = convert_from_reference (expr);
12733
12734 return expr;
12735 }
12736
12737 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
12738 initializer, DECL is the substituted VAR_DECL. Other arguments are as
12739 for tsubst. */
12740
12741 static tree
12742 tsubst_init (tree init, tree decl, tree args,
12743 tsubst_flags_t complain, tree in_decl)
12744 {
12745 if (!init)
12746 return NULL_TREE;
12747
12748 init = tsubst_expr (init, args, complain, in_decl, false);
12749
12750 if (!init)
12751 {
12752 /* If we had an initializer but it
12753 instantiated to nothing,
12754 value-initialize the object. This will
12755 only occur when the initializer was a
12756 pack expansion where the parameter packs
12757 used in that expansion were of length
12758 zero. */
12759 init = build_value_init (TREE_TYPE (decl),
12760 complain);
12761 if (TREE_CODE (init) == AGGR_INIT_EXPR)
12762 init = get_target_expr_sfinae (init, complain);
12763 }
12764
12765 return init;
12766 }
12767
12768 /* Like tsubst, but deals with expressions. This function just replaces
12769 template parms; to finish processing the resultant expression, use
12770 tsubst_copy_and_build or tsubst_expr. */
12771
12772 static tree
12773 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12774 {
12775 enum tree_code code;
12776 tree r;
12777
12778 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
12779 return t;
12780
12781 code = TREE_CODE (t);
12782
12783 switch (code)
12784 {
12785 case PARM_DECL:
12786 r = retrieve_local_specialization (t);
12787
12788 if (r == NULL_TREE)
12789 {
12790 /* We get here for a use of 'this' in an NSDMI. */
12791 if (DECL_NAME (t) == this_identifier
12792 && current_function_decl
12793 && DECL_CONSTRUCTOR_P (current_function_decl))
12794 return current_class_ptr;
12795
12796 /* This can happen for a parameter name used later in a function
12797 declaration (such as in a late-specified return type). Just
12798 make a dummy decl, since it's only used for its type. */
12799 gcc_assert (cp_unevaluated_operand != 0);
12800 r = tsubst_decl (t, args, complain);
12801 /* Give it the template pattern as its context; its true context
12802 hasn't been instantiated yet and this is good enough for
12803 mangling. */
12804 DECL_CONTEXT (r) = DECL_CONTEXT (t);
12805 }
12806
12807 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
12808 r = ARGUMENT_PACK_SELECT_ARG (r);
12809 mark_used (r);
12810 return r;
12811
12812 case CONST_DECL:
12813 {
12814 tree enum_type;
12815 tree v;
12816
12817 if (DECL_TEMPLATE_PARM_P (t))
12818 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
12819 /* There is no need to substitute into namespace-scope
12820 enumerators. */
12821 if (DECL_NAMESPACE_SCOPE_P (t))
12822 return t;
12823 /* If ARGS is NULL, then T is known to be non-dependent. */
12824 if (args == NULL_TREE)
12825 return scalar_constant_value (t);
12826
12827 /* Unfortunately, we cannot just call lookup_name here.
12828 Consider:
12829
12830 template <int I> int f() {
12831 enum E { a = I };
12832 struct S { void g() { E e = a; } };
12833 };
12834
12835 When we instantiate f<7>::S::g(), say, lookup_name is not
12836 clever enough to find f<7>::a. */
12837 enum_type
12838 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12839 /*entering_scope=*/0);
12840
12841 for (v = TYPE_VALUES (enum_type);
12842 v != NULL_TREE;
12843 v = TREE_CHAIN (v))
12844 if (TREE_PURPOSE (v) == DECL_NAME (t))
12845 return TREE_VALUE (v);
12846
12847 /* We didn't find the name. That should never happen; if
12848 name-lookup found it during preliminary parsing, we
12849 should find it again here during instantiation. */
12850 gcc_unreachable ();
12851 }
12852 return t;
12853
12854 case FIELD_DECL:
12855 if (PACK_EXPANSION_P (TREE_TYPE (t)))
12856 {
12857 /* Check for a local specialization set up by
12858 tsubst_pack_expansion. */
12859 if (tree r = retrieve_local_specialization (t))
12860 {
12861 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
12862 r = ARGUMENT_PACK_SELECT_ARG (r);
12863 return r;
12864 }
12865
12866 /* When retrieving a capture pack from a generic lambda, remove the
12867 lambda call op's own template argument list from ARGS. Only the
12868 template arguments active for the closure type should be used to
12869 retrieve the pack specialization. */
12870 if (LAMBDA_FUNCTION_P (current_function_decl)
12871 && (template_class_depth (DECL_CONTEXT (t))
12872 != TMPL_ARGS_DEPTH (args)))
12873 args = strip_innermost_template_args (args, 1);
12874
12875 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
12876 tsubst_decl put in the hash table. */
12877 return retrieve_specialization (t, args, 0);
12878 }
12879
12880 if (DECL_CONTEXT (t))
12881 {
12882 tree ctx;
12883
12884 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12885 /*entering_scope=*/1);
12886 if (ctx != DECL_CONTEXT (t))
12887 {
12888 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
12889 if (!r)
12890 {
12891 if (complain & tf_error)
12892 error ("using invalid field %qD", t);
12893 return error_mark_node;
12894 }
12895 return r;
12896 }
12897 }
12898
12899 return t;
12900
12901 case VAR_DECL:
12902 case FUNCTION_DECL:
12903 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
12904 r = tsubst (t, args, complain, in_decl);
12905 else if (local_variable_p (t))
12906 {
12907 r = retrieve_local_specialization (t);
12908 if (r == NULL_TREE)
12909 {
12910 /* First try name lookup to find the instantiation. */
12911 r = lookup_name (DECL_NAME (t));
12912 if (r)
12913 {
12914 /* Make sure that the one we found is the one we want. */
12915 tree ctx = tsubst (DECL_CONTEXT (t), args,
12916 complain, in_decl);
12917 if (ctx != DECL_CONTEXT (r))
12918 r = NULL_TREE;
12919 }
12920
12921 if (r)
12922 /* OK */;
12923 else
12924 {
12925 /* This can happen for a variable used in a
12926 late-specified return type of a local lambda, or for a
12927 local static or constant. Building a new VAR_DECL
12928 should be OK in all those cases. */
12929 r = tsubst_decl (t, args, complain);
12930 if (decl_maybe_constant_var_p (r))
12931 {
12932 /* We can't call cp_finish_decl, so handle the
12933 initializer by hand. */
12934 tree init = tsubst_init (DECL_INITIAL (t), r, args,
12935 complain, in_decl);
12936 if (!processing_template_decl)
12937 init = maybe_constant_init (init);
12938 if (processing_template_decl
12939 ? potential_constant_expression (init)
12940 : reduced_constant_expression_p (init))
12941 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
12942 = TREE_CONSTANT (r) = true;
12943 DECL_INITIAL (r) = init;
12944 }
12945 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
12946 || decl_constant_var_p (r)
12947 || errorcount || sorrycount);
12948 if (!processing_template_decl)
12949 {
12950 if (TREE_STATIC (r))
12951 rest_of_decl_compilation (r, toplevel_bindings_p (),
12952 at_eof);
12953 else if (decl_constant_var_p (r))
12954 /* A use of a local constant decays to its value.
12955 FIXME update for core DR 696. */
12956 r = scalar_constant_value (r);
12957 }
12958 }
12959 /* Remember this for subsequent uses. */
12960 if (local_specializations)
12961 register_local_specialization (r, t);
12962 }
12963 }
12964 else
12965 r = t;
12966 mark_used (r);
12967 return r;
12968
12969 case NAMESPACE_DECL:
12970 return t;
12971
12972 case OVERLOAD:
12973 /* An OVERLOAD will always be a non-dependent overload set; an
12974 overload set from function scope will just be represented with an
12975 IDENTIFIER_NODE, and from class scope with a BASELINK. */
12976 gcc_assert (!uses_template_parms (t));
12977 return t;
12978
12979 case BASELINK:
12980 return tsubst_baselink (t, current_nonlambda_class_type (),
12981 args, complain, in_decl);
12982
12983 case TEMPLATE_DECL:
12984 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
12985 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
12986 args, complain, in_decl);
12987 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
12988 return tsubst (t, args, complain, in_decl);
12989 else if (DECL_CLASS_SCOPE_P (t)
12990 && uses_template_parms (DECL_CONTEXT (t)))
12991 {
12992 /* Template template argument like the following example need
12993 special treatment:
12994
12995 template <template <class> class TT> struct C {};
12996 template <class T> struct D {
12997 template <class U> struct E {};
12998 C<E> c; // #1
12999 };
13000 D<int> d; // #2
13001
13002 We are processing the template argument `E' in #1 for
13003 the template instantiation #2. Originally, `E' is a
13004 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
13005 have to substitute this with one having context `D<int>'. */
13006
13007 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
13008 return lookup_field (context, DECL_NAME(t), 0, false);
13009 }
13010 else
13011 /* Ordinary template template argument. */
13012 return t;
13013
13014 case CAST_EXPR:
13015 case REINTERPRET_CAST_EXPR:
13016 case CONST_CAST_EXPR:
13017 case STATIC_CAST_EXPR:
13018 case DYNAMIC_CAST_EXPR:
13019 case IMPLICIT_CONV_EXPR:
13020 case CONVERT_EXPR:
13021 case NOP_EXPR:
13022 {
13023 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13024 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13025 return build1 (code, type, op0);
13026 }
13027
13028 case SIZEOF_EXPR:
13029 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
13030 {
13031
13032 tree expanded, op = TREE_OPERAND (t, 0);
13033 int len = 0;
13034
13035 if (SIZEOF_EXPR_TYPE_P (t))
13036 op = TREE_TYPE (op);
13037
13038 ++cp_unevaluated_operand;
13039 ++c_inhibit_evaluation_warnings;
13040 /* We only want to compute the number of arguments. */
13041 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
13042 --cp_unevaluated_operand;
13043 --c_inhibit_evaluation_warnings;
13044
13045 if (TREE_CODE (expanded) == TREE_VEC)
13046 len = TREE_VEC_LENGTH (expanded);
13047
13048 if (expanded == error_mark_node)
13049 return error_mark_node;
13050 else if (PACK_EXPANSION_P (expanded)
13051 || (TREE_CODE (expanded) == TREE_VEC
13052 && len > 0
13053 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
13054 {
13055 if (TREE_CODE (expanded) == TREE_VEC)
13056 expanded = TREE_VEC_ELT (expanded, len - 1);
13057
13058 if (TYPE_P (expanded))
13059 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
13060 complain & tf_error);
13061 else
13062 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
13063 complain & tf_error);
13064 }
13065 else
13066 return build_int_cst (size_type_node, len);
13067 }
13068 if (SIZEOF_EXPR_TYPE_P (t))
13069 {
13070 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
13071 args, complain, in_decl);
13072 r = build1 (NOP_EXPR, r, error_mark_node);
13073 r = build1 (SIZEOF_EXPR,
13074 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
13075 SIZEOF_EXPR_TYPE_P (r) = 1;
13076 return r;
13077 }
13078 /* Fall through */
13079
13080 case INDIRECT_REF:
13081 case NEGATE_EXPR:
13082 case TRUTH_NOT_EXPR:
13083 case BIT_NOT_EXPR:
13084 case ADDR_EXPR:
13085 case UNARY_PLUS_EXPR: /* Unary + */
13086 case ALIGNOF_EXPR:
13087 case AT_ENCODE_EXPR:
13088 case ARROW_EXPR:
13089 case THROW_EXPR:
13090 case TYPEID_EXPR:
13091 case REALPART_EXPR:
13092 case IMAGPART_EXPR:
13093 case PAREN_EXPR:
13094 {
13095 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13096 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13097 return build1 (code, type, op0);
13098 }
13099
13100 case COMPONENT_REF:
13101 {
13102 tree object;
13103 tree name;
13104
13105 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13106 name = TREE_OPERAND (t, 1);
13107 if (TREE_CODE (name) == BIT_NOT_EXPR)
13108 {
13109 name = tsubst_copy (TREE_OPERAND (name, 0), args,
13110 complain, in_decl);
13111 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
13112 }
13113 else if (TREE_CODE (name) == SCOPE_REF
13114 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
13115 {
13116 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
13117 complain, in_decl);
13118 name = TREE_OPERAND (name, 1);
13119 name = tsubst_copy (TREE_OPERAND (name, 0), args,
13120 complain, in_decl);
13121 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
13122 name = build_qualified_name (/*type=*/NULL_TREE,
13123 base, name,
13124 /*template_p=*/false);
13125 }
13126 else if (BASELINK_P (name))
13127 name = tsubst_baselink (name,
13128 non_reference (TREE_TYPE (object)),
13129 args, complain,
13130 in_decl);
13131 else
13132 name = tsubst_copy (name, args, complain, in_decl);
13133 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
13134 }
13135
13136 case PLUS_EXPR:
13137 case MINUS_EXPR:
13138 case MULT_EXPR:
13139 case TRUNC_DIV_EXPR:
13140 case CEIL_DIV_EXPR:
13141 case FLOOR_DIV_EXPR:
13142 case ROUND_DIV_EXPR:
13143 case EXACT_DIV_EXPR:
13144 case BIT_AND_EXPR:
13145 case BIT_IOR_EXPR:
13146 case BIT_XOR_EXPR:
13147 case TRUNC_MOD_EXPR:
13148 case FLOOR_MOD_EXPR:
13149 case TRUTH_ANDIF_EXPR:
13150 case TRUTH_ORIF_EXPR:
13151 case TRUTH_AND_EXPR:
13152 case TRUTH_OR_EXPR:
13153 case RSHIFT_EXPR:
13154 case LSHIFT_EXPR:
13155 case RROTATE_EXPR:
13156 case LROTATE_EXPR:
13157 case EQ_EXPR:
13158 case NE_EXPR:
13159 case MAX_EXPR:
13160 case MIN_EXPR:
13161 case LE_EXPR:
13162 case GE_EXPR:
13163 case LT_EXPR:
13164 case GT_EXPR:
13165 case COMPOUND_EXPR:
13166 case DOTSTAR_EXPR:
13167 case MEMBER_REF:
13168 case PREDECREMENT_EXPR:
13169 case PREINCREMENT_EXPR:
13170 case POSTDECREMENT_EXPR:
13171 case POSTINCREMENT_EXPR:
13172 {
13173 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13174 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13175 return build_nt (code, op0, op1);
13176 }
13177
13178 case SCOPE_REF:
13179 {
13180 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13181 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13182 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
13183 QUALIFIED_NAME_IS_TEMPLATE (t));
13184 }
13185
13186 case ARRAY_REF:
13187 {
13188 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13189 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13190 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
13191 }
13192
13193 case CALL_EXPR:
13194 {
13195 int n = VL_EXP_OPERAND_LENGTH (t);
13196 tree result = build_vl_exp (CALL_EXPR, n);
13197 int i;
13198 for (i = 0; i < n; i++)
13199 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
13200 complain, in_decl);
13201 return result;
13202 }
13203
13204 case COND_EXPR:
13205 case MODOP_EXPR:
13206 case PSEUDO_DTOR_EXPR:
13207 case VEC_PERM_EXPR:
13208 {
13209 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13210 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13211 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
13212 r = build_nt (code, op0, op1, op2);
13213 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
13214 return r;
13215 }
13216
13217 case NEW_EXPR:
13218 {
13219 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13220 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13221 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
13222 r = build_nt (code, op0, op1, op2);
13223 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
13224 return r;
13225 }
13226
13227 case DELETE_EXPR:
13228 {
13229 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13230 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13231 r = build_nt (code, op0, op1);
13232 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
13233 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
13234 return r;
13235 }
13236
13237 case TEMPLATE_ID_EXPR:
13238 {
13239 /* Substituted template arguments */
13240 tree fn = TREE_OPERAND (t, 0);
13241 tree targs = TREE_OPERAND (t, 1);
13242
13243 fn = tsubst_copy (fn, args, complain, in_decl);
13244 if (targs)
13245 targs = tsubst_template_args (targs, args, complain, in_decl);
13246
13247 return lookup_template_function (fn, targs);
13248 }
13249
13250 case TREE_LIST:
13251 {
13252 tree purpose, value, chain;
13253
13254 if (t == void_list_node)
13255 return t;
13256
13257 purpose = TREE_PURPOSE (t);
13258 if (purpose)
13259 purpose = tsubst_copy (purpose, args, complain, in_decl);
13260 value = TREE_VALUE (t);
13261 if (value)
13262 value = tsubst_copy (value, args, complain, in_decl);
13263 chain = TREE_CHAIN (t);
13264 if (chain && chain != void_type_node)
13265 chain = tsubst_copy (chain, args, complain, in_decl);
13266 if (purpose == TREE_PURPOSE (t)
13267 && value == TREE_VALUE (t)
13268 && chain == TREE_CHAIN (t))
13269 return t;
13270 return tree_cons (purpose, value, chain);
13271 }
13272
13273 case RECORD_TYPE:
13274 case UNION_TYPE:
13275 case ENUMERAL_TYPE:
13276 case INTEGER_TYPE:
13277 case TEMPLATE_TYPE_PARM:
13278 case TEMPLATE_TEMPLATE_PARM:
13279 case BOUND_TEMPLATE_TEMPLATE_PARM:
13280 case TEMPLATE_PARM_INDEX:
13281 case POINTER_TYPE:
13282 case REFERENCE_TYPE:
13283 case OFFSET_TYPE:
13284 case FUNCTION_TYPE:
13285 case METHOD_TYPE:
13286 case ARRAY_TYPE:
13287 case TYPENAME_TYPE:
13288 case UNBOUND_CLASS_TEMPLATE:
13289 case TYPEOF_TYPE:
13290 case DECLTYPE_TYPE:
13291 case TYPE_DECL:
13292 return tsubst (t, args, complain, in_decl);
13293
13294 case USING_DECL:
13295 t = DECL_NAME (t);
13296 /* Fall through. */
13297 case IDENTIFIER_NODE:
13298 if (IDENTIFIER_TYPENAME_P (t))
13299 {
13300 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13301 return mangle_conv_op_name_for_type (new_type);
13302 }
13303 else
13304 return t;
13305
13306 case CONSTRUCTOR:
13307 /* This is handled by tsubst_copy_and_build. */
13308 gcc_unreachable ();
13309
13310 case VA_ARG_EXPR:
13311 {
13312 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13313 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13314 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
13315 }
13316
13317 case CLEANUP_POINT_EXPR:
13318 /* We shouldn't have built any of these during initial template
13319 generation. Instead, they should be built during instantiation
13320 in response to the saved STMT_IS_FULL_EXPR_P setting. */
13321 gcc_unreachable ();
13322
13323 case OFFSET_REF:
13324 {
13325 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13326 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13327 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13328 r = build2 (code, type, op0, op1);
13329 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
13330 mark_used (TREE_OPERAND (r, 1));
13331 return r;
13332 }
13333
13334 case EXPR_PACK_EXPANSION:
13335 error ("invalid use of pack expansion expression");
13336 return error_mark_node;
13337
13338 case NONTYPE_ARGUMENT_PACK:
13339 error ("use %<...%> to expand argument pack");
13340 return error_mark_node;
13341
13342 case VOID_CST:
13343 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
13344 return t;
13345
13346 case INTEGER_CST:
13347 case REAL_CST:
13348 case STRING_CST:
13349 case COMPLEX_CST:
13350 {
13351 /* Instantiate any typedefs in the type. */
13352 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13353 r = fold_convert (type, t);
13354 gcc_assert (TREE_CODE (r) == code);
13355 return r;
13356 }
13357
13358 case PTRMEM_CST:
13359 /* These can sometimes show up in a partial instantiation, but never
13360 involve template parms. */
13361 gcc_assert (!uses_template_parms (t));
13362 return t;
13363
13364 default:
13365 /* We shouldn't get here, but keep going if !ENABLE_CHECKING. */
13366 gcc_checking_assert (false);
13367 return t;
13368 }
13369 }
13370
13371 /* Like tsubst_copy, but specifically for OpenMP clauses. */
13372
13373 static tree
13374 tsubst_omp_clauses (tree clauses, bool declare_simd,
13375 tree args, tsubst_flags_t complain, tree in_decl)
13376 {
13377 tree new_clauses = NULL, nc, oc;
13378
13379 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
13380 {
13381 nc = copy_node (oc);
13382 OMP_CLAUSE_CHAIN (nc) = new_clauses;
13383 new_clauses = nc;
13384
13385 switch (OMP_CLAUSE_CODE (nc))
13386 {
13387 case OMP_CLAUSE_LASTPRIVATE:
13388 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
13389 {
13390 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
13391 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
13392 in_decl, /*integral_constant_expression_p=*/false);
13393 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
13394 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
13395 }
13396 /* FALLTHRU */
13397 case OMP_CLAUSE_PRIVATE:
13398 case OMP_CLAUSE_SHARED:
13399 case OMP_CLAUSE_FIRSTPRIVATE:
13400 case OMP_CLAUSE_COPYIN:
13401 case OMP_CLAUSE_COPYPRIVATE:
13402 case OMP_CLAUSE_IF:
13403 case OMP_CLAUSE_NUM_THREADS:
13404 case OMP_CLAUSE_SCHEDULE:
13405 case OMP_CLAUSE_COLLAPSE:
13406 case OMP_CLAUSE_FINAL:
13407 case OMP_CLAUSE_DEPEND:
13408 case OMP_CLAUSE_FROM:
13409 case OMP_CLAUSE_TO:
13410 case OMP_CLAUSE_UNIFORM:
13411 case OMP_CLAUSE_MAP:
13412 case OMP_CLAUSE_DEVICE:
13413 case OMP_CLAUSE_DIST_SCHEDULE:
13414 case OMP_CLAUSE_NUM_TEAMS:
13415 case OMP_CLAUSE_THREAD_LIMIT:
13416 case OMP_CLAUSE_SAFELEN:
13417 case OMP_CLAUSE_SIMDLEN:
13418 OMP_CLAUSE_OPERAND (nc, 0)
13419 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13420 in_decl, /*integral_constant_expression_p=*/false);
13421 break;
13422 case OMP_CLAUSE_REDUCTION:
13423 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
13424 {
13425 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
13426 if (TREE_CODE (placeholder) == SCOPE_REF)
13427 {
13428 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
13429 complain, in_decl);
13430 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
13431 = build_qualified_name (NULL_TREE, scope,
13432 TREE_OPERAND (placeholder, 1),
13433 false);
13434 }
13435 else
13436 gcc_assert (identifier_p (placeholder));
13437 }
13438 OMP_CLAUSE_OPERAND (nc, 0)
13439 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13440 in_decl, /*integral_constant_expression_p=*/false);
13441 break;
13442 case OMP_CLAUSE_LINEAR:
13443 case OMP_CLAUSE_ALIGNED:
13444 OMP_CLAUSE_OPERAND (nc, 0)
13445 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13446 in_decl, /*integral_constant_expression_p=*/false);
13447 OMP_CLAUSE_OPERAND (nc, 1)
13448 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
13449 in_decl, /*integral_constant_expression_p=*/false);
13450 break;
13451
13452 case OMP_CLAUSE_NOWAIT:
13453 case OMP_CLAUSE_ORDERED:
13454 case OMP_CLAUSE_DEFAULT:
13455 case OMP_CLAUSE_UNTIED:
13456 case OMP_CLAUSE_MERGEABLE:
13457 case OMP_CLAUSE_INBRANCH:
13458 case OMP_CLAUSE_NOTINBRANCH:
13459 case OMP_CLAUSE_PROC_BIND:
13460 case OMP_CLAUSE_FOR:
13461 case OMP_CLAUSE_PARALLEL:
13462 case OMP_CLAUSE_SECTIONS:
13463 case OMP_CLAUSE_TASKGROUP:
13464 break;
13465 default:
13466 gcc_unreachable ();
13467 }
13468 }
13469
13470 new_clauses = nreverse (new_clauses);
13471 if (!declare_simd)
13472 new_clauses = finish_omp_clauses (new_clauses);
13473 return new_clauses;
13474 }
13475
13476 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
13477
13478 static tree
13479 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
13480 tree in_decl)
13481 {
13482 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
13483
13484 tree purpose, value, chain;
13485
13486 if (t == NULL)
13487 return t;
13488
13489 if (TREE_CODE (t) != TREE_LIST)
13490 return tsubst_copy_and_build (t, args, complain, in_decl,
13491 /*function_p=*/false,
13492 /*integral_constant_expression_p=*/false);
13493
13494 if (t == void_list_node)
13495 return t;
13496
13497 purpose = TREE_PURPOSE (t);
13498 if (purpose)
13499 purpose = RECUR (purpose);
13500 value = TREE_VALUE (t);
13501 if (value)
13502 {
13503 if (TREE_CODE (value) != LABEL_DECL)
13504 value = RECUR (value);
13505 else
13506 {
13507 value = lookup_label (DECL_NAME (value));
13508 gcc_assert (TREE_CODE (value) == LABEL_DECL);
13509 TREE_USED (value) = 1;
13510 }
13511 }
13512 chain = TREE_CHAIN (t);
13513 if (chain && chain != void_type_node)
13514 chain = RECUR (chain);
13515 return tree_cons (purpose, value, chain);
13516 #undef RECUR
13517 }
13518
13519 /* Substitute one OMP_FOR iterator. */
13520
13521 static void
13522 tsubst_omp_for_iterator (tree t, int i, tree declv, tree initv,
13523 tree condv, tree incrv, tree *clauses,
13524 tree args, tsubst_flags_t complain, tree in_decl,
13525 bool integral_constant_expression_p)
13526 {
13527 #define RECUR(NODE) \
13528 tsubst_expr ((NODE), args, complain, in_decl, \
13529 integral_constant_expression_p)
13530 tree decl, init, cond, incr;
13531
13532 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
13533 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
13534 decl = TREE_OPERAND (init, 0);
13535 init = TREE_OPERAND (init, 1);
13536 tree decl_expr = NULL_TREE;
13537 if (init && TREE_CODE (init) == DECL_EXPR)
13538 {
13539 /* We need to jump through some hoops to handle declarations in the
13540 for-init-statement, since we might need to handle auto deduction,
13541 but we need to keep control of initialization. */
13542 decl_expr = init;
13543 init = DECL_INITIAL (DECL_EXPR_DECL (init));
13544 decl = tsubst_decl (decl, args, complain);
13545 }
13546 else
13547 decl = RECUR (decl);
13548 init = RECUR (init);
13549
13550 tree auto_node = type_uses_auto (TREE_TYPE (decl));
13551 if (auto_node && init)
13552 TREE_TYPE (decl)
13553 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
13554
13555 gcc_assert (!type_dependent_expression_p (decl));
13556
13557 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
13558 {
13559 if (decl_expr)
13560 {
13561 /* Declare the variable, but don't let that initialize it. */
13562 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
13563 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
13564 RECUR (decl_expr);
13565 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
13566 }
13567
13568 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
13569 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
13570 if (TREE_CODE (incr) == MODIFY_EXPR)
13571 {
13572 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13573 tree rhs = RECUR (TREE_OPERAND (incr, 1));
13574 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
13575 NOP_EXPR, rhs, complain);
13576 }
13577 else
13578 incr = RECUR (incr);
13579 TREE_VEC_ELT (declv, i) = decl;
13580 TREE_VEC_ELT (initv, i) = init;
13581 TREE_VEC_ELT (condv, i) = cond;
13582 TREE_VEC_ELT (incrv, i) = incr;
13583 return;
13584 }
13585
13586 if (decl_expr)
13587 {
13588 /* Declare and initialize the variable. */
13589 RECUR (decl_expr);
13590 init = NULL_TREE;
13591 }
13592 else if (init)
13593 {
13594 tree c;
13595 for (c = *clauses; c ; c = OMP_CLAUSE_CHAIN (c))
13596 {
13597 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
13598 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
13599 && OMP_CLAUSE_DECL (c) == decl)
13600 break;
13601 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
13602 && OMP_CLAUSE_DECL (c) == decl)
13603 error ("iteration variable %qD should not be firstprivate", decl);
13604 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
13605 && OMP_CLAUSE_DECL (c) == decl)
13606 error ("iteration variable %qD should not be reduction", decl);
13607 }
13608 if (c == NULL)
13609 {
13610 c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
13611 OMP_CLAUSE_DECL (c) = decl;
13612 c = finish_omp_clauses (c);
13613 if (c)
13614 {
13615 OMP_CLAUSE_CHAIN (c) = *clauses;
13616 *clauses = c;
13617 }
13618 }
13619 }
13620 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
13621 if (COMPARISON_CLASS_P (cond))
13622 {
13623 tree op0 = RECUR (TREE_OPERAND (cond, 0));
13624 tree op1 = RECUR (TREE_OPERAND (cond, 1));
13625 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
13626 }
13627 else
13628 cond = RECUR (cond);
13629 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
13630 switch (TREE_CODE (incr))
13631 {
13632 case PREINCREMENT_EXPR:
13633 case PREDECREMENT_EXPR:
13634 case POSTINCREMENT_EXPR:
13635 case POSTDECREMENT_EXPR:
13636 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
13637 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
13638 break;
13639 case MODIFY_EXPR:
13640 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
13641 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
13642 {
13643 tree rhs = TREE_OPERAND (incr, 1);
13644 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13645 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
13646 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
13647 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13648 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
13649 rhs0, rhs1));
13650 }
13651 else
13652 incr = RECUR (incr);
13653 break;
13654 case MODOP_EXPR:
13655 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
13656 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
13657 {
13658 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13659 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13660 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
13661 TREE_TYPE (decl), lhs,
13662 RECUR (TREE_OPERAND (incr, 2))));
13663 }
13664 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
13665 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
13666 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
13667 {
13668 tree rhs = TREE_OPERAND (incr, 2);
13669 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13670 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
13671 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
13672 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13673 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
13674 rhs0, rhs1));
13675 }
13676 else
13677 incr = RECUR (incr);
13678 break;
13679 default:
13680 incr = RECUR (incr);
13681 break;
13682 }
13683
13684 TREE_VEC_ELT (declv, i) = decl;
13685 TREE_VEC_ELT (initv, i) = init;
13686 TREE_VEC_ELT (condv, i) = cond;
13687 TREE_VEC_ELT (incrv, i) = incr;
13688 #undef RECUR
13689 }
13690
13691 /* Like tsubst_copy for expressions, etc. but also does semantic
13692 processing. */
13693
13694 static tree
13695 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
13696 bool integral_constant_expression_p)
13697 {
13698 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
13699 #define RECUR(NODE) \
13700 tsubst_expr ((NODE), args, complain, in_decl, \
13701 integral_constant_expression_p)
13702
13703 tree stmt, tmp;
13704 tree r;
13705 location_t loc;
13706
13707 if (t == NULL_TREE || t == error_mark_node)
13708 return t;
13709
13710 loc = input_location;
13711 if (EXPR_HAS_LOCATION (t))
13712 input_location = EXPR_LOCATION (t);
13713 if (STATEMENT_CODE_P (TREE_CODE (t)))
13714 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
13715
13716 switch (TREE_CODE (t))
13717 {
13718 case STATEMENT_LIST:
13719 {
13720 tree_stmt_iterator i;
13721 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
13722 RECUR (tsi_stmt (i));
13723 break;
13724 }
13725
13726 case CTOR_INITIALIZER:
13727 finish_mem_initializers (tsubst_initializer_list
13728 (TREE_OPERAND (t, 0), args));
13729 break;
13730
13731 case RETURN_EXPR:
13732 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
13733 break;
13734
13735 case EXPR_STMT:
13736 tmp = RECUR (EXPR_STMT_EXPR (t));
13737 if (EXPR_STMT_STMT_EXPR_RESULT (t))
13738 finish_stmt_expr_expr (tmp, cur_stmt_expr);
13739 else
13740 finish_expr_stmt (tmp);
13741 break;
13742
13743 case USING_STMT:
13744 do_using_directive (USING_STMT_NAMESPACE (t));
13745 break;
13746
13747 case DECL_EXPR:
13748 {
13749 tree decl, pattern_decl;
13750 tree init;
13751
13752 pattern_decl = decl = DECL_EXPR_DECL (t);
13753 if (TREE_CODE (decl) == LABEL_DECL)
13754 finish_label_decl (DECL_NAME (decl));
13755 else if (TREE_CODE (decl) == USING_DECL)
13756 {
13757 tree scope = USING_DECL_SCOPE (decl);
13758 tree name = DECL_NAME (decl);
13759 tree decl;
13760
13761 scope = tsubst (scope, args, complain, in_decl);
13762 decl = lookup_qualified_name (scope, name,
13763 /*is_type_p=*/false,
13764 /*complain=*/false);
13765 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
13766 qualified_name_lookup_error (scope, name, decl, input_location);
13767 else
13768 do_local_using_decl (decl, scope, name);
13769 }
13770 else if (DECL_PACK_P (decl))
13771 {
13772 /* Don't build up decls for a variadic capture proxy, we'll
13773 instantiate the elements directly as needed. */
13774 break;
13775 }
13776 else
13777 {
13778 init = DECL_INITIAL (decl);
13779 decl = tsubst (decl, args, complain, in_decl);
13780 if (decl != error_mark_node)
13781 {
13782 /* By marking the declaration as instantiated, we avoid
13783 trying to instantiate it. Since instantiate_decl can't
13784 handle local variables, and since we've already done
13785 all that needs to be done, that's the right thing to
13786 do. */
13787 if (VAR_P (decl))
13788 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
13789 if (VAR_P (decl)
13790 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
13791 /* Anonymous aggregates are a special case. */
13792 finish_anon_union (decl);
13793 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
13794 {
13795 DECL_CONTEXT (decl) = current_function_decl;
13796 if (DECL_NAME (decl) == this_identifier)
13797 {
13798 tree lam = DECL_CONTEXT (current_function_decl);
13799 lam = CLASSTYPE_LAMBDA_EXPR (lam);
13800 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
13801 }
13802 insert_capture_proxy (decl);
13803 }
13804 else if (DECL_IMPLICIT_TYPEDEF_P (t))
13805 /* We already did a pushtag. */;
13806 else if (TREE_CODE (decl) == FUNCTION_DECL
13807 && DECL_OMP_DECLARE_REDUCTION_P (decl)
13808 && DECL_FUNCTION_SCOPE_P (pattern_decl))
13809 {
13810 DECL_CONTEXT (decl) = NULL_TREE;
13811 pushdecl (decl);
13812 DECL_CONTEXT (decl) = current_function_decl;
13813 cp_check_omp_declare_reduction (decl);
13814 }
13815 else
13816 {
13817 int const_init = false;
13818 maybe_push_decl (decl);
13819 if (VAR_P (decl)
13820 && DECL_PRETTY_FUNCTION_P (decl))
13821 {
13822 /* For __PRETTY_FUNCTION__ we have to adjust the
13823 initializer. */
13824 const char *const name
13825 = cxx_printable_name (current_function_decl, 2);
13826 init = cp_fname_init (name, &TREE_TYPE (decl));
13827 }
13828 else
13829 init = tsubst_init (init, decl, args, complain, in_decl);
13830
13831 if (VAR_P (decl))
13832 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
13833 (pattern_decl));
13834 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
13835 }
13836 }
13837 }
13838
13839 break;
13840 }
13841
13842 case FOR_STMT:
13843 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
13844 RECUR (FOR_INIT_STMT (t));
13845 finish_for_init_stmt (stmt);
13846 tmp = RECUR (FOR_COND (t));
13847 finish_for_cond (tmp, stmt, false);
13848 tmp = RECUR (FOR_EXPR (t));
13849 finish_for_expr (tmp, stmt);
13850 RECUR (FOR_BODY (t));
13851 finish_for_stmt (stmt);
13852 break;
13853
13854 case RANGE_FOR_STMT:
13855 {
13856 tree decl, expr;
13857 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
13858 decl = RANGE_FOR_DECL (t);
13859 decl = tsubst (decl, args, complain, in_decl);
13860 maybe_push_decl (decl);
13861 expr = RECUR (RANGE_FOR_EXPR (t));
13862 stmt = cp_convert_range_for (stmt, decl, expr, RANGE_FOR_IVDEP (t));
13863 RECUR (RANGE_FOR_BODY (t));
13864 finish_for_stmt (stmt);
13865 }
13866 break;
13867
13868 case WHILE_STMT:
13869 stmt = begin_while_stmt ();
13870 tmp = RECUR (WHILE_COND (t));
13871 finish_while_stmt_cond (tmp, stmt, false);
13872 RECUR (WHILE_BODY (t));
13873 finish_while_stmt (stmt);
13874 break;
13875
13876 case DO_STMT:
13877 stmt = begin_do_stmt ();
13878 RECUR (DO_BODY (t));
13879 finish_do_body (stmt);
13880 tmp = RECUR (DO_COND (t));
13881 finish_do_stmt (tmp, stmt, false);
13882 break;
13883
13884 case IF_STMT:
13885 stmt = begin_if_stmt ();
13886 tmp = RECUR (IF_COND (t));
13887 finish_if_stmt_cond (tmp, stmt);
13888 RECUR (THEN_CLAUSE (t));
13889 finish_then_clause (stmt);
13890
13891 if (ELSE_CLAUSE (t))
13892 {
13893 begin_else_clause (stmt);
13894 RECUR (ELSE_CLAUSE (t));
13895 finish_else_clause (stmt);
13896 }
13897
13898 finish_if_stmt (stmt);
13899 break;
13900
13901 case BIND_EXPR:
13902 if (BIND_EXPR_BODY_BLOCK (t))
13903 stmt = begin_function_body ();
13904 else
13905 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
13906 ? BCS_TRY_BLOCK : 0);
13907
13908 RECUR (BIND_EXPR_BODY (t));
13909
13910 if (BIND_EXPR_BODY_BLOCK (t))
13911 finish_function_body (stmt);
13912 else
13913 finish_compound_stmt (stmt);
13914 break;
13915
13916 case BREAK_STMT:
13917 finish_break_stmt ();
13918 break;
13919
13920 case CONTINUE_STMT:
13921 finish_continue_stmt ();
13922 break;
13923
13924 case SWITCH_STMT:
13925 stmt = begin_switch_stmt ();
13926 tmp = RECUR (SWITCH_STMT_COND (t));
13927 finish_switch_cond (tmp, stmt);
13928 RECUR (SWITCH_STMT_BODY (t));
13929 finish_switch_stmt (stmt);
13930 break;
13931
13932 case CASE_LABEL_EXPR:
13933 {
13934 tree low = RECUR (CASE_LOW (t));
13935 tree high = RECUR (CASE_HIGH (t));
13936 finish_case_label (EXPR_LOCATION (t), low, high);
13937 }
13938 break;
13939
13940 case LABEL_EXPR:
13941 {
13942 tree decl = LABEL_EXPR_LABEL (t);
13943 tree label;
13944
13945 label = finish_label_stmt (DECL_NAME (decl));
13946 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
13947 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
13948 }
13949 break;
13950
13951 case GOTO_EXPR:
13952 tmp = GOTO_DESTINATION (t);
13953 if (TREE_CODE (tmp) != LABEL_DECL)
13954 /* Computed goto's must be tsubst'd into. On the other hand,
13955 non-computed gotos must not be; the identifier in question
13956 will have no binding. */
13957 tmp = RECUR (tmp);
13958 else
13959 tmp = DECL_NAME (tmp);
13960 finish_goto_stmt (tmp);
13961 break;
13962
13963 case ASM_EXPR:
13964 {
13965 tree string = RECUR (ASM_STRING (t));
13966 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
13967 complain, in_decl);
13968 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
13969 complain, in_decl);
13970 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
13971 complain, in_decl);
13972 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
13973 complain, in_decl);
13974 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
13975 clobbers, labels);
13976 tree asm_expr = tmp;
13977 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
13978 asm_expr = TREE_OPERAND (asm_expr, 0);
13979 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
13980 }
13981 break;
13982
13983 case TRY_BLOCK:
13984 if (CLEANUP_P (t))
13985 {
13986 stmt = begin_try_block ();
13987 RECUR (TRY_STMTS (t));
13988 finish_cleanup_try_block (stmt);
13989 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
13990 }
13991 else
13992 {
13993 tree compound_stmt = NULL_TREE;
13994
13995 if (FN_TRY_BLOCK_P (t))
13996 stmt = begin_function_try_block (&compound_stmt);
13997 else
13998 stmt = begin_try_block ();
13999
14000 RECUR (TRY_STMTS (t));
14001
14002 if (FN_TRY_BLOCK_P (t))
14003 finish_function_try_block (stmt);
14004 else
14005 finish_try_block (stmt);
14006
14007 RECUR (TRY_HANDLERS (t));
14008 if (FN_TRY_BLOCK_P (t))
14009 finish_function_handler_sequence (stmt, compound_stmt);
14010 else
14011 finish_handler_sequence (stmt);
14012 }
14013 break;
14014
14015 case HANDLER:
14016 {
14017 tree decl = HANDLER_PARMS (t);
14018
14019 if (decl)
14020 {
14021 decl = tsubst (decl, args, complain, in_decl);
14022 /* Prevent instantiate_decl from trying to instantiate
14023 this variable. We've already done all that needs to be
14024 done. */
14025 if (decl != error_mark_node)
14026 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
14027 }
14028 stmt = begin_handler ();
14029 finish_handler_parms (decl, stmt);
14030 RECUR (HANDLER_BODY (t));
14031 finish_handler (stmt);
14032 }
14033 break;
14034
14035 case TAG_DEFN:
14036 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
14037 if (CLASS_TYPE_P (tmp))
14038 {
14039 /* Local classes are not independent templates; they are
14040 instantiated along with their containing function. And this
14041 way we don't have to deal with pushing out of one local class
14042 to instantiate a member of another local class. */
14043 tree fn;
14044 /* Closures are handled by the LAMBDA_EXPR. */
14045 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
14046 complete_type (tmp);
14047 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
14048 if (!DECL_ARTIFICIAL (fn))
14049 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
14050 }
14051 break;
14052
14053 case STATIC_ASSERT:
14054 {
14055 tree condition;
14056
14057 ++c_inhibit_evaluation_warnings;
14058 condition =
14059 tsubst_expr (STATIC_ASSERT_CONDITION (t),
14060 args,
14061 complain, in_decl,
14062 /*integral_constant_expression_p=*/true);
14063 --c_inhibit_evaluation_warnings;
14064
14065 finish_static_assert (condition,
14066 STATIC_ASSERT_MESSAGE (t),
14067 STATIC_ASSERT_SOURCE_LOCATION (t),
14068 /*member_p=*/false);
14069 }
14070 break;
14071
14072 case OMP_PARALLEL:
14073 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), false,
14074 args, complain, in_decl);
14075 stmt = begin_omp_parallel ();
14076 RECUR (OMP_PARALLEL_BODY (t));
14077 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
14078 = OMP_PARALLEL_COMBINED (t);
14079 break;
14080
14081 case OMP_TASK:
14082 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), false,
14083 args, complain, in_decl);
14084 stmt = begin_omp_task ();
14085 RECUR (OMP_TASK_BODY (t));
14086 finish_omp_task (tmp, stmt);
14087 break;
14088
14089 case OMP_FOR:
14090 case OMP_SIMD:
14091 case CILK_SIMD:
14092 case CILK_FOR:
14093 case OMP_DISTRIBUTE:
14094 {
14095 tree clauses, body, pre_body;
14096 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
14097 tree incrv = NULL_TREE;
14098 int i;
14099
14100 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), false,
14101 args, complain, in_decl);
14102 if (OMP_FOR_INIT (t) != NULL_TREE)
14103 {
14104 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14105 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14106 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14107 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14108 }
14109
14110 stmt = begin_omp_structured_block ();
14111
14112 pre_body = push_stmt_list ();
14113 RECUR (OMP_FOR_PRE_BODY (t));
14114 pre_body = pop_stmt_list (pre_body);
14115
14116 if (OMP_FOR_INIT (t) != NULL_TREE)
14117 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
14118 tsubst_omp_for_iterator (t, i, declv, initv, condv, incrv,
14119 &clauses, args, complain, in_decl,
14120 integral_constant_expression_p);
14121
14122 body = push_stmt_list ();
14123 RECUR (OMP_FOR_BODY (t));
14124 body = pop_stmt_list (body);
14125
14126 if (OMP_FOR_INIT (t) != NULL_TREE)
14127 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv, initv,
14128 condv, incrv, body, pre_body, clauses);
14129 else
14130 {
14131 t = make_node (TREE_CODE (t));
14132 TREE_TYPE (t) = void_type_node;
14133 OMP_FOR_BODY (t) = body;
14134 OMP_FOR_PRE_BODY (t) = pre_body;
14135 OMP_FOR_CLAUSES (t) = clauses;
14136 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
14137 add_stmt (t);
14138 }
14139
14140 add_stmt (finish_omp_structured_block (stmt));
14141 }
14142 break;
14143
14144 case OMP_SECTIONS:
14145 case OMP_SINGLE:
14146 case OMP_TEAMS:
14147 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
14148 args, complain, in_decl);
14149 stmt = push_stmt_list ();
14150 RECUR (OMP_BODY (t));
14151 stmt = pop_stmt_list (stmt);
14152
14153 t = copy_node (t);
14154 OMP_BODY (t) = stmt;
14155 OMP_CLAUSES (t) = tmp;
14156 add_stmt (t);
14157 break;
14158
14159 case OMP_TARGET_DATA:
14160 case OMP_TARGET:
14161 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
14162 args, complain, in_decl);
14163 keep_next_level (true);
14164 stmt = begin_omp_structured_block ();
14165
14166 RECUR (OMP_BODY (t));
14167 stmt = finish_omp_structured_block (stmt);
14168
14169 t = copy_node (t);
14170 OMP_BODY (t) = stmt;
14171 OMP_CLAUSES (t) = tmp;
14172 add_stmt (t);
14173 break;
14174
14175 case OMP_TARGET_UPDATE:
14176 tmp = tsubst_omp_clauses (OMP_TARGET_UPDATE_CLAUSES (t), false,
14177 args, complain, in_decl);
14178 t = copy_node (t);
14179 OMP_CLAUSES (t) = tmp;
14180 add_stmt (t);
14181 break;
14182
14183 case OMP_SECTION:
14184 case OMP_CRITICAL:
14185 case OMP_MASTER:
14186 case OMP_TASKGROUP:
14187 case OMP_ORDERED:
14188 stmt = push_stmt_list ();
14189 RECUR (OMP_BODY (t));
14190 stmt = pop_stmt_list (stmt);
14191
14192 t = copy_node (t);
14193 OMP_BODY (t) = stmt;
14194 add_stmt (t);
14195 break;
14196
14197 case OMP_ATOMIC:
14198 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
14199 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
14200 {
14201 tree op1 = TREE_OPERAND (t, 1);
14202 tree rhs1 = NULL_TREE;
14203 tree lhs, rhs;
14204 if (TREE_CODE (op1) == COMPOUND_EXPR)
14205 {
14206 rhs1 = RECUR (TREE_OPERAND (op1, 0));
14207 op1 = TREE_OPERAND (op1, 1);
14208 }
14209 lhs = RECUR (TREE_OPERAND (op1, 0));
14210 rhs = RECUR (TREE_OPERAND (op1, 1));
14211 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
14212 NULL_TREE, NULL_TREE, rhs1,
14213 OMP_ATOMIC_SEQ_CST (t));
14214 }
14215 else
14216 {
14217 tree op1 = TREE_OPERAND (t, 1);
14218 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
14219 tree rhs1 = NULL_TREE;
14220 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
14221 enum tree_code opcode = NOP_EXPR;
14222 if (code == OMP_ATOMIC_READ)
14223 {
14224 v = RECUR (TREE_OPERAND (op1, 0));
14225 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
14226 }
14227 else if (code == OMP_ATOMIC_CAPTURE_OLD
14228 || code == OMP_ATOMIC_CAPTURE_NEW)
14229 {
14230 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
14231 v = RECUR (TREE_OPERAND (op1, 0));
14232 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
14233 if (TREE_CODE (op11) == COMPOUND_EXPR)
14234 {
14235 rhs1 = RECUR (TREE_OPERAND (op11, 0));
14236 op11 = TREE_OPERAND (op11, 1);
14237 }
14238 lhs = RECUR (TREE_OPERAND (op11, 0));
14239 rhs = RECUR (TREE_OPERAND (op11, 1));
14240 opcode = TREE_CODE (op11);
14241 if (opcode == MODIFY_EXPR)
14242 opcode = NOP_EXPR;
14243 }
14244 else
14245 {
14246 code = OMP_ATOMIC;
14247 lhs = RECUR (TREE_OPERAND (op1, 0));
14248 rhs = RECUR (TREE_OPERAND (op1, 1));
14249 }
14250 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
14251 OMP_ATOMIC_SEQ_CST (t));
14252 }
14253 break;
14254
14255 case TRANSACTION_EXPR:
14256 {
14257 int flags = 0;
14258 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
14259 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
14260
14261 if (TRANSACTION_EXPR_IS_STMT (t))
14262 {
14263 tree body = TRANSACTION_EXPR_BODY (t);
14264 tree noex = NULL_TREE;
14265 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
14266 {
14267 noex = MUST_NOT_THROW_COND (body);
14268 if (noex == NULL_TREE)
14269 noex = boolean_true_node;
14270 body = TREE_OPERAND (body, 0);
14271 }
14272 stmt = begin_transaction_stmt (input_location, NULL, flags);
14273 RECUR (body);
14274 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
14275 }
14276 else
14277 {
14278 stmt = build_transaction_expr (EXPR_LOCATION (t),
14279 RECUR (TRANSACTION_EXPR_BODY (t)),
14280 flags, NULL_TREE);
14281 RETURN (stmt);
14282 }
14283 }
14284 break;
14285
14286 case MUST_NOT_THROW_EXPR:
14287 {
14288 tree op0 = RECUR (TREE_OPERAND (t, 0));
14289 tree cond = RECUR (MUST_NOT_THROW_COND (t));
14290 RETURN (build_must_not_throw_expr (op0, cond));
14291 }
14292
14293 case EXPR_PACK_EXPANSION:
14294 error ("invalid use of pack expansion expression");
14295 RETURN (error_mark_node);
14296
14297 case NONTYPE_ARGUMENT_PACK:
14298 error ("use %<...%> to expand argument pack");
14299 RETURN (error_mark_node);
14300
14301 case CILK_SPAWN_STMT:
14302 cfun->calls_cilk_spawn = 1;
14303 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
14304
14305 case CILK_SYNC_STMT:
14306 RETURN (build_cilk_sync ());
14307
14308 case COMPOUND_EXPR:
14309 tmp = RECUR (TREE_OPERAND (t, 0));
14310 if (tmp == NULL_TREE)
14311 /* If the first operand was a statement, we're done with it. */
14312 RETURN (RECUR (TREE_OPERAND (t, 1)));
14313 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
14314 RECUR (TREE_OPERAND (t, 1)),
14315 complain));
14316
14317 case ANNOTATE_EXPR:
14318 tmp = RECUR (TREE_OPERAND (t, 0));
14319 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
14320 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
14321
14322 default:
14323 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
14324
14325 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
14326 /*function_p=*/false,
14327 integral_constant_expression_p));
14328 }
14329
14330 RETURN (NULL_TREE);
14331 out:
14332 input_location = loc;
14333 return r;
14334 #undef RECUR
14335 #undef RETURN
14336 }
14337
14338 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
14339 function. For description of the body see comment above
14340 cp_parser_omp_declare_reduction_exprs. */
14341
14342 static void
14343 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
14344 {
14345 if (t == NULL_TREE || t == error_mark_node)
14346 return;
14347
14348 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
14349
14350 tree_stmt_iterator tsi;
14351 int i;
14352 tree stmts[7];
14353 memset (stmts, 0, sizeof stmts);
14354 for (i = 0, tsi = tsi_start (t);
14355 i < 7 && !tsi_end_p (tsi);
14356 i++, tsi_next (&tsi))
14357 stmts[i] = tsi_stmt (tsi);
14358 gcc_assert (tsi_end_p (tsi));
14359
14360 if (i >= 3)
14361 {
14362 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
14363 && TREE_CODE (stmts[1]) == DECL_EXPR);
14364 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
14365 args, complain, in_decl);
14366 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
14367 args, complain, in_decl);
14368 DECL_CONTEXT (omp_out) = current_function_decl;
14369 DECL_CONTEXT (omp_in) = current_function_decl;
14370 keep_next_level (true);
14371 tree block = begin_omp_structured_block ();
14372 tsubst_expr (stmts[2], args, complain, in_decl, false);
14373 block = finish_omp_structured_block (block);
14374 block = maybe_cleanup_point_expr_void (block);
14375 add_decl_expr (omp_out);
14376 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
14377 TREE_NO_WARNING (omp_out) = 1;
14378 add_decl_expr (omp_in);
14379 finish_expr_stmt (block);
14380 }
14381 if (i >= 6)
14382 {
14383 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
14384 && TREE_CODE (stmts[4]) == DECL_EXPR);
14385 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
14386 args, complain, in_decl);
14387 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
14388 args, complain, in_decl);
14389 DECL_CONTEXT (omp_priv) = current_function_decl;
14390 DECL_CONTEXT (omp_orig) = current_function_decl;
14391 keep_next_level (true);
14392 tree block = begin_omp_structured_block ();
14393 tsubst_expr (stmts[5], args, complain, in_decl, false);
14394 block = finish_omp_structured_block (block);
14395 block = maybe_cleanup_point_expr_void (block);
14396 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
14397 add_decl_expr (omp_priv);
14398 add_decl_expr (omp_orig);
14399 finish_expr_stmt (block);
14400 if (i == 7)
14401 add_decl_expr (omp_orig);
14402 }
14403 }
14404
14405 /* T is a postfix-expression that is not being used in a function
14406 call. Return the substituted version of T. */
14407
14408 static tree
14409 tsubst_non_call_postfix_expression (tree t, tree args,
14410 tsubst_flags_t complain,
14411 tree in_decl)
14412 {
14413 if (TREE_CODE (t) == SCOPE_REF)
14414 t = tsubst_qualified_id (t, args, complain, in_decl,
14415 /*done=*/false, /*address_p=*/false);
14416 else
14417 t = tsubst_copy_and_build (t, args, complain, in_decl,
14418 /*function_p=*/false,
14419 /*integral_constant_expression_p=*/false);
14420
14421 return t;
14422 }
14423
14424 /* Sentinel to disable certain warnings during template substitution. */
14425
14426 struct warning_sentinel {
14427 int &flag;
14428 int val;
14429 warning_sentinel(int& flag, bool suppress=true)
14430 : flag(flag), val(flag) { if (suppress) flag = 0; }
14431 ~warning_sentinel() { flag = val; }
14432 };
14433
14434 /* Like tsubst but deals with expressions and performs semantic
14435 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
14436
14437 tree
14438 tsubst_copy_and_build (tree t,
14439 tree args,
14440 tsubst_flags_t complain,
14441 tree in_decl,
14442 bool function_p,
14443 bool integral_constant_expression_p)
14444 {
14445 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
14446 #define RECUR(NODE) \
14447 tsubst_copy_and_build (NODE, args, complain, in_decl, \
14448 /*function_p=*/false, \
14449 integral_constant_expression_p)
14450
14451 tree retval, op1;
14452 location_t loc;
14453
14454 if (t == NULL_TREE || t == error_mark_node)
14455 return t;
14456
14457 loc = input_location;
14458 if (EXPR_HAS_LOCATION (t))
14459 input_location = EXPR_LOCATION (t);
14460
14461 /* N3276 decltype magic only applies to calls at the top level or on the
14462 right side of a comma. */
14463 tsubst_flags_t decltype_flag = (complain & tf_decltype);
14464 complain &= ~tf_decltype;
14465
14466 switch (TREE_CODE (t))
14467 {
14468 case USING_DECL:
14469 t = DECL_NAME (t);
14470 /* Fall through. */
14471 case IDENTIFIER_NODE:
14472 {
14473 tree decl;
14474 cp_id_kind idk;
14475 bool non_integral_constant_expression_p;
14476 const char *error_msg;
14477
14478 if (IDENTIFIER_TYPENAME_P (t))
14479 {
14480 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14481 t = mangle_conv_op_name_for_type (new_type);
14482 }
14483
14484 /* Look up the name. */
14485 decl = lookup_name (t);
14486
14487 /* By convention, expressions use ERROR_MARK_NODE to indicate
14488 failure, not NULL_TREE. */
14489 if (decl == NULL_TREE)
14490 decl = error_mark_node;
14491
14492 decl = finish_id_expression (t, decl, NULL_TREE,
14493 &idk,
14494 integral_constant_expression_p,
14495 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
14496 &non_integral_constant_expression_p,
14497 /*template_p=*/false,
14498 /*done=*/true,
14499 /*address_p=*/false,
14500 /*template_arg_p=*/false,
14501 &error_msg,
14502 input_location);
14503 if (error_msg)
14504 error (error_msg);
14505 if (!function_p && identifier_p (decl))
14506 {
14507 if (complain & tf_error)
14508 unqualified_name_lookup_error (decl);
14509 decl = error_mark_node;
14510 }
14511 RETURN (decl);
14512 }
14513
14514 case TEMPLATE_ID_EXPR:
14515 {
14516 tree object;
14517 tree templ = RECUR (TREE_OPERAND (t, 0));
14518 tree targs = TREE_OPERAND (t, 1);
14519
14520 if (targs)
14521 targs = tsubst_template_args (targs, args, complain, in_decl);
14522
14523 if (TREE_CODE (templ) == COMPONENT_REF)
14524 {
14525 object = TREE_OPERAND (templ, 0);
14526 templ = TREE_OPERAND (templ, 1);
14527 }
14528 else
14529 object = NULL_TREE;
14530 templ = lookup_template_function (templ, targs);
14531
14532 if (object)
14533 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
14534 object, templ, NULL_TREE));
14535 else
14536 RETURN (baselink_for_fns (templ));
14537 }
14538
14539 case INDIRECT_REF:
14540 {
14541 tree r = RECUR (TREE_OPERAND (t, 0));
14542
14543 if (REFERENCE_REF_P (t))
14544 {
14545 /* A type conversion to reference type will be enclosed in
14546 such an indirect ref, but the substitution of the cast
14547 will have also added such an indirect ref. */
14548 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
14549 r = convert_from_reference (r);
14550 }
14551 else
14552 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
14553 complain|decltype_flag);
14554 RETURN (r);
14555 }
14556
14557 case NOP_EXPR:
14558 {
14559 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14560 tree op0 = RECUR (TREE_OPERAND (t, 0));
14561 RETURN (build_nop (type, op0));
14562 }
14563
14564 case IMPLICIT_CONV_EXPR:
14565 {
14566 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14567 tree expr = RECUR (TREE_OPERAND (t, 0));
14568 int flags = LOOKUP_IMPLICIT;
14569 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
14570 flags = LOOKUP_NORMAL;
14571 RETURN (perform_implicit_conversion_flags (type, expr, complain,
14572 flags));
14573 }
14574
14575 case CONVERT_EXPR:
14576 {
14577 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14578 tree op0 = RECUR (TREE_OPERAND (t, 0));
14579 RETURN (build1 (CONVERT_EXPR, type, op0));
14580 }
14581
14582 case CAST_EXPR:
14583 case REINTERPRET_CAST_EXPR:
14584 case CONST_CAST_EXPR:
14585 case DYNAMIC_CAST_EXPR:
14586 case STATIC_CAST_EXPR:
14587 {
14588 tree type;
14589 tree op, r = NULL_TREE;
14590
14591 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14592 if (integral_constant_expression_p
14593 && !cast_valid_in_integral_constant_expression_p (type))
14594 {
14595 if (complain & tf_error)
14596 error ("a cast to a type other than an integral or "
14597 "enumeration type cannot appear in a constant-expression");
14598 RETURN (error_mark_node);
14599 }
14600
14601 op = RECUR (TREE_OPERAND (t, 0));
14602
14603 warning_sentinel s(warn_useless_cast);
14604 switch (TREE_CODE (t))
14605 {
14606 case CAST_EXPR:
14607 r = build_functional_cast (type, op, complain);
14608 break;
14609 case REINTERPRET_CAST_EXPR:
14610 r = build_reinterpret_cast (type, op, complain);
14611 break;
14612 case CONST_CAST_EXPR:
14613 r = build_const_cast (type, op, complain);
14614 break;
14615 case DYNAMIC_CAST_EXPR:
14616 r = build_dynamic_cast (type, op, complain);
14617 break;
14618 case STATIC_CAST_EXPR:
14619 r = build_static_cast (type, op, complain);
14620 break;
14621 default:
14622 gcc_unreachable ();
14623 }
14624
14625 RETURN (r);
14626 }
14627
14628 case POSTDECREMENT_EXPR:
14629 case POSTINCREMENT_EXPR:
14630 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14631 args, complain, in_decl);
14632 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
14633 complain|decltype_flag));
14634
14635 case PREDECREMENT_EXPR:
14636 case PREINCREMENT_EXPR:
14637 case NEGATE_EXPR:
14638 case BIT_NOT_EXPR:
14639 case ABS_EXPR:
14640 case TRUTH_NOT_EXPR:
14641 case UNARY_PLUS_EXPR: /* Unary + */
14642 case REALPART_EXPR:
14643 case IMAGPART_EXPR:
14644 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
14645 RECUR (TREE_OPERAND (t, 0)),
14646 complain|decltype_flag));
14647
14648 case FIX_TRUNC_EXPR:
14649 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
14650 0, complain));
14651
14652 case ADDR_EXPR:
14653 op1 = TREE_OPERAND (t, 0);
14654 if (TREE_CODE (op1) == LABEL_DECL)
14655 RETURN (finish_label_address_expr (DECL_NAME (op1),
14656 EXPR_LOCATION (op1)));
14657 if (TREE_CODE (op1) == SCOPE_REF)
14658 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
14659 /*done=*/true, /*address_p=*/true);
14660 else
14661 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
14662 in_decl);
14663 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
14664 complain|decltype_flag));
14665
14666 case PLUS_EXPR:
14667 case MINUS_EXPR:
14668 case MULT_EXPR:
14669 case TRUNC_DIV_EXPR:
14670 case CEIL_DIV_EXPR:
14671 case FLOOR_DIV_EXPR:
14672 case ROUND_DIV_EXPR:
14673 case EXACT_DIV_EXPR:
14674 case BIT_AND_EXPR:
14675 case BIT_IOR_EXPR:
14676 case BIT_XOR_EXPR:
14677 case TRUNC_MOD_EXPR:
14678 case FLOOR_MOD_EXPR:
14679 case TRUTH_ANDIF_EXPR:
14680 case TRUTH_ORIF_EXPR:
14681 case TRUTH_AND_EXPR:
14682 case TRUTH_OR_EXPR:
14683 case RSHIFT_EXPR:
14684 case LSHIFT_EXPR:
14685 case RROTATE_EXPR:
14686 case LROTATE_EXPR:
14687 case EQ_EXPR:
14688 case NE_EXPR:
14689 case MAX_EXPR:
14690 case MIN_EXPR:
14691 case LE_EXPR:
14692 case GE_EXPR:
14693 case LT_EXPR:
14694 case GT_EXPR:
14695 case MEMBER_REF:
14696 case DOTSTAR_EXPR:
14697 {
14698 warning_sentinel s1(warn_type_limits);
14699 warning_sentinel s2(warn_div_by_zero);
14700 tree op0 = RECUR (TREE_OPERAND (t, 0));
14701 tree op1 = RECUR (TREE_OPERAND (t, 1));
14702 tree r = build_x_binary_op
14703 (input_location, TREE_CODE (t),
14704 op0,
14705 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
14706 ? ERROR_MARK
14707 : TREE_CODE (TREE_OPERAND (t, 0))),
14708 op1,
14709 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
14710 ? ERROR_MARK
14711 : TREE_CODE (TREE_OPERAND (t, 1))),
14712 /*overload=*/NULL,
14713 complain|decltype_flag);
14714 if (EXPR_P (r) && TREE_NO_WARNING (t))
14715 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14716
14717 RETURN (r);
14718 }
14719
14720 case POINTER_PLUS_EXPR:
14721 {
14722 tree op0 = RECUR (TREE_OPERAND (t, 0));
14723 tree op1 = RECUR (TREE_OPERAND (t, 1));
14724 return fold_build_pointer_plus (op0, op1);
14725 }
14726
14727 case SCOPE_REF:
14728 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
14729 /*address_p=*/false));
14730 case ARRAY_REF:
14731 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14732 args, complain, in_decl);
14733 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
14734 RECUR (TREE_OPERAND (t, 1)),
14735 complain|decltype_flag));
14736
14737 case ARRAY_NOTATION_REF:
14738 {
14739 tree start_index, length, stride;
14740 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
14741 args, complain, in_decl);
14742 start_index = RECUR (ARRAY_NOTATION_START (t));
14743 length = RECUR (ARRAY_NOTATION_LENGTH (t));
14744 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
14745 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
14746 length, stride, TREE_TYPE (op1)));
14747 }
14748 case SIZEOF_EXPR:
14749 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
14750 RETURN (tsubst_copy (t, args, complain, in_decl));
14751 /* Fall through */
14752
14753 case ALIGNOF_EXPR:
14754 {
14755 tree r;
14756
14757 op1 = TREE_OPERAND (t, 0);
14758 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
14759 op1 = TREE_TYPE (op1);
14760 if (!args)
14761 {
14762 /* When there are no ARGS, we are trying to evaluate a
14763 non-dependent expression from the parser. Trying to do
14764 the substitutions may not work. */
14765 if (!TYPE_P (op1))
14766 op1 = TREE_TYPE (op1);
14767 }
14768 else
14769 {
14770 ++cp_unevaluated_operand;
14771 ++c_inhibit_evaluation_warnings;
14772 if (TYPE_P (op1))
14773 op1 = tsubst (op1, args, complain, in_decl);
14774 else
14775 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14776 /*function_p=*/false,
14777 /*integral_constant_expression_p=*/
14778 false);
14779 --cp_unevaluated_operand;
14780 --c_inhibit_evaluation_warnings;
14781 }
14782 if (TYPE_P (op1))
14783 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
14784 complain & tf_error);
14785 else
14786 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
14787 complain & tf_error);
14788 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
14789 {
14790 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
14791 {
14792 if (!processing_template_decl && TYPE_P (op1))
14793 {
14794 r = build_min (SIZEOF_EXPR, size_type_node,
14795 build1 (NOP_EXPR, op1, error_mark_node));
14796 SIZEOF_EXPR_TYPE_P (r) = 1;
14797 }
14798 else
14799 r = build_min (SIZEOF_EXPR, size_type_node, op1);
14800 TREE_SIDE_EFFECTS (r) = 0;
14801 TREE_READONLY (r) = 1;
14802 }
14803 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
14804 }
14805 RETURN (r);
14806 }
14807
14808 case AT_ENCODE_EXPR:
14809 {
14810 op1 = TREE_OPERAND (t, 0);
14811 ++cp_unevaluated_operand;
14812 ++c_inhibit_evaluation_warnings;
14813 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14814 /*function_p=*/false,
14815 /*integral_constant_expression_p=*/false);
14816 --cp_unevaluated_operand;
14817 --c_inhibit_evaluation_warnings;
14818 RETURN (objc_build_encode_expr (op1));
14819 }
14820
14821 case NOEXCEPT_EXPR:
14822 op1 = TREE_OPERAND (t, 0);
14823 ++cp_unevaluated_operand;
14824 ++c_inhibit_evaluation_warnings;
14825 ++cp_noexcept_operand;
14826 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14827 /*function_p=*/false,
14828 /*integral_constant_expression_p=*/false);
14829 --cp_unevaluated_operand;
14830 --c_inhibit_evaluation_warnings;
14831 --cp_noexcept_operand;
14832 RETURN (finish_noexcept_expr (op1, complain));
14833
14834 case MODOP_EXPR:
14835 {
14836 warning_sentinel s(warn_div_by_zero);
14837 tree lhs = RECUR (TREE_OPERAND (t, 0));
14838 tree rhs = RECUR (TREE_OPERAND (t, 2));
14839 tree r = build_x_modify_expr
14840 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
14841 complain|decltype_flag);
14842 /* TREE_NO_WARNING must be set if either the expression was
14843 parenthesized or it uses an operator such as >>= rather
14844 than plain assignment. In the former case, it was already
14845 set and must be copied. In the latter case,
14846 build_x_modify_expr sets it and it must not be reset
14847 here. */
14848 if (TREE_NO_WARNING (t))
14849 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14850
14851 RETURN (r);
14852 }
14853
14854 case ARROW_EXPR:
14855 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14856 args, complain, in_decl);
14857 /* Remember that there was a reference to this entity. */
14858 if (DECL_P (op1))
14859 mark_used (op1);
14860 RETURN (build_x_arrow (input_location, op1, complain));
14861
14862 case NEW_EXPR:
14863 {
14864 tree placement = RECUR (TREE_OPERAND (t, 0));
14865 tree init = RECUR (TREE_OPERAND (t, 3));
14866 vec<tree, va_gc> *placement_vec;
14867 vec<tree, va_gc> *init_vec;
14868 tree ret;
14869
14870 if (placement == NULL_TREE)
14871 placement_vec = NULL;
14872 else
14873 {
14874 placement_vec = make_tree_vector ();
14875 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
14876 vec_safe_push (placement_vec, TREE_VALUE (placement));
14877 }
14878
14879 /* If there was an initializer in the original tree, but it
14880 instantiated to an empty list, then we should pass a
14881 non-NULL empty vector to tell build_new that it was an
14882 empty initializer() rather than no initializer. This can
14883 only happen when the initializer is a pack expansion whose
14884 parameter packs are of length zero. */
14885 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
14886 init_vec = NULL;
14887 else
14888 {
14889 init_vec = make_tree_vector ();
14890 if (init == void_node)
14891 gcc_assert (init_vec != NULL);
14892 else
14893 {
14894 for (; init != NULL_TREE; init = TREE_CHAIN (init))
14895 vec_safe_push (init_vec, TREE_VALUE (init));
14896 }
14897 }
14898
14899 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
14900 tree op2 = RECUR (TREE_OPERAND (t, 2));
14901 ret = build_new (&placement_vec, op1, op2, &init_vec,
14902 NEW_EXPR_USE_GLOBAL (t),
14903 complain);
14904
14905 if (placement_vec != NULL)
14906 release_tree_vector (placement_vec);
14907 if (init_vec != NULL)
14908 release_tree_vector (init_vec);
14909
14910 RETURN (ret);
14911 }
14912
14913 case DELETE_EXPR:
14914 {
14915 tree op0 = RECUR (TREE_OPERAND (t, 0));
14916 tree op1 = RECUR (TREE_OPERAND (t, 1));
14917 RETURN (delete_sanity (op0, op1,
14918 DELETE_EXPR_USE_VEC (t),
14919 DELETE_EXPR_USE_GLOBAL (t),
14920 complain));
14921 }
14922
14923 case COMPOUND_EXPR:
14924 {
14925 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
14926 complain & ~tf_decltype, in_decl,
14927 /*function_p=*/false,
14928 integral_constant_expression_p);
14929 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
14930 op0,
14931 RECUR (TREE_OPERAND (t, 1)),
14932 complain|decltype_flag));
14933 }
14934
14935 case CALL_EXPR:
14936 {
14937 tree function;
14938 vec<tree, va_gc> *call_args;
14939 unsigned int nargs, i;
14940 bool qualified_p;
14941 bool koenig_p;
14942 tree ret;
14943
14944 function = CALL_EXPR_FN (t);
14945 /* When we parsed the expression, we determined whether or
14946 not Koenig lookup should be performed. */
14947 koenig_p = KOENIG_LOOKUP_P (t);
14948 if (TREE_CODE (function) == SCOPE_REF)
14949 {
14950 qualified_p = true;
14951 function = tsubst_qualified_id (function, args, complain, in_decl,
14952 /*done=*/false,
14953 /*address_p=*/false);
14954 }
14955 else if (koenig_p && identifier_p (function))
14956 {
14957 /* Do nothing; calling tsubst_copy_and_build on an identifier
14958 would incorrectly perform unqualified lookup again.
14959
14960 Note that we can also have an IDENTIFIER_NODE if the earlier
14961 unqualified lookup found a member function; in that case
14962 koenig_p will be false and we do want to do the lookup
14963 again to find the instantiated member function.
14964
14965 FIXME but doing that causes c++/15272, so we need to stop
14966 using IDENTIFIER_NODE in that situation. */
14967 qualified_p = false;
14968 }
14969 else
14970 {
14971 if (TREE_CODE (function) == COMPONENT_REF)
14972 {
14973 tree op = TREE_OPERAND (function, 1);
14974
14975 qualified_p = (TREE_CODE (op) == SCOPE_REF
14976 || (BASELINK_P (op)
14977 && BASELINK_QUALIFIED_P (op)));
14978 }
14979 else
14980 qualified_p = false;
14981
14982 if (TREE_CODE (function) == ADDR_EXPR
14983 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
14984 /* Avoid error about taking the address of a constructor. */
14985 function = TREE_OPERAND (function, 0);
14986
14987 function = tsubst_copy_and_build (function, args, complain,
14988 in_decl,
14989 !qualified_p,
14990 integral_constant_expression_p);
14991
14992 if (BASELINK_P (function))
14993 qualified_p = true;
14994 }
14995
14996 nargs = call_expr_nargs (t);
14997 call_args = make_tree_vector ();
14998 for (i = 0; i < nargs; ++i)
14999 {
15000 tree arg = CALL_EXPR_ARG (t, i);
15001
15002 if (!PACK_EXPANSION_P (arg))
15003 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
15004 else
15005 {
15006 /* Expand the pack expansion and push each entry onto
15007 CALL_ARGS. */
15008 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
15009 if (TREE_CODE (arg) == TREE_VEC)
15010 {
15011 unsigned int len, j;
15012
15013 len = TREE_VEC_LENGTH (arg);
15014 for (j = 0; j < len; ++j)
15015 {
15016 tree value = TREE_VEC_ELT (arg, j);
15017 if (value != NULL_TREE)
15018 value = convert_from_reference (value);
15019 vec_safe_push (call_args, value);
15020 }
15021 }
15022 else
15023 {
15024 /* A partial substitution. Add one entry. */
15025 vec_safe_push (call_args, arg);
15026 }
15027 }
15028 }
15029
15030 /* We do not perform argument-dependent lookup if normal
15031 lookup finds a non-function, in accordance with the
15032 expected resolution of DR 218. */
15033 if (koenig_p
15034 && ((is_overloaded_fn (function)
15035 /* If lookup found a member function, the Koenig lookup is
15036 not appropriate, even if an unqualified-name was used
15037 to denote the function. */
15038 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
15039 || identifier_p (function))
15040 /* Only do this when substitution turns a dependent call
15041 into a non-dependent call. */
15042 && type_dependent_expression_p_push (t)
15043 && !any_type_dependent_arguments_p (call_args))
15044 function = perform_koenig_lookup (function, call_args, tf_none);
15045
15046 if (identifier_p (function)
15047 && !any_type_dependent_arguments_p (call_args))
15048 {
15049 if (koenig_p && (complain & tf_warning_or_error))
15050 {
15051 /* For backwards compatibility and good diagnostics, try
15052 the unqualified lookup again if we aren't in SFINAE
15053 context. */
15054 tree unq = (tsubst_copy_and_build
15055 (function, args, complain, in_decl, true,
15056 integral_constant_expression_p));
15057 if (unq == error_mark_node)
15058 RETURN (error_mark_node);
15059
15060 if (unq != function)
15061 {
15062 tree fn = unq;
15063 if (INDIRECT_REF_P (fn))
15064 fn = TREE_OPERAND (fn, 0);
15065 if (TREE_CODE (fn) == COMPONENT_REF)
15066 fn = TREE_OPERAND (fn, 1);
15067 if (is_overloaded_fn (fn))
15068 fn = get_first_fn (fn);
15069 if (permerror (EXPR_LOC_OR_LOC (t, input_location),
15070 "%qD was not declared in this scope, "
15071 "and no declarations were found by "
15072 "argument-dependent lookup at the point "
15073 "of instantiation", function))
15074 {
15075 if (!DECL_P (fn))
15076 /* Can't say anything more. */;
15077 else if (DECL_CLASS_SCOPE_P (fn))
15078 {
15079 location_t loc = EXPR_LOC_OR_LOC (t,
15080 input_location);
15081 inform (loc,
15082 "declarations in dependent base %qT are "
15083 "not found by unqualified lookup",
15084 DECL_CLASS_CONTEXT (fn));
15085 if (current_class_ptr)
15086 inform (loc,
15087 "use %<this->%D%> instead", function);
15088 else
15089 inform (loc,
15090 "use %<%T::%D%> instead",
15091 current_class_name, function);
15092 }
15093 else
15094 inform (0, "%q+D declared here, later in the "
15095 "translation unit", fn);
15096 }
15097 function = unq;
15098 }
15099 }
15100 if (identifier_p (function))
15101 {
15102 if (complain & tf_error)
15103 unqualified_name_lookup_error (function);
15104 release_tree_vector (call_args);
15105 RETURN (error_mark_node);
15106 }
15107 }
15108
15109 /* Remember that there was a reference to this entity. */
15110 if (DECL_P (function))
15111 mark_used (function);
15112
15113 /* Put back tf_decltype for the actual call. */
15114 complain |= decltype_flag;
15115
15116 if (TREE_CODE (function) == OFFSET_REF)
15117 ret = build_offset_ref_call_from_tree (function, &call_args,
15118 complain);
15119 else if (TREE_CODE (function) == COMPONENT_REF)
15120 {
15121 tree instance = TREE_OPERAND (function, 0);
15122 tree fn = TREE_OPERAND (function, 1);
15123
15124 if (processing_template_decl
15125 && (type_dependent_expression_p (instance)
15126 || (!BASELINK_P (fn)
15127 && TREE_CODE (fn) != FIELD_DECL)
15128 || type_dependent_expression_p (fn)
15129 || any_type_dependent_arguments_p (call_args)))
15130 ret = build_nt_call_vec (function, call_args);
15131 else if (!BASELINK_P (fn))
15132 ret = finish_call_expr (function, &call_args,
15133 /*disallow_virtual=*/false,
15134 /*koenig_p=*/false,
15135 complain);
15136 else
15137 ret = (build_new_method_call
15138 (instance, fn,
15139 &call_args, NULL_TREE,
15140 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
15141 /*fn_p=*/NULL,
15142 complain));
15143 }
15144 else
15145 ret = finish_call_expr (function, &call_args,
15146 /*disallow_virtual=*/qualified_p,
15147 koenig_p,
15148 complain);
15149
15150 release_tree_vector (call_args);
15151
15152 RETURN (ret);
15153 }
15154
15155 case COND_EXPR:
15156 {
15157 tree cond = RECUR (TREE_OPERAND (t, 0));
15158 tree folded_cond = fold_non_dependent_expr (cond);
15159 tree exp1, exp2;
15160
15161 if (TREE_CODE (folded_cond) == INTEGER_CST)
15162 {
15163 if (integer_zerop (folded_cond))
15164 {
15165 ++c_inhibit_evaluation_warnings;
15166 exp1 = RECUR (TREE_OPERAND (t, 1));
15167 --c_inhibit_evaluation_warnings;
15168 exp2 = RECUR (TREE_OPERAND (t, 2));
15169 }
15170 else
15171 {
15172 exp1 = RECUR (TREE_OPERAND (t, 1));
15173 ++c_inhibit_evaluation_warnings;
15174 exp2 = RECUR (TREE_OPERAND (t, 2));
15175 --c_inhibit_evaluation_warnings;
15176 }
15177 cond = folded_cond;
15178 }
15179 else
15180 {
15181 exp1 = RECUR (TREE_OPERAND (t, 1));
15182 exp2 = RECUR (TREE_OPERAND (t, 2));
15183 }
15184
15185 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
15186 cond, exp1, exp2, complain));
15187 }
15188
15189 case PSEUDO_DTOR_EXPR:
15190 {
15191 tree op0 = RECUR (TREE_OPERAND (t, 0));
15192 tree op1 = RECUR (TREE_OPERAND (t, 1));
15193 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
15194 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
15195 input_location));
15196 }
15197
15198 case TREE_LIST:
15199 {
15200 tree purpose, value, chain;
15201
15202 if (t == void_list_node)
15203 RETURN (t);
15204
15205 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
15206 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
15207 {
15208 /* We have pack expansions, so expand those and
15209 create a new list out of it. */
15210 tree purposevec = NULL_TREE;
15211 tree valuevec = NULL_TREE;
15212 tree chain;
15213 int i, len = -1;
15214
15215 /* Expand the argument expressions. */
15216 if (TREE_PURPOSE (t))
15217 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
15218 complain, in_decl);
15219 if (TREE_VALUE (t))
15220 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
15221 complain, in_decl);
15222
15223 /* Build the rest of the list. */
15224 chain = TREE_CHAIN (t);
15225 if (chain && chain != void_type_node)
15226 chain = RECUR (chain);
15227
15228 /* Determine the number of arguments. */
15229 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
15230 {
15231 len = TREE_VEC_LENGTH (purposevec);
15232 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
15233 }
15234 else if (TREE_CODE (valuevec) == TREE_VEC)
15235 len = TREE_VEC_LENGTH (valuevec);
15236 else
15237 {
15238 /* Since we only performed a partial substitution into
15239 the argument pack, we only RETURN (a single list
15240 node. */
15241 if (purposevec == TREE_PURPOSE (t)
15242 && valuevec == TREE_VALUE (t)
15243 && chain == TREE_CHAIN (t))
15244 RETURN (t);
15245
15246 RETURN (tree_cons (purposevec, valuevec, chain));
15247 }
15248
15249 /* Convert the argument vectors into a TREE_LIST */
15250 i = len;
15251 while (i > 0)
15252 {
15253 /* Grab the Ith values. */
15254 i--;
15255 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
15256 : NULL_TREE;
15257 value
15258 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
15259 : NULL_TREE;
15260
15261 /* Build the list (backwards). */
15262 chain = tree_cons (purpose, value, chain);
15263 }
15264
15265 RETURN (chain);
15266 }
15267
15268 purpose = TREE_PURPOSE (t);
15269 if (purpose)
15270 purpose = RECUR (purpose);
15271 value = TREE_VALUE (t);
15272 if (value)
15273 value = RECUR (value);
15274 chain = TREE_CHAIN (t);
15275 if (chain && chain != void_type_node)
15276 chain = RECUR (chain);
15277 if (purpose == TREE_PURPOSE (t)
15278 && value == TREE_VALUE (t)
15279 && chain == TREE_CHAIN (t))
15280 RETURN (t);
15281 RETURN (tree_cons (purpose, value, chain));
15282 }
15283
15284 case COMPONENT_REF:
15285 {
15286 tree object;
15287 tree object_type;
15288 tree member;
15289 tree r;
15290
15291 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
15292 args, complain, in_decl);
15293 /* Remember that there was a reference to this entity. */
15294 if (DECL_P (object))
15295 mark_used (object);
15296 object_type = TREE_TYPE (object);
15297
15298 member = TREE_OPERAND (t, 1);
15299 if (BASELINK_P (member))
15300 member = tsubst_baselink (member,
15301 non_reference (TREE_TYPE (object)),
15302 args, complain, in_decl);
15303 else
15304 member = tsubst_copy (member, args, complain, in_decl);
15305 if (member == error_mark_node)
15306 RETURN (error_mark_node);
15307
15308 if (type_dependent_expression_p (object))
15309 /* We can't do much here. */;
15310 else if (!CLASS_TYPE_P (object_type))
15311 {
15312 if (scalarish_type_p (object_type))
15313 {
15314 tree s = NULL_TREE;
15315 tree dtor = member;
15316
15317 if (TREE_CODE (dtor) == SCOPE_REF)
15318 {
15319 s = TREE_OPERAND (dtor, 0);
15320 dtor = TREE_OPERAND (dtor, 1);
15321 }
15322 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
15323 {
15324 dtor = TREE_OPERAND (dtor, 0);
15325 if (TYPE_P (dtor))
15326 RETURN (finish_pseudo_destructor_expr
15327 (object, s, dtor, input_location));
15328 }
15329 }
15330 }
15331 else if (TREE_CODE (member) == SCOPE_REF
15332 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
15333 {
15334 /* Lookup the template functions now that we know what the
15335 scope is. */
15336 tree scope = TREE_OPERAND (member, 0);
15337 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
15338 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
15339 member = lookup_qualified_name (scope, tmpl,
15340 /*is_type_p=*/false,
15341 /*complain=*/false);
15342 if (BASELINK_P (member))
15343 {
15344 BASELINK_FUNCTIONS (member)
15345 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
15346 args);
15347 member = (adjust_result_of_qualified_name_lookup
15348 (member, BINFO_TYPE (BASELINK_BINFO (member)),
15349 object_type));
15350 }
15351 else
15352 {
15353 qualified_name_lookup_error (scope, tmpl, member,
15354 input_location);
15355 RETURN (error_mark_node);
15356 }
15357 }
15358 else if (TREE_CODE (member) == SCOPE_REF
15359 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
15360 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
15361 {
15362 if (complain & tf_error)
15363 {
15364 if (TYPE_P (TREE_OPERAND (member, 0)))
15365 error ("%qT is not a class or namespace",
15366 TREE_OPERAND (member, 0));
15367 else
15368 error ("%qD is not a class or namespace",
15369 TREE_OPERAND (member, 0));
15370 }
15371 RETURN (error_mark_node);
15372 }
15373 else if (TREE_CODE (member) == FIELD_DECL)
15374 {
15375 r = finish_non_static_data_member (member, object, NULL_TREE);
15376 if (TREE_CODE (r) == COMPONENT_REF)
15377 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
15378 RETURN (r);
15379 }
15380
15381 r = finish_class_member_access_expr (object, member,
15382 /*template_p=*/false,
15383 complain);
15384 if (TREE_CODE (r) == COMPONENT_REF)
15385 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
15386 RETURN (r);
15387 }
15388
15389 case THROW_EXPR:
15390 RETURN (build_throw
15391 (RECUR (TREE_OPERAND (t, 0))));
15392
15393 case CONSTRUCTOR:
15394 {
15395 vec<constructor_elt, va_gc> *n;
15396 constructor_elt *ce;
15397 unsigned HOST_WIDE_INT idx;
15398 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15399 bool process_index_p;
15400 int newlen;
15401 bool need_copy_p = false;
15402 tree r;
15403
15404 if (type == error_mark_node)
15405 RETURN (error_mark_node);
15406
15407 /* digest_init will do the wrong thing if we let it. */
15408 if (type && TYPE_PTRMEMFUNC_P (type))
15409 RETURN (t);
15410
15411 /* We do not want to process the index of aggregate
15412 initializers as they are identifier nodes which will be
15413 looked up by digest_init. */
15414 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
15415
15416 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
15417 newlen = vec_safe_length (n);
15418 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
15419 {
15420 if (ce->index && process_index_p
15421 /* An identifier index is looked up in the type
15422 being initialized, not the current scope. */
15423 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
15424 ce->index = RECUR (ce->index);
15425
15426 if (PACK_EXPANSION_P (ce->value))
15427 {
15428 /* Substitute into the pack expansion. */
15429 ce->value = tsubst_pack_expansion (ce->value, args, complain,
15430 in_decl);
15431
15432 if (ce->value == error_mark_node
15433 || PACK_EXPANSION_P (ce->value))
15434 ;
15435 else if (TREE_VEC_LENGTH (ce->value) == 1)
15436 /* Just move the argument into place. */
15437 ce->value = TREE_VEC_ELT (ce->value, 0);
15438 else
15439 {
15440 /* Update the length of the final CONSTRUCTOR
15441 arguments vector, and note that we will need to
15442 copy.*/
15443 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
15444 need_copy_p = true;
15445 }
15446 }
15447 else
15448 ce->value = RECUR (ce->value);
15449 }
15450
15451 if (need_copy_p)
15452 {
15453 vec<constructor_elt, va_gc> *old_n = n;
15454
15455 vec_alloc (n, newlen);
15456 FOR_EACH_VEC_ELT (*old_n, idx, ce)
15457 {
15458 if (TREE_CODE (ce->value) == TREE_VEC)
15459 {
15460 int i, len = TREE_VEC_LENGTH (ce->value);
15461 for (i = 0; i < len; ++i)
15462 CONSTRUCTOR_APPEND_ELT (n, 0,
15463 TREE_VEC_ELT (ce->value, i));
15464 }
15465 else
15466 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
15467 }
15468 }
15469
15470 r = build_constructor (init_list_type_node, n);
15471 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
15472
15473 if (TREE_HAS_CONSTRUCTOR (t))
15474 RETURN (finish_compound_literal (type, r, complain));
15475
15476 TREE_TYPE (r) = type;
15477 RETURN (r);
15478 }
15479
15480 case TYPEID_EXPR:
15481 {
15482 tree operand_0 = TREE_OPERAND (t, 0);
15483 if (TYPE_P (operand_0))
15484 {
15485 operand_0 = tsubst (operand_0, args, complain, in_decl);
15486 RETURN (get_typeid (operand_0, complain));
15487 }
15488 else
15489 {
15490 operand_0 = RECUR (operand_0);
15491 RETURN (build_typeid (operand_0, complain));
15492 }
15493 }
15494
15495 case VAR_DECL:
15496 if (!args)
15497 RETURN (t);
15498 else if (DECL_PACK_P (t))
15499 {
15500 /* We don't build decls for an instantiation of a
15501 variadic capture proxy, we instantiate the elements
15502 when needed. */
15503 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
15504 return RECUR (DECL_VALUE_EXPR (t));
15505 }
15506 /* Fall through */
15507
15508 case PARM_DECL:
15509 {
15510 tree r = tsubst_copy (t, args, complain, in_decl);
15511 /* ??? We're doing a subset of finish_id_expression here. */
15512 if (VAR_P (r)
15513 && !processing_template_decl
15514 && !cp_unevaluated_operand
15515 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
15516 && DECL_THREAD_LOCAL_P (r))
15517 {
15518 if (tree wrap = get_tls_wrapper_fn (r))
15519 /* Replace an evaluated use of the thread_local variable with
15520 a call to its wrapper. */
15521 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
15522 }
15523 else if (outer_automatic_var_p (r))
15524 r = process_outer_var_ref (r, complain);
15525
15526 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
15527 /* If the original type was a reference, we'll be wrapped in
15528 the appropriate INDIRECT_REF. */
15529 r = convert_from_reference (r);
15530 RETURN (r);
15531 }
15532
15533 case VA_ARG_EXPR:
15534 {
15535 tree op0 = RECUR (TREE_OPERAND (t, 0));
15536 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15537 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
15538 }
15539
15540 case OFFSETOF_EXPR:
15541 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0)),
15542 EXPR_LOCATION (t)));
15543
15544 case TRAIT_EXPR:
15545 {
15546 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
15547 complain, in_decl);
15548
15549 tree type2 = TRAIT_EXPR_TYPE2 (t);
15550 if (type2 && TREE_CODE (type2) == TREE_LIST)
15551 type2 = RECUR (type2);
15552 else if (type2)
15553 type2 = tsubst (type2, args, complain, in_decl);
15554
15555 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
15556 }
15557
15558 case STMT_EXPR:
15559 {
15560 tree old_stmt_expr = cur_stmt_expr;
15561 tree stmt_expr = begin_stmt_expr ();
15562
15563 cur_stmt_expr = stmt_expr;
15564 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
15565 integral_constant_expression_p);
15566 stmt_expr = finish_stmt_expr (stmt_expr, false);
15567 cur_stmt_expr = old_stmt_expr;
15568
15569 /* If the resulting list of expression statement is empty,
15570 fold it further into void_node. */
15571 if (empty_expr_stmt_p (stmt_expr))
15572 stmt_expr = void_node;
15573
15574 RETURN (stmt_expr);
15575 }
15576
15577 case LAMBDA_EXPR:
15578 {
15579 tree r = build_lambda_expr ();
15580
15581 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
15582 LAMBDA_EXPR_CLOSURE (r) = type;
15583 CLASSTYPE_LAMBDA_EXPR (type) = r;
15584
15585 LAMBDA_EXPR_LOCATION (r)
15586 = LAMBDA_EXPR_LOCATION (t);
15587 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
15588 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
15589 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
15590 LAMBDA_EXPR_DISCRIMINATOR (r)
15591 = (LAMBDA_EXPR_DISCRIMINATOR (t));
15592 /* For a function scope, we want to use tsubst so that we don't
15593 complain about referring to an auto function before its return
15594 type has been deduced. Otherwise, we want to use tsubst_copy so
15595 that we look up the existing field/parameter/variable rather
15596 than build a new one. */
15597 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
15598 if (scope && TREE_CODE (scope) == FUNCTION_DECL)
15599 scope = tsubst (scope, args, complain, in_decl);
15600 else if (scope && TREE_CODE (scope) == PARM_DECL)
15601 {
15602 /* Look up the parameter we want directly, as tsubst_copy
15603 doesn't do what we need. */
15604 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
15605 tree parm = FUNCTION_FIRST_USER_PARM (fn);
15606 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
15607 parm = DECL_CHAIN (parm);
15608 scope = parm;
15609 /* FIXME Work around the parm not having DECL_CONTEXT set. */
15610 if (DECL_CONTEXT (scope) == NULL_TREE)
15611 DECL_CONTEXT (scope) = fn;
15612 }
15613 else
15614 scope = RECUR (scope);
15615 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
15616 LAMBDA_EXPR_RETURN_TYPE (r)
15617 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
15618
15619 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
15620 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
15621
15622 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
15623 determine_visibility (TYPE_NAME (type));
15624 /* Now that we know visibility, instantiate the type so we have a
15625 declaration of the op() for later calls to lambda_function. */
15626 complete_type (type);
15627
15628 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
15629
15630 RETURN (build_lambda_object (r));
15631 }
15632
15633 case TARGET_EXPR:
15634 /* We can get here for a constant initializer of non-dependent type.
15635 FIXME stop folding in cp_parser_initializer_clause. */
15636 {
15637 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
15638 complain);
15639 RETURN (r);
15640 }
15641
15642 case TRANSACTION_EXPR:
15643 RETURN (tsubst_expr(t, args, complain, in_decl,
15644 integral_constant_expression_p));
15645
15646 case PAREN_EXPR:
15647 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
15648
15649 case VEC_PERM_EXPR:
15650 {
15651 tree op0 = RECUR (TREE_OPERAND (t, 0));
15652 tree op1 = RECUR (TREE_OPERAND (t, 1));
15653 tree op2 = RECUR (TREE_OPERAND (t, 2));
15654 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
15655 complain));
15656 }
15657
15658 default:
15659 /* Handle Objective-C++ constructs, if appropriate. */
15660 {
15661 tree subst
15662 = objcp_tsubst_copy_and_build (t, args, complain,
15663 in_decl, /*function_p=*/false);
15664 if (subst)
15665 RETURN (subst);
15666 }
15667 RETURN (tsubst_copy (t, args, complain, in_decl));
15668 }
15669
15670 #undef RECUR
15671 #undef RETURN
15672 out:
15673 input_location = loc;
15674 return retval;
15675 }
15676
15677 /* Verify that the instantiated ARGS are valid. For type arguments,
15678 make sure that the type's linkage is ok. For non-type arguments,
15679 make sure they are constants if they are integral or enumerations.
15680 Emit an error under control of COMPLAIN, and return TRUE on error. */
15681
15682 static bool
15683 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
15684 {
15685 if (dependent_template_arg_p (t))
15686 return false;
15687 if (ARGUMENT_PACK_P (t))
15688 {
15689 tree vec = ARGUMENT_PACK_ARGS (t);
15690 int len = TREE_VEC_LENGTH (vec);
15691 bool result = false;
15692 int i;
15693
15694 for (i = 0; i < len; ++i)
15695 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
15696 result = true;
15697 return result;
15698 }
15699 else if (TYPE_P (t))
15700 {
15701 /* [basic.link]: A name with no linkage (notably, the name
15702 of a class or enumeration declared in a local scope)
15703 shall not be used to declare an entity with linkage.
15704 This implies that names with no linkage cannot be used as
15705 template arguments
15706
15707 DR 757 relaxes this restriction for C++0x. */
15708 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
15709 : no_linkage_check (t, /*relaxed_p=*/false));
15710
15711 if (nt)
15712 {
15713 /* DR 488 makes use of a type with no linkage cause
15714 type deduction to fail. */
15715 if (complain & tf_error)
15716 {
15717 if (TYPE_ANONYMOUS_P (nt))
15718 error ("%qT is/uses anonymous type", t);
15719 else
15720 error ("template argument for %qD uses local type %qT",
15721 tmpl, t);
15722 }
15723 return true;
15724 }
15725 /* In order to avoid all sorts of complications, we do not
15726 allow variably-modified types as template arguments. */
15727 else if (variably_modified_type_p (t, NULL_TREE))
15728 {
15729 if (complain & tf_error)
15730 error ("%qT is a variably modified type", t);
15731 return true;
15732 }
15733 }
15734 /* Class template and alias template arguments should be OK. */
15735 else if (DECL_TYPE_TEMPLATE_P (t))
15736 ;
15737 /* A non-type argument of integral or enumerated type must be a
15738 constant. */
15739 else if (TREE_TYPE (t)
15740 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
15741 && !REFERENCE_REF_P (t)
15742 && !TREE_CONSTANT (t))
15743 {
15744 if (complain & tf_error)
15745 error ("integral expression %qE is not constant", t);
15746 return true;
15747 }
15748 return false;
15749 }
15750
15751 static bool
15752 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
15753 {
15754 int ix, len = DECL_NTPARMS (tmpl);
15755 bool result = false;
15756
15757 for (ix = 0; ix != len; ix++)
15758 {
15759 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
15760 result = true;
15761 }
15762 if (result && (complain & tf_error))
15763 error (" trying to instantiate %qD", tmpl);
15764 return result;
15765 }
15766
15767 /* We're out of SFINAE context now, so generate diagnostics for the access
15768 errors we saw earlier when instantiating D from TMPL and ARGS. */
15769
15770 static void
15771 recheck_decl_substitution (tree d, tree tmpl, tree args)
15772 {
15773 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
15774 tree type = TREE_TYPE (pattern);
15775 location_t loc = input_location;
15776
15777 push_access_scope (d);
15778 push_deferring_access_checks (dk_no_deferred);
15779 input_location = DECL_SOURCE_LOCATION (pattern);
15780 tsubst (type, args, tf_warning_or_error, d);
15781 input_location = loc;
15782 pop_deferring_access_checks ();
15783 pop_access_scope (d);
15784 }
15785
15786 /* Instantiate the indicated variable, function, or alias template TMPL with
15787 the template arguments in TARG_PTR. */
15788
15789 static tree
15790 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
15791 {
15792 tree targ_ptr = orig_args;
15793 tree fndecl;
15794 tree gen_tmpl;
15795 tree spec;
15796 bool access_ok = true;
15797
15798 if (tmpl == error_mark_node)
15799 return error_mark_node;
15800
15801 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
15802
15803 /* If this function is a clone, handle it specially. */
15804 if (DECL_CLONED_FUNCTION_P (tmpl))
15805 {
15806 tree spec;
15807 tree clone;
15808
15809 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
15810 DECL_CLONED_FUNCTION. */
15811 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
15812 targ_ptr, complain);
15813 if (spec == error_mark_node)
15814 return error_mark_node;
15815
15816 /* Look for the clone. */
15817 FOR_EACH_CLONE (clone, spec)
15818 if (DECL_NAME (clone) == DECL_NAME (tmpl))
15819 return clone;
15820 /* We should always have found the clone by now. */
15821 gcc_unreachable ();
15822 return NULL_TREE;
15823 }
15824
15825 if (targ_ptr == error_mark_node)
15826 return error_mark_node;
15827
15828 /* Check to see if we already have this specialization. */
15829 gen_tmpl = most_general_template (tmpl);
15830 if (tmpl != gen_tmpl)
15831 /* The TMPL is a partial instantiation. To get a full set of
15832 arguments we must add the arguments used to perform the
15833 partial instantiation. */
15834 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
15835 targ_ptr);
15836
15837 /* It would be nice to avoid hashing here and then again in tsubst_decl,
15838 but it doesn't seem to be on the hot path. */
15839 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
15840
15841 gcc_assert (tmpl == gen_tmpl
15842 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
15843 == spec)
15844 || fndecl == NULL_TREE);
15845
15846 if (spec != NULL_TREE)
15847 {
15848 if (FNDECL_HAS_ACCESS_ERRORS (spec))
15849 {
15850 if (complain & tf_error)
15851 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
15852 return error_mark_node;
15853 }
15854 return spec;
15855 }
15856
15857 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
15858 complain))
15859 return error_mark_node;
15860
15861 /* We are building a FUNCTION_DECL, during which the access of its
15862 parameters and return types have to be checked. However this
15863 FUNCTION_DECL which is the desired context for access checking
15864 is not built yet. We solve this chicken-and-egg problem by
15865 deferring all checks until we have the FUNCTION_DECL. */
15866 push_deferring_access_checks (dk_deferred);
15867
15868 /* Instantiation of the function happens in the context of the function
15869 template, not the context of the overload resolution we're doing. */
15870 push_to_top_level ();
15871 /* If there are dependent arguments, e.g. because we're doing partial
15872 ordering, make sure processing_template_decl stays set. */
15873 if (uses_template_parms (targ_ptr))
15874 ++processing_template_decl;
15875 if (DECL_CLASS_SCOPE_P (gen_tmpl))
15876 {
15877 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
15878 complain, gen_tmpl, true);
15879 push_nested_class (ctx);
15880 }
15881 /* Substitute template parameters to obtain the specialization. */
15882 fndecl = tsubst (DECL_TEMPLATE_RESULT (gen_tmpl),
15883 targ_ptr, complain, gen_tmpl);
15884 if (DECL_CLASS_SCOPE_P (gen_tmpl))
15885 pop_nested_class ();
15886 pop_from_top_level ();
15887
15888 if (fndecl == error_mark_node)
15889 {
15890 pop_deferring_access_checks ();
15891 return error_mark_node;
15892 }
15893
15894 /* The DECL_TI_TEMPLATE should always be the immediate parent
15895 template, not the most general template. */
15896 DECL_TI_TEMPLATE (fndecl) = tmpl;
15897
15898 /* Now we know the specialization, compute access previously
15899 deferred. */
15900 push_access_scope (fndecl);
15901 if (!perform_deferred_access_checks (complain))
15902 access_ok = false;
15903 pop_access_scope (fndecl);
15904 pop_deferring_access_checks ();
15905
15906 /* If we've just instantiated the main entry point for a function,
15907 instantiate all the alternate entry points as well. We do this
15908 by cloning the instantiation of the main entry point, not by
15909 instantiating the template clones. */
15910 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
15911 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
15912
15913 if (!access_ok)
15914 {
15915 if (!(complain & tf_error))
15916 {
15917 /* Remember to reinstantiate when we're out of SFINAE so the user
15918 can see the errors. */
15919 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
15920 }
15921 return error_mark_node;
15922 }
15923 return fndecl;
15924 }
15925
15926 /* Wrapper for instantiate_template_1. */
15927
15928 tree
15929 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
15930 {
15931 tree ret;
15932 timevar_push (TV_TEMPLATE_INST);
15933 ret = instantiate_template_1 (tmpl, orig_args, complain);
15934 timevar_pop (TV_TEMPLATE_INST);
15935 return ret;
15936 }
15937
15938 /* Instantiate the alias template TMPL with ARGS. Also push a template
15939 instantiation level, which instantiate_template doesn't do because
15940 functions and variables have sufficient context established by the
15941 callers. */
15942
15943 static tree
15944 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
15945 {
15946 struct pending_template *old_last_pend = last_pending_template;
15947 struct tinst_level *old_error_tinst = last_error_tinst_level;
15948 if (tmpl == error_mark_node || args == error_mark_node)
15949 return error_mark_node;
15950 tree tinst = build_tree_list (tmpl, args);
15951 if (!push_tinst_level (tinst))
15952 {
15953 ggc_free (tinst);
15954 return error_mark_node;
15955 }
15956
15957 args =
15958 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
15959 args, tmpl, complain,
15960 /*require_all_args=*/true,
15961 /*use_default_args=*/true);
15962
15963 tree r = instantiate_template (tmpl, args, complain);
15964 pop_tinst_level ();
15965 /* We can't free this if a pending_template entry or last_error_tinst_level
15966 is pointing at it. */
15967 if (last_pending_template == old_last_pend
15968 && last_error_tinst_level == old_error_tinst)
15969 ggc_free (tinst);
15970
15971 return r;
15972 }
15973
15974 /* PARM is a template parameter pack for FN. Returns true iff
15975 PARM is used in a deducible way in the argument list of FN. */
15976
15977 static bool
15978 pack_deducible_p (tree parm, tree fn)
15979 {
15980 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
15981 for (; t; t = TREE_CHAIN (t))
15982 {
15983 tree type = TREE_VALUE (t);
15984 tree packs;
15985 if (!PACK_EXPANSION_P (type))
15986 continue;
15987 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
15988 packs; packs = TREE_CHAIN (packs))
15989 if (template_args_equal (TREE_VALUE (packs), parm))
15990 {
15991 /* The template parameter pack is used in a function parameter
15992 pack. If this is the end of the parameter list, the
15993 template parameter pack is deducible. */
15994 if (TREE_CHAIN (t) == void_list_node)
15995 return true;
15996 else
15997 /* Otherwise, not. Well, it could be deduced from
15998 a non-pack parameter, but doing so would end up with
15999 a deduction mismatch, so don't bother. */
16000 return false;
16001 }
16002 }
16003 /* The template parameter pack isn't used in any function parameter
16004 packs, but it might be used deeper, e.g. tuple<Args...>. */
16005 return true;
16006 }
16007
16008 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
16009 NARGS elements of the arguments that are being used when calling
16010 it. TARGS is a vector into which the deduced template arguments
16011 are placed.
16012
16013 Returns either a FUNCTION_DECL for the matching specialization of FN or
16014 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
16015 true, diagnostics will be printed to explain why it failed.
16016
16017 If FN is a conversion operator, or we are trying to produce a specific
16018 specialization, RETURN_TYPE is the return type desired.
16019
16020 The EXPLICIT_TARGS are explicit template arguments provided via a
16021 template-id.
16022
16023 The parameter STRICT is one of:
16024
16025 DEDUCE_CALL:
16026 We are deducing arguments for a function call, as in
16027 [temp.deduct.call].
16028
16029 DEDUCE_CONV:
16030 We are deducing arguments for a conversion function, as in
16031 [temp.deduct.conv].
16032
16033 DEDUCE_EXACT:
16034 We are deducing arguments when doing an explicit instantiation
16035 as in [temp.explicit], when determining an explicit specialization
16036 as in [temp.expl.spec], or when taking the address of a function
16037 template, as in [temp.deduct.funcaddr]. */
16038
16039 tree
16040 fn_type_unification (tree fn,
16041 tree explicit_targs,
16042 tree targs,
16043 const tree *args,
16044 unsigned int nargs,
16045 tree return_type,
16046 unification_kind_t strict,
16047 int flags,
16048 bool explain_p,
16049 bool decltype_p)
16050 {
16051 tree parms;
16052 tree fntype;
16053 tree decl = NULL_TREE;
16054 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
16055 bool ok;
16056 static int deduction_depth;
16057 struct pending_template *old_last_pend = last_pending_template;
16058 struct tinst_level *old_error_tinst = last_error_tinst_level;
16059 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
16060 tree tinst;
16061 tree r = error_mark_node;
16062
16063 if (decltype_p)
16064 complain |= tf_decltype;
16065
16066 /* In C++0x, it's possible to have a function template whose type depends
16067 on itself recursively. This is most obvious with decltype, but can also
16068 occur with enumeration scope (c++/48969). So we need to catch infinite
16069 recursion and reject the substitution at deduction time; this function
16070 will return error_mark_node for any repeated substitution.
16071
16072 This also catches excessive recursion such as when f<N> depends on
16073 f<N-1> across all integers, and returns error_mark_node for all the
16074 substitutions back up to the initial one.
16075
16076 This is, of course, not reentrant. */
16077 if (excessive_deduction_depth)
16078 return error_mark_node;
16079 tinst = build_tree_list (fn, NULL_TREE);
16080 ++deduction_depth;
16081
16082 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
16083
16084 fntype = TREE_TYPE (fn);
16085 if (explicit_targs)
16086 {
16087 /* [temp.deduct]
16088
16089 The specified template arguments must match the template
16090 parameters in kind (i.e., type, nontype, template), and there
16091 must not be more arguments than there are parameters;
16092 otherwise type deduction fails.
16093
16094 Nontype arguments must match the types of the corresponding
16095 nontype template parameters, or must be convertible to the
16096 types of the corresponding nontype parameters as specified in
16097 _temp.arg.nontype_, otherwise type deduction fails.
16098
16099 All references in the function type of the function template
16100 to the corresponding template parameters are replaced by the
16101 specified template argument values. If a substitution in a
16102 template parameter or in the function type of the function
16103 template results in an invalid type, type deduction fails. */
16104 int i, len = TREE_VEC_LENGTH (tparms);
16105 location_t loc = input_location;
16106 bool incomplete = false;
16107
16108 /* Adjust any explicit template arguments before entering the
16109 substitution context. */
16110 explicit_targs
16111 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
16112 complain,
16113 /*require_all_args=*/false,
16114 /*use_default_args=*/false));
16115 if (explicit_targs == error_mark_node)
16116 goto fail;
16117
16118 /* Substitute the explicit args into the function type. This is
16119 necessary so that, for instance, explicitly declared function
16120 arguments can match null pointed constants. If we were given
16121 an incomplete set of explicit args, we must not do semantic
16122 processing during substitution as we could create partial
16123 instantiations. */
16124 for (i = 0; i < len; i++)
16125 {
16126 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
16127 bool parameter_pack = false;
16128 tree targ = TREE_VEC_ELT (explicit_targs, i);
16129
16130 /* Dig out the actual parm. */
16131 if (TREE_CODE (parm) == TYPE_DECL
16132 || TREE_CODE (parm) == TEMPLATE_DECL)
16133 {
16134 parm = TREE_TYPE (parm);
16135 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
16136 }
16137 else if (TREE_CODE (parm) == PARM_DECL)
16138 {
16139 parm = DECL_INITIAL (parm);
16140 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
16141 }
16142
16143 if (!parameter_pack && targ == NULL_TREE)
16144 /* No explicit argument for this template parameter. */
16145 incomplete = true;
16146
16147 if (parameter_pack && pack_deducible_p (parm, fn))
16148 {
16149 /* Mark the argument pack as "incomplete". We could
16150 still deduce more arguments during unification.
16151 We remove this mark in type_unification_real. */
16152 if (targ)
16153 {
16154 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
16155 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
16156 = ARGUMENT_PACK_ARGS (targ);
16157 }
16158
16159 /* We have some incomplete argument packs. */
16160 incomplete = true;
16161 }
16162 }
16163
16164 TREE_VALUE (tinst) = explicit_targs;
16165 if (!push_tinst_level (tinst))
16166 {
16167 excessive_deduction_depth = true;
16168 goto fail;
16169 }
16170 processing_template_decl += incomplete;
16171 input_location = DECL_SOURCE_LOCATION (fn);
16172 /* Ignore any access checks; we'll see them again in
16173 instantiate_template and they might have the wrong
16174 access path at this point. */
16175 push_deferring_access_checks (dk_deferred);
16176 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
16177 complain | tf_partial, NULL_TREE);
16178 pop_deferring_access_checks ();
16179 input_location = loc;
16180 processing_template_decl -= incomplete;
16181 pop_tinst_level ();
16182
16183 if (fntype == error_mark_node)
16184 goto fail;
16185
16186 /* Place the explicitly specified arguments in TARGS. */
16187 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
16188 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
16189 }
16190
16191 /* Never do unification on the 'this' parameter. */
16192 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
16193
16194 if (return_type)
16195 {
16196 tree *new_args;
16197
16198 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
16199 new_args = XALLOCAVEC (tree, nargs + 1);
16200 new_args[0] = return_type;
16201 memcpy (new_args + 1, args, nargs * sizeof (tree));
16202 args = new_args;
16203 ++nargs;
16204 }
16205
16206 /* We allow incomplete unification without an error message here
16207 because the standard doesn't seem to explicitly prohibit it. Our
16208 callers must be ready to deal with unification failures in any
16209 event. */
16210
16211 TREE_VALUE (tinst) = targs;
16212 /* If we aren't explaining yet, push tinst context so we can see where
16213 any errors (e.g. from class instantiations triggered by instantiation
16214 of default template arguments) come from. If we are explaining, this
16215 context is redundant. */
16216 if (!explain_p && !push_tinst_level (tinst))
16217 {
16218 excessive_deduction_depth = true;
16219 goto fail;
16220 }
16221
16222 /* type_unification_real will pass back any access checks from default
16223 template argument substitution. */
16224 vec<deferred_access_check, va_gc> *checks;
16225 checks = NULL;
16226
16227 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
16228 targs, parms, args, nargs, /*subr=*/0,
16229 strict, flags, &checks, explain_p);
16230 if (!explain_p)
16231 pop_tinst_level ();
16232 if (!ok)
16233 goto fail;
16234
16235 /* Now that we have bindings for all of the template arguments,
16236 ensure that the arguments deduced for the template template
16237 parameters have compatible template parameter lists. We cannot
16238 check this property before we have deduced all template
16239 arguments, because the template parameter types of a template
16240 template parameter might depend on prior template parameters
16241 deduced after the template template parameter. The following
16242 ill-formed example illustrates this issue:
16243
16244 template<typename T, template<T> class C> void f(C<5>, T);
16245
16246 template<int N> struct X {};
16247
16248 void g() {
16249 f(X<5>(), 5l); // error: template argument deduction fails
16250 }
16251
16252 The template parameter list of 'C' depends on the template type
16253 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
16254 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
16255 time that we deduce 'C'. */
16256 if (!template_template_parm_bindings_ok_p
16257 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
16258 {
16259 unify_inconsistent_template_template_parameters (explain_p);
16260 goto fail;
16261 }
16262
16263 /* All is well so far. Now, check:
16264
16265 [temp.deduct]
16266
16267 When all template arguments have been deduced, all uses of
16268 template parameters in nondeduced contexts are replaced with
16269 the corresponding deduced argument values. If the
16270 substitution results in an invalid type, as described above,
16271 type deduction fails. */
16272 TREE_VALUE (tinst) = targs;
16273 if (!push_tinst_level (tinst))
16274 {
16275 excessive_deduction_depth = true;
16276 goto fail;
16277 }
16278
16279 /* Also collect access checks from the instantiation. */
16280 reopen_deferring_access_checks (checks);
16281
16282 decl = instantiate_template (fn, targs, complain);
16283
16284 checks = get_deferred_access_checks ();
16285 pop_deferring_access_checks ();
16286
16287 pop_tinst_level ();
16288
16289 if (decl == error_mark_node)
16290 goto fail;
16291
16292 /* Now perform any access checks encountered during substitution. */
16293 push_access_scope (decl);
16294 ok = perform_access_checks (checks, complain);
16295 pop_access_scope (decl);
16296 if (!ok)
16297 goto fail;
16298
16299 /* If we're looking for an exact match, check that what we got
16300 is indeed an exact match. It might not be if some template
16301 parameters are used in non-deduced contexts. But don't check
16302 for an exact match if we have dependent template arguments;
16303 in that case we're doing partial ordering, and we already know
16304 that we have two candidates that will provide the actual type. */
16305 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
16306 {
16307 tree substed = TREE_TYPE (decl);
16308 unsigned int i;
16309
16310 tree sarg
16311 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
16312 if (return_type)
16313 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
16314 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
16315 if (!same_type_p (args[i], TREE_VALUE (sarg)))
16316 {
16317 unify_type_mismatch (explain_p, args[i],
16318 TREE_VALUE (sarg));
16319 goto fail;
16320 }
16321 }
16322
16323 r = decl;
16324
16325 fail:
16326 --deduction_depth;
16327 if (excessive_deduction_depth)
16328 {
16329 if (deduction_depth == 0)
16330 /* Reset once we're all the way out. */
16331 excessive_deduction_depth = false;
16332 }
16333
16334 /* We can't free this if a pending_template entry or last_error_tinst_level
16335 is pointing at it. */
16336 if (last_pending_template == old_last_pend
16337 && last_error_tinst_level == old_error_tinst)
16338 ggc_free (tinst);
16339
16340 return r;
16341 }
16342
16343 /* Adjust types before performing type deduction, as described in
16344 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
16345 sections are symmetric. PARM is the type of a function parameter
16346 or the return type of the conversion function. ARG is the type of
16347 the argument passed to the call, or the type of the value
16348 initialized with the result of the conversion function.
16349 ARG_EXPR is the original argument expression, which may be null. */
16350
16351 static int
16352 maybe_adjust_types_for_deduction (unification_kind_t strict,
16353 tree* parm,
16354 tree* arg,
16355 tree arg_expr)
16356 {
16357 int result = 0;
16358
16359 switch (strict)
16360 {
16361 case DEDUCE_CALL:
16362 break;
16363
16364 case DEDUCE_CONV:
16365 {
16366 /* Swap PARM and ARG throughout the remainder of this
16367 function; the handling is precisely symmetric since PARM
16368 will initialize ARG rather than vice versa. */
16369 tree* temp = parm;
16370 parm = arg;
16371 arg = temp;
16372 break;
16373 }
16374
16375 case DEDUCE_EXACT:
16376 /* Core issue #873: Do the DR606 thing (see below) for these cases,
16377 too, but here handle it by stripping the reference from PARM
16378 rather than by adding it to ARG. */
16379 if (TREE_CODE (*parm) == REFERENCE_TYPE
16380 && TYPE_REF_IS_RVALUE (*parm)
16381 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
16382 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
16383 && TREE_CODE (*arg) == REFERENCE_TYPE
16384 && !TYPE_REF_IS_RVALUE (*arg))
16385 *parm = TREE_TYPE (*parm);
16386 /* Nothing else to do in this case. */
16387 return 0;
16388
16389 default:
16390 gcc_unreachable ();
16391 }
16392
16393 if (TREE_CODE (*parm) != REFERENCE_TYPE)
16394 {
16395 /* [temp.deduct.call]
16396
16397 If P is not a reference type:
16398
16399 --If A is an array type, the pointer type produced by the
16400 array-to-pointer standard conversion (_conv.array_) is
16401 used in place of A for type deduction; otherwise,
16402
16403 --If A is a function type, the pointer type produced by
16404 the function-to-pointer standard conversion
16405 (_conv.func_) is used in place of A for type deduction;
16406 otherwise,
16407
16408 --If A is a cv-qualified type, the top level
16409 cv-qualifiers of A's type are ignored for type
16410 deduction. */
16411 if (TREE_CODE (*arg) == ARRAY_TYPE)
16412 *arg = build_pointer_type (TREE_TYPE (*arg));
16413 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
16414 *arg = build_pointer_type (*arg);
16415 else
16416 *arg = TYPE_MAIN_VARIANT (*arg);
16417 }
16418
16419 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
16420 of the form T&&, where T is a template parameter, and the argument
16421 is an lvalue, T is deduced as A& */
16422 if (TREE_CODE (*parm) == REFERENCE_TYPE
16423 && TYPE_REF_IS_RVALUE (*parm)
16424 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
16425 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
16426 && (arg_expr ? real_lvalue_p (arg_expr)
16427 /* try_one_overload doesn't provide an arg_expr, but
16428 functions are always lvalues. */
16429 : TREE_CODE (*arg) == FUNCTION_TYPE))
16430 *arg = build_reference_type (*arg);
16431
16432 /* [temp.deduct.call]
16433
16434 If P is a cv-qualified type, the top level cv-qualifiers
16435 of P's type are ignored for type deduction. If P is a
16436 reference type, the type referred to by P is used for
16437 type deduction. */
16438 *parm = TYPE_MAIN_VARIANT (*parm);
16439 if (TREE_CODE (*parm) == REFERENCE_TYPE)
16440 {
16441 *parm = TREE_TYPE (*parm);
16442 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
16443 }
16444
16445 /* DR 322. For conversion deduction, remove a reference type on parm
16446 too (which has been swapped into ARG). */
16447 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
16448 *arg = TREE_TYPE (*arg);
16449
16450 return result;
16451 }
16452
16453 /* Subroutine of unify_one_argument. PARM is a function parameter of a
16454 template which does contain any deducible template parameters; check if
16455 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
16456 unify_one_argument. */
16457
16458 static int
16459 check_non_deducible_conversion (tree parm, tree arg, int strict,
16460 int flags, bool explain_p)
16461 {
16462 tree type;
16463
16464 if (!TYPE_P (arg))
16465 type = TREE_TYPE (arg);
16466 else
16467 type = arg;
16468
16469 if (same_type_p (parm, type))
16470 return unify_success (explain_p);
16471
16472 if (strict == DEDUCE_CONV)
16473 {
16474 if (can_convert_arg (type, parm, NULL_TREE, flags,
16475 explain_p ? tf_warning_or_error : tf_none))
16476 return unify_success (explain_p);
16477 }
16478 else if (strict != DEDUCE_EXACT)
16479 {
16480 if (can_convert_arg (parm, type,
16481 TYPE_P (arg) ? NULL_TREE : arg,
16482 flags, explain_p ? tf_warning_or_error : tf_none))
16483 return unify_success (explain_p);
16484 }
16485
16486 if (strict == DEDUCE_EXACT)
16487 return unify_type_mismatch (explain_p, parm, arg);
16488 else
16489 return unify_arg_conversion (explain_p, parm, type, arg);
16490 }
16491
16492 static bool uses_deducible_template_parms (tree type);
16493
16494 /* Returns true iff the expression EXPR is one from which a template
16495 argument can be deduced. In other words, if it's an undecorated
16496 use of a template non-type parameter. */
16497
16498 static bool
16499 deducible_expression (tree expr)
16500 {
16501 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
16502 }
16503
16504 /* Returns true iff the array domain DOMAIN uses a template parameter in a
16505 deducible way; that is, if it has a max value of <PARM> - 1. */
16506
16507 static bool
16508 deducible_array_bound (tree domain)
16509 {
16510 if (domain == NULL_TREE)
16511 return false;
16512
16513 tree max = TYPE_MAX_VALUE (domain);
16514 if (TREE_CODE (max) != MINUS_EXPR)
16515 return false;
16516
16517 return deducible_expression (TREE_OPERAND (max, 0));
16518 }
16519
16520 /* Returns true iff the template arguments ARGS use a template parameter
16521 in a deducible way. */
16522
16523 static bool
16524 deducible_template_args (tree args)
16525 {
16526 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
16527 {
16528 bool deducible;
16529 tree elt = TREE_VEC_ELT (args, i);
16530 if (ARGUMENT_PACK_P (elt))
16531 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
16532 else
16533 {
16534 if (PACK_EXPANSION_P (elt))
16535 elt = PACK_EXPANSION_PATTERN (elt);
16536 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
16537 deducible = true;
16538 else if (TYPE_P (elt))
16539 deducible = uses_deducible_template_parms (elt);
16540 else
16541 deducible = deducible_expression (elt);
16542 }
16543 if (deducible)
16544 return true;
16545 }
16546 return false;
16547 }
16548
16549 /* Returns true iff TYPE contains any deducible references to template
16550 parameters, as per 14.8.2.5. */
16551
16552 static bool
16553 uses_deducible_template_parms (tree type)
16554 {
16555 if (PACK_EXPANSION_P (type))
16556 type = PACK_EXPANSION_PATTERN (type);
16557
16558 /* T
16559 cv-list T
16560 TT<T>
16561 TT<i>
16562 TT<> */
16563 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
16564 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
16565 return true;
16566
16567 /* T*
16568 T&
16569 T&& */
16570 if (POINTER_TYPE_P (type))
16571 return uses_deducible_template_parms (TREE_TYPE (type));
16572
16573 /* T[integer-constant ]
16574 type [i] */
16575 if (TREE_CODE (type) == ARRAY_TYPE)
16576 return (uses_deducible_template_parms (TREE_TYPE (type))
16577 || deducible_array_bound (TYPE_DOMAIN (type)));
16578
16579 /* T type ::*
16580 type T::*
16581 T T::*
16582 T (type ::*)()
16583 type (T::*)()
16584 type (type ::*)(T)
16585 type (T::*)(T)
16586 T (type ::*)(T)
16587 T (T::*)()
16588 T (T::*)(T) */
16589 if (TYPE_PTRMEM_P (type))
16590 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
16591 || (uses_deducible_template_parms
16592 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
16593
16594 /* template-name <T> (where template-name refers to a class template)
16595 template-name <i> (where template-name refers to a class template) */
16596 if (CLASS_TYPE_P (type)
16597 && CLASSTYPE_TEMPLATE_INFO (type)
16598 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
16599 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
16600 (CLASSTYPE_TI_ARGS (type)));
16601
16602 /* type (T)
16603 T()
16604 T(T) */
16605 if (TREE_CODE (type) == FUNCTION_TYPE
16606 || TREE_CODE (type) == METHOD_TYPE)
16607 {
16608 if (uses_deducible_template_parms (TREE_TYPE (type)))
16609 return true;
16610 tree parm = TYPE_ARG_TYPES (type);
16611 if (TREE_CODE (type) == METHOD_TYPE)
16612 parm = TREE_CHAIN (parm);
16613 for (; parm; parm = TREE_CHAIN (parm))
16614 if (uses_deducible_template_parms (TREE_VALUE (parm)))
16615 return true;
16616 }
16617
16618 return false;
16619 }
16620
16621 /* Subroutine of type_unification_real and unify_pack_expansion to
16622 handle unification of a single P/A pair. Parameters are as
16623 for those functions. */
16624
16625 static int
16626 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
16627 int subr, unification_kind_t strict, int flags,
16628 bool explain_p)
16629 {
16630 tree arg_expr = NULL_TREE;
16631 int arg_strict;
16632
16633 if (arg == error_mark_node || parm == error_mark_node)
16634 return unify_invalid (explain_p);
16635 if (arg == unknown_type_node)
16636 /* We can't deduce anything from this, but we might get all the
16637 template args from other function args. */
16638 return unify_success (explain_p);
16639
16640 /* Implicit conversions (Clause 4) will be performed on a function
16641 argument to convert it to the type of the corresponding function
16642 parameter if the parameter type contains no template-parameters that
16643 participate in template argument deduction. */
16644 if (TYPE_P (parm) && !uses_template_parms (parm))
16645 /* For function parameters that contain no template-parameters at all,
16646 we have historically checked for convertibility in order to shortcut
16647 consideration of this candidate. */
16648 return check_non_deducible_conversion (parm, arg, strict, flags,
16649 explain_p);
16650 else if (strict == DEDUCE_CALL
16651 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
16652 /* For function parameters with only non-deducible template parameters,
16653 just return. */
16654 return unify_success (explain_p);
16655
16656 switch (strict)
16657 {
16658 case DEDUCE_CALL:
16659 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
16660 | UNIFY_ALLOW_MORE_CV_QUAL
16661 | UNIFY_ALLOW_DERIVED);
16662 break;
16663
16664 case DEDUCE_CONV:
16665 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
16666 break;
16667
16668 case DEDUCE_EXACT:
16669 arg_strict = UNIFY_ALLOW_NONE;
16670 break;
16671
16672 default:
16673 gcc_unreachable ();
16674 }
16675
16676 /* We only do these transformations if this is the top-level
16677 parameter_type_list in a call or declaration matching; in other
16678 situations (nested function declarators, template argument lists) we
16679 won't be comparing a type to an expression, and we don't do any type
16680 adjustments. */
16681 if (!subr)
16682 {
16683 if (!TYPE_P (arg))
16684 {
16685 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
16686 if (type_unknown_p (arg))
16687 {
16688 /* [temp.deduct.type] A template-argument can be
16689 deduced from a pointer to function or pointer
16690 to member function argument if the set of
16691 overloaded functions does not contain function
16692 templates and at most one of a set of
16693 overloaded functions provides a unique
16694 match. */
16695
16696 if (resolve_overloaded_unification
16697 (tparms, targs, parm, arg, strict,
16698 arg_strict, explain_p))
16699 return unify_success (explain_p);
16700 return unify_overload_resolution_failure (explain_p, arg);
16701 }
16702
16703 arg_expr = arg;
16704 arg = unlowered_expr_type (arg);
16705 if (arg == error_mark_node)
16706 return unify_invalid (explain_p);
16707 }
16708
16709 arg_strict |=
16710 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
16711 }
16712 else
16713 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
16714 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
16715 return unify_template_argument_mismatch (explain_p, parm, arg);
16716
16717 /* For deduction from an init-list we need the actual list. */
16718 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
16719 arg = arg_expr;
16720 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
16721 }
16722
16723 /* Most parms like fn_type_unification.
16724
16725 If SUBR is 1, we're being called recursively (to unify the
16726 arguments of a function or method parameter of a function
16727 template).
16728
16729 CHECKS is a pointer to a vector of access checks encountered while
16730 substituting default template arguments. */
16731
16732 static int
16733 type_unification_real (tree tparms,
16734 tree targs,
16735 tree xparms,
16736 const tree *xargs,
16737 unsigned int xnargs,
16738 int subr,
16739 unification_kind_t strict,
16740 int flags,
16741 vec<deferred_access_check, va_gc> **checks,
16742 bool explain_p)
16743 {
16744 tree parm, arg;
16745 int i;
16746 int ntparms = TREE_VEC_LENGTH (tparms);
16747 int saw_undeduced = 0;
16748 tree parms;
16749 const tree *args;
16750 unsigned int nargs;
16751 unsigned int ia;
16752
16753 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
16754 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
16755 gcc_assert (ntparms > 0);
16756
16757 /* Reset the number of non-defaulted template arguments contained
16758 in TARGS. */
16759 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
16760
16761 again:
16762 parms = xparms;
16763 args = xargs;
16764 nargs = xnargs;
16765
16766 ia = 0;
16767 while (parms && parms != void_list_node
16768 && ia < nargs)
16769 {
16770 parm = TREE_VALUE (parms);
16771
16772 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
16773 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
16774 /* For a function parameter pack that occurs at the end of the
16775 parameter-declaration-list, the type A of each remaining
16776 argument of the call is compared with the type P of the
16777 declarator-id of the function parameter pack. */
16778 break;
16779
16780 parms = TREE_CHAIN (parms);
16781
16782 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
16783 /* For a function parameter pack that does not occur at the
16784 end of the parameter-declaration-list, the type of the
16785 parameter pack is a non-deduced context. */
16786 continue;
16787
16788 arg = args[ia];
16789 ++ia;
16790
16791 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
16792 flags, explain_p))
16793 return 1;
16794 }
16795
16796 if (parms
16797 && parms != void_list_node
16798 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
16799 {
16800 /* Unify the remaining arguments with the pack expansion type. */
16801 tree argvec;
16802 tree parmvec = make_tree_vec (1);
16803
16804 /* Allocate a TREE_VEC and copy in all of the arguments */
16805 argvec = make_tree_vec (nargs - ia);
16806 for (i = 0; ia < nargs; ++ia, ++i)
16807 TREE_VEC_ELT (argvec, i) = args[ia];
16808
16809 /* Copy the parameter into parmvec. */
16810 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
16811 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
16812 /*subr=*/subr, explain_p))
16813 return 1;
16814
16815 /* Advance to the end of the list of parameters. */
16816 parms = TREE_CHAIN (parms);
16817 }
16818
16819 /* Fail if we've reached the end of the parm list, and more args
16820 are present, and the parm list isn't variadic. */
16821 if (ia < nargs && parms == void_list_node)
16822 return unify_too_many_arguments (explain_p, nargs, ia);
16823 /* Fail if parms are left and they don't have default values and
16824 they aren't all deduced as empty packs (c++/57397). This is
16825 consistent with sufficient_parms_p. */
16826 if (parms && parms != void_list_node
16827 && TREE_PURPOSE (parms) == NULL_TREE)
16828 {
16829 unsigned int count = nargs;
16830 tree p = parms;
16831 bool type_pack_p;
16832 do
16833 {
16834 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
16835 if (!type_pack_p)
16836 count++;
16837 p = TREE_CHAIN (p);
16838 }
16839 while (p && p != void_list_node);
16840 if (count != nargs)
16841 return unify_too_few_arguments (explain_p, ia, count,
16842 type_pack_p);
16843 }
16844
16845 if (!subr)
16846 {
16847 tsubst_flags_t complain = (explain_p
16848 ? tf_warning_or_error
16849 : tf_none);
16850
16851 for (i = 0; i < ntparms; i++)
16852 {
16853 tree targ = TREE_VEC_ELT (targs, i);
16854 tree tparm = TREE_VEC_ELT (tparms, i);
16855
16856 /* Clear the "incomplete" flags on all argument packs now so that
16857 substituting them into later default arguments works. */
16858 if (targ && ARGUMENT_PACK_P (targ))
16859 {
16860 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
16861 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
16862 }
16863
16864 if (targ || tparm == error_mark_node)
16865 continue;
16866 tparm = TREE_VALUE (tparm);
16867
16868 /* If this is an undeduced nontype parameter that depends on
16869 a type parameter, try another pass; its type may have been
16870 deduced from a later argument than the one from which
16871 this parameter can be deduced. */
16872 if (TREE_CODE (tparm) == PARM_DECL
16873 && uses_template_parms (TREE_TYPE (tparm))
16874 && !saw_undeduced++)
16875 goto again;
16876
16877 /* Core issue #226 (C++0x) [temp.deduct]:
16878
16879 If a template argument has not been deduced, its
16880 default template argument, if any, is used.
16881
16882 When we are in C++98 mode, TREE_PURPOSE will either
16883 be NULL_TREE or ERROR_MARK_NODE, so we do not need
16884 to explicitly check cxx_dialect here. */
16885 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
16886 {
16887 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
16888 tree arg = TREE_PURPOSE (TREE_VEC_ELT (tparms, i));
16889 reopen_deferring_access_checks (*checks);
16890 location_t save_loc = input_location;
16891 if (DECL_P (parm))
16892 input_location = DECL_SOURCE_LOCATION (parm);
16893 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
16894 arg = convert_template_argument (parm, arg, targs, complain,
16895 i, NULL_TREE);
16896 input_location = save_loc;
16897 *checks = get_deferred_access_checks ();
16898 pop_deferring_access_checks ();
16899 if (arg == error_mark_node)
16900 return 1;
16901 else
16902 {
16903 TREE_VEC_ELT (targs, i) = arg;
16904 /* The position of the first default template argument,
16905 is also the number of non-defaulted arguments in TARGS.
16906 Record that. */
16907 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
16908 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
16909 continue;
16910 }
16911 }
16912
16913 /* If the type parameter is a parameter pack, then it will
16914 be deduced to an empty parameter pack. */
16915 if (template_parameter_pack_p (tparm))
16916 {
16917 tree arg;
16918
16919 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
16920 {
16921 arg = make_node (NONTYPE_ARGUMENT_PACK);
16922 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
16923 TREE_CONSTANT (arg) = 1;
16924 }
16925 else
16926 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
16927
16928 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
16929
16930 TREE_VEC_ELT (targs, i) = arg;
16931 continue;
16932 }
16933
16934 return unify_parameter_deduction_failure (explain_p, tparm);
16935 }
16936 }
16937 #ifdef ENABLE_CHECKING
16938 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
16939 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
16940 #endif
16941
16942 return unify_success (explain_p);
16943 }
16944
16945 /* Subroutine of type_unification_real. Args are like the variables
16946 at the call site. ARG is an overloaded function (or template-id);
16947 we try deducing template args from each of the overloads, and if
16948 only one succeeds, we go with that. Modifies TARGS and returns
16949 true on success. */
16950
16951 static bool
16952 resolve_overloaded_unification (tree tparms,
16953 tree targs,
16954 tree parm,
16955 tree arg,
16956 unification_kind_t strict,
16957 int sub_strict,
16958 bool explain_p)
16959 {
16960 tree tempargs = copy_node (targs);
16961 int good = 0;
16962 tree goodfn = NULL_TREE;
16963 bool addr_p;
16964
16965 if (TREE_CODE (arg) == ADDR_EXPR)
16966 {
16967 arg = TREE_OPERAND (arg, 0);
16968 addr_p = true;
16969 }
16970 else
16971 addr_p = false;
16972
16973 if (TREE_CODE (arg) == COMPONENT_REF)
16974 /* Handle `&x' where `x' is some static or non-static member
16975 function name. */
16976 arg = TREE_OPERAND (arg, 1);
16977
16978 if (TREE_CODE (arg) == OFFSET_REF)
16979 arg = TREE_OPERAND (arg, 1);
16980
16981 /* Strip baselink information. */
16982 if (BASELINK_P (arg))
16983 arg = BASELINK_FUNCTIONS (arg);
16984
16985 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
16986 {
16987 /* If we got some explicit template args, we need to plug them into
16988 the affected templates before we try to unify, in case the
16989 explicit args will completely resolve the templates in question. */
16990
16991 int ok = 0;
16992 tree expl_subargs = TREE_OPERAND (arg, 1);
16993 arg = TREE_OPERAND (arg, 0);
16994
16995 for (; arg; arg = OVL_NEXT (arg))
16996 {
16997 tree fn = OVL_CURRENT (arg);
16998 tree subargs, elem;
16999
17000 if (TREE_CODE (fn) != TEMPLATE_DECL)
17001 continue;
17002
17003 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17004 expl_subargs, NULL_TREE, tf_none,
17005 /*require_all_args=*/true,
17006 /*use_default_args=*/true);
17007 if (subargs != error_mark_node
17008 && !any_dependent_template_arguments_p (subargs))
17009 {
17010 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
17011 if (try_one_overload (tparms, targs, tempargs, parm,
17012 elem, strict, sub_strict, addr_p, explain_p)
17013 && (!goodfn || !same_type_p (goodfn, elem)))
17014 {
17015 goodfn = elem;
17016 ++good;
17017 }
17018 }
17019 else if (subargs)
17020 ++ok;
17021 }
17022 /* If no templates (or more than one) are fully resolved by the
17023 explicit arguments, this template-id is a non-deduced context; it
17024 could still be OK if we deduce all template arguments for the
17025 enclosing call through other arguments. */
17026 if (good != 1)
17027 good = ok;
17028 }
17029 else if (TREE_CODE (arg) != OVERLOAD
17030 && TREE_CODE (arg) != FUNCTION_DECL)
17031 /* If ARG is, for example, "(0, &f)" then its type will be unknown
17032 -- but the deduction does not succeed because the expression is
17033 not just the function on its own. */
17034 return false;
17035 else
17036 for (; arg; arg = OVL_NEXT (arg))
17037 if (try_one_overload (tparms, targs, tempargs, parm,
17038 TREE_TYPE (OVL_CURRENT (arg)),
17039 strict, sub_strict, addr_p, explain_p)
17040 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
17041 {
17042 goodfn = OVL_CURRENT (arg);
17043 ++good;
17044 }
17045
17046 /* [temp.deduct.type] A template-argument can be deduced from a pointer
17047 to function or pointer to member function argument if the set of
17048 overloaded functions does not contain function templates and at most
17049 one of a set of overloaded functions provides a unique match.
17050
17051 So if we found multiple possibilities, we return success but don't
17052 deduce anything. */
17053
17054 if (good == 1)
17055 {
17056 int i = TREE_VEC_LENGTH (targs);
17057 for (; i--; )
17058 if (TREE_VEC_ELT (tempargs, i))
17059 {
17060 tree old = TREE_VEC_ELT (targs, i);
17061 tree new_ = TREE_VEC_ELT (tempargs, i);
17062 if (new_ && old && ARGUMENT_PACK_P (old)
17063 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
17064 /* Don't forget explicit template arguments in a pack. */
17065 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
17066 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
17067 TREE_VEC_ELT (targs, i) = new_;
17068 }
17069 }
17070 if (good)
17071 return true;
17072
17073 return false;
17074 }
17075
17076 /* Core DR 115: In contexts where deduction is done and fails, or in
17077 contexts where deduction is not done, if a template argument list is
17078 specified and it, along with any default template arguments, identifies
17079 a single function template specialization, then the template-id is an
17080 lvalue for the function template specialization. */
17081
17082 tree
17083 resolve_nondeduced_context (tree orig_expr)
17084 {
17085 tree expr, offset, baselink;
17086 bool addr;
17087
17088 if (!type_unknown_p (orig_expr))
17089 return orig_expr;
17090
17091 expr = orig_expr;
17092 addr = false;
17093 offset = NULL_TREE;
17094 baselink = NULL_TREE;
17095
17096 if (TREE_CODE (expr) == ADDR_EXPR)
17097 {
17098 expr = TREE_OPERAND (expr, 0);
17099 addr = true;
17100 }
17101 if (TREE_CODE (expr) == OFFSET_REF)
17102 {
17103 offset = expr;
17104 expr = TREE_OPERAND (expr, 1);
17105 }
17106 if (BASELINK_P (expr))
17107 {
17108 baselink = expr;
17109 expr = BASELINK_FUNCTIONS (expr);
17110 }
17111
17112 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
17113 {
17114 int good = 0;
17115 tree goodfn = NULL_TREE;
17116
17117 /* If we got some explicit template args, we need to plug them into
17118 the affected templates before we try to unify, in case the
17119 explicit args will completely resolve the templates in question. */
17120
17121 tree expl_subargs = TREE_OPERAND (expr, 1);
17122 tree arg = TREE_OPERAND (expr, 0);
17123 tree badfn = NULL_TREE;
17124 tree badargs = NULL_TREE;
17125
17126 for (; arg; arg = OVL_NEXT (arg))
17127 {
17128 tree fn = OVL_CURRENT (arg);
17129 tree subargs, elem;
17130
17131 if (TREE_CODE (fn) != TEMPLATE_DECL)
17132 continue;
17133
17134 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17135 expl_subargs, NULL_TREE, tf_none,
17136 /*require_all_args=*/true,
17137 /*use_default_args=*/true);
17138 if (subargs != error_mark_node
17139 && !any_dependent_template_arguments_p (subargs))
17140 {
17141 elem = instantiate_template (fn, subargs, tf_none);
17142 if (elem == error_mark_node)
17143 {
17144 badfn = fn;
17145 badargs = subargs;
17146 }
17147 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
17148 {
17149 goodfn = elem;
17150 ++good;
17151 }
17152 }
17153 }
17154 if (good == 1)
17155 {
17156 mark_used (goodfn);
17157 expr = goodfn;
17158 if (baselink)
17159 expr = build_baselink (BASELINK_BINFO (baselink),
17160 BASELINK_ACCESS_BINFO (baselink),
17161 expr, BASELINK_OPTYPE (baselink));
17162 if (offset)
17163 {
17164 tree base
17165 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
17166 expr = build_offset_ref (base, expr, addr, tf_warning_or_error);
17167 }
17168 if (addr)
17169 expr = cp_build_addr_expr (expr, tf_warning_or_error);
17170 return expr;
17171 }
17172 else if (good == 0 && badargs)
17173 /* There were no good options and at least one bad one, so let the
17174 user know what the problem is. */
17175 instantiate_template (badfn, badargs, tf_warning_or_error);
17176 }
17177 return orig_expr;
17178 }
17179
17180 /* Subroutine of resolve_overloaded_unification; does deduction for a single
17181 overload. Fills TARGS with any deduced arguments, or error_mark_node if
17182 different overloads deduce different arguments for a given parm.
17183 ADDR_P is true if the expression for which deduction is being
17184 performed was of the form "& fn" rather than simply "fn".
17185
17186 Returns 1 on success. */
17187
17188 static int
17189 try_one_overload (tree tparms,
17190 tree orig_targs,
17191 tree targs,
17192 tree parm,
17193 tree arg,
17194 unification_kind_t strict,
17195 int sub_strict,
17196 bool addr_p,
17197 bool explain_p)
17198 {
17199 int nargs;
17200 tree tempargs;
17201 int i;
17202
17203 if (arg == error_mark_node)
17204 return 0;
17205
17206 /* [temp.deduct.type] A template-argument can be deduced from a pointer
17207 to function or pointer to member function argument if the set of
17208 overloaded functions does not contain function templates and at most
17209 one of a set of overloaded functions provides a unique match.
17210
17211 So if this is a template, just return success. */
17212
17213 if (uses_template_parms (arg))
17214 return 1;
17215
17216 if (TREE_CODE (arg) == METHOD_TYPE)
17217 arg = build_ptrmemfunc_type (build_pointer_type (arg));
17218 else if (addr_p)
17219 arg = build_pointer_type (arg);
17220
17221 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
17222
17223 /* We don't copy orig_targs for this because if we have already deduced
17224 some template args from previous args, unify would complain when we
17225 try to deduce a template parameter for the same argument, even though
17226 there isn't really a conflict. */
17227 nargs = TREE_VEC_LENGTH (targs);
17228 tempargs = make_tree_vec (nargs);
17229
17230 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
17231 return 0;
17232
17233 /* First make sure we didn't deduce anything that conflicts with
17234 explicitly specified args. */
17235 for (i = nargs; i--; )
17236 {
17237 tree elt = TREE_VEC_ELT (tempargs, i);
17238 tree oldelt = TREE_VEC_ELT (orig_targs, i);
17239
17240 if (!elt)
17241 /*NOP*/;
17242 else if (uses_template_parms (elt))
17243 /* Since we're unifying against ourselves, we will fill in
17244 template args used in the function parm list with our own
17245 template parms. Discard them. */
17246 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
17247 else if (oldelt && !template_args_equal (oldelt, elt))
17248 return 0;
17249 }
17250
17251 for (i = nargs; i--; )
17252 {
17253 tree elt = TREE_VEC_ELT (tempargs, i);
17254
17255 if (elt)
17256 TREE_VEC_ELT (targs, i) = elt;
17257 }
17258
17259 return 1;
17260 }
17261
17262 /* PARM is a template class (perhaps with unbound template
17263 parameters). ARG is a fully instantiated type. If ARG can be
17264 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
17265 TARGS are as for unify. */
17266
17267 static tree
17268 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
17269 bool explain_p)
17270 {
17271 tree copy_of_targs;
17272
17273 if (!CLASSTYPE_TEMPLATE_INFO (arg)
17274 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
17275 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
17276 return NULL_TREE;
17277
17278 /* We need to make a new template argument vector for the call to
17279 unify. If we used TARGS, we'd clutter it up with the result of
17280 the attempted unification, even if this class didn't work out.
17281 We also don't want to commit ourselves to all the unifications
17282 we've already done, since unification is supposed to be done on
17283 an argument-by-argument basis. In other words, consider the
17284 following pathological case:
17285
17286 template <int I, int J, int K>
17287 struct S {};
17288
17289 template <int I, int J>
17290 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
17291
17292 template <int I, int J, int K>
17293 void f(S<I, J, K>, S<I, I, I>);
17294
17295 void g() {
17296 S<0, 0, 0> s0;
17297 S<0, 1, 2> s2;
17298
17299 f(s0, s2);
17300 }
17301
17302 Now, by the time we consider the unification involving `s2', we
17303 already know that we must have `f<0, 0, 0>'. But, even though
17304 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
17305 because there are two ways to unify base classes of S<0, 1, 2>
17306 with S<I, I, I>. If we kept the already deduced knowledge, we
17307 would reject the possibility I=1. */
17308 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
17309
17310 /* If unification failed, we're done. */
17311 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
17312 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
17313 return NULL_TREE;
17314
17315 return arg;
17316 }
17317
17318 /* Given a template type PARM and a class type ARG, find the unique
17319 base type in ARG that is an instance of PARM. We do not examine
17320 ARG itself; only its base-classes. If there is not exactly one
17321 appropriate base class, return NULL_TREE. PARM may be the type of
17322 a partial specialization, as well as a plain template type. Used
17323 by unify. */
17324
17325 static enum template_base_result
17326 get_template_base (tree tparms, tree targs, tree parm, tree arg,
17327 bool explain_p, tree *result)
17328 {
17329 tree rval = NULL_TREE;
17330 tree binfo;
17331
17332 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
17333
17334 binfo = TYPE_BINFO (complete_type (arg));
17335 if (!binfo)
17336 {
17337 /* The type could not be completed. */
17338 *result = NULL_TREE;
17339 return tbr_incomplete_type;
17340 }
17341
17342 /* Walk in inheritance graph order. The search order is not
17343 important, and this avoids multiple walks of virtual bases. */
17344 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
17345 {
17346 tree r = try_class_unification (tparms, targs, parm,
17347 BINFO_TYPE (binfo), explain_p);
17348
17349 if (r)
17350 {
17351 /* If there is more than one satisfactory baseclass, then:
17352
17353 [temp.deduct.call]
17354
17355 If they yield more than one possible deduced A, the type
17356 deduction fails.
17357
17358 applies. */
17359 if (rval && !same_type_p (r, rval))
17360 {
17361 *result = NULL_TREE;
17362 return tbr_ambiguous_baseclass;
17363 }
17364
17365 rval = r;
17366 }
17367 }
17368
17369 *result = rval;
17370 return tbr_success;
17371 }
17372
17373 /* Returns the level of DECL, which declares a template parameter. */
17374
17375 static int
17376 template_decl_level (tree decl)
17377 {
17378 switch (TREE_CODE (decl))
17379 {
17380 case TYPE_DECL:
17381 case TEMPLATE_DECL:
17382 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
17383
17384 case PARM_DECL:
17385 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
17386
17387 default:
17388 gcc_unreachable ();
17389 }
17390 return 0;
17391 }
17392
17393 /* Decide whether ARG can be unified with PARM, considering only the
17394 cv-qualifiers of each type, given STRICT as documented for unify.
17395 Returns nonzero iff the unification is OK on that basis. */
17396
17397 static int
17398 check_cv_quals_for_unify (int strict, tree arg, tree parm)
17399 {
17400 int arg_quals = cp_type_quals (arg);
17401 int parm_quals = cp_type_quals (parm);
17402
17403 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17404 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
17405 {
17406 /* Although a CVR qualifier is ignored when being applied to a
17407 substituted template parameter ([8.3.2]/1 for example), that
17408 does not allow us to unify "const T" with "int&" because both
17409 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
17410 It is ok when we're allowing additional CV qualifiers
17411 at the outer level [14.8.2.1]/3,1st bullet. */
17412 if ((TREE_CODE (arg) == REFERENCE_TYPE
17413 || TREE_CODE (arg) == FUNCTION_TYPE
17414 || TREE_CODE (arg) == METHOD_TYPE)
17415 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
17416 return 0;
17417
17418 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
17419 && (parm_quals & TYPE_QUAL_RESTRICT))
17420 return 0;
17421 }
17422
17423 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
17424 && (arg_quals & parm_quals) != parm_quals)
17425 return 0;
17426
17427 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
17428 && (parm_quals & arg_quals) != arg_quals)
17429 return 0;
17430
17431 return 1;
17432 }
17433
17434 /* Determines the LEVEL and INDEX for the template parameter PARM. */
17435 void
17436 template_parm_level_and_index (tree parm, int* level, int* index)
17437 {
17438 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17439 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
17440 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
17441 {
17442 *index = TEMPLATE_TYPE_IDX (parm);
17443 *level = TEMPLATE_TYPE_LEVEL (parm);
17444 }
17445 else
17446 {
17447 *index = TEMPLATE_PARM_IDX (parm);
17448 *level = TEMPLATE_PARM_LEVEL (parm);
17449 }
17450 }
17451
17452 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
17453 do { \
17454 if (unify (TP, TA, P, A, S, EP)) \
17455 return 1; \
17456 } while (0);
17457
17458 /* Unifies the remaining arguments in PACKED_ARGS with the pack
17459 expansion at the end of PACKED_PARMS. Returns 0 if the type
17460 deduction succeeds, 1 otherwise. STRICT is the same as in
17461 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
17462 call argument list. We'll need to adjust the arguments to make them
17463 types. SUBR tells us if this is from a recursive call to
17464 type_unification_real, or for comparing two template argument
17465 lists. */
17466
17467 static int
17468 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
17469 tree packed_args, unification_kind_t strict,
17470 bool subr, bool explain_p)
17471 {
17472 tree parm
17473 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
17474 tree pattern = PACK_EXPANSION_PATTERN (parm);
17475 tree pack, packs = NULL_TREE;
17476 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
17477
17478 packed_args = expand_template_argument_pack (packed_args);
17479
17480 int len = TREE_VEC_LENGTH (packed_args);
17481
17482 /* Determine the parameter packs we will be deducing from the
17483 pattern, and record their current deductions. */
17484 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
17485 pack; pack = TREE_CHAIN (pack))
17486 {
17487 tree parm_pack = TREE_VALUE (pack);
17488 int idx, level;
17489
17490 /* Determine the index and level of this parameter pack. */
17491 template_parm_level_and_index (parm_pack, &level, &idx);
17492
17493 /* Keep track of the parameter packs and their corresponding
17494 argument packs. */
17495 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
17496 TREE_TYPE (packs) = make_tree_vec (len - start);
17497 }
17498
17499 /* Loop through all of the arguments that have not yet been
17500 unified and unify each with the pattern. */
17501 for (i = start; i < len; i++)
17502 {
17503 tree parm;
17504 bool any_explicit = false;
17505 tree arg = TREE_VEC_ELT (packed_args, i);
17506
17507 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
17508 or the element of its argument pack at the current index if
17509 this argument was explicitly specified. */
17510 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17511 {
17512 int idx, level;
17513 tree arg, pargs;
17514 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17515
17516 arg = NULL_TREE;
17517 if (TREE_VALUE (pack)
17518 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
17519 && (i - start < TREE_VEC_LENGTH (pargs)))
17520 {
17521 any_explicit = true;
17522 arg = TREE_VEC_ELT (pargs, i - start);
17523 }
17524 TMPL_ARG (targs, level, idx) = arg;
17525 }
17526
17527 /* If we had explicit template arguments, substitute them into the
17528 pattern before deduction. */
17529 if (any_explicit)
17530 {
17531 /* Some arguments might still be unspecified or dependent. */
17532 bool dependent;
17533 ++processing_template_decl;
17534 dependent = any_dependent_template_arguments_p (targs);
17535 if (!dependent)
17536 --processing_template_decl;
17537 parm = tsubst (pattern, targs,
17538 explain_p ? tf_warning_or_error : tf_none,
17539 NULL_TREE);
17540 if (dependent)
17541 --processing_template_decl;
17542 if (parm == error_mark_node)
17543 return 1;
17544 }
17545 else
17546 parm = pattern;
17547
17548 /* Unify the pattern with the current argument. */
17549 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
17550 LOOKUP_IMPLICIT, explain_p))
17551 return 1;
17552
17553 /* For each parameter pack, collect the deduced value. */
17554 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17555 {
17556 int idx, level;
17557 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17558
17559 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
17560 TMPL_ARG (targs, level, idx);
17561 }
17562 }
17563
17564 /* Verify that the results of unification with the parameter packs
17565 produce results consistent with what we've seen before, and make
17566 the deduced argument packs available. */
17567 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17568 {
17569 tree old_pack = TREE_VALUE (pack);
17570 tree new_args = TREE_TYPE (pack);
17571 int i, len = TREE_VEC_LENGTH (new_args);
17572 int idx, level;
17573 bool nondeduced_p = false;
17574
17575 /* By default keep the original deduced argument pack.
17576 If necessary, more specific code is going to update the
17577 resulting deduced argument later down in this function. */
17578 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17579 TMPL_ARG (targs, level, idx) = old_pack;
17580
17581 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
17582 actually deduce anything. */
17583 for (i = 0; i < len && !nondeduced_p; ++i)
17584 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
17585 nondeduced_p = true;
17586 if (nondeduced_p)
17587 continue;
17588
17589 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
17590 {
17591 /* If we had fewer function args than explicit template args,
17592 just use the explicits. */
17593 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
17594 int explicit_len = TREE_VEC_LENGTH (explicit_args);
17595 if (len < explicit_len)
17596 new_args = explicit_args;
17597 }
17598
17599 if (!old_pack)
17600 {
17601 tree result;
17602 /* Build the deduced *_ARGUMENT_PACK. */
17603 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
17604 {
17605 result = make_node (NONTYPE_ARGUMENT_PACK);
17606 TREE_TYPE (result) =
17607 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
17608 TREE_CONSTANT (result) = 1;
17609 }
17610 else
17611 result = cxx_make_type (TYPE_ARGUMENT_PACK);
17612
17613 SET_ARGUMENT_PACK_ARGS (result, new_args);
17614
17615 /* Note the deduced argument packs for this parameter
17616 pack. */
17617 TMPL_ARG (targs, level, idx) = result;
17618 }
17619 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
17620 && (ARGUMENT_PACK_ARGS (old_pack)
17621 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
17622 {
17623 /* We only had the explicitly-provided arguments before, but
17624 now we have a complete set of arguments. */
17625 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
17626
17627 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
17628 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
17629 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
17630 }
17631 else
17632 {
17633 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
17634 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
17635
17636 if (!comp_template_args_with_info (old_args, new_args,
17637 &bad_old_arg, &bad_new_arg))
17638 /* Inconsistent unification of this parameter pack. */
17639 return unify_parameter_pack_inconsistent (explain_p,
17640 bad_old_arg,
17641 bad_new_arg);
17642 }
17643 }
17644
17645 return unify_success (explain_p);
17646 }
17647
17648 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
17649 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
17650 parameters and return value are as for unify. */
17651
17652 static int
17653 unify_array_domain (tree tparms, tree targs,
17654 tree parm_dom, tree arg_dom,
17655 bool explain_p)
17656 {
17657 tree parm_max;
17658 tree arg_max;
17659 bool parm_cst;
17660 bool arg_cst;
17661
17662 /* Our representation of array types uses "N - 1" as the
17663 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
17664 not an integer constant. We cannot unify arbitrarily
17665 complex expressions, so we eliminate the MINUS_EXPRs
17666 here. */
17667 parm_max = TYPE_MAX_VALUE (parm_dom);
17668 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
17669 if (!parm_cst)
17670 {
17671 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
17672 parm_max = TREE_OPERAND (parm_max, 0);
17673 }
17674 arg_max = TYPE_MAX_VALUE (arg_dom);
17675 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
17676 if (!arg_cst)
17677 {
17678 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
17679 trying to unify the type of a variable with the type
17680 of a template parameter. For example:
17681
17682 template <unsigned int N>
17683 void f (char (&) [N]);
17684 int g();
17685 void h(int i) {
17686 char a[g(i)];
17687 f(a);
17688 }
17689
17690 Here, the type of the ARG will be "int [g(i)]", and
17691 may be a SAVE_EXPR, etc. */
17692 if (TREE_CODE (arg_max) != MINUS_EXPR)
17693 return unify_vla_arg (explain_p, arg_dom);
17694 arg_max = TREE_OPERAND (arg_max, 0);
17695 }
17696
17697 /* If only one of the bounds used a MINUS_EXPR, compensate
17698 by adding one to the other bound. */
17699 if (parm_cst && !arg_cst)
17700 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
17701 integer_type_node,
17702 parm_max,
17703 integer_one_node);
17704 else if (arg_cst && !parm_cst)
17705 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
17706 integer_type_node,
17707 arg_max,
17708 integer_one_node);
17709
17710 return unify (tparms, targs, parm_max, arg_max,
17711 UNIFY_ALLOW_INTEGER, explain_p);
17712 }
17713
17714 /* Deduce the value of template parameters. TPARMS is the (innermost)
17715 set of template parameters to a template. TARGS is the bindings
17716 for those template parameters, as determined thus far; TARGS may
17717 include template arguments for outer levels of template parameters
17718 as well. PARM is a parameter to a template function, or a
17719 subcomponent of that parameter; ARG is the corresponding argument.
17720 This function attempts to match PARM with ARG in a manner
17721 consistent with the existing assignments in TARGS. If more values
17722 are deduced, then TARGS is updated.
17723
17724 Returns 0 if the type deduction succeeds, 1 otherwise. The
17725 parameter STRICT is a bitwise or of the following flags:
17726
17727 UNIFY_ALLOW_NONE:
17728 Require an exact match between PARM and ARG.
17729 UNIFY_ALLOW_MORE_CV_QUAL:
17730 Allow the deduced ARG to be more cv-qualified (by qualification
17731 conversion) than ARG.
17732 UNIFY_ALLOW_LESS_CV_QUAL:
17733 Allow the deduced ARG to be less cv-qualified than ARG.
17734 UNIFY_ALLOW_DERIVED:
17735 Allow the deduced ARG to be a template base class of ARG,
17736 or a pointer to a template base class of the type pointed to by
17737 ARG.
17738 UNIFY_ALLOW_INTEGER:
17739 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
17740 case for more information.
17741 UNIFY_ALLOW_OUTER_LEVEL:
17742 This is the outermost level of a deduction. Used to determine validity
17743 of qualification conversions. A valid qualification conversion must
17744 have const qualified pointers leading up to the inner type which
17745 requires additional CV quals, except at the outer level, where const
17746 is not required [conv.qual]. It would be normal to set this flag in
17747 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
17748 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
17749 This is the outermost level of a deduction, and PARM can be more CV
17750 qualified at this point.
17751 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
17752 This is the outermost level of a deduction, and PARM can be less CV
17753 qualified at this point. */
17754
17755 static int
17756 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
17757 bool explain_p)
17758 {
17759 int idx;
17760 tree targ;
17761 tree tparm;
17762 int strict_in = strict;
17763
17764 /* I don't think this will do the right thing with respect to types.
17765 But the only case I've seen it in so far has been array bounds, where
17766 signedness is the only information lost, and I think that will be
17767 okay. */
17768 while (TREE_CODE (parm) == NOP_EXPR)
17769 parm = TREE_OPERAND (parm, 0);
17770
17771 if (arg == error_mark_node)
17772 return unify_invalid (explain_p);
17773 if (arg == unknown_type_node
17774 || arg == init_list_type_node)
17775 /* We can't deduce anything from this, but we might get all the
17776 template args from other function args. */
17777 return unify_success (explain_p);
17778
17779 /* If PARM uses template parameters, then we can't bail out here,
17780 even if ARG == PARM, since we won't record unifications for the
17781 template parameters. We might need them if we're trying to
17782 figure out which of two things is more specialized. */
17783 if (arg == parm && !uses_template_parms (parm))
17784 return unify_success (explain_p);
17785
17786 /* Handle init lists early, so the rest of the function can assume
17787 we're dealing with a type. */
17788 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
17789 {
17790 tree elt, elttype;
17791 unsigned i;
17792 tree orig_parm = parm;
17793
17794 /* Replace T with std::initializer_list<T> for deduction. */
17795 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17796 && flag_deduce_init_list)
17797 parm = listify (parm);
17798
17799 if (!is_std_init_list (parm)
17800 && TREE_CODE (parm) != ARRAY_TYPE)
17801 /* We can only deduce from an initializer list argument if the
17802 parameter is std::initializer_list or an array; otherwise this
17803 is a non-deduced context. */
17804 return unify_success (explain_p);
17805
17806 if (TREE_CODE (parm) == ARRAY_TYPE)
17807 elttype = TREE_TYPE (parm);
17808 else
17809 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
17810
17811 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
17812 {
17813 int elt_strict = strict;
17814
17815 if (elt == error_mark_node)
17816 return unify_invalid (explain_p);
17817
17818 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
17819 {
17820 tree type = TREE_TYPE (elt);
17821 /* It should only be possible to get here for a call. */
17822 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
17823 elt_strict |= maybe_adjust_types_for_deduction
17824 (DEDUCE_CALL, &elttype, &type, elt);
17825 elt = type;
17826 }
17827
17828 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
17829 explain_p);
17830 }
17831
17832 if (TREE_CODE (parm) == ARRAY_TYPE
17833 && deducible_array_bound (TYPE_DOMAIN (parm)))
17834 {
17835 /* Also deduce from the length of the initializer list. */
17836 tree max = size_int (CONSTRUCTOR_NELTS (arg));
17837 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
17838 if (idx == error_mark_node)
17839 return unify_invalid (explain_p);
17840 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
17841 idx, explain_p);
17842 }
17843
17844 /* If the std::initializer_list<T> deduction worked, replace the
17845 deduced A with std::initializer_list<A>. */
17846 if (orig_parm != parm)
17847 {
17848 idx = TEMPLATE_TYPE_IDX (orig_parm);
17849 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
17850 targ = listify (targ);
17851 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
17852 }
17853 return unify_success (explain_p);
17854 }
17855
17856 /* Immediately reject some pairs that won't unify because of
17857 cv-qualification mismatches. */
17858 if (TREE_CODE (arg) == TREE_CODE (parm)
17859 && TYPE_P (arg)
17860 /* It is the elements of the array which hold the cv quals of an array
17861 type, and the elements might be template type parms. We'll check
17862 when we recurse. */
17863 && TREE_CODE (arg) != ARRAY_TYPE
17864 /* We check the cv-qualifiers when unifying with template type
17865 parameters below. We want to allow ARG `const T' to unify with
17866 PARM `T' for example, when computing which of two templates
17867 is more specialized, for example. */
17868 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
17869 && !check_cv_quals_for_unify (strict_in, arg, parm))
17870 return unify_cv_qual_mismatch (explain_p, parm, arg);
17871
17872 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
17873 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
17874 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
17875 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
17876 strict &= ~UNIFY_ALLOW_DERIVED;
17877 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
17878 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
17879
17880 switch (TREE_CODE (parm))
17881 {
17882 case TYPENAME_TYPE:
17883 case SCOPE_REF:
17884 case UNBOUND_CLASS_TEMPLATE:
17885 /* In a type which contains a nested-name-specifier, template
17886 argument values cannot be deduced for template parameters used
17887 within the nested-name-specifier. */
17888 return unify_success (explain_p);
17889
17890 case TEMPLATE_TYPE_PARM:
17891 case TEMPLATE_TEMPLATE_PARM:
17892 case BOUND_TEMPLATE_TEMPLATE_PARM:
17893 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
17894 if (error_operand_p (tparm))
17895 return unify_invalid (explain_p);
17896
17897 if (TEMPLATE_TYPE_LEVEL (parm)
17898 != template_decl_level (tparm))
17899 /* The PARM is not one we're trying to unify. Just check
17900 to see if it matches ARG. */
17901 {
17902 if (TREE_CODE (arg) == TREE_CODE (parm)
17903 && (is_auto (parm) ? is_auto (arg)
17904 : same_type_p (parm, arg)))
17905 return unify_success (explain_p);
17906 else
17907 return unify_type_mismatch (explain_p, parm, arg);
17908 }
17909 idx = TEMPLATE_TYPE_IDX (parm);
17910 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
17911 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
17912 if (error_operand_p (tparm))
17913 return unify_invalid (explain_p);
17914
17915 /* Check for mixed types and values. */
17916 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17917 && TREE_CODE (tparm) != TYPE_DECL)
17918 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
17919 && TREE_CODE (tparm) != TEMPLATE_DECL))
17920 gcc_unreachable ();
17921
17922 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
17923 {
17924 /* ARG must be constructed from a template class or a template
17925 template parameter. */
17926 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
17927 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
17928 return unify_template_deduction_failure (explain_p, parm, arg);
17929 {
17930 tree parmvec = TYPE_TI_ARGS (parm);
17931 /* An alias template name is never deduced. */
17932 if (TYPE_ALIAS_P (arg))
17933 arg = strip_typedefs (arg);
17934 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
17935 tree full_argvec = add_to_template_args (targs, argvec);
17936 tree parm_parms
17937 = DECL_INNERMOST_TEMPLATE_PARMS
17938 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
17939 int i, len;
17940 int parm_variadic_p = 0;
17941
17942 /* The resolution to DR150 makes clear that default
17943 arguments for an N-argument may not be used to bind T
17944 to a template template parameter with fewer than N
17945 parameters. It is not safe to permit the binding of
17946 default arguments as an extension, as that may change
17947 the meaning of a conforming program. Consider:
17948
17949 struct Dense { static const unsigned int dim = 1; };
17950
17951 template <template <typename> class View,
17952 typename Block>
17953 void operator+(float, View<Block> const&);
17954
17955 template <typename Block,
17956 unsigned int Dim = Block::dim>
17957 struct Lvalue_proxy { operator float() const; };
17958
17959 void
17960 test_1d (void) {
17961 Lvalue_proxy<Dense> p;
17962 float b;
17963 b + p;
17964 }
17965
17966 Here, if Lvalue_proxy is permitted to bind to View, then
17967 the global operator+ will be used; if they are not, the
17968 Lvalue_proxy will be converted to float. */
17969 if (coerce_template_parms (parm_parms,
17970 full_argvec,
17971 TYPE_TI_TEMPLATE (parm),
17972 (explain_p
17973 ? tf_warning_or_error
17974 : tf_none),
17975 /*require_all_args=*/true,
17976 /*use_default_args=*/false)
17977 == error_mark_node)
17978 return 1;
17979
17980 /* Deduce arguments T, i from TT<T> or TT<i>.
17981 We check each element of PARMVEC and ARGVEC individually
17982 rather than the whole TREE_VEC since they can have
17983 different number of elements. */
17984
17985 parmvec = expand_template_argument_pack (parmvec);
17986 argvec = expand_template_argument_pack (argvec);
17987
17988 len = TREE_VEC_LENGTH (parmvec);
17989
17990 /* Check if the parameters end in a pack, making them
17991 variadic. */
17992 if (len > 0
17993 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
17994 parm_variadic_p = 1;
17995
17996 for (i = 0; i < len - parm_variadic_p; ++i)
17997 /* If the template argument list of P contains a pack
17998 expansion that is not the last template argument, the
17999 entire template argument list is a non-deduced
18000 context. */
18001 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
18002 return unify_success (explain_p);
18003
18004 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
18005 return unify_too_few_arguments (explain_p,
18006 TREE_VEC_LENGTH (argvec), len);
18007
18008 for (i = 0; i < len - parm_variadic_p; ++i)
18009 {
18010 RECUR_AND_CHECK_FAILURE (tparms, targs,
18011 TREE_VEC_ELT (parmvec, i),
18012 TREE_VEC_ELT (argvec, i),
18013 UNIFY_ALLOW_NONE, explain_p);
18014 }
18015
18016 if (parm_variadic_p
18017 && unify_pack_expansion (tparms, targs,
18018 parmvec, argvec,
18019 DEDUCE_EXACT,
18020 /*subr=*/true, explain_p))
18021 return 1;
18022 }
18023 arg = TYPE_TI_TEMPLATE (arg);
18024
18025 /* Fall through to deduce template name. */
18026 }
18027
18028 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
18029 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
18030 {
18031 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
18032
18033 /* Simple cases: Value already set, does match or doesn't. */
18034 if (targ != NULL_TREE && template_args_equal (targ, arg))
18035 return unify_success (explain_p);
18036 else if (targ)
18037 return unify_inconsistency (explain_p, parm, targ, arg);
18038 }
18039 else
18040 {
18041 /* If PARM is `const T' and ARG is only `int', we don't have
18042 a match unless we are allowing additional qualification.
18043 If ARG is `const int' and PARM is just `T' that's OK;
18044 that binds `const int' to `T'. */
18045 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
18046 arg, parm))
18047 return unify_cv_qual_mismatch (explain_p, parm, arg);
18048
18049 /* Consider the case where ARG is `const volatile int' and
18050 PARM is `const T'. Then, T should be `volatile int'. */
18051 arg = cp_build_qualified_type_real
18052 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
18053 if (arg == error_mark_node)
18054 return unify_invalid (explain_p);
18055
18056 /* Simple cases: Value already set, does match or doesn't. */
18057 if (targ != NULL_TREE && same_type_p (targ, arg))
18058 return unify_success (explain_p);
18059 else if (targ)
18060 return unify_inconsistency (explain_p, parm, targ, arg);
18061
18062 /* Make sure that ARG is not a variable-sized array. (Note
18063 that were talking about variable-sized arrays (like
18064 `int[n]'), rather than arrays of unknown size (like
18065 `int[]').) We'll get very confused by such a type since
18066 the bound of the array is not constant, and therefore
18067 not mangleable. Besides, such types are not allowed in
18068 ISO C++, so we can do as we please here. We do allow
18069 them for 'auto' deduction, since that isn't ABI-exposed. */
18070 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
18071 return unify_vla_arg (explain_p, arg);
18072
18073 /* Strip typedefs as in convert_template_argument. */
18074 arg = canonicalize_type_argument (arg, tf_none);
18075 }
18076
18077 /* If ARG is a parameter pack or an expansion, we cannot unify
18078 against it unless PARM is also a parameter pack. */
18079 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
18080 && !template_parameter_pack_p (parm))
18081 return unify_parameter_pack_mismatch (explain_p, parm, arg);
18082
18083 /* If the argument deduction results is a METHOD_TYPE,
18084 then there is a problem.
18085 METHOD_TYPE doesn't map to any real C++ type the result of
18086 the deduction can not be of that type. */
18087 if (TREE_CODE (arg) == METHOD_TYPE)
18088 return unify_method_type_error (explain_p, arg);
18089
18090 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
18091 return unify_success (explain_p);
18092
18093 case TEMPLATE_PARM_INDEX:
18094 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
18095 if (error_operand_p (tparm))
18096 return unify_invalid (explain_p);
18097
18098 if (TEMPLATE_PARM_LEVEL (parm)
18099 != template_decl_level (tparm))
18100 {
18101 /* The PARM is not one we're trying to unify. Just check
18102 to see if it matches ARG. */
18103 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
18104 && cp_tree_equal (parm, arg));
18105 if (result)
18106 unify_expression_unequal (explain_p, parm, arg);
18107 return result;
18108 }
18109
18110 idx = TEMPLATE_PARM_IDX (parm);
18111 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
18112
18113 if (targ)
18114 {
18115 int x = !cp_tree_equal (targ, arg);
18116 if (x)
18117 unify_inconsistency (explain_p, parm, targ, arg);
18118 return x;
18119 }
18120
18121 /* [temp.deduct.type] If, in the declaration of a function template
18122 with a non-type template-parameter, the non-type
18123 template-parameter is used in an expression in the function
18124 parameter-list and, if the corresponding template-argument is
18125 deduced, the template-argument type shall match the type of the
18126 template-parameter exactly, except that a template-argument
18127 deduced from an array bound may be of any integral type.
18128 The non-type parameter might use already deduced type parameters. */
18129 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
18130 if (!TREE_TYPE (arg))
18131 /* Template-parameter dependent expression. Just accept it for now.
18132 It will later be processed in convert_template_argument. */
18133 ;
18134 else if (same_type_p (TREE_TYPE (arg), tparm))
18135 /* OK */;
18136 else if ((strict & UNIFY_ALLOW_INTEGER)
18137 && CP_INTEGRAL_TYPE_P (tparm))
18138 /* Convert the ARG to the type of PARM; the deduced non-type
18139 template argument must exactly match the types of the
18140 corresponding parameter. */
18141 arg = fold (build_nop (tparm, arg));
18142 else if (uses_template_parms (tparm))
18143 /* We haven't deduced the type of this parameter yet. Try again
18144 later. */
18145 return unify_success (explain_p);
18146 else
18147 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
18148
18149 /* If ARG is a parameter pack or an expansion, we cannot unify
18150 against it unless PARM is also a parameter pack. */
18151 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
18152 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
18153 return unify_parameter_pack_mismatch (explain_p, parm, arg);
18154
18155 arg = strip_typedefs_expr (arg);
18156 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
18157 return unify_success (explain_p);
18158
18159 case PTRMEM_CST:
18160 {
18161 /* A pointer-to-member constant can be unified only with
18162 another constant. */
18163 if (TREE_CODE (arg) != PTRMEM_CST)
18164 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
18165
18166 /* Just unify the class member. It would be useless (and possibly
18167 wrong, depending on the strict flags) to unify also
18168 PTRMEM_CST_CLASS, because we want to be sure that both parm and
18169 arg refer to the same variable, even if through different
18170 classes. For instance:
18171
18172 struct A { int x; };
18173 struct B : A { };
18174
18175 Unification of &A::x and &B::x must succeed. */
18176 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
18177 PTRMEM_CST_MEMBER (arg), strict, explain_p);
18178 }
18179
18180 case POINTER_TYPE:
18181 {
18182 if (!TYPE_PTR_P (arg))
18183 return unify_type_mismatch (explain_p, parm, arg);
18184
18185 /* [temp.deduct.call]
18186
18187 A can be another pointer or pointer to member type that can
18188 be converted to the deduced A via a qualification
18189 conversion (_conv.qual_).
18190
18191 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
18192 This will allow for additional cv-qualification of the
18193 pointed-to types if appropriate. */
18194
18195 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
18196 /* The derived-to-base conversion only persists through one
18197 level of pointers. */
18198 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
18199
18200 return unify (tparms, targs, TREE_TYPE (parm),
18201 TREE_TYPE (arg), strict, explain_p);
18202 }
18203
18204 case REFERENCE_TYPE:
18205 if (TREE_CODE (arg) != REFERENCE_TYPE)
18206 return unify_type_mismatch (explain_p, parm, arg);
18207 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18208 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
18209
18210 case ARRAY_TYPE:
18211 if (TREE_CODE (arg) != ARRAY_TYPE)
18212 return unify_type_mismatch (explain_p, parm, arg);
18213 if ((TYPE_DOMAIN (parm) == NULL_TREE)
18214 != (TYPE_DOMAIN (arg) == NULL_TREE))
18215 return unify_type_mismatch (explain_p, parm, arg);
18216 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18217 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
18218 if (TYPE_DOMAIN (parm) != NULL_TREE)
18219 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
18220 TYPE_DOMAIN (arg), explain_p);
18221 return unify_success (explain_p);
18222
18223 case REAL_TYPE:
18224 case COMPLEX_TYPE:
18225 case VECTOR_TYPE:
18226 case INTEGER_TYPE:
18227 case BOOLEAN_TYPE:
18228 case ENUMERAL_TYPE:
18229 case VOID_TYPE:
18230 case NULLPTR_TYPE:
18231 if (TREE_CODE (arg) != TREE_CODE (parm))
18232 return unify_type_mismatch (explain_p, parm, arg);
18233
18234 /* We have already checked cv-qualification at the top of the
18235 function. */
18236 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
18237 return unify_type_mismatch (explain_p, parm, arg);
18238
18239 /* As far as unification is concerned, this wins. Later checks
18240 will invalidate it if necessary. */
18241 return unify_success (explain_p);
18242
18243 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
18244 /* Type INTEGER_CST can come from ordinary constant template args. */
18245 case INTEGER_CST:
18246 while (TREE_CODE (arg) == NOP_EXPR)
18247 arg = TREE_OPERAND (arg, 0);
18248
18249 if (TREE_CODE (arg) != INTEGER_CST)
18250 return unify_template_argument_mismatch (explain_p, parm, arg);
18251 return (tree_int_cst_equal (parm, arg)
18252 ? unify_success (explain_p)
18253 : unify_template_argument_mismatch (explain_p, parm, arg));
18254
18255 case TREE_VEC:
18256 {
18257 int i, len, argslen;
18258 int parm_variadic_p = 0;
18259
18260 if (TREE_CODE (arg) != TREE_VEC)
18261 return unify_template_argument_mismatch (explain_p, parm, arg);
18262
18263 len = TREE_VEC_LENGTH (parm);
18264 argslen = TREE_VEC_LENGTH (arg);
18265
18266 /* Check for pack expansions in the parameters. */
18267 for (i = 0; i < len; ++i)
18268 {
18269 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
18270 {
18271 if (i == len - 1)
18272 /* We can unify against something with a trailing
18273 parameter pack. */
18274 parm_variadic_p = 1;
18275 else
18276 /* [temp.deduct.type]/9: If the template argument list of
18277 P contains a pack expansion that is not the last
18278 template argument, the entire template argument list
18279 is a non-deduced context. */
18280 return unify_success (explain_p);
18281 }
18282 }
18283
18284 /* If we don't have enough arguments to satisfy the parameters
18285 (not counting the pack expression at the end), or we have
18286 too many arguments for a parameter list that doesn't end in
18287 a pack expression, we can't unify. */
18288 if (parm_variadic_p
18289 ? argslen < len - parm_variadic_p
18290 : argslen != len)
18291 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
18292
18293 /* Unify all of the parameters that precede the (optional)
18294 pack expression. */
18295 for (i = 0; i < len - parm_variadic_p; ++i)
18296 {
18297 RECUR_AND_CHECK_FAILURE (tparms, targs,
18298 TREE_VEC_ELT (parm, i),
18299 TREE_VEC_ELT (arg, i),
18300 UNIFY_ALLOW_NONE, explain_p);
18301 }
18302 if (parm_variadic_p)
18303 return unify_pack_expansion (tparms, targs, parm, arg,
18304 DEDUCE_EXACT,
18305 /*subr=*/true, explain_p);
18306 return unify_success (explain_p);
18307 }
18308
18309 case RECORD_TYPE:
18310 case UNION_TYPE:
18311 if (TREE_CODE (arg) != TREE_CODE (parm))
18312 return unify_type_mismatch (explain_p, parm, arg);
18313
18314 if (TYPE_PTRMEMFUNC_P (parm))
18315 {
18316 if (!TYPE_PTRMEMFUNC_P (arg))
18317 return unify_type_mismatch (explain_p, parm, arg);
18318
18319 return unify (tparms, targs,
18320 TYPE_PTRMEMFUNC_FN_TYPE (parm),
18321 TYPE_PTRMEMFUNC_FN_TYPE (arg),
18322 strict, explain_p);
18323 }
18324 else if (TYPE_PTRMEMFUNC_P (arg))
18325 return unify_type_mismatch (explain_p, parm, arg);
18326
18327 if (CLASSTYPE_TEMPLATE_INFO (parm))
18328 {
18329 tree t = NULL_TREE;
18330
18331 if (strict_in & UNIFY_ALLOW_DERIVED)
18332 {
18333 /* First, we try to unify the PARM and ARG directly. */
18334 t = try_class_unification (tparms, targs,
18335 parm, arg, explain_p);
18336
18337 if (!t)
18338 {
18339 /* Fallback to the special case allowed in
18340 [temp.deduct.call]:
18341
18342 If P is a class, and P has the form
18343 template-id, then A can be a derived class of
18344 the deduced A. Likewise, if P is a pointer to
18345 a class of the form template-id, A can be a
18346 pointer to a derived class pointed to by the
18347 deduced A. */
18348 enum template_base_result r;
18349 r = get_template_base (tparms, targs, parm, arg,
18350 explain_p, &t);
18351
18352 if (!t)
18353 return unify_no_common_base (explain_p, r, parm, arg);
18354 }
18355 }
18356 else if (CLASSTYPE_TEMPLATE_INFO (arg)
18357 && (CLASSTYPE_TI_TEMPLATE (parm)
18358 == CLASSTYPE_TI_TEMPLATE (arg)))
18359 /* Perhaps PARM is something like S<U> and ARG is S<int>.
18360 Then, we should unify `int' and `U'. */
18361 t = arg;
18362 else
18363 /* There's no chance of unification succeeding. */
18364 return unify_type_mismatch (explain_p, parm, arg);
18365
18366 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
18367 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
18368 }
18369 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
18370 return unify_type_mismatch (explain_p, parm, arg);
18371 return unify_success (explain_p);
18372
18373 case METHOD_TYPE:
18374 case FUNCTION_TYPE:
18375 {
18376 unsigned int nargs;
18377 tree *args;
18378 tree a;
18379 unsigned int i;
18380
18381 if (TREE_CODE (arg) != TREE_CODE (parm))
18382 return unify_type_mismatch (explain_p, parm, arg);
18383
18384 /* CV qualifications for methods can never be deduced, they must
18385 match exactly. We need to check them explicitly here,
18386 because type_unification_real treats them as any other
18387 cv-qualified parameter. */
18388 if (TREE_CODE (parm) == METHOD_TYPE
18389 && (!check_cv_quals_for_unify
18390 (UNIFY_ALLOW_NONE,
18391 class_of_this_parm (arg),
18392 class_of_this_parm (parm))))
18393 return unify_cv_qual_mismatch (explain_p, parm, arg);
18394
18395 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
18396 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
18397
18398 nargs = list_length (TYPE_ARG_TYPES (arg));
18399 args = XALLOCAVEC (tree, nargs);
18400 for (a = TYPE_ARG_TYPES (arg), i = 0;
18401 a != NULL_TREE && a != void_list_node;
18402 a = TREE_CHAIN (a), ++i)
18403 args[i] = TREE_VALUE (a);
18404 nargs = i;
18405
18406 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
18407 args, nargs, 1, DEDUCE_EXACT,
18408 LOOKUP_NORMAL, NULL, explain_p);
18409 }
18410
18411 case OFFSET_TYPE:
18412 /* Unify a pointer to member with a pointer to member function, which
18413 deduces the type of the member as a function type. */
18414 if (TYPE_PTRMEMFUNC_P (arg))
18415 {
18416 /* Check top-level cv qualifiers */
18417 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
18418 return unify_cv_qual_mismatch (explain_p, parm, arg);
18419
18420 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
18421 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
18422 UNIFY_ALLOW_NONE, explain_p);
18423
18424 /* Determine the type of the function we are unifying against. */
18425 tree fntype = static_fn_type (arg);
18426
18427 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
18428 }
18429
18430 if (TREE_CODE (arg) != OFFSET_TYPE)
18431 return unify_type_mismatch (explain_p, parm, arg);
18432 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
18433 TYPE_OFFSET_BASETYPE (arg),
18434 UNIFY_ALLOW_NONE, explain_p);
18435 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18436 strict, explain_p);
18437
18438 case CONST_DECL:
18439 if (DECL_TEMPLATE_PARM_P (parm))
18440 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
18441 if (arg != scalar_constant_value (parm))
18442 return unify_template_argument_mismatch (explain_p, parm, arg);
18443 return unify_success (explain_p);
18444
18445 case FIELD_DECL:
18446 case TEMPLATE_DECL:
18447 /* Matched cases are handled by the ARG == PARM test above. */
18448 return unify_template_argument_mismatch (explain_p, parm, arg);
18449
18450 case VAR_DECL:
18451 /* A non-type template parameter that is a variable should be a
18452 an integral constant, in which case, it whould have been
18453 folded into its (constant) value. So we should not be getting
18454 a variable here. */
18455 gcc_unreachable ();
18456
18457 case TYPE_ARGUMENT_PACK:
18458 case NONTYPE_ARGUMENT_PACK:
18459 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
18460 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
18461
18462 case TYPEOF_TYPE:
18463 case DECLTYPE_TYPE:
18464 case UNDERLYING_TYPE:
18465 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
18466 or UNDERLYING_TYPE nodes. */
18467 return unify_success (explain_p);
18468
18469 case ERROR_MARK:
18470 /* Unification fails if we hit an error node. */
18471 return unify_invalid (explain_p);
18472
18473 case INDIRECT_REF:
18474 if (REFERENCE_REF_P (parm))
18475 {
18476 if (REFERENCE_REF_P (arg))
18477 arg = TREE_OPERAND (arg, 0);
18478 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
18479 strict, explain_p);
18480 }
18481 /* FALLTHRU */
18482
18483 default:
18484 /* An unresolved overload is a nondeduced context. */
18485 if (is_overloaded_fn (parm) || type_unknown_p (parm))
18486 return unify_success (explain_p);
18487 gcc_assert (EXPR_P (parm));
18488
18489 /* We must be looking at an expression. This can happen with
18490 something like:
18491
18492 template <int I>
18493 void foo(S<I>, S<I + 2>);
18494
18495 This is a "nondeduced context":
18496
18497 [deduct.type]
18498
18499 The nondeduced contexts are:
18500
18501 --A type that is a template-id in which one or more of
18502 the template-arguments is an expression that references
18503 a template-parameter.
18504
18505 In these cases, we assume deduction succeeded, but don't
18506 actually infer any unifications. */
18507
18508 if (!uses_template_parms (parm)
18509 && !template_args_equal (parm, arg))
18510 return unify_expression_unequal (explain_p, parm, arg);
18511 else
18512 return unify_success (explain_p);
18513 }
18514 }
18515 #undef RECUR_AND_CHECK_FAILURE
18516 \f
18517 /* Note that DECL can be defined in this translation unit, if
18518 required. */
18519
18520 static void
18521 mark_definable (tree decl)
18522 {
18523 tree clone;
18524 DECL_NOT_REALLY_EXTERN (decl) = 1;
18525 FOR_EACH_CLONE (clone, decl)
18526 DECL_NOT_REALLY_EXTERN (clone) = 1;
18527 }
18528
18529 /* Called if RESULT is explicitly instantiated, or is a member of an
18530 explicitly instantiated class. */
18531
18532 void
18533 mark_decl_instantiated (tree result, int extern_p)
18534 {
18535 SET_DECL_EXPLICIT_INSTANTIATION (result);
18536
18537 /* If this entity has already been written out, it's too late to
18538 make any modifications. */
18539 if (TREE_ASM_WRITTEN (result))
18540 return;
18541
18542 /* For anonymous namespace we don't need to do anything. */
18543 if (decl_anon_ns_mem_p (result))
18544 {
18545 gcc_assert (!TREE_PUBLIC (result));
18546 return;
18547 }
18548
18549 if (TREE_CODE (result) != FUNCTION_DECL)
18550 /* The TREE_PUBLIC flag for function declarations will have been
18551 set correctly by tsubst. */
18552 TREE_PUBLIC (result) = 1;
18553
18554 /* This might have been set by an earlier implicit instantiation. */
18555 DECL_COMDAT (result) = 0;
18556
18557 if (extern_p)
18558 DECL_NOT_REALLY_EXTERN (result) = 0;
18559 else
18560 {
18561 mark_definable (result);
18562 mark_needed (result);
18563 /* Always make artificials weak. */
18564 if (DECL_ARTIFICIAL (result) && flag_weak)
18565 comdat_linkage (result);
18566 /* For WIN32 we also want to put explicit instantiations in
18567 linkonce sections. */
18568 else if (TREE_PUBLIC (result))
18569 maybe_make_one_only (result);
18570 }
18571
18572 /* If EXTERN_P, then this function will not be emitted -- unless
18573 followed by an explicit instantiation, at which point its linkage
18574 will be adjusted. If !EXTERN_P, then this function will be
18575 emitted here. In neither circumstance do we want
18576 import_export_decl to adjust the linkage. */
18577 DECL_INTERFACE_KNOWN (result) = 1;
18578 }
18579
18580 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
18581 important template arguments. If any are missing, we check whether
18582 they're important by using error_mark_node for substituting into any
18583 args that were used for partial ordering (the ones between ARGS and END)
18584 and seeing if it bubbles up. */
18585
18586 static bool
18587 check_undeduced_parms (tree targs, tree args, tree end)
18588 {
18589 bool found = false;
18590 int i;
18591 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
18592 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
18593 {
18594 found = true;
18595 TREE_VEC_ELT (targs, i) = error_mark_node;
18596 }
18597 if (found)
18598 {
18599 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
18600 if (substed == error_mark_node)
18601 return true;
18602 }
18603 return false;
18604 }
18605
18606 /* Given two function templates PAT1 and PAT2, return:
18607
18608 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
18609 -1 if PAT2 is more specialized than PAT1.
18610 0 if neither is more specialized.
18611
18612 LEN indicates the number of parameters we should consider
18613 (defaulted parameters should not be considered).
18614
18615 The 1998 std underspecified function template partial ordering, and
18616 DR214 addresses the issue. We take pairs of arguments, one from
18617 each of the templates, and deduce them against each other. One of
18618 the templates will be more specialized if all the *other*
18619 template's arguments deduce against its arguments and at least one
18620 of its arguments *does* *not* deduce against the other template's
18621 corresponding argument. Deduction is done as for class templates.
18622 The arguments used in deduction have reference and top level cv
18623 qualifiers removed. Iff both arguments were originally reference
18624 types *and* deduction succeeds in both directions, an lvalue reference
18625 wins against an rvalue reference and otherwise the template
18626 with the more cv-qualified argument wins for that pairing (if
18627 neither is more cv-qualified, they both are equal). Unlike regular
18628 deduction, after all the arguments have been deduced in this way,
18629 we do *not* verify the deduced template argument values can be
18630 substituted into non-deduced contexts.
18631
18632 The logic can be a bit confusing here, because we look at deduce1 and
18633 targs1 to see if pat2 is at least as specialized, and vice versa; if we
18634 can find template arguments for pat1 to make arg1 look like arg2, that
18635 means that arg2 is at least as specialized as arg1. */
18636
18637 int
18638 more_specialized_fn (tree pat1, tree pat2, int len)
18639 {
18640 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
18641 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
18642 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
18643 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
18644 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
18645 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
18646 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
18647 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
18648 tree origs1, origs2;
18649 bool lose1 = false;
18650 bool lose2 = false;
18651
18652 /* Remove the this parameter from non-static member functions. If
18653 one is a non-static member function and the other is not a static
18654 member function, remove the first parameter from that function
18655 also. This situation occurs for operator functions where we
18656 locate both a member function (with this pointer) and non-member
18657 operator (with explicit first operand). */
18658 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
18659 {
18660 len--; /* LEN is the number of significant arguments for DECL1 */
18661 args1 = TREE_CHAIN (args1);
18662 if (!DECL_STATIC_FUNCTION_P (decl2))
18663 args2 = TREE_CHAIN (args2);
18664 }
18665 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
18666 {
18667 args2 = TREE_CHAIN (args2);
18668 if (!DECL_STATIC_FUNCTION_P (decl1))
18669 {
18670 len--;
18671 args1 = TREE_CHAIN (args1);
18672 }
18673 }
18674
18675 /* If only one is a conversion operator, they are unordered. */
18676 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
18677 return 0;
18678
18679 /* Consider the return type for a conversion function */
18680 if (DECL_CONV_FN_P (decl1))
18681 {
18682 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
18683 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
18684 len++;
18685 }
18686
18687 processing_template_decl++;
18688
18689 origs1 = args1;
18690 origs2 = args2;
18691
18692 while (len--
18693 /* Stop when an ellipsis is seen. */
18694 && args1 != NULL_TREE && args2 != NULL_TREE)
18695 {
18696 tree arg1 = TREE_VALUE (args1);
18697 tree arg2 = TREE_VALUE (args2);
18698 int deduce1, deduce2;
18699 int quals1 = -1;
18700 int quals2 = -1;
18701 int ref1 = 0;
18702 int ref2 = 0;
18703
18704 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
18705 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18706 {
18707 /* When both arguments are pack expansions, we need only
18708 unify the patterns themselves. */
18709 arg1 = PACK_EXPANSION_PATTERN (arg1);
18710 arg2 = PACK_EXPANSION_PATTERN (arg2);
18711
18712 /* This is the last comparison we need to do. */
18713 len = 0;
18714 }
18715
18716 if (TREE_CODE (arg1) == REFERENCE_TYPE)
18717 {
18718 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
18719 arg1 = TREE_TYPE (arg1);
18720 quals1 = cp_type_quals (arg1);
18721 }
18722
18723 if (TREE_CODE (arg2) == REFERENCE_TYPE)
18724 {
18725 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
18726 arg2 = TREE_TYPE (arg2);
18727 quals2 = cp_type_quals (arg2);
18728 }
18729
18730 arg1 = TYPE_MAIN_VARIANT (arg1);
18731 arg2 = TYPE_MAIN_VARIANT (arg2);
18732
18733 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
18734 {
18735 int i, len2 = list_length (args2);
18736 tree parmvec = make_tree_vec (1);
18737 tree argvec = make_tree_vec (len2);
18738 tree ta = args2;
18739
18740 /* Setup the parameter vector, which contains only ARG1. */
18741 TREE_VEC_ELT (parmvec, 0) = arg1;
18742
18743 /* Setup the argument vector, which contains the remaining
18744 arguments. */
18745 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
18746 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
18747
18748 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
18749 argvec, DEDUCE_EXACT,
18750 /*subr=*/true, /*explain_p=*/false)
18751 == 0);
18752
18753 /* We cannot deduce in the other direction, because ARG1 is
18754 a pack expansion but ARG2 is not. */
18755 deduce2 = 0;
18756 }
18757 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18758 {
18759 int i, len1 = list_length (args1);
18760 tree parmvec = make_tree_vec (1);
18761 tree argvec = make_tree_vec (len1);
18762 tree ta = args1;
18763
18764 /* Setup the parameter vector, which contains only ARG1. */
18765 TREE_VEC_ELT (parmvec, 0) = arg2;
18766
18767 /* Setup the argument vector, which contains the remaining
18768 arguments. */
18769 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
18770 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
18771
18772 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
18773 argvec, DEDUCE_EXACT,
18774 /*subr=*/true, /*explain_p=*/false)
18775 == 0);
18776
18777 /* We cannot deduce in the other direction, because ARG2 is
18778 a pack expansion but ARG1 is not.*/
18779 deduce1 = 0;
18780 }
18781
18782 else
18783 {
18784 /* The normal case, where neither argument is a pack
18785 expansion. */
18786 deduce1 = (unify (tparms1, targs1, arg1, arg2,
18787 UNIFY_ALLOW_NONE, /*explain_p=*/false)
18788 == 0);
18789 deduce2 = (unify (tparms2, targs2, arg2, arg1,
18790 UNIFY_ALLOW_NONE, /*explain_p=*/false)
18791 == 0);
18792 }
18793
18794 /* If we couldn't deduce arguments for tparms1 to make arg1 match
18795 arg2, then arg2 is not as specialized as arg1. */
18796 if (!deduce1)
18797 lose2 = true;
18798 if (!deduce2)
18799 lose1 = true;
18800
18801 /* "If, for a given type, deduction succeeds in both directions
18802 (i.e., the types are identical after the transformations above)
18803 and both P and A were reference types (before being replaced with
18804 the type referred to above):
18805 - if the type from the argument template was an lvalue reference and
18806 the type from the parameter template was not, the argument type is
18807 considered to be more specialized than the other; otherwise,
18808 - if the type from the argument template is more cv-qualified
18809 than the type from the parameter template (as described above),
18810 the argument type is considered to be more specialized than the other;
18811 otherwise,
18812 - neither type is more specialized than the other." */
18813
18814 if (deduce1 && deduce2)
18815 {
18816 if (ref1 && ref2 && ref1 != ref2)
18817 {
18818 if (ref1 > ref2)
18819 lose1 = true;
18820 else
18821 lose2 = true;
18822 }
18823 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
18824 {
18825 if ((quals1 & quals2) == quals2)
18826 lose2 = true;
18827 if ((quals1 & quals2) == quals1)
18828 lose1 = true;
18829 }
18830 }
18831
18832 if (lose1 && lose2)
18833 /* We've failed to deduce something in either direction.
18834 These must be unordered. */
18835 break;
18836
18837 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
18838 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18839 /* We have already processed all of the arguments in our
18840 handing of the pack expansion type. */
18841 len = 0;
18842
18843 args1 = TREE_CHAIN (args1);
18844 args2 = TREE_CHAIN (args2);
18845 }
18846
18847 /* "In most cases, all template parameters must have values in order for
18848 deduction to succeed, but for partial ordering purposes a template
18849 parameter may remain without a value provided it is not used in the
18850 types being used for partial ordering."
18851
18852 Thus, if we are missing any of the targs1 we need to substitute into
18853 origs1, then pat2 is not as specialized as pat1. This can happen when
18854 there is a nondeduced context. */
18855 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
18856 lose2 = true;
18857 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
18858 lose1 = true;
18859
18860 processing_template_decl--;
18861
18862 /* All things being equal, if the next argument is a pack expansion
18863 for one function but not for the other, prefer the
18864 non-variadic function. FIXME this is bogus; see c++/41958. */
18865 if (lose1 == lose2
18866 && args1 && TREE_VALUE (args1)
18867 && args2 && TREE_VALUE (args2))
18868 {
18869 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
18870 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
18871 }
18872
18873 if (lose1 == lose2)
18874 return 0;
18875 else if (!lose1)
18876 return 1;
18877 else
18878 return -1;
18879 }
18880
18881 /* Determine which of two partial specializations of TMPL is more
18882 specialized.
18883
18884 PAT1 is a TREE_LIST whose TREE_TYPE is the _TYPE node corresponding
18885 to the first partial specialization. The TREE_VALUE is the
18886 innermost set of template parameters for the partial
18887 specialization. PAT2 is similar, but for the second template.
18888
18889 Return 1 if the first partial specialization is more specialized;
18890 -1 if the second is more specialized; 0 if neither is more
18891 specialized.
18892
18893 See [temp.class.order] for information about determining which of
18894 two templates is more specialized. */
18895
18896 static int
18897 more_specialized_class (tree tmpl, tree pat1, tree pat2)
18898 {
18899 tree targs;
18900 tree tmpl1, tmpl2;
18901 int winner = 0;
18902 bool any_deductions = false;
18903
18904 tmpl1 = TREE_TYPE (pat1);
18905 tmpl2 = TREE_TYPE (pat2);
18906
18907 /* Just like what happens for functions, if we are ordering between
18908 different class template specializations, we may encounter dependent
18909 types in the arguments, and we need our dependency check functions
18910 to behave correctly. */
18911 ++processing_template_decl;
18912 targs = get_class_bindings (tmpl, TREE_VALUE (pat1),
18913 CLASSTYPE_TI_ARGS (tmpl1),
18914 CLASSTYPE_TI_ARGS (tmpl2));
18915 if (targs)
18916 {
18917 --winner;
18918 any_deductions = true;
18919 }
18920
18921 targs = get_class_bindings (tmpl, TREE_VALUE (pat2),
18922 CLASSTYPE_TI_ARGS (tmpl2),
18923 CLASSTYPE_TI_ARGS (tmpl1));
18924 if (targs)
18925 {
18926 ++winner;
18927 any_deductions = true;
18928 }
18929 --processing_template_decl;
18930
18931 /* In the case of a tie where at least one of the class templates
18932 has a parameter pack at the end, the template with the most
18933 non-packed parameters wins. */
18934 if (winner == 0
18935 && any_deductions
18936 && (template_args_variadic_p (TREE_PURPOSE (pat1))
18937 || template_args_variadic_p (TREE_PURPOSE (pat2))))
18938 {
18939 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
18940 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
18941 int len1 = TREE_VEC_LENGTH (args1);
18942 int len2 = TREE_VEC_LENGTH (args2);
18943
18944 /* We don't count the pack expansion at the end. */
18945 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
18946 --len1;
18947 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
18948 --len2;
18949
18950 if (len1 > len2)
18951 return 1;
18952 else if (len1 < len2)
18953 return -1;
18954 }
18955
18956 return winner;
18957 }
18958
18959 /* Return the template arguments that will produce the function signature
18960 DECL from the function template FN, with the explicit template
18961 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
18962 also match. Return NULL_TREE if no satisfactory arguments could be
18963 found. */
18964
18965 static tree
18966 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
18967 {
18968 int ntparms = DECL_NTPARMS (fn);
18969 tree targs = make_tree_vec (ntparms);
18970 tree decl_type = TREE_TYPE (decl);
18971 tree decl_arg_types;
18972 tree *args;
18973 unsigned int nargs, ix;
18974 tree arg;
18975
18976 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
18977
18978 /* Never do unification on the 'this' parameter. */
18979 decl_arg_types = skip_artificial_parms_for (decl,
18980 TYPE_ARG_TYPES (decl_type));
18981
18982 nargs = list_length (decl_arg_types);
18983 args = XALLOCAVEC (tree, nargs);
18984 for (arg = decl_arg_types, ix = 0;
18985 arg != NULL_TREE && arg != void_list_node;
18986 arg = TREE_CHAIN (arg), ++ix)
18987 args[ix] = TREE_VALUE (arg);
18988
18989 if (fn_type_unification (fn, explicit_args, targs,
18990 args, ix,
18991 (check_rettype || DECL_CONV_FN_P (fn)
18992 ? TREE_TYPE (decl_type) : NULL_TREE),
18993 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
18994 /*decltype*/false)
18995 == error_mark_node)
18996 return NULL_TREE;
18997
18998 return targs;
18999 }
19000
19001 /* Return the innermost template arguments that, when applied to a partial
19002 specialization of TMPL whose innermost template parameters are
19003 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
19004 ARGS.
19005
19006 For example, suppose we have:
19007
19008 template <class T, class U> struct S {};
19009 template <class T> struct S<T*, int> {};
19010
19011 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
19012 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
19013 int}. The resulting vector will be {double}, indicating that `T'
19014 is bound to `double'. */
19015
19016 static tree
19017 get_class_bindings (tree tmpl, tree tparms, tree spec_args, tree args)
19018 {
19019 int i, ntparms = TREE_VEC_LENGTH (tparms);
19020 tree deduced_args;
19021 tree innermost_deduced_args;
19022
19023 innermost_deduced_args = make_tree_vec (ntparms);
19024 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
19025 {
19026 deduced_args = copy_node (args);
19027 SET_TMPL_ARGS_LEVEL (deduced_args,
19028 TMPL_ARGS_DEPTH (deduced_args),
19029 innermost_deduced_args);
19030 }
19031 else
19032 deduced_args = innermost_deduced_args;
19033
19034 if (unify (tparms, deduced_args,
19035 INNERMOST_TEMPLATE_ARGS (spec_args),
19036 INNERMOST_TEMPLATE_ARGS (args),
19037 UNIFY_ALLOW_NONE, /*explain_p=*/false))
19038 return NULL_TREE;
19039
19040 for (i = 0; i < ntparms; ++i)
19041 if (! TREE_VEC_ELT (innermost_deduced_args, i))
19042 return NULL_TREE;
19043
19044 /* Verify that nondeduced template arguments agree with the type
19045 obtained from argument deduction.
19046
19047 For example:
19048
19049 struct A { typedef int X; };
19050 template <class T, class U> struct C {};
19051 template <class T> struct C<T, typename T::X> {};
19052
19053 Then with the instantiation `C<A, int>', we can deduce that
19054 `T' is `A' but unify () does not check whether `typename T::X'
19055 is `int'. */
19056 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
19057 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
19058 spec_args, tmpl,
19059 tf_none, false, false);
19060 if (spec_args == error_mark_node
19061 /* We only need to check the innermost arguments; the other
19062 arguments will always agree. */
19063 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
19064 INNERMOST_TEMPLATE_ARGS (args)))
19065 return NULL_TREE;
19066
19067 /* Now that we have bindings for all of the template arguments,
19068 ensure that the arguments deduced for the template template
19069 parameters have compatible template parameter lists. See the use
19070 of template_template_parm_bindings_ok_p in fn_type_unification
19071 for more information. */
19072 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
19073 return NULL_TREE;
19074
19075 return deduced_args;
19076 }
19077
19078 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
19079 Return the TREE_LIST node with the most specialized template, if
19080 any. If there is no most specialized template, the error_mark_node
19081 is returned.
19082
19083 Note that this function does not look at, or modify, the
19084 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
19085 returned is one of the elements of INSTANTIATIONS, callers may
19086 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
19087 and retrieve it from the value returned. */
19088
19089 tree
19090 most_specialized_instantiation (tree templates)
19091 {
19092 tree fn, champ;
19093
19094 ++processing_template_decl;
19095
19096 champ = templates;
19097 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
19098 {
19099 int fate = 0;
19100
19101 if (get_bindings (TREE_VALUE (champ),
19102 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
19103 NULL_TREE, /*check_ret=*/true))
19104 fate--;
19105
19106 if (get_bindings (TREE_VALUE (fn),
19107 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
19108 NULL_TREE, /*check_ret=*/true))
19109 fate++;
19110
19111 if (fate == -1)
19112 champ = fn;
19113 else if (!fate)
19114 {
19115 /* Equally specialized, move to next function. If there
19116 is no next function, nothing's most specialized. */
19117 fn = TREE_CHAIN (fn);
19118 champ = fn;
19119 if (!fn)
19120 break;
19121 }
19122 }
19123
19124 if (champ)
19125 /* Now verify that champ is better than everything earlier in the
19126 instantiation list. */
19127 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn))
19128 if (get_bindings (TREE_VALUE (champ),
19129 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
19130 NULL_TREE, /*check_ret=*/true)
19131 || !get_bindings (TREE_VALUE (fn),
19132 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
19133 NULL_TREE, /*check_ret=*/true))
19134 {
19135 champ = NULL_TREE;
19136 break;
19137 }
19138
19139 processing_template_decl--;
19140
19141 if (!champ)
19142 return error_mark_node;
19143
19144 return champ;
19145 }
19146
19147 /* If DECL is a specialization of some template, return the most
19148 general such template. Otherwise, returns NULL_TREE.
19149
19150 For example, given:
19151
19152 template <class T> struct S { template <class U> void f(U); };
19153
19154 if TMPL is `template <class U> void S<int>::f(U)' this will return
19155 the full template. This function will not trace past partial
19156 specializations, however. For example, given in addition:
19157
19158 template <class T> struct S<T*> { template <class U> void f(U); };
19159
19160 if TMPL is `template <class U> void S<int*>::f(U)' this will return
19161 `template <class T> template <class U> S<T*>::f(U)'. */
19162
19163 tree
19164 most_general_template (tree decl)
19165 {
19166 if (TREE_CODE (decl) != TEMPLATE_DECL)
19167 {
19168 if (tree tinfo = get_template_info (decl))
19169 decl = TI_TEMPLATE (tinfo);
19170 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
19171 template friend, or a FIELD_DECL for a capture pack. */
19172 if (TREE_CODE (decl) != TEMPLATE_DECL)
19173 return NULL_TREE;
19174 }
19175
19176 /* Look for more and more general templates. */
19177 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
19178 {
19179 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
19180 (See cp-tree.h for details.) */
19181 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
19182 break;
19183
19184 if (CLASS_TYPE_P (TREE_TYPE (decl))
19185 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
19186 break;
19187
19188 /* Stop if we run into an explicitly specialized class template. */
19189 if (!DECL_NAMESPACE_SCOPE_P (decl)
19190 && DECL_CONTEXT (decl)
19191 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
19192 break;
19193
19194 decl = DECL_TI_TEMPLATE (decl);
19195 }
19196
19197 return decl;
19198 }
19199
19200 /* Return the most specialized of the class template partial
19201 specializations which can produce TYPE, a specialization of some class
19202 template. The value returned is actually a TREE_LIST; the TREE_TYPE is
19203 a _TYPE node corresponding to the partial specialization, while the
19204 TREE_PURPOSE is the set of template arguments that must be
19205 substituted into the TREE_TYPE in order to generate TYPE.
19206
19207 If the choice of partial specialization is ambiguous, a diagnostic
19208 is issued, and the error_mark_node is returned. If there are no
19209 partial specializations matching TYPE, then NULL_TREE is
19210 returned, indicating that the primary template should be used. */
19211
19212 static tree
19213 most_specialized_class (tree type, tsubst_flags_t complain)
19214 {
19215 tree list = NULL_TREE;
19216 tree t;
19217 tree champ;
19218 int fate;
19219 bool ambiguous_p;
19220 tree outer_args = NULL_TREE;
19221
19222 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
19223 tree main_tmpl = most_general_template (tmpl);
19224 tree args = CLASSTYPE_TI_ARGS (type);
19225
19226 /* For determining which partial specialization to use, only the
19227 innermost args are interesting. */
19228 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
19229 {
19230 outer_args = strip_innermost_template_args (args, 1);
19231 args = INNERMOST_TEMPLATE_ARGS (args);
19232 }
19233
19234 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
19235 {
19236 tree partial_spec_args;
19237 tree spec_args;
19238 tree spec_tmpl = TREE_VALUE (t);
19239 tree orig_parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
19240
19241 partial_spec_args = CLASSTYPE_TI_ARGS (TREE_TYPE (t));
19242
19243 ++processing_template_decl;
19244
19245 if (outer_args)
19246 {
19247 /* Discard the outer levels of args, and then substitute in the
19248 template args from the enclosing class. */
19249 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
19250 partial_spec_args = tsubst_template_args
19251 (partial_spec_args, outer_args, tf_none, NULL_TREE);
19252
19253 /* And the same for the partial specialization TEMPLATE_DECL. */
19254 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
19255 }
19256
19257 partial_spec_args =
19258 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
19259 partial_spec_args,
19260 tmpl, tf_none,
19261 /*require_all_args=*/true,
19262 /*use_default_args=*/true);
19263
19264 --processing_template_decl;
19265
19266 if (partial_spec_args == error_mark_node)
19267 return error_mark_node;
19268 if (spec_tmpl == error_mark_node)
19269 return error_mark_node;
19270
19271 tree parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
19272 spec_args = get_class_bindings (tmpl, parms,
19273 partial_spec_args,
19274 args);
19275 if (spec_args)
19276 {
19277 if (outer_args)
19278 spec_args = add_to_template_args (outer_args, spec_args);
19279 list = tree_cons (spec_args, orig_parms, list);
19280 TREE_TYPE (list) = TREE_TYPE (t);
19281 }
19282 }
19283
19284 if (! list)
19285 return NULL_TREE;
19286
19287 ambiguous_p = false;
19288 t = list;
19289 champ = t;
19290 t = TREE_CHAIN (t);
19291 for (; t; t = TREE_CHAIN (t))
19292 {
19293 fate = more_specialized_class (tmpl, champ, t);
19294 if (fate == 1)
19295 ;
19296 else
19297 {
19298 if (fate == 0)
19299 {
19300 t = TREE_CHAIN (t);
19301 if (! t)
19302 {
19303 ambiguous_p = true;
19304 break;
19305 }
19306 }
19307 champ = t;
19308 }
19309 }
19310
19311 if (!ambiguous_p)
19312 for (t = list; t && t != champ; t = TREE_CHAIN (t))
19313 {
19314 fate = more_specialized_class (tmpl, champ, t);
19315 if (fate != 1)
19316 {
19317 ambiguous_p = true;
19318 break;
19319 }
19320 }
19321
19322 if (ambiguous_p)
19323 {
19324 const char *str;
19325 char *spaces = NULL;
19326 if (!(complain & tf_error))
19327 return error_mark_node;
19328 error ("ambiguous class template instantiation for %q#T", type);
19329 str = ngettext ("candidate is:", "candidates are:", list_length (list));
19330 for (t = list; t; t = TREE_CHAIN (t))
19331 {
19332 error ("%s %+#T", spaces ? spaces : str, TREE_TYPE (t));
19333 spaces = spaces ? spaces : get_spaces (str);
19334 }
19335 free (spaces);
19336 return error_mark_node;
19337 }
19338
19339 return champ;
19340 }
19341
19342 /* Explicitly instantiate DECL. */
19343
19344 void
19345 do_decl_instantiation (tree decl, tree storage)
19346 {
19347 tree result = NULL_TREE;
19348 int extern_p = 0;
19349
19350 if (!decl || decl == error_mark_node)
19351 /* An error occurred, for which grokdeclarator has already issued
19352 an appropriate message. */
19353 return;
19354 else if (! DECL_LANG_SPECIFIC (decl))
19355 {
19356 error ("explicit instantiation of non-template %q#D", decl);
19357 return;
19358 }
19359
19360 bool var_templ = (DECL_TEMPLATE_INFO (decl)
19361 && variable_template_p (DECL_TI_TEMPLATE (decl)));
19362
19363 if (VAR_P (decl) && !var_templ)
19364 {
19365 /* There is an asymmetry here in the way VAR_DECLs and
19366 FUNCTION_DECLs are handled by grokdeclarator. In the case of
19367 the latter, the DECL we get back will be marked as a
19368 template instantiation, and the appropriate
19369 DECL_TEMPLATE_INFO will be set up. This does not happen for
19370 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
19371 should handle VAR_DECLs as it currently handles
19372 FUNCTION_DECLs. */
19373 if (!DECL_CLASS_SCOPE_P (decl))
19374 {
19375 error ("%qD is not a static data member of a class template", decl);
19376 return;
19377 }
19378 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
19379 if (!result || !VAR_P (result))
19380 {
19381 error ("no matching template for %qD found", decl);
19382 return;
19383 }
19384 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
19385 {
19386 error ("type %qT for explicit instantiation %qD does not match "
19387 "declared type %qT", TREE_TYPE (result), decl,
19388 TREE_TYPE (decl));
19389 return;
19390 }
19391 }
19392 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
19393 {
19394 error ("explicit instantiation of %q#D", decl);
19395 return;
19396 }
19397 else
19398 result = decl;
19399
19400 /* Check for various error cases. Note that if the explicit
19401 instantiation is valid the RESULT will currently be marked as an
19402 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
19403 until we get here. */
19404
19405 if (DECL_TEMPLATE_SPECIALIZATION (result))
19406 {
19407 /* DR 259 [temp.spec].
19408
19409 Both an explicit instantiation and a declaration of an explicit
19410 specialization shall not appear in a program unless the explicit
19411 instantiation follows a declaration of the explicit specialization.
19412
19413 For a given set of template parameters, if an explicit
19414 instantiation of a template appears after a declaration of an
19415 explicit specialization for that template, the explicit
19416 instantiation has no effect. */
19417 return;
19418 }
19419 else if (DECL_EXPLICIT_INSTANTIATION (result))
19420 {
19421 /* [temp.spec]
19422
19423 No program shall explicitly instantiate any template more
19424 than once.
19425
19426 We check DECL_NOT_REALLY_EXTERN so as not to complain when
19427 the first instantiation was `extern' and the second is not,
19428 and EXTERN_P for the opposite case. */
19429 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
19430 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
19431 /* If an "extern" explicit instantiation follows an ordinary
19432 explicit instantiation, the template is instantiated. */
19433 if (extern_p)
19434 return;
19435 }
19436 else if (!DECL_IMPLICIT_INSTANTIATION (result))
19437 {
19438 error ("no matching template for %qD found", result);
19439 return;
19440 }
19441 else if (!DECL_TEMPLATE_INFO (result))
19442 {
19443 permerror (input_location, "explicit instantiation of non-template %q#D", result);
19444 return;
19445 }
19446
19447 if (storage == NULL_TREE)
19448 ;
19449 else if (storage == ridpointers[(int) RID_EXTERN])
19450 {
19451 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
19452 pedwarn (input_location, OPT_Wpedantic,
19453 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
19454 "instantiations");
19455 extern_p = 1;
19456 }
19457 else
19458 error ("storage class %qD applied to template instantiation", storage);
19459
19460 check_explicit_instantiation_namespace (result);
19461 mark_decl_instantiated (result, extern_p);
19462 if (! extern_p)
19463 instantiate_decl (result, /*defer_ok=*/1,
19464 /*expl_inst_class_mem_p=*/false);
19465 }
19466
19467 static void
19468 mark_class_instantiated (tree t, int extern_p)
19469 {
19470 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
19471 SET_CLASSTYPE_INTERFACE_KNOWN (t);
19472 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
19473 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
19474 if (! extern_p)
19475 {
19476 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
19477 rest_of_type_compilation (t, 1);
19478 }
19479 }
19480
19481 /* Called from do_type_instantiation through binding_table_foreach to
19482 do recursive instantiation for the type bound in ENTRY. */
19483 static void
19484 bt_instantiate_type_proc (binding_entry entry, void *data)
19485 {
19486 tree storage = *(tree *) data;
19487
19488 if (MAYBE_CLASS_TYPE_P (entry->type)
19489 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
19490 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
19491 }
19492
19493 /* Called from do_type_instantiation to instantiate a member
19494 (a member function or a static member variable) of an
19495 explicitly instantiated class template. */
19496 static void
19497 instantiate_class_member (tree decl, int extern_p)
19498 {
19499 mark_decl_instantiated (decl, extern_p);
19500 if (! extern_p)
19501 instantiate_decl (decl, /*defer_ok=*/1,
19502 /*expl_inst_class_mem_p=*/true);
19503 }
19504
19505 /* Perform an explicit instantiation of template class T. STORAGE, if
19506 non-null, is the RID for extern, inline or static. COMPLAIN is
19507 nonzero if this is called from the parser, zero if called recursively,
19508 since the standard is unclear (as detailed below). */
19509
19510 void
19511 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
19512 {
19513 int extern_p = 0;
19514 int nomem_p = 0;
19515 int static_p = 0;
19516 int previous_instantiation_extern_p = 0;
19517
19518 if (TREE_CODE (t) == TYPE_DECL)
19519 t = TREE_TYPE (t);
19520
19521 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
19522 {
19523 tree tmpl =
19524 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
19525 if (tmpl)
19526 error ("explicit instantiation of non-class template %qD", tmpl);
19527 else
19528 error ("explicit instantiation of non-template type %qT", t);
19529 return;
19530 }
19531
19532 complete_type (t);
19533
19534 if (!COMPLETE_TYPE_P (t))
19535 {
19536 if (complain & tf_error)
19537 error ("explicit instantiation of %q#T before definition of template",
19538 t);
19539 return;
19540 }
19541
19542 if (storage != NULL_TREE)
19543 {
19544 if (!in_system_header_at (input_location))
19545 {
19546 if (storage == ridpointers[(int) RID_EXTERN])
19547 {
19548 if (cxx_dialect == cxx98)
19549 pedwarn (input_location, OPT_Wpedantic,
19550 "ISO C++ 1998 forbids the use of %<extern%> on "
19551 "explicit instantiations");
19552 }
19553 else
19554 pedwarn (input_location, OPT_Wpedantic,
19555 "ISO C++ forbids the use of %qE"
19556 " on explicit instantiations", storage);
19557 }
19558
19559 if (storage == ridpointers[(int) RID_INLINE])
19560 nomem_p = 1;
19561 else if (storage == ridpointers[(int) RID_EXTERN])
19562 extern_p = 1;
19563 else if (storage == ridpointers[(int) RID_STATIC])
19564 static_p = 1;
19565 else
19566 {
19567 error ("storage class %qD applied to template instantiation",
19568 storage);
19569 extern_p = 0;
19570 }
19571 }
19572
19573 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
19574 {
19575 /* DR 259 [temp.spec].
19576
19577 Both an explicit instantiation and a declaration of an explicit
19578 specialization shall not appear in a program unless the explicit
19579 instantiation follows a declaration of the explicit specialization.
19580
19581 For a given set of template parameters, if an explicit
19582 instantiation of a template appears after a declaration of an
19583 explicit specialization for that template, the explicit
19584 instantiation has no effect. */
19585 return;
19586 }
19587 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
19588 {
19589 /* [temp.spec]
19590
19591 No program shall explicitly instantiate any template more
19592 than once.
19593
19594 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
19595 instantiation was `extern'. If EXTERN_P then the second is.
19596 These cases are OK. */
19597 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
19598
19599 if (!previous_instantiation_extern_p && !extern_p
19600 && (complain & tf_error))
19601 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
19602
19603 /* If we've already instantiated the template, just return now. */
19604 if (!CLASSTYPE_INTERFACE_ONLY (t))
19605 return;
19606 }
19607
19608 check_explicit_instantiation_namespace (TYPE_NAME (t));
19609 mark_class_instantiated (t, extern_p);
19610
19611 if (nomem_p)
19612 return;
19613
19614 {
19615 tree tmp;
19616
19617 /* In contrast to implicit instantiation, where only the
19618 declarations, and not the definitions, of members are
19619 instantiated, we have here:
19620
19621 [temp.explicit]
19622
19623 The explicit instantiation of a class template specialization
19624 implies the instantiation of all of its members not
19625 previously explicitly specialized in the translation unit
19626 containing the explicit instantiation.
19627
19628 Of course, we can't instantiate member template classes, since
19629 we don't have any arguments for them. Note that the standard
19630 is unclear on whether the instantiation of the members are
19631 *explicit* instantiations or not. However, the most natural
19632 interpretation is that it should be an explicit instantiation. */
19633
19634 if (! static_p)
19635 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
19636 if (TREE_CODE (tmp) == FUNCTION_DECL
19637 && DECL_TEMPLATE_INSTANTIATION (tmp))
19638 instantiate_class_member (tmp, extern_p);
19639
19640 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
19641 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
19642 instantiate_class_member (tmp, extern_p);
19643
19644 if (CLASSTYPE_NESTED_UTDS (t))
19645 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
19646 bt_instantiate_type_proc, &storage);
19647 }
19648 }
19649
19650 /* Given a function DECL, which is a specialization of TMPL, modify
19651 DECL to be a re-instantiation of TMPL with the same template
19652 arguments. TMPL should be the template into which tsubst'ing
19653 should occur for DECL, not the most general template.
19654
19655 One reason for doing this is a scenario like this:
19656
19657 template <class T>
19658 void f(const T&, int i);
19659
19660 void g() { f(3, 7); }
19661
19662 template <class T>
19663 void f(const T& t, const int i) { }
19664
19665 Note that when the template is first instantiated, with
19666 instantiate_template, the resulting DECL will have no name for the
19667 first parameter, and the wrong type for the second. So, when we go
19668 to instantiate the DECL, we regenerate it. */
19669
19670 static void
19671 regenerate_decl_from_template (tree decl, tree tmpl)
19672 {
19673 /* The arguments used to instantiate DECL, from the most general
19674 template. */
19675 tree args;
19676 tree code_pattern;
19677
19678 args = DECL_TI_ARGS (decl);
19679 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
19680
19681 /* Make sure that we can see identifiers, and compute access
19682 correctly. */
19683 push_access_scope (decl);
19684
19685 if (TREE_CODE (decl) == FUNCTION_DECL)
19686 {
19687 tree decl_parm;
19688 tree pattern_parm;
19689 tree specs;
19690 int args_depth;
19691 int parms_depth;
19692
19693 args_depth = TMPL_ARGS_DEPTH (args);
19694 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
19695 if (args_depth > parms_depth)
19696 args = get_innermost_template_args (args, parms_depth);
19697
19698 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
19699 args, tf_error, NULL_TREE,
19700 /*defer_ok*/false);
19701 if (specs && specs != error_mark_node)
19702 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
19703 specs);
19704
19705 /* Merge parameter declarations. */
19706 decl_parm = skip_artificial_parms_for (decl,
19707 DECL_ARGUMENTS (decl));
19708 pattern_parm
19709 = skip_artificial_parms_for (code_pattern,
19710 DECL_ARGUMENTS (code_pattern));
19711 while (decl_parm && !DECL_PACK_P (pattern_parm))
19712 {
19713 tree parm_type;
19714 tree attributes;
19715
19716 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
19717 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
19718 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
19719 NULL_TREE);
19720 parm_type = type_decays_to (parm_type);
19721 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
19722 TREE_TYPE (decl_parm) = parm_type;
19723 attributes = DECL_ATTRIBUTES (pattern_parm);
19724 if (DECL_ATTRIBUTES (decl_parm) != attributes)
19725 {
19726 DECL_ATTRIBUTES (decl_parm) = attributes;
19727 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
19728 }
19729 decl_parm = DECL_CHAIN (decl_parm);
19730 pattern_parm = DECL_CHAIN (pattern_parm);
19731 }
19732 /* Merge any parameters that match with the function parameter
19733 pack. */
19734 if (pattern_parm && DECL_PACK_P (pattern_parm))
19735 {
19736 int i, len;
19737 tree expanded_types;
19738 /* Expand the TYPE_PACK_EXPANSION that provides the types for
19739 the parameters in this function parameter pack. */
19740 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
19741 args, tf_error, NULL_TREE);
19742 len = TREE_VEC_LENGTH (expanded_types);
19743 for (i = 0; i < len; i++)
19744 {
19745 tree parm_type;
19746 tree attributes;
19747
19748 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
19749 /* Rename the parameter to include the index. */
19750 DECL_NAME (decl_parm) =
19751 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
19752 parm_type = TREE_VEC_ELT (expanded_types, i);
19753 parm_type = type_decays_to (parm_type);
19754 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
19755 TREE_TYPE (decl_parm) = parm_type;
19756 attributes = DECL_ATTRIBUTES (pattern_parm);
19757 if (DECL_ATTRIBUTES (decl_parm) != attributes)
19758 {
19759 DECL_ATTRIBUTES (decl_parm) = attributes;
19760 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
19761 }
19762 decl_parm = DECL_CHAIN (decl_parm);
19763 }
19764 }
19765 /* Merge additional specifiers from the CODE_PATTERN. */
19766 if (DECL_DECLARED_INLINE_P (code_pattern)
19767 && !DECL_DECLARED_INLINE_P (decl))
19768 DECL_DECLARED_INLINE_P (decl) = 1;
19769 }
19770 else if (VAR_P (decl))
19771 {
19772 DECL_INITIAL (decl) =
19773 tsubst_expr (DECL_INITIAL (code_pattern), args,
19774 tf_error, DECL_TI_TEMPLATE (decl),
19775 /*integral_constant_expression_p=*/false);
19776 if (VAR_HAD_UNKNOWN_BOUND (decl))
19777 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
19778 tf_error, DECL_TI_TEMPLATE (decl));
19779 }
19780 else
19781 gcc_unreachable ();
19782
19783 pop_access_scope (decl);
19784 }
19785
19786 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
19787 substituted to get DECL. */
19788
19789 tree
19790 template_for_substitution (tree decl)
19791 {
19792 tree tmpl = DECL_TI_TEMPLATE (decl);
19793
19794 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
19795 for the instantiation. This is not always the most general
19796 template. Consider, for example:
19797
19798 template <class T>
19799 struct S { template <class U> void f();
19800 template <> void f<int>(); };
19801
19802 and an instantiation of S<double>::f<int>. We want TD to be the
19803 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
19804 while (/* An instantiation cannot have a definition, so we need a
19805 more general template. */
19806 DECL_TEMPLATE_INSTANTIATION (tmpl)
19807 /* We must also deal with friend templates. Given:
19808
19809 template <class T> struct S {
19810 template <class U> friend void f() {};
19811 };
19812
19813 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
19814 so far as the language is concerned, but that's still
19815 where we get the pattern for the instantiation from. On
19816 other hand, if the definition comes outside the class, say:
19817
19818 template <class T> struct S {
19819 template <class U> friend void f();
19820 };
19821 template <class U> friend void f() {}
19822
19823 we don't need to look any further. That's what the check for
19824 DECL_INITIAL is for. */
19825 || (TREE_CODE (decl) == FUNCTION_DECL
19826 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
19827 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
19828 {
19829 /* The present template, TD, should not be a definition. If it
19830 were a definition, we should be using it! Note that we
19831 cannot restructure the loop to just keep going until we find
19832 a template with a definition, since that might go too far if
19833 a specialization was declared, but not defined. */
19834
19835 /* Fetch the more general template. */
19836 tmpl = DECL_TI_TEMPLATE (tmpl);
19837 }
19838
19839 return tmpl;
19840 }
19841
19842 /* Returns true if we need to instantiate this template instance even if we
19843 know we aren't going to emit it.. */
19844
19845 bool
19846 always_instantiate_p (tree decl)
19847 {
19848 /* We always instantiate inline functions so that we can inline them. An
19849 explicit instantiation declaration prohibits implicit instantiation of
19850 non-inline functions. With high levels of optimization, we would
19851 normally inline non-inline functions -- but we're not allowed to do
19852 that for "extern template" functions. Therefore, we check
19853 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
19854 return ((TREE_CODE (decl) == FUNCTION_DECL
19855 && (DECL_DECLARED_INLINE_P (decl)
19856 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
19857 /* And we need to instantiate static data members so that
19858 their initializers are available in integral constant
19859 expressions. */
19860 || (VAR_P (decl)
19861 && decl_maybe_constant_var_p (decl)));
19862 }
19863
19864 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
19865 instantiate it now, modifying TREE_TYPE (fn). */
19866
19867 void
19868 maybe_instantiate_noexcept (tree fn)
19869 {
19870 tree fntype, spec, noex, clone;
19871
19872 /* Don't instantiate a noexcept-specification from template context. */
19873 if (processing_template_decl)
19874 return;
19875
19876 if (DECL_CLONED_FUNCTION_P (fn))
19877 fn = DECL_CLONED_FUNCTION (fn);
19878 fntype = TREE_TYPE (fn);
19879 spec = TYPE_RAISES_EXCEPTIONS (fntype);
19880
19881 if (!spec || !TREE_PURPOSE (spec))
19882 return;
19883
19884 noex = TREE_PURPOSE (spec);
19885
19886 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
19887 {
19888 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
19889 spec = get_defaulted_eh_spec (fn);
19890 else if (push_tinst_level (fn))
19891 {
19892 push_access_scope (fn);
19893 push_deferring_access_checks (dk_no_deferred);
19894 input_location = DECL_SOURCE_LOCATION (fn);
19895 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
19896 DEFERRED_NOEXCEPT_ARGS (noex),
19897 tf_warning_or_error, fn,
19898 /*function_p=*/false,
19899 /*integral_constant_expression_p=*/true);
19900 pop_deferring_access_checks ();
19901 pop_access_scope (fn);
19902 pop_tinst_level ();
19903 spec = build_noexcept_spec (noex, tf_warning_or_error);
19904 if (spec == error_mark_node)
19905 spec = noexcept_false_spec;
19906 }
19907 else
19908 spec = noexcept_false_spec;
19909
19910 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
19911 }
19912
19913 FOR_EACH_CLONE (clone, fn)
19914 {
19915 if (TREE_TYPE (clone) == fntype)
19916 TREE_TYPE (clone) = TREE_TYPE (fn);
19917 else
19918 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
19919 }
19920 }
19921
19922 /* Produce the definition of D, a _DECL generated from a template. If
19923 DEFER_OK is nonzero, then we don't have to actually do the
19924 instantiation now; we just have to do it sometime. Normally it is
19925 an error if this is an explicit instantiation but D is undefined.
19926 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
19927 explicitly instantiated class template. */
19928
19929 tree
19930 instantiate_decl (tree d, int defer_ok,
19931 bool expl_inst_class_mem_p)
19932 {
19933 tree tmpl = DECL_TI_TEMPLATE (d);
19934 tree gen_args;
19935 tree args;
19936 tree td;
19937 tree code_pattern;
19938 tree spec;
19939 tree gen_tmpl;
19940 bool pattern_defined;
19941 location_t saved_loc = input_location;
19942 int saved_unevaluated_operand = cp_unevaluated_operand;
19943 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
19944 bool external_p;
19945 bool deleted_p;
19946 tree fn_context;
19947 bool nested;
19948
19949 /* This function should only be used to instantiate templates for
19950 functions and static member variables. */
19951 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
19952
19953 /* Variables are never deferred; if instantiation is required, they
19954 are instantiated right away. That allows for better code in the
19955 case that an expression refers to the value of the variable --
19956 if the variable has a constant value the referring expression can
19957 take advantage of that fact. */
19958 if (VAR_P (d)
19959 || DECL_DECLARED_CONSTEXPR_P (d))
19960 defer_ok = 0;
19961
19962 /* Don't instantiate cloned functions. Instead, instantiate the
19963 functions they cloned. */
19964 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
19965 d = DECL_CLONED_FUNCTION (d);
19966
19967 if (DECL_TEMPLATE_INSTANTIATED (d)
19968 || (TREE_CODE (d) == FUNCTION_DECL
19969 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
19970 || DECL_TEMPLATE_SPECIALIZATION (d))
19971 /* D has already been instantiated or explicitly specialized, so
19972 there's nothing for us to do here.
19973
19974 It might seem reasonable to check whether or not D is an explicit
19975 instantiation, and, if so, stop here. But when an explicit
19976 instantiation is deferred until the end of the compilation,
19977 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
19978 the instantiation. */
19979 return d;
19980
19981 /* Check to see whether we know that this template will be
19982 instantiated in some other file, as with "extern template"
19983 extension. */
19984 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
19985
19986 /* In general, we do not instantiate such templates. */
19987 if (external_p && !always_instantiate_p (d))
19988 return d;
19989
19990 gen_tmpl = most_general_template (tmpl);
19991 gen_args = DECL_TI_ARGS (d);
19992
19993 if (tmpl != gen_tmpl)
19994 /* We should already have the extra args. */
19995 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
19996 == TMPL_ARGS_DEPTH (gen_args));
19997 /* And what's in the hash table should match D. */
19998 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
19999 || spec == NULL_TREE);
20000
20001 /* This needs to happen before any tsubsting. */
20002 if (! push_tinst_level (d))
20003 return d;
20004
20005 timevar_push (TV_TEMPLATE_INST);
20006
20007 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
20008 for the instantiation. */
20009 td = template_for_substitution (d);
20010 code_pattern = DECL_TEMPLATE_RESULT (td);
20011
20012 /* We should never be trying to instantiate a member of a class
20013 template or partial specialization. */
20014 gcc_assert (d != code_pattern);
20015
20016 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
20017 || DECL_TEMPLATE_SPECIALIZATION (td))
20018 /* In the case of a friend template whose definition is provided
20019 outside the class, we may have too many arguments. Drop the
20020 ones we don't need. The same is true for specializations. */
20021 args = get_innermost_template_args
20022 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
20023 else
20024 args = gen_args;
20025
20026 if (TREE_CODE (d) == FUNCTION_DECL)
20027 {
20028 deleted_p = DECL_DELETED_FN (code_pattern);
20029 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
20030 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
20031 || deleted_p);
20032 }
20033 else
20034 {
20035 deleted_p = false;
20036 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
20037 }
20038
20039 /* We may be in the middle of deferred access check. Disable it now. */
20040 push_deferring_access_checks (dk_no_deferred);
20041
20042 /* Unless an explicit instantiation directive has already determined
20043 the linkage of D, remember that a definition is available for
20044 this entity. */
20045 if (pattern_defined
20046 && !DECL_INTERFACE_KNOWN (d)
20047 && !DECL_NOT_REALLY_EXTERN (d))
20048 mark_definable (d);
20049
20050 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
20051 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
20052 input_location = DECL_SOURCE_LOCATION (d);
20053
20054 /* If D is a member of an explicitly instantiated class template,
20055 and no definition is available, treat it like an implicit
20056 instantiation. */
20057 if (!pattern_defined && expl_inst_class_mem_p
20058 && DECL_EXPLICIT_INSTANTIATION (d))
20059 {
20060 /* Leave linkage flags alone on instantiations with anonymous
20061 visibility. */
20062 if (TREE_PUBLIC (d))
20063 {
20064 DECL_NOT_REALLY_EXTERN (d) = 0;
20065 DECL_INTERFACE_KNOWN (d) = 0;
20066 }
20067 SET_DECL_IMPLICIT_INSTANTIATION (d);
20068 }
20069
20070 /* Defer all other templates, unless we have been explicitly
20071 forbidden from doing so. */
20072 if (/* If there is no definition, we cannot instantiate the
20073 template. */
20074 ! pattern_defined
20075 /* If it's OK to postpone instantiation, do so. */
20076 || defer_ok
20077 /* If this is a static data member that will be defined
20078 elsewhere, we don't want to instantiate the entire data
20079 member, but we do want to instantiate the initializer so that
20080 we can substitute that elsewhere. */
20081 || (external_p && VAR_P (d))
20082 /* Handle here a deleted function too, avoid generating
20083 its body (c++/61080). */
20084 || deleted_p)
20085 {
20086 /* The definition of the static data member is now required so
20087 we must substitute the initializer. */
20088 if (VAR_P (d)
20089 && !DECL_INITIAL (d)
20090 && DECL_INITIAL (code_pattern))
20091 {
20092 tree ns;
20093 tree init;
20094 bool const_init = false;
20095 bool enter_context = DECL_CLASS_SCOPE_P (d);
20096
20097 ns = decl_namespace_context (d);
20098 push_nested_namespace (ns);
20099 if (enter_context)
20100 push_nested_class (DECL_CONTEXT (d));
20101 init = tsubst_expr (DECL_INITIAL (code_pattern),
20102 args,
20103 tf_warning_or_error, NULL_TREE,
20104 /*integral_constant_expression_p=*/false);
20105 /* If instantiating the initializer involved instantiating this
20106 again, don't call cp_finish_decl twice. */
20107 if (!DECL_INITIAL (d))
20108 {
20109 /* Make sure the initializer is still constant, in case of
20110 circular dependency (template/instantiate6.C). */
20111 const_init
20112 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
20113 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
20114 /*asmspec_tree=*/NULL_TREE,
20115 LOOKUP_ONLYCONVERTING);
20116 }
20117 if (enter_context)
20118 pop_nested_class ();
20119 pop_nested_namespace (ns);
20120 }
20121
20122 /* We restore the source position here because it's used by
20123 add_pending_template. */
20124 input_location = saved_loc;
20125
20126 if (at_eof && !pattern_defined
20127 && DECL_EXPLICIT_INSTANTIATION (d)
20128 && DECL_NOT_REALLY_EXTERN (d))
20129 /* [temp.explicit]
20130
20131 The definition of a non-exported function template, a
20132 non-exported member function template, or a non-exported
20133 member function or static data member of a class template
20134 shall be present in every translation unit in which it is
20135 explicitly instantiated. */
20136 permerror (input_location, "explicit instantiation of %qD "
20137 "but no definition available", d);
20138
20139 /* If we're in unevaluated context, we just wanted to get the
20140 constant value; this isn't an odr use, so don't queue
20141 a full instantiation. */
20142 if (cp_unevaluated_operand != 0)
20143 goto out;
20144 /* ??? Historically, we have instantiated inline functions, even
20145 when marked as "extern template". */
20146 if (!(external_p && VAR_P (d)))
20147 add_pending_template (d);
20148 goto out;
20149 }
20150 /* Tell the repository that D is available in this translation unit
20151 -- and see if it is supposed to be instantiated here. */
20152 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
20153 {
20154 /* In a PCH file, despite the fact that the repository hasn't
20155 requested instantiation in the PCH it is still possible that
20156 an instantiation will be required in a file that includes the
20157 PCH. */
20158 if (pch_file)
20159 add_pending_template (d);
20160 /* Instantiate inline functions so that the inliner can do its
20161 job, even though we'll not be emitting a copy of this
20162 function. */
20163 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
20164 goto out;
20165 }
20166
20167 fn_context = decl_function_context (d);
20168 nested = (current_function_decl != NULL_TREE);
20169 if (!fn_context)
20170 push_to_top_level ();
20171 else
20172 {
20173 if (nested)
20174 push_function_context ();
20175 cp_unevaluated_operand = 0;
20176 c_inhibit_evaluation_warnings = 0;
20177 }
20178
20179 /* Mark D as instantiated so that recursive calls to
20180 instantiate_decl do not try to instantiate it again. */
20181 DECL_TEMPLATE_INSTANTIATED (d) = 1;
20182
20183 /* Regenerate the declaration in case the template has been modified
20184 by a subsequent redeclaration. */
20185 regenerate_decl_from_template (d, td);
20186
20187 /* We already set the file and line above. Reset them now in case
20188 they changed as a result of calling regenerate_decl_from_template. */
20189 input_location = DECL_SOURCE_LOCATION (d);
20190
20191 if (VAR_P (d))
20192 {
20193 tree init;
20194 bool const_init = false;
20195
20196 /* Clear out DECL_RTL; whatever was there before may not be right
20197 since we've reset the type of the declaration. */
20198 SET_DECL_RTL (d, NULL);
20199 DECL_IN_AGGR_P (d) = 0;
20200
20201 /* The initializer is placed in DECL_INITIAL by
20202 regenerate_decl_from_template so we don't need to
20203 push/pop_access_scope again here. Pull it out so that
20204 cp_finish_decl can process it. */
20205 init = DECL_INITIAL (d);
20206 DECL_INITIAL (d) = NULL_TREE;
20207 DECL_INITIALIZED_P (d) = 0;
20208
20209 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
20210 initializer. That function will defer actual emission until
20211 we have a chance to determine linkage. */
20212 DECL_EXTERNAL (d) = 0;
20213
20214 /* Enter the scope of D so that access-checking works correctly. */
20215 bool enter_context = DECL_CLASS_SCOPE_P (d);
20216 if (enter_context)
20217 push_nested_class (DECL_CONTEXT (d));
20218
20219 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
20220 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
20221
20222 if (enter_context)
20223 pop_nested_class ();
20224
20225 if (variable_template_p (td))
20226 note_variable_template_instantiation (d);
20227 }
20228 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
20229 synthesize_method (d);
20230 else if (TREE_CODE (d) == FUNCTION_DECL)
20231 {
20232 hash_map<tree, tree> *saved_local_specializations;
20233 tree subst_decl;
20234 tree tmpl_parm;
20235 tree spec_parm;
20236 tree block = NULL_TREE;
20237
20238 /* Save away the current list, in case we are instantiating one
20239 template from within the body of another. */
20240 saved_local_specializations = local_specializations;
20241
20242 /* Set up the list of local specializations. */
20243 local_specializations = new hash_map<tree, tree>;
20244
20245 /* Set up context. */
20246 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
20247 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
20248 block = push_stmt_list ();
20249 else
20250 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
20251
20252 /* Some typedefs referenced from within the template code need to be
20253 access checked at template instantiation time, i.e now. These
20254 types were added to the template at parsing time. Let's get those
20255 and perform the access checks then. */
20256 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
20257 gen_args);
20258
20259 /* Create substitution entries for the parameters. */
20260 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
20261 tmpl_parm = DECL_ARGUMENTS (subst_decl);
20262 spec_parm = DECL_ARGUMENTS (d);
20263 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
20264 {
20265 register_local_specialization (spec_parm, tmpl_parm);
20266 spec_parm = skip_artificial_parms_for (d, spec_parm);
20267 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
20268 }
20269 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
20270 {
20271 if (!DECL_PACK_P (tmpl_parm))
20272 {
20273 register_local_specialization (spec_parm, tmpl_parm);
20274 spec_parm = DECL_CHAIN (spec_parm);
20275 }
20276 else
20277 {
20278 /* Register the (value) argument pack as a specialization of
20279 TMPL_PARM, then move on. */
20280 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
20281 register_local_specialization (argpack, tmpl_parm);
20282 }
20283 }
20284 gcc_assert (!spec_parm);
20285
20286 /* Substitute into the body of the function. */
20287 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
20288 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
20289 tf_warning_or_error, tmpl);
20290 else
20291 {
20292 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
20293 tf_warning_or_error, tmpl,
20294 /*integral_constant_expression_p=*/false);
20295
20296 /* Set the current input_location to the end of the function
20297 so that finish_function knows where we are. */
20298 input_location
20299 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
20300
20301 /* Remember if we saw an infinite loop in the template. */
20302 current_function_infinite_loop
20303 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
20304 }
20305
20306 /* We don't need the local specializations any more. */
20307 delete local_specializations;
20308 local_specializations = saved_local_specializations;
20309
20310 /* Finish the function. */
20311 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
20312 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
20313 DECL_SAVED_TREE (d) = pop_stmt_list (block);
20314 else
20315 {
20316 d = finish_function (0);
20317 expand_or_defer_fn (d);
20318 }
20319
20320 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
20321 cp_check_omp_declare_reduction (d);
20322 }
20323
20324 /* We're not deferring instantiation any more. */
20325 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
20326
20327 if (!fn_context)
20328 pop_from_top_level ();
20329 else if (nested)
20330 pop_function_context ();
20331
20332 out:
20333 input_location = saved_loc;
20334 cp_unevaluated_operand = saved_unevaluated_operand;
20335 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
20336 pop_deferring_access_checks ();
20337 pop_tinst_level ();
20338
20339 timevar_pop (TV_TEMPLATE_INST);
20340
20341 return d;
20342 }
20343
20344 /* Run through the list of templates that we wish we could
20345 instantiate, and instantiate any we can. RETRIES is the
20346 number of times we retry pending template instantiation. */
20347
20348 void
20349 instantiate_pending_templates (int retries)
20350 {
20351 int reconsider;
20352 location_t saved_loc = input_location;
20353
20354 /* Instantiating templates may trigger vtable generation. This in turn
20355 may require further template instantiations. We place a limit here
20356 to avoid infinite loop. */
20357 if (pending_templates && retries >= max_tinst_depth)
20358 {
20359 tree decl = pending_templates->tinst->decl;
20360
20361 fatal_error ("template instantiation depth exceeds maximum of %d"
20362 " instantiating %q+D, possibly from virtual table generation"
20363 " (use -ftemplate-depth= to increase the maximum)",
20364 max_tinst_depth, decl);
20365 if (TREE_CODE (decl) == FUNCTION_DECL)
20366 /* Pretend that we defined it. */
20367 DECL_INITIAL (decl) = error_mark_node;
20368 return;
20369 }
20370
20371 do
20372 {
20373 struct pending_template **t = &pending_templates;
20374 struct pending_template *last = NULL;
20375 reconsider = 0;
20376 while (*t)
20377 {
20378 tree instantiation = reopen_tinst_level ((*t)->tinst);
20379 bool complete = false;
20380
20381 if (TYPE_P (instantiation))
20382 {
20383 tree fn;
20384
20385 if (!COMPLETE_TYPE_P (instantiation))
20386 {
20387 instantiate_class_template (instantiation);
20388 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
20389 for (fn = TYPE_METHODS (instantiation);
20390 fn;
20391 fn = TREE_CHAIN (fn))
20392 if (! DECL_ARTIFICIAL (fn))
20393 instantiate_decl (fn,
20394 /*defer_ok=*/0,
20395 /*expl_inst_class_mem_p=*/false);
20396 if (COMPLETE_TYPE_P (instantiation))
20397 reconsider = 1;
20398 }
20399
20400 complete = COMPLETE_TYPE_P (instantiation);
20401 }
20402 else
20403 {
20404 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
20405 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
20406 {
20407 instantiation
20408 = instantiate_decl (instantiation,
20409 /*defer_ok=*/0,
20410 /*expl_inst_class_mem_p=*/false);
20411 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
20412 reconsider = 1;
20413 }
20414
20415 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
20416 || DECL_TEMPLATE_INSTANTIATED (instantiation));
20417 }
20418
20419 if (complete)
20420 /* If INSTANTIATION has been instantiated, then we don't
20421 need to consider it again in the future. */
20422 *t = (*t)->next;
20423 else
20424 {
20425 last = *t;
20426 t = &(*t)->next;
20427 }
20428 tinst_depth = 0;
20429 current_tinst_level = NULL;
20430 }
20431 last_pending_template = last;
20432 }
20433 while (reconsider);
20434
20435 input_location = saved_loc;
20436 }
20437
20438 /* Substitute ARGVEC into T, which is a list of initializers for
20439 either base class or a non-static data member. The TREE_PURPOSEs
20440 are DECLs, and the TREE_VALUEs are the initializer values. Used by
20441 instantiate_decl. */
20442
20443 static tree
20444 tsubst_initializer_list (tree t, tree argvec)
20445 {
20446 tree inits = NULL_TREE;
20447
20448 for (; t; t = TREE_CHAIN (t))
20449 {
20450 tree decl;
20451 tree init;
20452 tree expanded_bases = NULL_TREE;
20453 tree expanded_arguments = NULL_TREE;
20454 int i, len = 1;
20455
20456 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
20457 {
20458 tree expr;
20459 tree arg;
20460
20461 /* Expand the base class expansion type into separate base
20462 classes. */
20463 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
20464 tf_warning_or_error,
20465 NULL_TREE);
20466 if (expanded_bases == error_mark_node)
20467 continue;
20468
20469 /* We'll be building separate TREE_LISTs of arguments for
20470 each base. */
20471 len = TREE_VEC_LENGTH (expanded_bases);
20472 expanded_arguments = make_tree_vec (len);
20473 for (i = 0; i < len; i++)
20474 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
20475
20476 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
20477 expand each argument in the TREE_VALUE of t. */
20478 expr = make_node (EXPR_PACK_EXPANSION);
20479 PACK_EXPANSION_LOCAL_P (expr) = true;
20480 PACK_EXPANSION_PARAMETER_PACKS (expr) =
20481 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
20482
20483 if (TREE_VALUE (t) == void_type_node)
20484 /* VOID_TYPE_NODE is used to indicate
20485 value-initialization. */
20486 {
20487 for (i = 0; i < len; i++)
20488 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
20489 }
20490 else
20491 {
20492 /* Substitute parameter packs into each argument in the
20493 TREE_LIST. */
20494 in_base_initializer = 1;
20495 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
20496 {
20497 tree expanded_exprs;
20498
20499 /* Expand the argument. */
20500 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
20501 expanded_exprs
20502 = tsubst_pack_expansion (expr, argvec,
20503 tf_warning_or_error,
20504 NULL_TREE);
20505 if (expanded_exprs == error_mark_node)
20506 continue;
20507
20508 /* Prepend each of the expanded expressions to the
20509 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
20510 for (i = 0; i < len; i++)
20511 {
20512 TREE_VEC_ELT (expanded_arguments, i) =
20513 tree_cons (NULL_TREE,
20514 TREE_VEC_ELT (expanded_exprs, i),
20515 TREE_VEC_ELT (expanded_arguments, i));
20516 }
20517 }
20518 in_base_initializer = 0;
20519
20520 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
20521 since we built them backwards. */
20522 for (i = 0; i < len; i++)
20523 {
20524 TREE_VEC_ELT (expanded_arguments, i) =
20525 nreverse (TREE_VEC_ELT (expanded_arguments, i));
20526 }
20527 }
20528 }
20529
20530 for (i = 0; i < len; ++i)
20531 {
20532 if (expanded_bases)
20533 {
20534 decl = TREE_VEC_ELT (expanded_bases, i);
20535 decl = expand_member_init (decl);
20536 init = TREE_VEC_ELT (expanded_arguments, i);
20537 }
20538 else
20539 {
20540 tree tmp;
20541 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
20542 tf_warning_or_error, NULL_TREE);
20543
20544 decl = expand_member_init (decl);
20545 if (decl && !DECL_P (decl))
20546 in_base_initializer = 1;
20547
20548 init = TREE_VALUE (t);
20549 tmp = init;
20550 if (init != void_type_node)
20551 init = tsubst_expr (init, argvec,
20552 tf_warning_or_error, NULL_TREE,
20553 /*integral_constant_expression_p=*/false);
20554 if (init == NULL_TREE && tmp != NULL_TREE)
20555 /* If we had an initializer but it instantiated to nothing,
20556 value-initialize the object. This will only occur when
20557 the initializer was a pack expansion where the parameter
20558 packs used in that expansion were of length zero. */
20559 init = void_type_node;
20560 in_base_initializer = 0;
20561 }
20562
20563 if (decl)
20564 {
20565 init = build_tree_list (decl, init);
20566 TREE_CHAIN (init) = inits;
20567 inits = init;
20568 }
20569 }
20570 }
20571 return inits;
20572 }
20573
20574 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
20575
20576 static void
20577 set_current_access_from_decl (tree decl)
20578 {
20579 if (TREE_PRIVATE (decl))
20580 current_access_specifier = access_private_node;
20581 else if (TREE_PROTECTED (decl))
20582 current_access_specifier = access_protected_node;
20583 else
20584 current_access_specifier = access_public_node;
20585 }
20586
20587 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
20588 is the instantiation (which should have been created with
20589 start_enum) and ARGS are the template arguments to use. */
20590
20591 static void
20592 tsubst_enum (tree tag, tree newtag, tree args)
20593 {
20594 tree e;
20595
20596 if (SCOPED_ENUM_P (newtag))
20597 begin_scope (sk_scoped_enum, newtag);
20598
20599 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
20600 {
20601 tree value;
20602 tree decl;
20603
20604 decl = TREE_VALUE (e);
20605 /* Note that in a template enum, the TREE_VALUE is the
20606 CONST_DECL, not the corresponding INTEGER_CST. */
20607 value = tsubst_expr (DECL_INITIAL (decl),
20608 args, tf_warning_or_error, NULL_TREE,
20609 /*integral_constant_expression_p=*/true);
20610
20611 /* Give this enumeration constant the correct access. */
20612 set_current_access_from_decl (decl);
20613
20614 /* Actually build the enumerator itself. */
20615 build_enumerator
20616 (DECL_NAME (decl), value, newtag, DECL_SOURCE_LOCATION (decl));
20617 }
20618
20619 if (SCOPED_ENUM_P (newtag))
20620 finish_scope ();
20621
20622 finish_enum_value_list (newtag);
20623 finish_enum (newtag);
20624
20625 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
20626 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
20627 }
20628
20629 /* DECL is a FUNCTION_DECL that is a template specialization. Return
20630 its type -- but without substituting the innermost set of template
20631 arguments. So, innermost set of template parameters will appear in
20632 the type. */
20633
20634 tree
20635 get_mostly_instantiated_function_type (tree decl)
20636 {
20637 tree fn_type;
20638 tree tmpl;
20639 tree targs;
20640 tree tparms;
20641 int parm_depth;
20642
20643 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
20644 targs = DECL_TI_ARGS (decl);
20645 tparms = DECL_TEMPLATE_PARMS (tmpl);
20646 parm_depth = TMPL_PARMS_DEPTH (tparms);
20647
20648 /* There should be as many levels of arguments as there are levels
20649 of parameters. */
20650 gcc_assert (parm_depth == TMPL_ARGS_DEPTH (targs));
20651
20652 fn_type = TREE_TYPE (tmpl);
20653
20654 if (parm_depth == 1)
20655 /* No substitution is necessary. */
20656 ;
20657 else
20658 {
20659 int i;
20660 tree partial_args;
20661
20662 /* Replace the innermost level of the TARGS with NULL_TREEs to
20663 let tsubst know not to substitute for those parameters. */
20664 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
20665 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
20666 SET_TMPL_ARGS_LEVEL (partial_args, i,
20667 TMPL_ARGS_LEVEL (targs, i));
20668 SET_TMPL_ARGS_LEVEL (partial_args,
20669 TMPL_ARGS_DEPTH (targs),
20670 make_tree_vec (DECL_NTPARMS (tmpl)));
20671
20672 /* Make sure that we can see identifiers, and compute access
20673 correctly. */
20674 push_access_scope (decl);
20675
20676 ++processing_template_decl;
20677 /* Now, do the (partial) substitution to figure out the
20678 appropriate function type. */
20679 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
20680 --processing_template_decl;
20681
20682 /* Substitute into the template parameters to obtain the real
20683 innermost set of parameters. This step is important if the
20684 innermost set of template parameters contains value
20685 parameters whose types depend on outer template parameters. */
20686 TREE_VEC_LENGTH (partial_args)--;
20687 tparms = tsubst_template_parms (tparms, partial_args, tf_error);
20688
20689 pop_access_scope (decl);
20690 }
20691
20692 return fn_type;
20693 }
20694
20695 /* Return truthvalue if we're processing a template different from
20696 the last one involved in diagnostics. */
20697 bool
20698 problematic_instantiation_changed (void)
20699 {
20700 return current_tinst_level != last_error_tinst_level;
20701 }
20702
20703 /* Remember current template involved in diagnostics. */
20704 void
20705 record_last_problematic_instantiation (void)
20706 {
20707 last_error_tinst_level = current_tinst_level;
20708 }
20709
20710 struct tinst_level *
20711 current_instantiation (void)
20712 {
20713 return current_tinst_level;
20714 }
20715
20716 /* [temp.param] Check that template non-type parm TYPE is of an allowable
20717 type. Return zero for ok, nonzero for disallowed. Issue error and
20718 warning messages under control of COMPLAIN. */
20719
20720 static int
20721 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
20722 {
20723 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
20724 return 0;
20725 else if (POINTER_TYPE_P (type))
20726 return 0;
20727 else if (TYPE_PTRMEM_P (type))
20728 return 0;
20729 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
20730 return 0;
20731 else if (TREE_CODE (type) == TYPENAME_TYPE)
20732 return 0;
20733 else if (TREE_CODE (type) == DECLTYPE_TYPE)
20734 return 0;
20735 else if (TREE_CODE (type) == NULLPTR_TYPE)
20736 return 0;
20737
20738 if (complain & tf_error)
20739 {
20740 if (type == error_mark_node)
20741 inform (input_location, "invalid template non-type parameter");
20742 else
20743 error ("%q#T is not a valid type for a template non-type parameter",
20744 type);
20745 }
20746 return 1;
20747 }
20748
20749 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
20750 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
20751
20752 static bool
20753 dependent_type_p_r (tree type)
20754 {
20755 tree scope;
20756
20757 /* [temp.dep.type]
20758
20759 A type is dependent if it is:
20760
20761 -- a template parameter. Template template parameters are types
20762 for us (since TYPE_P holds true for them) so we handle
20763 them here. */
20764 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
20765 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
20766 return true;
20767 /* -- a qualified-id with a nested-name-specifier which contains a
20768 class-name that names a dependent type or whose unqualified-id
20769 names a dependent type. */
20770 if (TREE_CODE (type) == TYPENAME_TYPE)
20771 return true;
20772 /* -- a cv-qualified type where the cv-unqualified type is
20773 dependent.
20774 No code is necessary for this bullet; the code below handles
20775 cv-qualified types, and we don't want to strip aliases with
20776 TYPE_MAIN_VARIANT because of DR 1558. */
20777 /* -- a compound type constructed from any dependent type. */
20778 if (TYPE_PTRMEM_P (type))
20779 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
20780 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
20781 (type)));
20782 else if (TYPE_PTR_P (type)
20783 || TREE_CODE (type) == REFERENCE_TYPE)
20784 return dependent_type_p (TREE_TYPE (type));
20785 else if (TREE_CODE (type) == FUNCTION_TYPE
20786 || TREE_CODE (type) == METHOD_TYPE)
20787 {
20788 tree arg_type;
20789
20790 if (dependent_type_p (TREE_TYPE (type)))
20791 return true;
20792 for (arg_type = TYPE_ARG_TYPES (type);
20793 arg_type;
20794 arg_type = TREE_CHAIN (arg_type))
20795 if (dependent_type_p (TREE_VALUE (arg_type)))
20796 return true;
20797 return false;
20798 }
20799 /* -- an array type constructed from any dependent type or whose
20800 size is specified by a constant expression that is
20801 value-dependent.
20802
20803 We checked for type- and value-dependence of the bounds in
20804 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
20805 if (TREE_CODE (type) == ARRAY_TYPE)
20806 {
20807 if (TYPE_DOMAIN (type)
20808 && dependent_type_p (TYPE_DOMAIN (type)))
20809 return true;
20810 return dependent_type_p (TREE_TYPE (type));
20811 }
20812
20813 /* -- a template-id in which either the template name is a template
20814 parameter ... */
20815 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
20816 return true;
20817 /* ... or any of the template arguments is a dependent type or
20818 an expression that is type-dependent or value-dependent. */
20819 else if (TYPE_TEMPLATE_INFO (type)
20820 && (any_dependent_template_arguments_p
20821 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (type)))))
20822 return true;
20823
20824 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
20825 dependent; if the argument of the `typeof' expression is not
20826 type-dependent, then it should already been have resolved. */
20827 if (TREE_CODE (type) == TYPEOF_TYPE
20828 || TREE_CODE (type) == DECLTYPE_TYPE
20829 || TREE_CODE (type) == UNDERLYING_TYPE)
20830 return true;
20831
20832 /* A template argument pack is dependent if any of its packed
20833 arguments are. */
20834 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
20835 {
20836 tree args = ARGUMENT_PACK_ARGS (type);
20837 int i, len = TREE_VEC_LENGTH (args);
20838 for (i = 0; i < len; ++i)
20839 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
20840 return true;
20841 }
20842
20843 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
20844 be template parameters. */
20845 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
20846 return true;
20847
20848 /* The standard does not specifically mention types that are local
20849 to template functions or local classes, but they should be
20850 considered dependent too. For example:
20851
20852 template <int I> void f() {
20853 enum E { a = I };
20854 S<sizeof (E)> s;
20855 }
20856
20857 The size of `E' cannot be known until the value of `I' has been
20858 determined. Therefore, `E' must be considered dependent. */
20859 scope = TYPE_CONTEXT (type);
20860 if (scope && TYPE_P (scope))
20861 return dependent_type_p (scope);
20862 /* Don't use type_dependent_expression_p here, as it can lead
20863 to infinite recursion trying to determine whether a lambda
20864 nested in a lambda is dependent (c++/47687). */
20865 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
20866 && DECL_LANG_SPECIFIC (scope)
20867 && DECL_TEMPLATE_INFO (scope)
20868 && (any_dependent_template_arguments_p
20869 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
20870 return true;
20871
20872 /* Other types are non-dependent. */
20873 return false;
20874 }
20875
20876 /* Returns TRUE if TYPE is dependent, in the sense of
20877 [temp.dep.type]. Note that a NULL type is considered dependent. */
20878
20879 bool
20880 dependent_type_p (tree type)
20881 {
20882 /* If there are no template parameters in scope, then there can't be
20883 any dependent types. */
20884 if (!processing_template_decl)
20885 {
20886 /* If we are not processing a template, then nobody should be
20887 providing us with a dependent type. */
20888 gcc_assert (type);
20889 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
20890 return false;
20891 }
20892
20893 /* If the type is NULL, we have not computed a type for the entity
20894 in question; in that case, the type is dependent. */
20895 if (!type)
20896 return true;
20897
20898 /* Erroneous types can be considered non-dependent. */
20899 if (type == error_mark_node)
20900 return false;
20901
20902 /* If we have not already computed the appropriate value for TYPE,
20903 do so now. */
20904 if (!TYPE_DEPENDENT_P_VALID (type))
20905 {
20906 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
20907 TYPE_DEPENDENT_P_VALID (type) = 1;
20908 }
20909
20910 return TYPE_DEPENDENT_P (type);
20911 }
20912
20913 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
20914 lookup. In other words, a dependent type that is not the current
20915 instantiation. */
20916
20917 bool
20918 dependent_scope_p (tree scope)
20919 {
20920 return (scope && TYPE_P (scope) && dependent_type_p (scope)
20921 && !currently_open_class (scope));
20922 }
20923
20924 /* T is a SCOPE_REF; return whether we need to consider it
20925 instantiation-dependent so that we can check access at instantiation
20926 time even though we know which member it resolves to. */
20927
20928 static bool
20929 instantiation_dependent_scope_ref_p (tree t)
20930 {
20931 if (DECL_P (TREE_OPERAND (t, 1))
20932 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
20933 && accessible_in_template_p (TREE_OPERAND (t, 0),
20934 TREE_OPERAND (t, 1)))
20935 return false;
20936 else
20937 return true;
20938 }
20939
20940 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
20941 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
20942 expression. */
20943
20944 /* Note that this predicate is not appropriate for general expressions;
20945 only constant expressions (that satisfy potential_constant_expression)
20946 can be tested for value dependence. */
20947
20948 bool
20949 value_dependent_expression_p (tree expression)
20950 {
20951 if (!processing_template_decl)
20952 return false;
20953
20954 /* A name declared with a dependent type. */
20955 if (DECL_P (expression) && type_dependent_expression_p (expression))
20956 return true;
20957
20958 switch (TREE_CODE (expression))
20959 {
20960 case IDENTIFIER_NODE:
20961 /* A name that has not been looked up -- must be dependent. */
20962 return true;
20963
20964 case TEMPLATE_PARM_INDEX:
20965 /* A non-type template parm. */
20966 return true;
20967
20968 case CONST_DECL:
20969 /* A non-type template parm. */
20970 if (DECL_TEMPLATE_PARM_P (expression))
20971 return true;
20972 return value_dependent_expression_p (DECL_INITIAL (expression));
20973
20974 case VAR_DECL:
20975 /* A constant with literal type and is initialized
20976 with an expression that is value-dependent.
20977
20978 Note that a non-dependent parenthesized initializer will have
20979 already been replaced with its constant value, so if we see
20980 a TREE_LIST it must be dependent. */
20981 if (DECL_INITIAL (expression)
20982 && decl_constant_var_p (expression)
20983 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
20984 /* cp_finish_decl doesn't fold reference initializers. */
20985 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
20986 || value_dependent_expression_p (DECL_INITIAL (expression))))
20987 return true;
20988 return false;
20989
20990 case DYNAMIC_CAST_EXPR:
20991 case STATIC_CAST_EXPR:
20992 case CONST_CAST_EXPR:
20993 case REINTERPRET_CAST_EXPR:
20994 case CAST_EXPR:
20995 /* These expressions are value-dependent if the type to which
20996 the cast occurs is dependent or the expression being casted
20997 is value-dependent. */
20998 {
20999 tree type = TREE_TYPE (expression);
21000
21001 if (dependent_type_p (type))
21002 return true;
21003
21004 /* A functional cast has a list of operands. */
21005 expression = TREE_OPERAND (expression, 0);
21006 if (!expression)
21007 {
21008 /* If there are no operands, it must be an expression such
21009 as "int()". This should not happen for aggregate types
21010 because it would form non-constant expressions. */
21011 gcc_assert (cxx_dialect >= cxx11
21012 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
21013
21014 return false;
21015 }
21016
21017 if (TREE_CODE (expression) == TREE_LIST)
21018 return any_value_dependent_elements_p (expression);
21019
21020 return value_dependent_expression_p (expression);
21021 }
21022
21023 case SIZEOF_EXPR:
21024 if (SIZEOF_EXPR_TYPE_P (expression))
21025 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
21026 /* FALLTHRU */
21027 case ALIGNOF_EXPR:
21028 case TYPEID_EXPR:
21029 /* A `sizeof' expression is value-dependent if the operand is
21030 type-dependent or is a pack expansion. */
21031 expression = TREE_OPERAND (expression, 0);
21032 if (PACK_EXPANSION_P (expression))
21033 return true;
21034 else if (TYPE_P (expression))
21035 return dependent_type_p (expression);
21036 return instantiation_dependent_expression_p (expression);
21037
21038 case AT_ENCODE_EXPR:
21039 /* An 'encode' expression is value-dependent if the operand is
21040 type-dependent. */
21041 expression = TREE_OPERAND (expression, 0);
21042 return dependent_type_p (expression);
21043
21044 case NOEXCEPT_EXPR:
21045 expression = TREE_OPERAND (expression, 0);
21046 return instantiation_dependent_expression_p (expression);
21047
21048 case SCOPE_REF:
21049 /* All instantiation-dependent expressions should also be considered
21050 value-dependent. */
21051 return instantiation_dependent_scope_ref_p (expression);
21052
21053 case COMPONENT_REF:
21054 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
21055 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
21056
21057 case NONTYPE_ARGUMENT_PACK:
21058 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
21059 is value-dependent. */
21060 {
21061 tree values = ARGUMENT_PACK_ARGS (expression);
21062 int i, len = TREE_VEC_LENGTH (values);
21063
21064 for (i = 0; i < len; ++i)
21065 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
21066 return true;
21067
21068 return false;
21069 }
21070
21071 case TRAIT_EXPR:
21072 {
21073 tree type2 = TRAIT_EXPR_TYPE2 (expression);
21074 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
21075 || (type2 ? dependent_type_p (type2) : false));
21076 }
21077
21078 case MODOP_EXPR:
21079 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
21080 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
21081
21082 case ARRAY_REF:
21083 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
21084 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
21085
21086 case ADDR_EXPR:
21087 {
21088 tree op = TREE_OPERAND (expression, 0);
21089 return (value_dependent_expression_p (op)
21090 || has_value_dependent_address (op));
21091 }
21092
21093 case CALL_EXPR:
21094 {
21095 tree fn = get_callee_fndecl (expression);
21096 int i, nargs;
21097 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
21098 return true;
21099 nargs = call_expr_nargs (expression);
21100 for (i = 0; i < nargs; ++i)
21101 {
21102 tree op = CALL_EXPR_ARG (expression, i);
21103 /* In a call to a constexpr member function, look through the
21104 implicit ADDR_EXPR on the object argument so that it doesn't
21105 cause the call to be considered value-dependent. We also
21106 look through it in potential_constant_expression. */
21107 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
21108 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
21109 && TREE_CODE (op) == ADDR_EXPR)
21110 op = TREE_OPERAND (op, 0);
21111 if (value_dependent_expression_p (op))
21112 return true;
21113 }
21114 return false;
21115 }
21116
21117 case TEMPLATE_ID_EXPR:
21118 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
21119 type-dependent. */
21120 return type_dependent_expression_p (expression);
21121
21122 case CONSTRUCTOR:
21123 {
21124 unsigned ix;
21125 tree val;
21126 if (dependent_type_p (TREE_TYPE (expression)))
21127 return true;
21128 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
21129 if (value_dependent_expression_p (val))
21130 return true;
21131 return false;
21132 }
21133
21134 case STMT_EXPR:
21135 /* Treat a GNU statement expression as dependent to avoid crashing
21136 under instantiate_non_dependent_expr; it can't be constant. */
21137 return true;
21138
21139 default:
21140 /* A constant expression is value-dependent if any subexpression is
21141 value-dependent. */
21142 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
21143 {
21144 case tcc_reference:
21145 case tcc_unary:
21146 case tcc_comparison:
21147 case tcc_binary:
21148 case tcc_expression:
21149 case tcc_vl_exp:
21150 {
21151 int i, len = cp_tree_operand_length (expression);
21152
21153 for (i = 0; i < len; i++)
21154 {
21155 tree t = TREE_OPERAND (expression, i);
21156
21157 /* In some cases, some of the operands may be missing.l
21158 (For example, in the case of PREDECREMENT_EXPR, the
21159 amount to increment by may be missing.) That doesn't
21160 make the expression dependent. */
21161 if (t && value_dependent_expression_p (t))
21162 return true;
21163 }
21164 }
21165 break;
21166 default:
21167 break;
21168 }
21169 break;
21170 }
21171
21172 /* The expression is not value-dependent. */
21173 return false;
21174 }
21175
21176 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
21177 [temp.dep.expr]. Note that an expression with no type is
21178 considered dependent. Other parts of the compiler arrange for an
21179 expression with type-dependent subexpressions to have no type, so
21180 this function doesn't have to be fully recursive. */
21181
21182 bool
21183 type_dependent_expression_p (tree expression)
21184 {
21185 if (!processing_template_decl)
21186 return false;
21187
21188 if (expression == NULL_TREE || expression == error_mark_node)
21189 return false;
21190
21191 /* An unresolved name is always dependent. */
21192 if (identifier_p (expression) || TREE_CODE (expression) == USING_DECL)
21193 return true;
21194
21195 /* Some expression forms are never type-dependent. */
21196 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
21197 || TREE_CODE (expression) == SIZEOF_EXPR
21198 || TREE_CODE (expression) == ALIGNOF_EXPR
21199 || TREE_CODE (expression) == AT_ENCODE_EXPR
21200 || TREE_CODE (expression) == NOEXCEPT_EXPR
21201 || TREE_CODE (expression) == TRAIT_EXPR
21202 || TREE_CODE (expression) == TYPEID_EXPR
21203 || TREE_CODE (expression) == DELETE_EXPR
21204 || TREE_CODE (expression) == VEC_DELETE_EXPR
21205 || TREE_CODE (expression) == THROW_EXPR)
21206 return false;
21207
21208 /* The types of these expressions depends only on the type to which
21209 the cast occurs. */
21210 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
21211 || TREE_CODE (expression) == STATIC_CAST_EXPR
21212 || TREE_CODE (expression) == CONST_CAST_EXPR
21213 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
21214 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
21215 || TREE_CODE (expression) == CAST_EXPR)
21216 return dependent_type_p (TREE_TYPE (expression));
21217
21218 /* The types of these expressions depends only on the type created
21219 by the expression. */
21220 if (TREE_CODE (expression) == NEW_EXPR
21221 || TREE_CODE (expression) == VEC_NEW_EXPR)
21222 {
21223 /* For NEW_EXPR tree nodes created inside a template, either
21224 the object type itself or a TREE_LIST may appear as the
21225 operand 1. */
21226 tree type = TREE_OPERAND (expression, 1);
21227 if (TREE_CODE (type) == TREE_LIST)
21228 /* This is an array type. We need to check array dimensions
21229 as well. */
21230 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
21231 || value_dependent_expression_p
21232 (TREE_OPERAND (TREE_VALUE (type), 1));
21233 else
21234 return dependent_type_p (type);
21235 }
21236
21237 if (TREE_CODE (expression) == SCOPE_REF)
21238 {
21239 tree scope = TREE_OPERAND (expression, 0);
21240 tree name = TREE_OPERAND (expression, 1);
21241
21242 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
21243 contains an identifier associated by name lookup with one or more
21244 declarations declared with a dependent type, or...a
21245 nested-name-specifier or qualified-id that names a member of an
21246 unknown specialization. */
21247 return (type_dependent_expression_p (name)
21248 || dependent_scope_p (scope));
21249 }
21250
21251 if (TREE_CODE (expression) == FUNCTION_DECL
21252 && DECL_LANG_SPECIFIC (expression)
21253 && DECL_TEMPLATE_INFO (expression)
21254 && (any_dependent_template_arguments_p
21255 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
21256 return true;
21257
21258 if (TREE_CODE (expression) == TEMPLATE_DECL
21259 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
21260 return false;
21261
21262 if (TREE_CODE (expression) == STMT_EXPR)
21263 expression = stmt_expr_value_expr (expression);
21264
21265 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
21266 {
21267 tree elt;
21268 unsigned i;
21269
21270 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
21271 {
21272 if (type_dependent_expression_p (elt))
21273 return true;
21274 }
21275 return false;
21276 }
21277
21278 /* A static data member of the current instantiation with incomplete
21279 array type is type-dependent, as the definition and specializations
21280 can have different bounds. */
21281 if (VAR_P (expression)
21282 && DECL_CLASS_SCOPE_P (expression)
21283 && dependent_type_p (DECL_CONTEXT (expression))
21284 && VAR_HAD_UNKNOWN_BOUND (expression))
21285 return true;
21286
21287 /* An array of unknown bound depending on a variadic parameter, eg:
21288
21289 template<typename... Args>
21290 void foo (Args... args)
21291 {
21292 int arr[] = { args... };
21293 }
21294
21295 template<int... vals>
21296 void bar ()
21297 {
21298 int arr[] = { vals... };
21299 }
21300
21301 If the array has no length and has an initializer, it must be that
21302 we couldn't determine its length in cp_complete_array_type because
21303 it is dependent. */
21304 if (VAR_P (expression)
21305 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
21306 && !TYPE_DOMAIN (TREE_TYPE (expression))
21307 && DECL_INITIAL (expression))
21308 return true;
21309
21310 if (TREE_TYPE (expression) == unknown_type_node)
21311 {
21312 if (TREE_CODE (expression) == ADDR_EXPR)
21313 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
21314 if (TREE_CODE (expression) == COMPONENT_REF
21315 || TREE_CODE (expression) == OFFSET_REF)
21316 {
21317 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
21318 return true;
21319 expression = TREE_OPERAND (expression, 1);
21320 if (identifier_p (expression))
21321 return false;
21322 }
21323 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
21324 if (TREE_CODE (expression) == SCOPE_REF)
21325 return false;
21326
21327 /* Always dependent, on the number of arguments if nothing else. */
21328 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
21329 return true;
21330
21331 if (BASELINK_P (expression))
21332 {
21333 if (BASELINK_OPTYPE (expression)
21334 && dependent_type_p (BASELINK_OPTYPE (expression)))
21335 return true;
21336 expression = BASELINK_FUNCTIONS (expression);
21337 }
21338
21339 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
21340 {
21341 if (any_dependent_template_arguments_p
21342 (TREE_OPERAND (expression, 1)))
21343 return true;
21344 expression = TREE_OPERAND (expression, 0);
21345 }
21346 gcc_assert (TREE_CODE (expression) == OVERLOAD
21347 || TREE_CODE (expression) == FUNCTION_DECL);
21348
21349 while (expression)
21350 {
21351 if (type_dependent_expression_p (OVL_CURRENT (expression)))
21352 return true;
21353 expression = OVL_NEXT (expression);
21354 }
21355 return false;
21356 }
21357
21358 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
21359
21360 return (dependent_type_p (TREE_TYPE (expression)));
21361 }
21362
21363 /* walk_tree callback function for instantiation_dependent_expression_p,
21364 below. Returns non-zero if a dependent subexpression is found. */
21365
21366 static tree
21367 instantiation_dependent_r (tree *tp, int *walk_subtrees,
21368 void * /*data*/)
21369 {
21370 if (TYPE_P (*tp))
21371 {
21372 /* We don't have to worry about decltype currently because decltype
21373 of an instantiation-dependent expr is a dependent type. This
21374 might change depending on the resolution of DR 1172. */
21375 *walk_subtrees = false;
21376 return NULL_TREE;
21377 }
21378 enum tree_code code = TREE_CODE (*tp);
21379 switch (code)
21380 {
21381 /* Don't treat an argument list as dependent just because it has no
21382 TREE_TYPE. */
21383 case TREE_LIST:
21384 case TREE_VEC:
21385 return NULL_TREE;
21386
21387 case VAR_DECL:
21388 case CONST_DECL:
21389 /* A constant with a dependent initializer is dependent. */
21390 if (value_dependent_expression_p (*tp))
21391 return *tp;
21392 break;
21393
21394 case TEMPLATE_PARM_INDEX:
21395 return *tp;
21396
21397 /* Handle expressions with type operands. */
21398 case SIZEOF_EXPR:
21399 case ALIGNOF_EXPR:
21400 case TYPEID_EXPR:
21401 case AT_ENCODE_EXPR:
21402 {
21403 tree op = TREE_OPERAND (*tp, 0);
21404 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
21405 op = TREE_TYPE (op);
21406 if (TYPE_P (op))
21407 {
21408 if (dependent_type_p (op))
21409 return *tp;
21410 else
21411 {
21412 *walk_subtrees = false;
21413 return NULL_TREE;
21414 }
21415 }
21416 break;
21417 }
21418
21419 case TRAIT_EXPR:
21420 if (dependent_type_p (TRAIT_EXPR_TYPE1 (*tp))
21421 || (TRAIT_EXPR_TYPE2 (*tp)
21422 && dependent_type_p (TRAIT_EXPR_TYPE2 (*tp))))
21423 return *tp;
21424 *walk_subtrees = false;
21425 return NULL_TREE;
21426
21427 case COMPONENT_REF:
21428 if (identifier_p (TREE_OPERAND (*tp, 1)))
21429 /* In a template, finish_class_member_access_expr creates a
21430 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
21431 type-dependent, so that we can check access control at
21432 instantiation time (PR 42277). See also Core issue 1273. */
21433 return *tp;
21434 break;
21435
21436 case SCOPE_REF:
21437 if (instantiation_dependent_scope_ref_p (*tp))
21438 return *tp;
21439 else
21440 break;
21441
21442 /* Treat statement-expressions as dependent. */
21443 case BIND_EXPR:
21444 return *tp;
21445
21446 default:
21447 break;
21448 }
21449
21450 if (type_dependent_expression_p (*tp))
21451 return *tp;
21452 else
21453 return NULL_TREE;
21454 }
21455
21456 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
21457 sense defined by the ABI:
21458
21459 "An expression is instantiation-dependent if it is type-dependent
21460 or value-dependent, or it has a subexpression that is type-dependent
21461 or value-dependent." */
21462
21463 bool
21464 instantiation_dependent_expression_p (tree expression)
21465 {
21466 tree result;
21467
21468 if (!processing_template_decl)
21469 return false;
21470
21471 if (expression == error_mark_node)
21472 return false;
21473
21474 result = cp_walk_tree_without_duplicates (&expression,
21475 instantiation_dependent_r, NULL);
21476 return result != NULL_TREE;
21477 }
21478
21479 /* Like type_dependent_expression_p, but it also works while not processing
21480 a template definition, i.e. during substitution or mangling. */
21481
21482 bool
21483 type_dependent_expression_p_push (tree expr)
21484 {
21485 bool b;
21486 ++processing_template_decl;
21487 b = type_dependent_expression_p (expr);
21488 --processing_template_decl;
21489 return b;
21490 }
21491
21492 /* Returns TRUE if ARGS contains a type-dependent expression. */
21493
21494 bool
21495 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
21496 {
21497 unsigned int i;
21498 tree arg;
21499
21500 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
21501 {
21502 if (type_dependent_expression_p (arg))
21503 return true;
21504 }
21505 return false;
21506 }
21507
21508 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
21509 expressions) contains any type-dependent expressions. */
21510
21511 bool
21512 any_type_dependent_elements_p (const_tree list)
21513 {
21514 for (; list; list = TREE_CHAIN (list))
21515 if (type_dependent_expression_p (TREE_VALUE (list)))
21516 return true;
21517
21518 return false;
21519 }
21520
21521 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
21522 expressions) contains any value-dependent expressions. */
21523
21524 bool
21525 any_value_dependent_elements_p (const_tree list)
21526 {
21527 for (; list; list = TREE_CHAIN (list))
21528 if (value_dependent_expression_p (TREE_VALUE (list)))
21529 return true;
21530
21531 return false;
21532 }
21533
21534 /* Returns TRUE if the ARG (a template argument) is dependent. */
21535
21536 bool
21537 dependent_template_arg_p (tree arg)
21538 {
21539 if (!processing_template_decl)
21540 return false;
21541
21542 /* Assume a template argument that was wrongly written by the user
21543 is dependent. This is consistent with what
21544 any_dependent_template_arguments_p [that calls this function]
21545 does. */
21546 if (!arg || arg == error_mark_node)
21547 return true;
21548
21549 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
21550 arg = ARGUMENT_PACK_SELECT_ARG (arg);
21551
21552 if (TREE_CODE (arg) == TEMPLATE_DECL
21553 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
21554 return dependent_template_p (arg);
21555 else if (ARGUMENT_PACK_P (arg))
21556 {
21557 tree args = ARGUMENT_PACK_ARGS (arg);
21558 int i, len = TREE_VEC_LENGTH (args);
21559 for (i = 0; i < len; ++i)
21560 {
21561 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
21562 return true;
21563 }
21564
21565 return false;
21566 }
21567 else if (TYPE_P (arg))
21568 return dependent_type_p (arg);
21569 else
21570 return (type_dependent_expression_p (arg)
21571 || value_dependent_expression_p (arg));
21572 }
21573
21574 /* Returns true if ARGS (a collection of template arguments) contains
21575 any types that require structural equality testing. */
21576
21577 bool
21578 any_template_arguments_need_structural_equality_p (tree args)
21579 {
21580 int i;
21581 int j;
21582
21583 if (!args)
21584 return false;
21585 if (args == error_mark_node)
21586 return true;
21587
21588 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
21589 {
21590 tree level = TMPL_ARGS_LEVEL (args, i + 1);
21591 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
21592 {
21593 tree arg = TREE_VEC_ELT (level, j);
21594 tree packed_args = NULL_TREE;
21595 int k, len = 1;
21596
21597 if (ARGUMENT_PACK_P (arg))
21598 {
21599 /* Look inside the argument pack. */
21600 packed_args = ARGUMENT_PACK_ARGS (arg);
21601 len = TREE_VEC_LENGTH (packed_args);
21602 }
21603
21604 for (k = 0; k < len; ++k)
21605 {
21606 if (packed_args)
21607 arg = TREE_VEC_ELT (packed_args, k);
21608
21609 if (error_operand_p (arg))
21610 return true;
21611 else if (TREE_CODE (arg) == TEMPLATE_DECL)
21612 continue;
21613 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
21614 return true;
21615 else if (!TYPE_P (arg) && TREE_TYPE (arg)
21616 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
21617 return true;
21618 }
21619 }
21620 }
21621
21622 return false;
21623 }
21624
21625 /* Returns true if ARGS (a collection of template arguments) contains
21626 any dependent arguments. */
21627
21628 bool
21629 any_dependent_template_arguments_p (const_tree args)
21630 {
21631 int i;
21632 int j;
21633
21634 if (!args)
21635 return false;
21636 if (args == error_mark_node)
21637 return true;
21638
21639 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
21640 {
21641 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
21642 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
21643 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
21644 return true;
21645 }
21646
21647 return false;
21648 }
21649
21650 /* Returns TRUE if the template TMPL is dependent. */
21651
21652 bool
21653 dependent_template_p (tree tmpl)
21654 {
21655 if (TREE_CODE (tmpl) == OVERLOAD)
21656 {
21657 while (tmpl)
21658 {
21659 if (dependent_template_p (OVL_CURRENT (tmpl)))
21660 return true;
21661 tmpl = OVL_NEXT (tmpl);
21662 }
21663 return false;
21664 }
21665
21666 /* Template template parameters are dependent. */
21667 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
21668 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
21669 return true;
21670 /* So are names that have not been looked up. */
21671 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
21672 return true;
21673 /* So are member templates of dependent classes. */
21674 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
21675 return dependent_type_p (DECL_CONTEXT (tmpl));
21676 return false;
21677 }
21678
21679 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
21680
21681 bool
21682 dependent_template_id_p (tree tmpl, tree args)
21683 {
21684 return (dependent_template_p (tmpl)
21685 || any_dependent_template_arguments_p (args));
21686 }
21687
21688 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
21689 is dependent. */
21690
21691 bool
21692 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
21693 {
21694 int i;
21695
21696 if (!processing_template_decl)
21697 return false;
21698
21699 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
21700 {
21701 tree decl = TREE_VEC_ELT (declv, i);
21702 tree init = TREE_VEC_ELT (initv, i);
21703 tree cond = TREE_VEC_ELT (condv, i);
21704 tree incr = TREE_VEC_ELT (incrv, i);
21705
21706 if (type_dependent_expression_p (decl))
21707 return true;
21708
21709 if (init && type_dependent_expression_p (init))
21710 return true;
21711
21712 if (type_dependent_expression_p (cond))
21713 return true;
21714
21715 if (COMPARISON_CLASS_P (cond)
21716 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
21717 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
21718 return true;
21719
21720 if (TREE_CODE (incr) == MODOP_EXPR)
21721 {
21722 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
21723 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
21724 return true;
21725 }
21726 else if (type_dependent_expression_p (incr))
21727 return true;
21728 else if (TREE_CODE (incr) == MODIFY_EXPR)
21729 {
21730 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
21731 return true;
21732 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
21733 {
21734 tree t = TREE_OPERAND (incr, 1);
21735 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
21736 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
21737 return true;
21738 }
21739 }
21740 }
21741
21742 return false;
21743 }
21744
21745 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
21746 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
21747 no such TYPE can be found. Note that this function peers inside
21748 uninstantiated templates and therefore should be used only in
21749 extremely limited situations. ONLY_CURRENT_P restricts this
21750 peering to the currently open classes hierarchy (which is required
21751 when comparing types). */
21752
21753 tree
21754 resolve_typename_type (tree type, bool only_current_p)
21755 {
21756 tree scope;
21757 tree name;
21758 tree decl;
21759 int quals;
21760 tree pushed_scope;
21761 tree result;
21762
21763 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
21764
21765 scope = TYPE_CONTEXT (type);
21766 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
21767 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
21768 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
21769 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
21770 identifier of the TYPENAME_TYPE anymore.
21771 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
21772 TYPENAME_TYPE instead, we avoid messing up with a possible
21773 typedef variant case. */
21774 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
21775
21776 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
21777 it first before we can figure out what NAME refers to. */
21778 if (TREE_CODE (scope) == TYPENAME_TYPE)
21779 {
21780 if (TYPENAME_IS_RESOLVING_P (scope))
21781 /* Given a class template A with a dependent base with nested type C,
21782 typedef typename A::C::C C will land us here, as trying to resolve
21783 the initial A::C leads to the local C typedef, which leads back to
21784 A::C::C. So we break the recursion now. */
21785 return type;
21786 else
21787 scope = resolve_typename_type (scope, only_current_p);
21788 }
21789 /* If we don't know what SCOPE refers to, then we cannot resolve the
21790 TYPENAME_TYPE. */
21791 if (TREE_CODE (scope) == TYPENAME_TYPE)
21792 return type;
21793 /* If the SCOPE is a template type parameter, we have no way of
21794 resolving the name. */
21795 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
21796 return type;
21797 /* If the SCOPE is not the current instantiation, there's no reason
21798 to look inside it. */
21799 if (only_current_p && !currently_open_class (scope))
21800 return type;
21801 /* If this is a typedef, we don't want to look inside (c++/11987). */
21802 if (typedef_variant_p (type))
21803 return type;
21804 /* If SCOPE isn't the template itself, it will not have a valid
21805 TYPE_FIELDS list. */
21806 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
21807 /* scope is either the template itself or a compatible instantiation
21808 like X<T>, so look up the name in the original template. */
21809 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
21810 else
21811 /* scope is a partial instantiation, so we can't do the lookup or we
21812 will lose the template arguments. */
21813 return type;
21814 /* Enter the SCOPE so that name lookup will be resolved as if we
21815 were in the class definition. In particular, SCOPE will no
21816 longer be considered a dependent type. */
21817 pushed_scope = push_scope (scope);
21818 /* Look up the declaration. */
21819 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
21820 tf_warning_or_error);
21821
21822 result = NULL_TREE;
21823
21824 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
21825 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
21826 if (!decl)
21827 /*nop*/;
21828 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
21829 && TREE_CODE (decl) == TYPE_DECL)
21830 {
21831 result = TREE_TYPE (decl);
21832 if (result == error_mark_node)
21833 result = NULL_TREE;
21834 }
21835 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
21836 && DECL_CLASS_TEMPLATE_P (decl))
21837 {
21838 tree tmpl;
21839 tree args;
21840 /* Obtain the template and the arguments. */
21841 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
21842 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
21843 /* Instantiate the template. */
21844 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
21845 /*entering_scope=*/0,
21846 tf_error | tf_user);
21847 if (result == error_mark_node)
21848 result = NULL_TREE;
21849 }
21850
21851 /* Leave the SCOPE. */
21852 if (pushed_scope)
21853 pop_scope (pushed_scope);
21854
21855 /* If we failed to resolve it, return the original typename. */
21856 if (!result)
21857 return type;
21858
21859 /* If lookup found a typename type, resolve that too. */
21860 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
21861 {
21862 /* Ill-formed programs can cause infinite recursion here, so we
21863 must catch that. */
21864 TYPENAME_IS_RESOLVING_P (type) = 1;
21865 result = resolve_typename_type (result, only_current_p);
21866 TYPENAME_IS_RESOLVING_P (type) = 0;
21867 }
21868
21869 /* Qualify the resulting type. */
21870 quals = cp_type_quals (type);
21871 if (quals)
21872 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
21873
21874 return result;
21875 }
21876
21877 /* EXPR is an expression which is not type-dependent. Return a proxy
21878 for EXPR that can be used to compute the types of larger
21879 expressions containing EXPR. */
21880
21881 tree
21882 build_non_dependent_expr (tree expr)
21883 {
21884 tree inner_expr;
21885
21886 #ifdef ENABLE_CHECKING
21887 /* Try to get a constant value for all non-dependent expressions in
21888 order to expose bugs in *_dependent_expression_p and constexpr. */
21889 if (cxx_dialect >= cxx11)
21890 fold_non_dependent_expr (expr);
21891 #endif
21892
21893 /* Preserve OVERLOADs; the functions must be available to resolve
21894 types. */
21895 inner_expr = expr;
21896 if (TREE_CODE (inner_expr) == STMT_EXPR)
21897 inner_expr = stmt_expr_value_expr (inner_expr);
21898 if (TREE_CODE (inner_expr) == ADDR_EXPR)
21899 inner_expr = TREE_OPERAND (inner_expr, 0);
21900 if (TREE_CODE (inner_expr) == COMPONENT_REF)
21901 inner_expr = TREE_OPERAND (inner_expr, 1);
21902 if (is_overloaded_fn (inner_expr)
21903 || TREE_CODE (inner_expr) == OFFSET_REF)
21904 return expr;
21905 /* There is no need to return a proxy for a variable. */
21906 if (VAR_P (expr))
21907 return expr;
21908 /* Preserve string constants; conversions from string constants to
21909 "char *" are allowed, even though normally a "const char *"
21910 cannot be used to initialize a "char *". */
21911 if (TREE_CODE (expr) == STRING_CST)
21912 return expr;
21913 /* Preserve void and arithmetic constants, as an optimization -- there is no
21914 reason to create a new node. */
21915 if (TREE_CODE (expr) == VOID_CST
21916 || TREE_CODE (expr) == INTEGER_CST
21917 || TREE_CODE (expr) == REAL_CST)
21918 return expr;
21919 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
21920 There is at least one place where we want to know that a
21921 particular expression is a throw-expression: when checking a ?:
21922 expression, there are special rules if the second or third
21923 argument is a throw-expression. */
21924 if (TREE_CODE (expr) == THROW_EXPR)
21925 return expr;
21926
21927 /* Don't wrap an initializer list, we need to be able to look inside. */
21928 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
21929 return expr;
21930
21931 /* Don't wrap a dummy object, we need to be able to test for it. */
21932 if (is_dummy_object (expr))
21933 return expr;
21934
21935 if (TREE_CODE (expr) == COND_EXPR)
21936 return build3 (COND_EXPR,
21937 TREE_TYPE (expr),
21938 TREE_OPERAND (expr, 0),
21939 (TREE_OPERAND (expr, 1)
21940 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
21941 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
21942 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
21943 if (TREE_CODE (expr) == COMPOUND_EXPR
21944 && !COMPOUND_EXPR_OVERLOADED (expr))
21945 return build2 (COMPOUND_EXPR,
21946 TREE_TYPE (expr),
21947 TREE_OPERAND (expr, 0),
21948 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
21949
21950 /* If the type is unknown, it can't really be non-dependent */
21951 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
21952
21953 /* Otherwise, build a NON_DEPENDENT_EXPR. */
21954 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
21955 }
21956
21957 /* ARGS is a vector of expressions as arguments to a function call.
21958 Replace the arguments with equivalent non-dependent expressions.
21959 This modifies ARGS in place. */
21960
21961 void
21962 make_args_non_dependent (vec<tree, va_gc> *args)
21963 {
21964 unsigned int ix;
21965 tree arg;
21966
21967 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
21968 {
21969 tree newarg = build_non_dependent_expr (arg);
21970 if (newarg != arg)
21971 (*args)[ix] = newarg;
21972 }
21973 }
21974
21975 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
21976 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
21977 parms. */
21978
21979 static tree
21980 make_auto_1 (tree name)
21981 {
21982 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
21983 TYPE_NAME (au) = build_decl (input_location,
21984 TYPE_DECL, name, au);
21985 TYPE_STUB_DECL (au) = TYPE_NAME (au);
21986 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
21987 (0, processing_template_decl + 1, processing_template_decl + 1,
21988 TYPE_NAME (au), NULL_TREE);
21989 TYPE_CANONICAL (au) = canonical_type_parameter (au);
21990 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
21991 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
21992
21993 return au;
21994 }
21995
21996 tree
21997 make_decltype_auto (void)
21998 {
21999 return make_auto_1 (get_identifier ("decltype(auto)"));
22000 }
22001
22002 tree
22003 make_auto (void)
22004 {
22005 return make_auto_1 (get_identifier ("auto"));
22006 }
22007
22008 /* Given type ARG, return std::initializer_list<ARG>. */
22009
22010 static tree
22011 listify (tree arg)
22012 {
22013 tree std_init_list = namespace_binding
22014 (get_identifier ("initializer_list"), std_node);
22015 tree argvec;
22016 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
22017 {
22018 error ("deducing from brace-enclosed initializer list requires "
22019 "#include <initializer_list>");
22020 return error_mark_node;
22021 }
22022 argvec = make_tree_vec (1);
22023 TREE_VEC_ELT (argvec, 0) = arg;
22024 return lookup_template_class (std_init_list, argvec, NULL_TREE,
22025 NULL_TREE, 0, tf_warning_or_error);
22026 }
22027
22028 /* Replace auto in TYPE with std::initializer_list<auto>. */
22029
22030 static tree
22031 listify_autos (tree type, tree auto_node)
22032 {
22033 tree init_auto = listify (auto_node);
22034 tree argvec = make_tree_vec (1);
22035 TREE_VEC_ELT (argvec, 0) = init_auto;
22036 if (processing_template_decl)
22037 argvec = add_to_template_args (current_template_args (), argvec);
22038 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
22039 }
22040
22041 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
22042 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
22043
22044 tree
22045 do_auto_deduction (tree type, tree init, tree auto_node)
22046 {
22047 tree targs;
22048
22049 if (init == error_mark_node)
22050 return error_mark_node;
22051
22052 if (type_dependent_expression_p (init))
22053 /* Defining a subset of type-dependent expressions that we can deduce
22054 from ahead of time isn't worth the trouble. */
22055 return type;
22056
22057 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
22058 with either a new invented type template parameter U or, if the
22059 initializer is a braced-init-list (8.5.4), with
22060 std::initializer_list<U>. */
22061 if (BRACE_ENCLOSED_INITIALIZER_P (init))
22062 type = listify_autos (type, auto_node);
22063
22064 init = resolve_nondeduced_context (init);
22065
22066 targs = make_tree_vec (1);
22067 if (AUTO_IS_DECLTYPE (auto_node))
22068 {
22069 bool id = (DECL_P (init) || (TREE_CODE (init) == COMPONENT_REF
22070 && !REF_PARENTHESIZED_P (init)));
22071 TREE_VEC_ELT (targs, 0)
22072 = finish_decltype_type (init, id, tf_warning_or_error);
22073 if (type != auto_node)
22074 {
22075 error ("%qT as type rather than plain %<decltype(auto)%>", type);
22076 return error_mark_node;
22077 }
22078 }
22079 else
22080 {
22081 tree parms = build_tree_list (NULL_TREE, type);
22082 tree tparms = make_tree_vec (1);
22083 int val;
22084
22085 TREE_VEC_ELT (tparms, 0)
22086 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
22087 val = type_unification_real (tparms, targs, parms, &init, 1, 0,
22088 DEDUCE_CALL, LOOKUP_NORMAL,
22089 NULL, /*explain_p=*/false);
22090 if (val > 0)
22091 {
22092 if (processing_template_decl)
22093 /* Try again at instantiation time. */
22094 return type;
22095 if (type && type != error_mark_node)
22096 /* If type is error_mark_node a diagnostic must have been
22097 emitted by now. Also, having a mention to '<type error>'
22098 in the diagnostic is not really useful to the user. */
22099 {
22100 if (cfun && auto_node == current_function_auto_return_pattern
22101 && LAMBDA_FUNCTION_P (current_function_decl))
22102 error ("unable to deduce lambda return type from %qE", init);
22103 else
22104 error ("unable to deduce %qT from %qE", type, init);
22105 }
22106 return error_mark_node;
22107 }
22108 }
22109
22110 /* If the list of declarators contains more than one declarator, the type
22111 of each declared variable is determined as described above. If the
22112 type deduced for the template parameter U is not the same in each
22113 deduction, the program is ill-formed. */
22114 if (TREE_TYPE (auto_node)
22115 && !same_type_p (TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0)))
22116 {
22117 if (cfun && auto_node == current_function_auto_return_pattern
22118 && LAMBDA_FUNCTION_P (current_function_decl))
22119 error ("inconsistent types %qT and %qT deduced for "
22120 "lambda return type", TREE_TYPE (auto_node),
22121 TREE_VEC_ELT (targs, 0));
22122 else
22123 error ("inconsistent deduction for %qT: %qT and then %qT",
22124 auto_node, TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0));
22125 return error_mark_node;
22126 }
22127 TREE_TYPE (auto_node) = TREE_VEC_ELT (targs, 0);
22128
22129 if (processing_template_decl)
22130 targs = add_to_template_args (current_template_args (), targs);
22131 return tsubst (type, targs, tf_warning_or_error, NULL_TREE);
22132 }
22133
22134 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
22135 result. */
22136
22137 tree
22138 splice_late_return_type (tree type, tree late_return_type)
22139 {
22140 tree argvec;
22141
22142 if (late_return_type == NULL_TREE)
22143 return type;
22144 argvec = make_tree_vec (1);
22145 TREE_VEC_ELT (argvec, 0) = late_return_type;
22146 if (processing_template_parmlist)
22147 /* For a late-specified return type in a template type-parameter, we
22148 need to add a dummy argument level for its parmlist. */
22149 argvec = add_to_template_args
22150 (make_tree_vec (processing_template_parmlist), argvec);
22151 if (current_template_parms)
22152 argvec = add_to_template_args (current_template_args (), argvec);
22153 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
22154 }
22155
22156 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
22157 'decltype(auto)'. */
22158
22159 bool
22160 is_auto (const_tree type)
22161 {
22162 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
22163 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
22164 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
22165 return true;
22166 else
22167 return false;
22168 }
22169
22170 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
22171 a use of `auto'. Returns NULL_TREE otherwise. */
22172
22173 tree
22174 type_uses_auto (tree type)
22175 {
22176 return find_type_usage (type, is_auto);
22177 }
22178
22179 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
22180 'decltype(auto)' or a concept. */
22181
22182 bool
22183 is_auto_or_concept (const_tree type)
22184 {
22185 return is_auto (type); // or concept
22186 }
22187
22188 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
22189 a concept identifier) iff TYPE contains a use of a generic type. Returns
22190 NULL_TREE otherwise. */
22191
22192 tree
22193 type_uses_auto_or_concept (tree type)
22194 {
22195 return find_type_usage (type, is_auto_or_concept);
22196 }
22197
22198
22199 /* For a given template T, return the vector of typedefs referenced
22200 in T for which access check is needed at T instantiation time.
22201 T is either a FUNCTION_DECL or a RECORD_TYPE.
22202 Those typedefs were added to T by the function
22203 append_type_to_template_for_access_check. */
22204
22205 vec<qualified_typedef_usage_t, va_gc> *
22206 get_types_needing_access_check (tree t)
22207 {
22208 tree ti;
22209 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
22210
22211 if (!t || t == error_mark_node)
22212 return NULL;
22213
22214 if (!(ti = get_template_info (t)))
22215 return NULL;
22216
22217 if (CLASS_TYPE_P (t)
22218 || TREE_CODE (t) == FUNCTION_DECL)
22219 {
22220 if (!TI_TEMPLATE (ti))
22221 return NULL;
22222
22223 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
22224 }
22225
22226 return result;
22227 }
22228
22229 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
22230 tied to T. That list of typedefs will be access checked at
22231 T instantiation time.
22232 T is either a FUNCTION_DECL or a RECORD_TYPE.
22233 TYPE_DECL is a TYPE_DECL node representing a typedef.
22234 SCOPE is the scope through which TYPE_DECL is accessed.
22235 LOCATION is the location of the usage point of TYPE_DECL.
22236
22237 This function is a subroutine of
22238 append_type_to_template_for_access_check. */
22239
22240 static void
22241 append_type_to_template_for_access_check_1 (tree t,
22242 tree type_decl,
22243 tree scope,
22244 location_t location)
22245 {
22246 qualified_typedef_usage_t typedef_usage;
22247 tree ti;
22248
22249 if (!t || t == error_mark_node)
22250 return;
22251
22252 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
22253 || CLASS_TYPE_P (t))
22254 && type_decl
22255 && TREE_CODE (type_decl) == TYPE_DECL
22256 && scope);
22257
22258 if (!(ti = get_template_info (t)))
22259 return;
22260
22261 gcc_assert (TI_TEMPLATE (ti));
22262
22263 typedef_usage.typedef_decl = type_decl;
22264 typedef_usage.context = scope;
22265 typedef_usage.locus = location;
22266
22267 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
22268 }
22269
22270 /* Append TYPE_DECL to the template TEMPL.
22271 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
22272 At TEMPL instanciation time, TYPE_DECL will be checked to see
22273 if it can be accessed through SCOPE.
22274 LOCATION is the location of the usage point of TYPE_DECL.
22275
22276 e.g. consider the following code snippet:
22277
22278 class C
22279 {
22280 typedef int myint;
22281 };
22282
22283 template<class U> struct S
22284 {
22285 C::myint mi; // <-- usage point of the typedef C::myint
22286 };
22287
22288 S<char> s;
22289
22290 At S<char> instantiation time, we need to check the access of C::myint
22291 In other words, we need to check the access of the myint typedef through
22292 the C scope. For that purpose, this function will add the myint typedef
22293 and the scope C through which its being accessed to a list of typedefs
22294 tied to the template S. That list will be walked at template instantiation
22295 time and access check performed on each typedefs it contains.
22296 Note that this particular code snippet should yield an error because
22297 myint is private to C. */
22298
22299 void
22300 append_type_to_template_for_access_check (tree templ,
22301 tree type_decl,
22302 tree scope,
22303 location_t location)
22304 {
22305 qualified_typedef_usage_t *iter;
22306 unsigned i;
22307
22308 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
22309
22310 /* Make sure we don't append the type to the template twice. */
22311 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
22312 if (iter->typedef_decl == type_decl && scope == iter->context)
22313 return;
22314
22315 append_type_to_template_for_access_check_1 (templ, type_decl,
22316 scope, location);
22317 }
22318
22319 /* Convert the generic type parameters in PARM that match the types given in the
22320 range [START_IDX, END_IDX) from the current_template_parms into generic type
22321 packs. */
22322
22323 tree
22324 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
22325 {
22326 tree current = current_template_parms;
22327 int depth = TMPL_PARMS_DEPTH (current);
22328 current = INNERMOST_TEMPLATE_PARMS (current);
22329 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
22330
22331 for (int i = 0; i < start_idx; ++i)
22332 TREE_VEC_ELT (replacement, i)
22333 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
22334
22335 for (int i = start_idx; i < end_idx; ++i)
22336 {
22337 /* Create a distinct parameter pack type from the current parm and add it
22338 to the replacement args to tsubst below into the generic function
22339 parameter. */
22340
22341 tree o = TREE_TYPE (TREE_VALUE
22342 (TREE_VEC_ELT (current, i)));
22343 tree t = copy_type (o);
22344 TEMPLATE_TYPE_PARM_INDEX (t)
22345 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
22346 o, 0, 0, tf_none);
22347 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
22348 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
22349 TYPE_MAIN_VARIANT (t) = t;
22350 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
22351 TYPE_CANONICAL (t) = canonical_type_parameter (t);
22352 TREE_VEC_ELT (replacement, i) = t;
22353 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
22354 }
22355
22356 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
22357 TREE_VEC_ELT (replacement, i)
22358 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
22359
22360 /* If there are more levels then build up the replacement with the outer
22361 template parms. */
22362 if (depth > 1)
22363 replacement = add_to_template_args (template_parms_to_args
22364 (TREE_CHAIN (current_template_parms)),
22365 replacement);
22366
22367 return tsubst (parm, replacement, tf_none, NULL_TREE);
22368 }
22369
22370
22371 /* Set up the hash tables for template instantiations. */
22372
22373 void
22374 init_template_processing (void)
22375 {
22376 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
22377 type_specializations = hash_table<spec_hasher>::create_ggc (37);
22378 }
22379
22380 /* Print stats about the template hash tables for -fstats. */
22381
22382 void
22383 print_template_statistics (void)
22384 {
22385 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
22386 "%f collisions\n", (long) decl_specializations->size (),
22387 (long) decl_specializations->elements (),
22388 decl_specializations->collisions ());
22389 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
22390 "%f collisions\n", (long) type_specializations->size (),
22391 (long) type_specializations->elements (),
22392 type_specializations->collisions ());
22393 }
22394
22395 #include "gt-cp-pt.h"