re PR c++/64352 (No SFINAE with deleted function)
[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_partial_spec_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_partial_spec (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 || variable_template_p (tmpl))
1492 /* If TMPL is a forward declaration of a template function, keep a list
1493 of all specializations in case we need to reassign them to a friend
1494 template later in tsubst_friend_function.
1495
1496 Also keep a list of all variable template instantiations so that
1497 process_partial_specialization can check whether a later partial
1498 specialization would have used it. */
1499 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1500 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1501 }
1502
1503 return spec;
1504 }
1505
1506 /* Returns true iff two spec_entry nodes are equivalent. Only compares the
1507 TMPL and ARGS members, ignores SPEC. */
1508
1509 int comparing_specializations;
1510
1511 bool
1512 spec_hasher::equal (spec_entry *e1, spec_entry *e2)
1513 {
1514 int equal;
1515
1516 ++comparing_specializations;
1517 equal = (e1->tmpl == e2->tmpl
1518 && comp_template_args (e1->args, e2->args));
1519 --comparing_specializations;
1520
1521 return equal;
1522 }
1523
1524 /* Returns a hash for a template TMPL and template arguments ARGS. */
1525
1526 static hashval_t
1527 hash_tmpl_and_args (tree tmpl, tree args)
1528 {
1529 hashval_t val = DECL_UID (tmpl);
1530 return iterative_hash_template_arg (args, val);
1531 }
1532
1533 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1534 ignoring SPEC. */
1535
1536 hashval_t
1537 spec_hasher::hash (spec_entry *e)
1538 {
1539 return hash_tmpl_and_args (e->tmpl, e->args);
1540 }
1541
1542 /* Recursively calculate a hash value for a template argument ARG, for use
1543 in the hash tables of template specializations. */
1544
1545 hashval_t
1546 iterative_hash_template_arg (tree arg, hashval_t val)
1547 {
1548 unsigned HOST_WIDE_INT i;
1549 enum tree_code code;
1550 char tclass;
1551
1552 if (arg == NULL_TREE)
1553 return iterative_hash_object (arg, val);
1554
1555 if (!TYPE_P (arg))
1556 STRIP_NOPS (arg);
1557
1558 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1559 /* We can get one of these when re-hashing a previous entry in the middle
1560 of substituting into a pack expansion. Just look through it. */
1561 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1562
1563 code = TREE_CODE (arg);
1564 tclass = TREE_CODE_CLASS (code);
1565
1566 val = iterative_hash_object (code, val);
1567
1568 switch (code)
1569 {
1570 case ERROR_MARK:
1571 return val;
1572
1573 case IDENTIFIER_NODE:
1574 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1575
1576 case TREE_VEC:
1577 {
1578 int i, len = TREE_VEC_LENGTH (arg);
1579 for (i = 0; i < len; ++i)
1580 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1581 return val;
1582 }
1583
1584 case TYPE_PACK_EXPANSION:
1585 case EXPR_PACK_EXPANSION:
1586 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1587 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1588
1589 case TYPE_ARGUMENT_PACK:
1590 case NONTYPE_ARGUMENT_PACK:
1591 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1592
1593 case TREE_LIST:
1594 for (; arg; arg = TREE_CHAIN (arg))
1595 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1596 return val;
1597
1598 case OVERLOAD:
1599 for (; arg; arg = OVL_NEXT (arg))
1600 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1601 return val;
1602
1603 case CONSTRUCTOR:
1604 {
1605 tree field, value;
1606 iterative_hash_template_arg (TREE_TYPE (arg), val);
1607 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1608 {
1609 val = iterative_hash_template_arg (field, val);
1610 val = iterative_hash_template_arg (value, val);
1611 }
1612 return val;
1613 }
1614
1615 case PARM_DECL:
1616 if (!DECL_ARTIFICIAL (arg))
1617 {
1618 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1619 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1620 }
1621 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1622
1623 case TARGET_EXPR:
1624 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1625
1626 case PTRMEM_CST:
1627 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1628 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1629
1630 case TEMPLATE_PARM_INDEX:
1631 val = iterative_hash_template_arg
1632 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1633 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1634 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1635
1636 case TRAIT_EXPR:
1637 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1638 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1639 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1640
1641 case BASELINK:
1642 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1643 val);
1644 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1645 val);
1646
1647 case MODOP_EXPR:
1648 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1649 code = TREE_CODE (TREE_OPERAND (arg, 1));
1650 val = iterative_hash_object (code, val);
1651 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1652
1653 case LAMBDA_EXPR:
1654 /* A lambda can't appear in a template arg, but don't crash on
1655 erroneous input. */
1656 gcc_assert (seen_error ());
1657 return val;
1658
1659 case CAST_EXPR:
1660 case IMPLICIT_CONV_EXPR:
1661 case STATIC_CAST_EXPR:
1662 case REINTERPRET_CAST_EXPR:
1663 case CONST_CAST_EXPR:
1664 case DYNAMIC_CAST_EXPR:
1665 case NEW_EXPR:
1666 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1667 /* Now hash operands as usual. */
1668 break;
1669
1670 default:
1671 break;
1672 }
1673
1674 switch (tclass)
1675 {
1676 case tcc_type:
1677 if (TYPE_CANONICAL (arg))
1678 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1679 val);
1680 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1681 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1682 /* Otherwise just compare the types during lookup. */
1683 return val;
1684
1685 case tcc_declaration:
1686 case tcc_constant:
1687 return iterative_hash_expr (arg, val);
1688
1689 default:
1690 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1691 {
1692 unsigned n = cp_tree_operand_length (arg);
1693 for (i = 0; i < n; ++i)
1694 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1695 return val;
1696 }
1697 }
1698 gcc_unreachable ();
1699 return 0;
1700 }
1701
1702 /* Unregister the specialization SPEC as a specialization of TMPL.
1703 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1704 if the SPEC was listed as a specialization of TMPL.
1705
1706 Note that SPEC has been ggc_freed, so we can't look inside it. */
1707
1708 bool
1709 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1710 {
1711 spec_entry *entry;
1712 spec_entry elt;
1713
1714 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1715 elt.args = TI_ARGS (tinfo);
1716 elt.spec = NULL_TREE;
1717
1718 entry = decl_specializations->find (&elt);
1719 if (entry != NULL)
1720 {
1721 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1722 gcc_assert (new_spec != NULL_TREE);
1723 entry->spec = new_spec;
1724 return 1;
1725 }
1726
1727 return 0;
1728 }
1729
1730 /* Like register_specialization, but for local declarations. We are
1731 registering SPEC, an instantiation of TMPL. */
1732
1733 static void
1734 register_local_specialization (tree spec, tree tmpl)
1735 {
1736 local_specializations->put (tmpl, spec);
1737 }
1738
1739 /* TYPE is a class type. Returns true if TYPE is an explicitly
1740 specialized class. */
1741
1742 bool
1743 explicit_class_specialization_p (tree type)
1744 {
1745 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1746 return false;
1747 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1748 }
1749
1750 /* Print the list of functions at FNS, going through all the overloads
1751 for each element of the list. Alternatively, FNS can not be a
1752 TREE_LIST, in which case it will be printed together with all the
1753 overloads.
1754
1755 MORE and *STR should respectively be FALSE and NULL when the function
1756 is called from the outside. They are used internally on recursive
1757 calls. print_candidates manages the two parameters and leaves NULL
1758 in *STR when it ends. */
1759
1760 static void
1761 print_candidates_1 (tree fns, bool more, const char **str)
1762 {
1763 tree fn, fn2;
1764 char *spaces = NULL;
1765
1766 for (fn = fns; fn; fn = OVL_NEXT (fn))
1767 if (TREE_CODE (fn) == TREE_LIST)
1768 {
1769 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1770 print_candidates_1 (TREE_VALUE (fn2),
1771 TREE_CHAIN (fn2) || more, str);
1772 }
1773 else
1774 {
1775 tree cand = OVL_CURRENT (fn);
1776 if (!*str)
1777 {
1778 /* Pick the prefix string. */
1779 if (!more && !OVL_NEXT (fns))
1780 {
1781 inform (DECL_SOURCE_LOCATION (cand),
1782 "candidate is: %#D", cand);
1783 continue;
1784 }
1785
1786 *str = _("candidates are:");
1787 spaces = get_spaces (*str);
1788 }
1789 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1790 *str = spaces ? spaces : *str;
1791 }
1792
1793 if (!more)
1794 {
1795 free (spaces);
1796 *str = NULL;
1797 }
1798 }
1799
1800 /* Print the list of candidate FNS in an error message. FNS can also
1801 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1802
1803 void
1804 print_candidates (tree fns)
1805 {
1806 const char *str = NULL;
1807 print_candidates_1 (fns, false, &str);
1808 gcc_assert (str == NULL);
1809 }
1810
1811 /* Returns the template (one of the functions given by TEMPLATE_ID)
1812 which can be specialized to match the indicated DECL with the
1813 explicit template args given in TEMPLATE_ID. The DECL may be
1814 NULL_TREE if none is available. In that case, the functions in
1815 TEMPLATE_ID are non-members.
1816
1817 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
1818 specialization of a member template.
1819
1820 The TEMPLATE_COUNT is the number of references to qualifying
1821 template classes that appeared in the name of the function. See
1822 check_explicit_specialization for a more accurate description.
1823
1824 TSK indicates what kind of template declaration (if any) is being
1825 declared. TSK_TEMPLATE indicates that the declaration given by
1826 DECL, though a FUNCTION_DECL, has template parameters, and is
1827 therefore a template function.
1828
1829 The template args (those explicitly specified and those deduced)
1830 are output in a newly created vector *TARGS_OUT.
1831
1832 If it is impossible to determine the result, an error message is
1833 issued. The error_mark_node is returned to indicate failure. */
1834
1835 static tree
1836 determine_specialization (tree template_id,
1837 tree decl,
1838 tree* targs_out,
1839 int need_member_template,
1840 int template_count,
1841 tmpl_spec_kind tsk)
1842 {
1843 tree fns;
1844 tree targs;
1845 tree explicit_targs;
1846 tree candidates = NULL_TREE;
1847 /* A TREE_LIST of templates of which DECL may be a specialization.
1848 The TREE_VALUE of each node is a TEMPLATE_DECL. The
1849 corresponding TREE_PURPOSE is the set of template arguments that,
1850 when used to instantiate the template, would produce a function
1851 with the signature of DECL. */
1852 tree templates = NULL_TREE;
1853 int header_count;
1854 cp_binding_level *b;
1855
1856 *targs_out = NULL_TREE;
1857
1858 if (template_id == error_mark_node || decl == error_mark_node)
1859 return error_mark_node;
1860
1861 /* We shouldn't be specializing a member template of an
1862 unspecialized class template; we already gave an error in
1863 check_specialization_scope, now avoid crashing. */
1864 if (template_count && DECL_CLASS_SCOPE_P (decl)
1865 && template_class_depth (DECL_CONTEXT (decl)) > 0)
1866 {
1867 gcc_assert (errorcount);
1868 return error_mark_node;
1869 }
1870
1871 fns = TREE_OPERAND (template_id, 0);
1872 explicit_targs = TREE_OPERAND (template_id, 1);
1873
1874 if (fns == error_mark_node)
1875 return error_mark_node;
1876
1877 /* Check for baselinks. */
1878 if (BASELINK_P (fns))
1879 fns = BASELINK_FUNCTIONS (fns);
1880
1881 if (TREE_CODE (decl) == FUNCTION_DECL && !is_overloaded_fn (fns))
1882 {
1883 error ("%qD is not a function template", fns);
1884 return error_mark_node;
1885 }
1886 else if (VAR_P (decl) && !variable_template_p (fns))
1887 {
1888 error ("%qD is not a variable template", fns);
1889 return error_mark_node;
1890 }
1891
1892 /* Count the number of template headers specified for this
1893 specialization. */
1894 header_count = 0;
1895 for (b = current_binding_level;
1896 b->kind == sk_template_parms;
1897 b = b->level_chain)
1898 ++header_count;
1899
1900 if (variable_template_p (fns))
1901 templates = tree_cons (explicit_targs, fns, templates);
1902 else for (; fns; fns = OVL_NEXT (fns))
1903 {
1904 tree fn = OVL_CURRENT (fns);
1905
1906 if (TREE_CODE (fn) == TEMPLATE_DECL)
1907 {
1908 tree decl_arg_types;
1909 tree fn_arg_types;
1910 tree insttype;
1911
1912 /* In case of explicit specialization, we need to check if
1913 the number of template headers appearing in the specialization
1914 is correct. This is usually done in check_explicit_specialization,
1915 but the check done there cannot be exhaustive when specializing
1916 member functions. Consider the following code:
1917
1918 template <> void A<int>::f(int);
1919 template <> template <> void A<int>::f(int);
1920
1921 Assuming that A<int> is not itself an explicit specialization
1922 already, the first line specializes "f" which is a non-template
1923 member function, whilst the second line specializes "f" which
1924 is a template member function. So both lines are syntactically
1925 correct, and check_explicit_specialization does not reject
1926 them.
1927
1928 Here, we can do better, as we are matching the specialization
1929 against the declarations. We count the number of template
1930 headers, and we check if they match TEMPLATE_COUNT + 1
1931 (TEMPLATE_COUNT is the number of qualifying template classes,
1932 plus there must be another header for the member template
1933 itself).
1934
1935 Notice that if header_count is zero, this is not a
1936 specialization but rather a template instantiation, so there
1937 is no check we can perform here. */
1938 if (header_count && header_count != template_count + 1)
1939 continue;
1940
1941 /* Check that the number of template arguments at the
1942 innermost level for DECL is the same as for FN. */
1943 if (current_binding_level->kind == sk_template_parms
1944 && !current_binding_level->explicit_spec_p
1945 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
1946 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
1947 (current_template_parms))))
1948 continue;
1949
1950 /* DECL might be a specialization of FN. */
1951 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1952 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
1953
1954 /* For a non-static member function, we need to make sure
1955 that the const qualification is the same. Since
1956 get_bindings does not try to merge the "this" parameter,
1957 we must do the comparison explicitly. */
1958 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1959 && !same_type_p (TREE_VALUE (fn_arg_types),
1960 TREE_VALUE (decl_arg_types)))
1961 continue;
1962
1963 /* Skip the "this" parameter and, for constructors of
1964 classes with virtual bases, the VTT parameter. A
1965 full specialization of a constructor will have a VTT
1966 parameter, but a template never will. */
1967 decl_arg_types
1968 = skip_artificial_parms_for (decl, decl_arg_types);
1969 fn_arg_types
1970 = skip_artificial_parms_for (fn, fn_arg_types);
1971
1972 /* Function templates cannot be specializations; there are
1973 no partial specializations of functions. Therefore, if
1974 the type of DECL does not match FN, there is no
1975 match. */
1976 if (tsk == tsk_template)
1977 {
1978 if (compparms (fn_arg_types, decl_arg_types))
1979 candidates = tree_cons (NULL_TREE, fn, candidates);
1980 continue;
1981 }
1982
1983 /* See whether this function might be a specialization of this
1984 template. Suppress access control because we might be trying
1985 to make this specialization a friend, and we have already done
1986 access control for the declaration of the specialization. */
1987 push_deferring_access_checks (dk_no_check);
1988 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
1989 pop_deferring_access_checks ();
1990
1991 if (!targs)
1992 /* We cannot deduce template arguments that when used to
1993 specialize TMPL will produce DECL. */
1994 continue;
1995
1996 /* Make sure that the deduced arguments actually work. */
1997 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
1998 if (insttype == error_mark_node)
1999 continue;
2000 fn_arg_types
2001 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
2002 if (!compparms (fn_arg_types, decl_arg_types))
2003 continue;
2004
2005 /* Save this template, and the arguments deduced. */
2006 templates = tree_cons (targs, fn, templates);
2007 }
2008 else if (need_member_template)
2009 /* FN is an ordinary member function, and we need a
2010 specialization of a member template. */
2011 ;
2012 else if (TREE_CODE (fn) != FUNCTION_DECL)
2013 /* We can get IDENTIFIER_NODEs here in certain erroneous
2014 cases. */
2015 ;
2016 else if (!DECL_FUNCTION_MEMBER_P (fn))
2017 /* This is just an ordinary non-member function. Nothing can
2018 be a specialization of that. */
2019 ;
2020 else if (DECL_ARTIFICIAL (fn))
2021 /* Cannot specialize functions that are created implicitly. */
2022 ;
2023 else
2024 {
2025 tree decl_arg_types;
2026
2027 /* This is an ordinary member function. However, since
2028 we're here, we can assume its enclosing class is a
2029 template class. For example,
2030
2031 template <typename T> struct S { void f(); };
2032 template <> void S<int>::f() {}
2033
2034 Here, S<int>::f is a non-template, but S<int> is a
2035 template class. If FN has the same type as DECL, we
2036 might be in business. */
2037
2038 if (!DECL_TEMPLATE_INFO (fn))
2039 /* Its enclosing class is an explicit specialization
2040 of a template class. This is not a candidate. */
2041 continue;
2042
2043 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2044 TREE_TYPE (TREE_TYPE (fn))))
2045 /* The return types differ. */
2046 continue;
2047
2048 /* Adjust the type of DECL in case FN is a static member. */
2049 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2050 if (DECL_STATIC_FUNCTION_P (fn)
2051 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2052 decl_arg_types = TREE_CHAIN (decl_arg_types);
2053
2054 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2055 decl_arg_types))
2056 /* They match! */
2057 candidates = tree_cons (NULL_TREE, fn, candidates);
2058 }
2059 }
2060
2061 if (templates && TREE_CHAIN (templates))
2062 {
2063 /* We have:
2064
2065 [temp.expl.spec]
2066
2067 It is possible for a specialization with a given function
2068 signature to be instantiated from more than one function
2069 template. In such cases, explicit specification of the
2070 template arguments must be used to uniquely identify the
2071 function template specialization being specialized.
2072
2073 Note that here, there's no suggestion that we're supposed to
2074 determine which of the candidate templates is most
2075 specialized. However, we, also have:
2076
2077 [temp.func.order]
2078
2079 Partial ordering of overloaded function template
2080 declarations is used in the following contexts to select
2081 the function template to which a function template
2082 specialization refers:
2083
2084 -- when an explicit specialization refers to a function
2085 template.
2086
2087 So, we do use the partial ordering rules, at least for now.
2088 This extension can only serve to make invalid programs valid,
2089 so it's safe. And, there is strong anecdotal evidence that
2090 the committee intended the partial ordering rules to apply;
2091 the EDG front end has that behavior, and John Spicer claims
2092 that the committee simply forgot to delete the wording in
2093 [temp.expl.spec]. */
2094 tree tmpl = most_specialized_instantiation (templates);
2095 if (tmpl != error_mark_node)
2096 {
2097 templates = tmpl;
2098 TREE_CHAIN (templates) = NULL_TREE;
2099 }
2100 }
2101
2102 if (templates == NULL_TREE && candidates == NULL_TREE)
2103 {
2104 error ("template-id %qD for %q+D does not match any template "
2105 "declaration", template_id, decl);
2106 if (header_count && header_count != template_count + 1)
2107 inform (input_location, "saw %d %<template<>%>, need %d for "
2108 "specializing a member function template",
2109 header_count, template_count + 1);
2110 return error_mark_node;
2111 }
2112 else if ((templates && TREE_CHAIN (templates))
2113 || (candidates && TREE_CHAIN (candidates))
2114 || (templates && candidates))
2115 {
2116 error ("ambiguous template specialization %qD for %q+D",
2117 template_id, decl);
2118 candidates = chainon (candidates, templates);
2119 print_candidates (candidates);
2120 return error_mark_node;
2121 }
2122
2123 /* We have one, and exactly one, match. */
2124 if (candidates)
2125 {
2126 tree fn = TREE_VALUE (candidates);
2127 *targs_out = copy_node (DECL_TI_ARGS (fn));
2128 /* DECL is a re-declaration or partial instantiation of a template
2129 function. */
2130 if (TREE_CODE (fn) == TEMPLATE_DECL)
2131 return fn;
2132 /* It was a specialization of an ordinary member function in a
2133 template class. */
2134 return DECL_TI_TEMPLATE (fn);
2135 }
2136
2137 /* It was a specialization of a template. */
2138 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2139 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2140 {
2141 *targs_out = copy_node (targs);
2142 SET_TMPL_ARGS_LEVEL (*targs_out,
2143 TMPL_ARGS_DEPTH (*targs_out),
2144 TREE_PURPOSE (templates));
2145 }
2146 else
2147 *targs_out = TREE_PURPOSE (templates);
2148 return TREE_VALUE (templates);
2149 }
2150
2151 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2152 but with the default argument values filled in from those in the
2153 TMPL_TYPES. */
2154
2155 static tree
2156 copy_default_args_to_explicit_spec_1 (tree spec_types,
2157 tree tmpl_types)
2158 {
2159 tree new_spec_types;
2160
2161 if (!spec_types)
2162 return NULL_TREE;
2163
2164 if (spec_types == void_list_node)
2165 return void_list_node;
2166
2167 /* Substitute into the rest of the list. */
2168 new_spec_types =
2169 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2170 TREE_CHAIN (tmpl_types));
2171
2172 /* Add the default argument for this parameter. */
2173 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2174 TREE_VALUE (spec_types),
2175 new_spec_types);
2176 }
2177
2178 /* DECL is an explicit specialization. Replicate default arguments
2179 from the template it specializes. (That way, code like:
2180
2181 template <class T> void f(T = 3);
2182 template <> void f(double);
2183 void g () { f (); }
2184
2185 works, as required.) An alternative approach would be to look up
2186 the correct default arguments at the call-site, but this approach
2187 is consistent with how implicit instantiations are handled. */
2188
2189 static void
2190 copy_default_args_to_explicit_spec (tree decl)
2191 {
2192 tree tmpl;
2193 tree spec_types;
2194 tree tmpl_types;
2195 tree new_spec_types;
2196 tree old_type;
2197 tree new_type;
2198 tree t;
2199 tree object_type = NULL_TREE;
2200 tree in_charge = NULL_TREE;
2201 tree vtt = NULL_TREE;
2202
2203 /* See if there's anything we need to do. */
2204 tmpl = DECL_TI_TEMPLATE (decl);
2205 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2206 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2207 if (TREE_PURPOSE (t))
2208 break;
2209 if (!t)
2210 return;
2211
2212 old_type = TREE_TYPE (decl);
2213 spec_types = TYPE_ARG_TYPES (old_type);
2214
2215 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2216 {
2217 /* Remove the this pointer, but remember the object's type for
2218 CV quals. */
2219 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2220 spec_types = TREE_CHAIN (spec_types);
2221 tmpl_types = TREE_CHAIN (tmpl_types);
2222
2223 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2224 {
2225 /* DECL may contain more parameters than TMPL due to the extra
2226 in-charge parameter in constructors and destructors. */
2227 in_charge = spec_types;
2228 spec_types = TREE_CHAIN (spec_types);
2229 }
2230 if (DECL_HAS_VTT_PARM_P (decl))
2231 {
2232 vtt = spec_types;
2233 spec_types = TREE_CHAIN (spec_types);
2234 }
2235 }
2236
2237 /* Compute the merged default arguments. */
2238 new_spec_types =
2239 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2240
2241 /* Compute the new FUNCTION_TYPE. */
2242 if (object_type)
2243 {
2244 if (vtt)
2245 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2246 TREE_VALUE (vtt),
2247 new_spec_types);
2248
2249 if (in_charge)
2250 /* Put the in-charge parameter back. */
2251 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2252 TREE_VALUE (in_charge),
2253 new_spec_types);
2254
2255 new_type = build_method_type_directly (object_type,
2256 TREE_TYPE (old_type),
2257 new_spec_types);
2258 }
2259 else
2260 new_type = build_function_type (TREE_TYPE (old_type),
2261 new_spec_types);
2262 new_type = cp_build_type_attribute_variant (new_type,
2263 TYPE_ATTRIBUTES (old_type));
2264 new_type = build_exception_variant (new_type,
2265 TYPE_RAISES_EXCEPTIONS (old_type));
2266
2267 if (TYPE_HAS_LATE_RETURN_TYPE (old_type))
2268 TYPE_HAS_LATE_RETURN_TYPE (new_type) = 1;
2269
2270 TREE_TYPE (decl) = new_type;
2271 }
2272
2273 /* Return the number of template headers we expect to see for a definition
2274 or specialization of CTYPE or one of its non-template members. */
2275
2276 int
2277 num_template_headers_for_class (tree ctype)
2278 {
2279 int num_templates = 0;
2280
2281 while (ctype && CLASS_TYPE_P (ctype))
2282 {
2283 /* You're supposed to have one `template <...>' for every
2284 template class, but you don't need one for a full
2285 specialization. For example:
2286
2287 template <class T> struct S{};
2288 template <> struct S<int> { void f(); };
2289 void S<int>::f () {}
2290
2291 is correct; there shouldn't be a `template <>' for the
2292 definition of `S<int>::f'. */
2293 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2294 /* If CTYPE does not have template information of any
2295 kind, then it is not a template, nor is it nested
2296 within a template. */
2297 break;
2298 if (explicit_class_specialization_p (ctype))
2299 break;
2300 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2301 ++num_templates;
2302
2303 ctype = TYPE_CONTEXT (ctype);
2304 }
2305
2306 return num_templates;
2307 }
2308
2309 /* Do a simple sanity check on the template headers that precede the
2310 variable declaration DECL. */
2311
2312 void
2313 check_template_variable (tree decl)
2314 {
2315 tree ctx = CP_DECL_CONTEXT (decl);
2316 int wanted = num_template_headers_for_class (ctx);
2317 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
2318 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2319 {
2320 if (cxx_dialect < cxx14)
2321 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2322 "variable templates only available with "
2323 "-std=c++14 or -std=gnu++14");
2324
2325 // Namespace-scope variable templates should have a template header.
2326 ++wanted;
2327 }
2328 if (template_header_count > wanted)
2329 {
2330 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2331 "too many template headers for %D (should be %d)",
2332 decl, wanted);
2333 if (warned && CLASS_TYPE_P (ctx)
2334 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2335 inform (DECL_SOURCE_LOCATION (decl),
2336 "members of an explicitly specialized class are defined "
2337 "without a template header");
2338 }
2339 }
2340
2341 /* Check to see if the function just declared, as indicated in
2342 DECLARATOR, and in DECL, is a specialization of a function
2343 template. We may also discover that the declaration is an explicit
2344 instantiation at this point.
2345
2346 Returns DECL, or an equivalent declaration that should be used
2347 instead if all goes well. Issues an error message if something is
2348 amiss. Returns error_mark_node if the error is not easily
2349 recoverable.
2350
2351 FLAGS is a bitmask consisting of the following flags:
2352
2353 2: The function has a definition.
2354 4: The function is a friend.
2355
2356 The TEMPLATE_COUNT is the number of references to qualifying
2357 template classes that appeared in the name of the function. For
2358 example, in
2359
2360 template <class T> struct S { void f(); };
2361 void S<int>::f();
2362
2363 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2364 classes are not counted in the TEMPLATE_COUNT, so that in
2365
2366 template <class T> struct S {};
2367 template <> struct S<int> { void f(); }
2368 template <> void S<int>::f();
2369
2370 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2371 invalid; there should be no template <>.)
2372
2373 If the function is a specialization, it is marked as such via
2374 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2375 is set up correctly, and it is added to the list of specializations
2376 for that template. */
2377
2378 tree
2379 check_explicit_specialization (tree declarator,
2380 tree decl,
2381 int template_count,
2382 int flags)
2383 {
2384 int have_def = flags & 2;
2385 int is_friend = flags & 4;
2386 int specialization = 0;
2387 int explicit_instantiation = 0;
2388 int member_specialization = 0;
2389 tree ctype = DECL_CLASS_CONTEXT (decl);
2390 tree dname = DECL_NAME (decl);
2391 tmpl_spec_kind tsk;
2392
2393 if (is_friend)
2394 {
2395 if (!processing_specialization)
2396 tsk = tsk_none;
2397 else
2398 tsk = tsk_excessive_parms;
2399 }
2400 else
2401 tsk = current_tmpl_spec_kind (template_count);
2402
2403 switch (tsk)
2404 {
2405 case tsk_none:
2406 if (processing_specialization)
2407 {
2408 specialization = 1;
2409 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2410 }
2411 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2412 {
2413 if (is_friend)
2414 /* This could be something like:
2415
2416 template <class T> void f(T);
2417 class S { friend void f<>(int); } */
2418 specialization = 1;
2419 else
2420 {
2421 /* This case handles bogus declarations like template <>
2422 template <class T> void f<int>(); */
2423
2424 error ("template-id %qD in declaration of primary template",
2425 declarator);
2426 return decl;
2427 }
2428 }
2429 break;
2430
2431 case tsk_invalid_member_spec:
2432 /* The error has already been reported in
2433 check_specialization_scope. */
2434 return error_mark_node;
2435
2436 case tsk_invalid_expl_inst:
2437 error ("template parameter list used in explicit instantiation");
2438
2439 /* Fall through. */
2440
2441 case tsk_expl_inst:
2442 if (have_def)
2443 error ("definition provided for explicit instantiation");
2444
2445 explicit_instantiation = 1;
2446 break;
2447
2448 case tsk_excessive_parms:
2449 case tsk_insufficient_parms:
2450 if (tsk == tsk_excessive_parms)
2451 error ("too many template parameter lists in declaration of %qD",
2452 decl);
2453 else if (template_header_count)
2454 error("too few template parameter lists in declaration of %qD", decl);
2455 else
2456 error("explicit specialization of %qD must be introduced by "
2457 "%<template <>%>", decl);
2458
2459 /* Fall through. */
2460 case tsk_expl_spec:
2461 if (VAR_P (decl) && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2462 /* In cases like template<> constexpr bool v = true;
2463 We'll give an error in check_template_variable. */
2464 break;
2465
2466 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2467 if (ctype)
2468 member_specialization = 1;
2469 else
2470 specialization = 1;
2471 break;
2472
2473 case tsk_template:
2474 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2475 {
2476 /* This case handles bogus declarations like template <>
2477 template <class T> void f<int>(); */
2478
2479 if (!uses_template_parms (declarator))
2480 error ("template-id %qD in declaration of primary template",
2481 declarator);
2482 else if (variable_template_p (TREE_OPERAND (declarator, 0)))
2483 {
2484 /* Partial specialization of variable template. */
2485 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2486 specialization = 1;
2487 goto ok;
2488 }
2489 else if (cxx_dialect < cxx14)
2490 error ("non-type partial specialization %qD "
2491 "is not allowed", declarator);
2492 else
2493 error ("non-class, non-variable partial specialization %qD "
2494 "is not allowed", declarator);
2495 return decl;
2496 ok:;
2497 }
2498
2499 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2500 /* This is a specialization of a member template, without
2501 specialization the containing class. Something like:
2502
2503 template <class T> struct S {
2504 template <class U> void f (U);
2505 };
2506 template <> template <class U> void S<int>::f(U) {}
2507
2508 That's a specialization -- but of the entire template. */
2509 specialization = 1;
2510 break;
2511
2512 default:
2513 gcc_unreachable ();
2514 }
2515
2516 if ((specialization || member_specialization)
2517 /* This doesn't apply to variable templates. */
2518 && (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE
2519 || TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE))
2520 {
2521 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2522 for (; t; t = TREE_CHAIN (t))
2523 if (TREE_PURPOSE (t))
2524 {
2525 permerror (input_location,
2526 "default argument specified in explicit specialization");
2527 break;
2528 }
2529 }
2530
2531 if (specialization || member_specialization || explicit_instantiation)
2532 {
2533 tree tmpl = NULL_TREE;
2534 tree targs = NULL_TREE;
2535 bool was_template_id = (TREE_CODE (declarator) == TEMPLATE_ID_EXPR);
2536
2537 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2538 if (!was_template_id)
2539 {
2540 tree fns;
2541
2542 gcc_assert (identifier_p (declarator));
2543 if (ctype)
2544 fns = dname;
2545 else
2546 {
2547 /* If there is no class context, the explicit instantiation
2548 must be at namespace scope. */
2549 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2550
2551 /* Find the namespace binding, using the declaration
2552 context. */
2553 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2554 false, true);
2555 if (fns == error_mark_node || !is_overloaded_fn (fns))
2556 {
2557 error ("%qD is not a template function", dname);
2558 fns = error_mark_node;
2559 }
2560 else
2561 {
2562 tree fn = OVL_CURRENT (fns);
2563 if (!is_associated_namespace (CP_DECL_CONTEXT (decl),
2564 CP_DECL_CONTEXT (fn)))
2565 error ("%qD is not declared in %qD",
2566 decl, current_namespace);
2567 }
2568 }
2569
2570 declarator = lookup_template_function (fns, NULL_TREE);
2571 }
2572
2573 if (declarator == error_mark_node)
2574 return error_mark_node;
2575
2576 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2577 {
2578 if (!explicit_instantiation)
2579 /* A specialization in class scope. This is invalid,
2580 but the error will already have been flagged by
2581 check_specialization_scope. */
2582 return error_mark_node;
2583 else
2584 {
2585 /* It's not valid to write an explicit instantiation in
2586 class scope, e.g.:
2587
2588 class C { template void f(); }
2589
2590 This case is caught by the parser. However, on
2591 something like:
2592
2593 template class C { void f(); };
2594
2595 (which is invalid) we can get here. The error will be
2596 issued later. */
2597 ;
2598 }
2599
2600 return decl;
2601 }
2602 else if (ctype != NULL_TREE
2603 && (identifier_p (TREE_OPERAND (declarator, 0))))
2604 {
2605 // We'll match variable templates in start_decl.
2606 if (VAR_P (decl))
2607 return decl;
2608
2609 /* Find the list of functions in ctype that have the same
2610 name as the declared function. */
2611 tree name = TREE_OPERAND (declarator, 0);
2612 tree fns = NULL_TREE;
2613 int idx;
2614
2615 if (constructor_name_p (name, ctype))
2616 {
2617 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2618
2619 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2620 : !CLASSTYPE_DESTRUCTORS (ctype))
2621 {
2622 /* From [temp.expl.spec]:
2623
2624 If such an explicit specialization for the member
2625 of a class template names an implicitly-declared
2626 special member function (clause _special_), the
2627 program is ill-formed.
2628
2629 Similar language is found in [temp.explicit]. */
2630 error ("specialization of implicitly-declared special member function");
2631 return error_mark_node;
2632 }
2633
2634 name = is_constructor ? ctor_identifier : dtor_identifier;
2635 }
2636
2637 if (!DECL_CONV_FN_P (decl))
2638 {
2639 idx = lookup_fnfields_1 (ctype, name);
2640 if (idx >= 0)
2641 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2642 }
2643 else
2644 {
2645 vec<tree, va_gc> *methods;
2646 tree ovl;
2647
2648 /* For a type-conversion operator, we cannot do a
2649 name-based lookup. We might be looking for `operator
2650 int' which will be a specialization of `operator T'.
2651 So, we find *all* the conversion operators, and then
2652 select from them. */
2653 fns = NULL_TREE;
2654
2655 methods = CLASSTYPE_METHOD_VEC (ctype);
2656 if (methods)
2657 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2658 methods->iterate (idx, &ovl);
2659 ++idx)
2660 {
2661 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2662 /* There are no more conversion functions. */
2663 break;
2664
2665 /* Glue all these conversion functions together
2666 with those we already have. */
2667 for (; ovl; ovl = OVL_NEXT (ovl))
2668 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2669 }
2670 }
2671
2672 if (fns == NULL_TREE)
2673 {
2674 error ("no member function %qD declared in %qT", name, ctype);
2675 return error_mark_node;
2676 }
2677 else
2678 TREE_OPERAND (declarator, 0) = fns;
2679 }
2680
2681 /* Figure out what exactly is being specialized at this point.
2682 Note that for an explicit instantiation, even one for a
2683 member function, we cannot tell apriori whether the
2684 instantiation is for a member template, or just a member
2685 function of a template class. Even if a member template is
2686 being instantiated, the member template arguments may be
2687 elided if they can be deduced from the rest of the
2688 declaration. */
2689 tmpl = determine_specialization (declarator, decl,
2690 &targs,
2691 member_specialization,
2692 template_count,
2693 tsk);
2694
2695 if (!tmpl || tmpl == error_mark_node)
2696 /* We couldn't figure out what this declaration was
2697 specializing. */
2698 return error_mark_node;
2699 else
2700 {
2701 tree gen_tmpl = most_general_template (tmpl);
2702
2703 if (explicit_instantiation)
2704 {
2705 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2706 is done by do_decl_instantiation later. */
2707
2708 int arg_depth = TMPL_ARGS_DEPTH (targs);
2709 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2710
2711 if (arg_depth > parm_depth)
2712 {
2713 /* If TMPL is not the most general template (for
2714 example, if TMPL is a friend template that is
2715 injected into namespace scope), then there will
2716 be too many levels of TARGS. Remove some of them
2717 here. */
2718 int i;
2719 tree new_targs;
2720
2721 new_targs = make_tree_vec (parm_depth);
2722 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2723 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2724 = TREE_VEC_ELT (targs, i);
2725 targs = new_targs;
2726 }
2727
2728 return instantiate_template (tmpl, targs, tf_error);
2729 }
2730
2731 /* If we thought that the DECL was a member function, but it
2732 turns out to be specializing a static member function,
2733 make DECL a static member function as well. */
2734 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
2735 && DECL_STATIC_FUNCTION_P (tmpl)
2736 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2737 revert_static_member_fn (decl);
2738
2739 /* If this is a specialization of a member template of a
2740 template class, we want to return the TEMPLATE_DECL, not
2741 the specialization of it. */
2742 if (tsk == tsk_template && !was_template_id)
2743 {
2744 tree result = DECL_TEMPLATE_RESULT (tmpl);
2745 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2746 DECL_INITIAL (result) = NULL_TREE;
2747 if (have_def)
2748 {
2749 tree parm;
2750 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
2751 DECL_SOURCE_LOCATION (result)
2752 = DECL_SOURCE_LOCATION (decl);
2753 /* We want to use the argument list specified in the
2754 definition, not in the original declaration. */
2755 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
2756 for (parm = DECL_ARGUMENTS (result); parm;
2757 parm = DECL_CHAIN (parm))
2758 DECL_CONTEXT (parm) = result;
2759 }
2760 return register_specialization (tmpl, gen_tmpl, targs,
2761 is_friend, 0);
2762 }
2763
2764 /* Set up the DECL_TEMPLATE_INFO for DECL. */
2765 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
2766
2767 if (was_template_id)
2768 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl)) = true;
2769
2770 /* Inherit default function arguments from the template
2771 DECL is specializing. */
2772 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
2773 copy_default_args_to_explicit_spec (decl);
2774
2775 /* This specialization has the same protection as the
2776 template it specializes. */
2777 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
2778 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
2779
2780 /* 7.1.1-1 [dcl.stc]
2781
2782 A storage-class-specifier shall not be specified in an
2783 explicit specialization...
2784
2785 The parser rejects these, so unless action is taken here,
2786 explicit function specializations will always appear with
2787 global linkage.
2788
2789 The action recommended by the C++ CWG in response to C++
2790 defect report 605 is to make the storage class and linkage
2791 of the explicit specialization match the templated function:
2792
2793 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
2794 */
2795 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
2796 {
2797 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
2798 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
2799
2800 /* This specialization has the same linkage and visibility as
2801 the function template it specializes. */
2802 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
2803 if (! TREE_PUBLIC (decl))
2804 {
2805 DECL_INTERFACE_KNOWN (decl) = 1;
2806 DECL_NOT_REALLY_EXTERN (decl) = 1;
2807 }
2808 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
2809 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
2810 {
2811 DECL_VISIBILITY_SPECIFIED (decl) = 1;
2812 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
2813 }
2814 }
2815
2816 /* If DECL is a friend declaration, declared using an
2817 unqualified name, the namespace associated with DECL may
2818 have been set incorrectly. For example, in:
2819
2820 template <typename T> void f(T);
2821 namespace N {
2822 struct S { friend void f<int>(int); }
2823 }
2824
2825 we will have set the DECL_CONTEXT for the friend
2826 declaration to N, rather than to the global namespace. */
2827 if (DECL_NAMESPACE_SCOPE_P (decl))
2828 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
2829
2830 if (is_friend && !have_def)
2831 /* This is not really a declaration of a specialization.
2832 It's just the name of an instantiation. But, it's not
2833 a request for an instantiation, either. */
2834 SET_DECL_IMPLICIT_INSTANTIATION (decl);
2835 else if (TREE_CODE (decl) == FUNCTION_DECL)
2836 /* A specialization is not necessarily COMDAT. */
2837 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
2838 && DECL_DECLARED_INLINE_P (decl));
2839 else if (TREE_CODE (decl) == VAR_DECL)
2840 DECL_COMDAT (decl) = false;
2841
2842 /* Register this specialization so that we can find it
2843 again. */
2844 decl = register_specialization (decl, gen_tmpl, targs, is_friend, 0);
2845
2846 /* A 'structor should already have clones. */
2847 gcc_assert (decl == error_mark_node
2848 || variable_template_p (tmpl)
2849 || !(DECL_CONSTRUCTOR_P (decl)
2850 || DECL_DESTRUCTOR_P (decl))
2851 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
2852 }
2853 }
2854
2855 return decl;
2856 }
2857
2858 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
2859 parameters. These are represented in the same format used for
2860 DECL_TEMPLATE_PARMS. */
2861
2862 int
2863 comp_template_parms (const_tree parms1, const_tree parms2)
2864 {
2865 const_tree p1;
2866 const_tree p2;
2867
2868 if (parms1 == parms2)
2869 return 1;
2870
2871 for (p1 = parms1, p2 = parms2;
2872 p1 != NULL_TREE && p2 != NULL_TREE;
2873 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
2874 {
2875 tree t1 = TREE_VALUE (p1);
2876 tree t2 = TREE_VALUE (p2);
2877 int i;
2878
2879 gcc_assert (TREE_CODE (t1) == TREE_VEC);
2880 gcc_assert (TREE_CODE (t2) == TREE_VEC);
2881
2882 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2883 return 0;
2884
2885 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
2886 {
2887 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
2888 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
2889
2890 /* If either of the template parameters are invalid, assume
2891 they match for the sake of error recovery. */
2892 if (error_operand_p (parm1) || error_operand_p (parm2))
2893 return 1;
2894
2895 if (TREE_CODE (parm1) != TREE_CODE (parm2))
2896 return 0;
2897
2898 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
2899 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
2900 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
2901 continue;
2902 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
2903 return 0;
2904 }
2905 }
2906
2907 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
2908 /* One set of parameters has more parameters lists than the
2909 other. */
2910 return 0;
2911
2912 return 1;
2913 }
2914
2915 /* Determine whether PARM is a parameter pack. */
2916
2917 bool
2918 template_parameter_pack_p (const_tree parm)
2919 {
2920 /* Determine if we have a non-type template parameter pack. */
2921 if (TREE_CODE (parm) == PARM_DECL)
2922 return (DECL_TEMPLATE_PARM_P (parm)
2923 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
2924 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
2925 return TEMPLATE_PARM_PARAMETER_PACK (parm);
2926
2927 /* If this is a list of template parameters, we could get a
2928 TYPE_DECL or a TEMPLATE_DECL. */
2929 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
2930 parm = TREE_TYPE (parm);
2931
2932 /* Otherwise it must be a type template parameter. */
2933 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
2934 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
2935 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
2936 }
2937
2938 /* Determine if T is a function parameter pack. */
2939
2940 bool
2941 function_parameter_pack_p (const_tree t)
2942 {
2943 if (t && TREE_CODE (t) == PARM_DECL)
2944 return DECL_PACK_P (t);
2945 return false;
2946 }
2947
2948 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
2949 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
2950
2951 tree
2952 get_function_template_decl (const_tree primary_func_tmpl_inst)
2953 {
2954 if (! primary_func_tmpl_inst
2955 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
2956 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
2957 return NULL;
2958
2959 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
2960 }
2961
2962 /* Return true iff the function parameter PARAM_DECL was expanded
2963 from the function parameter pack PACK. */
2964
2965 bool
2966 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
2967 {
2968 if (DECL_ARTIFICIAL (param_decl)
2969 || !function_parameter_pack_p (pack))
2970 return false;
2971
2972 /* The parameter pack and its pack arguments have the same
2973 DECL_PARM_INDEX. */
2974 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
2975 }
2976
2977 /* Determine whether ARGS describes a variadic template args list,
2978 i.e., one that is terminated by a template argument pack. */
2979
2980 static bool
2981 template_args_variadic_p (tree args)
2982 {
2983 int nargs;
2984 tree last_parm;
2985
2986 if (args == NULL_TREE)
2987 return false;
2988
2989 args = INNERMOST_TEMPLATE_ARGS (args);
2990 nargs = TREE_VEC_LENGTH (args);
2991
2992 if (nargs == 0)
2993 return false;
2994
2995 last_parm = TREE_VEC_ELT (args, nargs - 1);
2996
2997 return ARGUMENT_PACK_P (last_parm);
2998 }
2999
3000 /* Generate a new name for the parameter pack name NAME (an
3001 IDENTIFIER_NODE) that incorporates its */
3002
3003 static tree
3004 make_ith_pack_parameter_name (tree name, int i)
3005 {
3006 /* Munge the name to include the parameter index. */
3007 #define NUMBUF_LEN 128
3008 char numbuf[NUMBUF_LEN];
3009 char* newname;
3010 int newname_len;
3011
3012 if (name == NULL_TREE)
3013 return name;
3014 snprintf (numbuf, NUMBUF_LEN, "%i", i);
3015 newname_len = IDENTIFIER_LENGTH (name)
3016 + strlen (numbuf) + 2;
3017 newname = (char*)alloca (newname_len);
3018 snprintf (newname, newname_len,
3019 "%s#%i", IDENTIFIER_POINTER (name), i);
3020 return get_identifier (newname);
3021 }
3022
3023 /* Return true if T is a primary function, class or alias template
3024 instantiation. */
3025
3026 bool
3027 primary_template_instantiation_p (const_tree t)
3028 {
3029 if (!t)
3030 return false;
3031
3032 if (TREE_CODE (t) == FUNCTION_DECL)
3033 return DECL_LANG_SPECIFIC (t)
3034 && DECL_TEMPLATE_INSTANTIATION (t)
3035 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
3036 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3037 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
3038 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
3039 else if (alias_template_specialization_p (t))
3040 return true;
3041 return false;
3042 }
3043
3044 /* Return true if PARM is a template template parameter. */
3045
3046 bool
3047 template_template_parameter_p (const_tree parm)
3048 {
3049 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
3050 }
3051
3052 /* Return true iff PARM is a DECL representing a type template
3053 parameter. */
3054
3055 bool
3056 template_type_parameter_p (const_tree parm)
3057 {
3058 return (parm
3059 && (TREE_CODE (parm) == TYPE_DECL
3060 || TREE_CODE (parm) == TEMPLATE_DECL)
3061 && DECL_TEMPLATE_PARM_P (parm));
3062 }
3063
3064 /* Return the template parameters of T if T is a
3065 primary template instantiation, NULL otherwise. */
3066
3067 tree
3068 get_primary_template_innermost_parameters (const_tree t)
3069 {
3070 tree parms = NULL, template_info = NULL;
3071
3072 if ((template_info = get_template_info (t))
3073 && primary_template_instantiation_p (t))
3074 parms = INNERMOST_TEMPLATE_PARMS
3075 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3076
3077 return parms;
3078 }
3079
3080 /* Return the template parameters of the LEVELth level from the full list
3081 of template parameters PARMS. */
3082
3083 tree
3084 get_template_parms_at_level (tree parms, int level)
3085 {
3086 tree p;
3087 if (!parms
3088 || TREE_CODE (parms) != TREE_LIST
3089 || level > TMPL_PARMS_DEPTH (parms))
3090 return NULL_TREE;
3091
3092 for (p = parms; p; p = TREE_CHAIN (p))
3093 if (TMPL_PARMS_DEPTH (p) == level)
3094 return p;
3095
3096 return NULL_TREE;
3097 }
3098
3099 /* Returns the template arguments of T if T is a template instantiation,
3100 NULL otherwise. */
3101
3102 tree
3103 get_template_innermost_arguments (const_tree t)
3104 {
3105 tree args = NULL, template_info = NULL;
3106
3107 if ((template_info = get_template_info (t))
3108 && TI_ARGS (template_info))
3109 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3110
3111 return args;
3112 }
3113
3114 /* Return the argument pack elements of T if T is a template argument pack,
3115 NULL otherwise. */
3116
3117 tree
3118 get_template_argument_pack_elems (const_tree t)
3119 {
3120 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3121 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3122 return NULL;
3123
3124 return ARGUMENT_PACK_ARGS (t);
3125 }
3126
3127 /* Structure used to track the progress of find_parameter_packs_r. */
3128 struct find_parameter_pack_data
3129 {
3130 /* TREE_LIST that will contain all of the parameter packs found by
3131 the traversal. */
3132 tree* parameter_packs;
3133
3134 /* Set of AST nodes that have been visited by the traversal. */
3135 hash_set<tree> *visited;
3136 };
3137
3138 /* Identifies all of the argument packs that occur in a template
3139 argument and appends them to the TREE_LIST inside DATA, which is a
3140 find_parameter_pack_data structure. This is a subroutine of
3141 make_pack_expansion and uses_parameter_packs. */
3142 static tree
3143 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3144 {
3145 tree t = *tp;
3146 struct find_parameter_pack_data* ppd =
3147 (struct find_parameter_pack_data*)data;
3148 bool parameter_pack_p = false;
3149
3150 /* Handle type aliases/typedefs. */
3151 if (TYPE_ALIAS_P (t))
3152 {
3153 if (TYPE_TEMPLATE_INFO (t))
3154 cp_walk_tree (&TYPE_TI_ARGS (t),
3155 &find_parameter_packs_r,
3156 ppd, ppd->visited);
3157 *walk_subtrees = 0;
3158 return NULL_TREE;
3159 }
3160
3161 /* Identify whether this is a parameter pack or not. */
3162 switch (TREE_CODE (t))
3163 {
3164 case TEMPLATE_PARM_INDEX:
3165 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3166 parameter_pack_p = true;
3167 break;
3168
3169 case TEMPLATE_TYPE_PARM:
3170 t = TYPE_MAIN_VARIANT (t);
3171 case TEMPLATE_TEMPLATE_PARM:
3172 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3173 parameter_pack_p = true;
3174 break;
3175
3176 case FIELD_DECL:
3177 case PARM_DECL:
3178 if (DECL_PACK_P (t))
3179 {
3180 /* We don't want to walk into the type of a PARM_DECL,
3181 because we don't want to see the type parameter pack. */
3182 *walk_subtrees = 0;
3183 parameter_pack_p = true;
3184 }
3185 break;
3186
3187 /* Look through a lambda capture proxy to the field pack. */
3188 case VAR_DECL:
3189 if (DECL_HAS_VALUE_EXPR_P (t))
3190 {
3191 tree v = DECL_VALUE_EXPR (t);
3192 cp_walk_tree (&v,
3193 &find_parameter_packs_r,
3194 ppd, ppd->visited);
3195 *walk_subtrees = 0;
3196 }
3197 break;
3198
3199 case BASES:
3200 parameter_pack_p = true;
3201 break;
3202 default:
3203 /* Not a parameter pack. */
3204 break;
3205 }
3206
3207 if (parameter_pack_p)
3208 {
3209 /* Add this parameter pack to the list. */
3210 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3211 }
3212
3213 if (TYPE_P (t))
3214 cp_walk_tree (&TYPE_CONTEXT (t),
3215 &find_parameter_packs_r, ppd, ppd->visited);
3216
3217 /* This switch statement will return immediately if we don't find a
3218 parameter pack. */
3219 switch (TREE_CODE (t))
3220 {
3221 case TEMPLATE_PARM_INDEX:
3222 return NULL_TREE;
3223
3224 case BOUND_TEMPLATE_TEMPLATE_PARM:
3225 /* Check the template itself. */
3226 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3227 &find_parameter_packs_r, ppd, ppd->visited);
3228 /* Check the template arguments. */
3229 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3230 ppd->visited);
3231 *walk_subtrees = 0;
3232 return NULL_TREE;
3233
3234 case TEMPLATE_TYPE_PARM:
3235 case TEMPLATE_TEMPLATE_PARM:
3236 return NULL_TREE;
3237
3238 case PARM_DECL:
3239 return NULL_TREE;
3240
3241 case RECORD_TYPE:
3242 if (TYPE_PTRMEMFUNC_P (t))
3243 return NULL_TREE;
3244 /* Fall through. */
3245
3246 case UNION_TYPE:
3247 case ENUMERAL_TYPE:
3248 if (TYPE_TEMPLATE_INFO (t))
3249 cp_walk_tree (&TYPE_TI_ARGS (t),
3250 &find_parameter_packs_r, ppd, ppd->visited);
3251
3252 *walk_subtrees = 0;
3253 return NULL_TREE;
3254
3255 case CONSTRUCTOR:
3256 case TEMPLATE_DECL:
3257 cp_walk_tree (&TREE_TYPE (t),
3258 &find_parameter_packs_r, ppd, ppd->visited);
3259 return NULL_TREE;
3260
3261 case TYPENAME_TYPE:
3262 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3263 ppd, ppd->visited);
3264 *walk_subtrees = 0;
3265 return NULL_TREE;
3266
3267 case TYPE_PACK_EXPANSION:
3268 case EXPR_PACK_EXPANSION:
3269 *walk_subtrees = 0;
3270 return NULL_TREE;
3271
3272 case INTEGER_TYPE:
3273 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3274 ppd, ppd->visited);
3275 *walk_subtrees = 0;
3276 return NULL_TREE;
3277
3278 case IDENTIFIER_NODE:
3279 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3280 ppd->visited);
3281 *walk_subtrees = 0;
3282 return NULL_TREE;
3283
3284 default:
3285 return NULL_TREE;
3286 }
3287
3288 return NULL_TREE;
3289 }
3290
3291 /* Determines if the expression or type T uses any parameter packs. */
3292 bool
3293 uses_parameter_packs (tree t)
3294 {
3295 tree parameter_packs = NULL_TREE;
3296 struct find_parameter_pack_data ppd;
3297 ppd.parameter_packs = &parameter_packs;
3298 ppd.visited = new hash_set<tree>;
3299 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3300 delete ppd.visited;
3301 return parameter_packs != NULL_TREE;
3302 }
3303
3304 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3305 representation a base-class initializer into a parameter pack
3306 expansion. If all goes well, the resulting node will be an
3307 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3308 respectively. */
3309 tree
3310 make_pack_expansion (tree arg)
3311 {
3312 tree result;
3313 tree parameter_packs = NULL_TREE;
3314 bool for_types = false;
3315 struct find_parameter_pack_data ppd;
3316
3317 if (!arg || arg == error_mark_node)
3318 return arg;
3319
3320 if (TREE_CODE (arg) == TREE_LIST)
3321 {
3322 /* The only time we will see a TREE_LIST here is for a base
3323 class initializer. In this case, the TREE_PURPOSE will be a
3324 _TYPE node (representing the base class expansion we're
3325 initializing) and the TREE_VALUE will be a TREE_LIST
3326 containing the initialization arguments.
3327
3328 The resulting expansion looks somewhat different from most
3329 expansions. Rather than returning just one _EXPANSION, we
3330 return a TREE_LIST whose TREE_PURPOSE is a
3331 TYPE_PACK_EXPANSION containing the bases that will be
3332 initialized. The TREE_VALUE will be identical to the
3333 original TREE_VALUE, which is a list of arguments that will
3334 be passed to each base. We do not introduce any new pack
3335 expansion nodes into the TREE_VALUE (although it is possible
3336 that some already exist), because the TREE_PURPOSE and
3337 TREE_VALUE all need to be expanded together with the same
3338 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3339 resulting TREE_PURPOSE will mention the parameter packs in
3340 both the bases and the arguments to the bases. */
3341 tree purpose;
3342 tree value;
3343 tree parameter_packs = NULL_TREE;
3344
3345 /* Determine which parameter packs will be used by the base
3346 class expansion. */
3347 ppd.visited = new hash_set<tree>;
3348 ppd.parameter_packs = &parameter_packs;
3349 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3350 &ppd, ppd.visited);
3351
3352 if (parameter_packs == NULL_TREE)
3353 {
3354 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3355 delete ppd.visited;
3356 return error_mark_node;
3357 }
3358
3359 if (TREE_VALUE (arg) != void_type_node)
3360 {
3361 /* Collect the sets of parameter packs used in each of the
3362 initialization arguments. */
3363 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3364 {
3365 /* Determine which parameter packs will be expanded in this
3366 argument. */
3367 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3368 &ppd, ppd.visited);
3369 }
3370 }
3371
3372 delete ppd.visited;
3373
3374 /* Create the pack expansion type for the base type. */
3375 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3376 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3377 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3378
3379 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3380 they will rarely be compared to anything. */
3381 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3382
3383 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3384 }
3385
3386 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3387 for_types = true;
3388
3389 /* Build the PACK_EXPANSION_* node. */
3390 result = for_types
3391 ? cxx_make_type (TYPE_PACK_EXPANSION)
3392 : make_node (EXPR_PACK_EXPANSION);
3393 SET_PACK_EXPANSION_PATTERN (result, arg);
3394 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3395 {
3396 /* Propagate type and const-expression information. */
3397 TREE_TYPE (result) = TREE_TYPE (arg);
3398 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3399 }
3400 else
3401 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3402 they will rarely be compared to anything. */
3403 SET_TYPE_STRUCTURAL_EQUALITY (result);
3404
3405 /* Determine which parameter packs will be expanded. */
3406 ppd.parameter_packs = &parameter_packs;
3407 ppd.visited = new hash_set<tree>;
3408 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3409 delete ppd.visited;
3410
3411 /* Make sure we found some parameter packs. */
3412 if (parameter_packs == NULL_TREE)
3413 {
3414 if (TYPE_P (arg))
3415 error ("expansion pattern %<%T%> contains no argument packs", arg);
3416 else
3417 error ("expansion pattern %<%E%> contains no argument packs", arg);
3418 return error_mark_node;
3419 }
3420 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3421
3422 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3423
3424 return result;
3425 }
3426
3427 /* Checks T for any "bare" parameter packs, which have not yet been
3428 expanded, and issues an error if any are found. This operation can
3429 only be done on full expressions or types (e.g., an expression
3430 statement, "if" condition, etc.), because we could have expressions like:
3431
3432 foo(f(g(h(args)))...)
3433
3434 where "args" is a parameter pack. check_for_bare_parameter_packs
3435 should not be called for the subexpressions args, h(args),
3436 g(h(args)), or f(g(h(args))), because we would produce erroneous
3437 error messages.
3438
3439 Returns TRUE and emits an error if there were bare parameter packs,
3440 returns FALSE otherwise. */
3441 bool
3442 check_for_bare_parameter_packs (tree t)
3443 {
3444 tree parameter_packs = NULL_TREE;
3445 struct find_parameter_pack_data ppd;
3446
3447 if (!processing_template_decl || !t || t == error_mark_node)
3448 return false;
3449
3450 if (TREE_CODE (t) == TYPE_DECL)
3451 t = TREE_TYPE (t);
3452
3453 ppd.parameter_packs = &parameter_packs;
3454 ppd.visited = new hash_set<tree>;
3455 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3456 delete ppd.visited;
3457
3458 if (parameter_packs)
3459 {
3460 error ("parameter packs not expanded with %<...%>:");
3461 while (parameter_packs)
3462 {
3463 tree pack = TREE_VALUE (parameter_packs);
3464 tree name = NULL_TREE;
3465
3466 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3467 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3468 name = TYPE_NAME (pack);
3469 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3470 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3471 else
3472 name = DECL_NAME (pack);
3473
3474 if (name)
3475 inform (input_location, " %qD", name);
3476 else
3477 inform (input_location, " <anonymous>");
3478
3479 parameter_packs = TREE_CHAIN (parameter_packs);
3480 }
3481
3482 return true;
3483 }
3484
3485 return false;
3486 }
3487
3488 /* Expand any parameter packs that occur in the template arguments in
3489 ARGS. */
3490 tree
3491 expand_template_argument_pack (tree args)
3492 {
3493 tree result_args = NULL_TREE;
3494 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3495 int num_result_args = -1;
3496 int non_default_args_count = -1;
3497
3498 /* First, determine if we need to expand anything, and the number of
3499 slots we'll need. */
3500 for (in_arg = 0; in_arg < nargs; ++in_arg)
3501 {
3502 tree arg = TREE_VEC_ELT (args, in_arg);
3503 if (arg == NULL_TREE)
3504 return args;
3505 if (ARGUMENT_PACK_P (arg))
3506 {
3507 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3508 if (num_result_args < 0)
3509 num_result_args = in_arg + num_packed;
3510 else
3511 num_result_args += num_packed;
3512 }
3513 else
3514 {
3515 if (num_result_args >= 0)
3516 num_result_args++;
3517 }
3518 }
3519
3520 /* If no expansion is necessary, we're done. */
3521 if (num_result_args < 0)
3522 return args;
3523
3524 /* Expand arguments. */
3525 result_args = make_tree_vec (num_result_args);
3526 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3527 non_default_args_count =
3528 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3529 for (in_arg = 0; in_arg < nargs; ++in_arg)
3530 {
3531 tree arg = TREE_VEC_ELT (args, in_arg);
3532 if (ARGUMENT_PACK_P (arg))
3533 {
3534 tree packed = ARGUMENT_PACK_ARGS (arg);
3535 int i, num_packed = TREE_VEC_LENGTH (packed);
3536 for (i = 0; i < num_packed; ++i, ++out_arg)
3537 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3538 if (non_default_args_count > 0)
3539 non_default_args_count += num_packed - 1;
3540 }
3541 else
3542 {
3543 TREE_VEC_ELT (result_args, out_arg) = arg;
3544 ++out_arg;
3545 }
3546 }
3547 if (non_default_args_count >= 0)
3548 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3549 return result_args;
3550 }
3551
3552 /* Checks if DECL shadows a template parameter.
3553
3554 [temp.local]: A template-parameter shall not be redeclared within its
3555 scope (including nested scopes).
3556
3557 Emits an error and returns TRUE if the DECL shadows a parameter,
3558 returns FALSE otherwise. */
3559
3560 bool
3561 check_template_shadow (tree decl)
3562 {
3563 tree olddecl;
3564
3565 /* If we're not in a template, we can't possibly shadow a template
3566 parameter. */
3567 if (!current_template_parms)
3568 return true;
3569
3570 /* Figure out what we're shadowing. */
3571 if (TREE_CODE (decl) == OVERLOAD)
3572 decl = OVL_CURRENT (decl);
3573 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3574
3575 /* If there's no previous binding for this name, we're not shadowing
3576 anything, let alone a template parameter. */
3577 if (!olddecl)
3578 return true;
3579
3580 /* If we're not shadowing a template parameter, we're done. Note
3581 that OLDDECL might be an OVERLOAD (or perhaps even an
3582 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3583 node. */
3584 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3585 return true;
3586
3587 /* We check for decl != olddecl to avoid bogus errors for using a
3588 name inside a class. We check TPFI to avoid duplicate errors for
3589 inline member templates. */
3590 if (decl == olddecl
3591 || (DECL_TEMPLATE_PARM_P (decl)
3592 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3593 return true;
3594
3595 /* Don't complain about the injected class name, as we've already
3596 complained about the class itself. */
3597 if (DECL_SELF_REFERENCE_P (decl))
3598 return false;
3599
3600 error ("declaration of %q+#D", decl);
3601 error (" shadows template parm %q+#D", olddecl);
3602 return false;
3603 }
3604
3605 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3606 ORIG_LEVEL, DECL, and TYPE. */
3607
3608 static tree
3609 build_template_parm_index (int index,
3610 int level,
3611 int orig_level,
3612 tree decl,
3613 tree type)
3614 {
3615 tree t = make_node (TEMPLATE_PARM_INDEX);
3616 TEMPLATE_PARM_IDX (t) = index;
3617 TEMPLATE_PARM_LEVEL (t) = level;
3618 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3619 TEMPLATE_PARM_DECL (t) = decl;
3620 TREE_TYPE (t) = type;
3621 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3622 TREE_READONLY (t) = TREE_READONLY (decl);
3623
3624 return t;
3625 }
3626
3627 /* Find the canonical type parameter for the given template type
3628 parameter. Returns the canonical type parameter, which may be TYPE
3629 if no such parameter existed. */
3630
3631 static tree
3632 canonical_type_parameter (tree type)
3633 {
3634 tree list;
3635 int idx = TEMPLATE_TYPE_IDX (type);
3636 if (!canonical_template_parms)
3637 vec_alloc (canonical_template_parms, idx+1);
3638
3639 while (canonical_template_parms->length () <= (unsigned)idx)
3640 vec_safe_push (canonical_template_parms, NULL_TREE);
3641
3642 list = (*canonical_template_parms)[idx];
3643 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3644 list = TREE_CHAIN (list);
3645
3646 if (list)
3647 return TREE_VALUE (list);
3648 else
3649 {
3650 (*canonical_template_parms)[idx]
3651 = tree_cons (NULL_TREE, type,
3652 (*canonical_template_parms)[idx]);
3653 return type;
3654 }
3655 }
3656
3657 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3658 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3659 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3660 new one is created. */
3661
3662 static tree
3663 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3664 tsubst_flags_t complain)
3665 {
3666 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3667 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3668 != TEMPLATE_PARM_LEVEL (index) - levels)
3669 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3670 {
3671 tree orig_decl = TEMPLATE_PARM_DECL (index);
3672 tree decl, t;
3673
3674 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3675 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3676 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3677 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3678 DECL_ARTIFICIAL (decl) = 1;
3679 SET_DECL_TEMPLATE_PARM_P (decl);
3680
3681 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3682 TEMPLATE_PARM_LEVEL (index) - levels,
3683 TEMPLATE_PARM_ORIG_LEVEL (index),
3684 decl, type);
3685 TEMPLATE_PARM_DESCENDANTS (index) = t;
3686 TEMPLATE_PARM_PARAMETER_PACK (t)
3687 = TEMPLATE_PARM_PARAMETER_PACK (index);
3688
3689 /* Template template parameters need this. */
3690 if (TREE_CODE (decl) == TEMPLATE_DECL)
3691 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3692 (DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index)),
3693 args, complain);
3694 }
3695
3696 return TEMPLATE_PARM_DESCENDANTS (index);
3697 }
3698
3699 /* Process information from new template parameter PARM and append it
3700 to the LIST being built. This new parameter is a non-type
3701 parameter iff IS_NON_TYPE is true. This new parameter is a
3702 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
3703 is in PARM_LOC. */
3704
3705 tree
3706 process_template_parm (tree list, location_t parm_loc, tree parm,
3707 bool is_non_type, bool is_parameter_pack)
3708 {
3709 tree decl = 0;
3710 tree defval;
3711 int idx = 0;
3712
3713 gcc_assert (TREE_CODE (parm) == TREE_LIST);
3714 defval = TREE_PURPOSE (parm);
3715
3716 if (list)
3717 {
3718 tree p = tree_last (list);
3719
3720 if (p && TREE_VALUE (p) != error_mark_node)
3721 {
3722 p = TREE_VALUE (p);
3723 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
3724 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
3725 else
3726 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
3727 }
3728
3729 ++idx;
3730 }
3731
3732 if (is_non_type)
3733 {
3734 parm = TREE_VALUE (parm);
3735
3736 SET_DECL_TEMPLATE_PARM_P (parm);
3737
3738 if (TREE_TYPE (parm) != error_mark_node)
3739 {
3740 /* [temp.param]
3741
3742 The top-level cv-qualifiers on the template-parameter are
3743 ignored when determining its type. */
3744 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
3745 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
3746 TREE_TYPE (parm) = error_mark_node;
3747 else if (uses_parameter_packs (TREE_TYPE (parm))
3748 && !is_parameter_pack
3749 /* If we're in a nested template parameter list, the template
3750 template parameter could be a parameter pack. */
3751 && processing_template_parmlist == 1)
3752 {
3753 /* This template parameter is not a parameter pack, but it
3754 should be. Complain about "bare" parameter packs. */
3755 check_for_bare_parameter_packs (TREE_TYPE (parm));
3756
3757 /* Recover by calling this a parameter pack. */
3758 is_parameter_pack = true;
3759 }
3760 }
3761
3762 /* A template parameter is not modifiable. */
3763 TREE_CONSTANT (parm) = 1;
3764 TREE_READONLY (parm) = 1;
3765 decl = build_decl (parm_loc,
3766 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
3767 TREE_CONSTANT (decl) = 1;
3768 TREE_READONLY (decl) = 1;
3769 DECL_INITIAL (parm) = DECL_INITIAL (decl)
3770 = build_template_parm_index (idx, processing_template_decl,
3771 processing_template_decl,
3772 decl, TREE_TYPE (parm));
3773
3774 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
3775 = is_parameter_pack;
3776 }
3777 else
3778 {
3779 tree t;
3780 parm = TREE_VALUE (TREE_VALUE (parm));
3781
3782 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
3783 {
3784 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
3785 /* This is for distinguishing between real templates and template
3786 template parameters */
3787 TREE_TYPE (parm) = t;
3788 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
3789 decl = parm;
3790 }
3791 else
3792 {
3793 t = cxx_make_type (TEMPLATE_TYPE_PARM);
3794 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
3795 decl = build_decl (parm_loc,
3796 TYPE_DECL, parm, t);
3797 }
3798
3799 TYPE_NAME (t) = decl;
3800 TYPE_STUB_DECL (t) = decl;
3801 parm = decl;
3802 TEMPLATE_TYPE_PARM_INDEX (t)
3803 = build_template_parm_index (idx, processing_template_decl,
3804 processing_template_decl,
3805 decl, TREE_TYPE (parm));
3806 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
3807 TYPE_CANONICAL (t) = canonical_type_parameter (t);
3808 }
3809 DECL_ARTIFICIAL (decl) = 1;
3810 SET_DECL_TEMPLATE_PARM_P (decl);
3811 pushdecl (decl);
3812 parm = build_tree_list (defval, parm);
3813 return chainon (list, parm);
3814 }
3815
3816 /* The end of a template parameter list has been reached. Process the
3817 tree list into a parameter vector, converting each parameter into a more
3818 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
3819 as PARM_DECLs. */
3820
3821 tree
3822 end_template_parm_list (tree parms)
3823 {
3824 int nparms;
3825 tree parm, next;
3826 tree saved_parmlist = make_tree_vec (list_length (parms));
3827
3828 current_template_parms
3829 = tree_cons (size_int (processing_template_decl),
3830 saved_parmlist, current_template_parms);
3831
3832 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
3833 {
3834 next = TREE_CHAIN (parm);
3835 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
3836 TREE_CHAIN (parm) = NULL_TREE;
3837 }
3838
3839 --processing_template_parmlist;
3840
3841 return saved_parmlist;
3842 }
3843
3844 /* end_template_decl is called after a template declaration is seen. */
3845
3846 void
3847 end_template_decl (void)
3848 {
3849 reset_specialization ();
3850
3851 if (! processing_template_decl)
3852 return;
3853
3854 /* This matches the pushlevel in begin_template_parm_list. */
3855 finish_scope ();
3856
3857 --processing_template_decl;
3858 current_template_parms = TREE_CHAIN (current_template_parms);
3859 }
3860
3861 /* Takes a TREE_LIST representing a template parameter and convert it
3862 into an argument suitable to be passed to the type substitution
3863 functions. Note that If the TREE_LIST contains an error_mark
3864 node, the returned argument is error_mark_node. */
3865
3866 static tree
3867 template_parm_to_arg (tree t)
3868 {
3869
3870 if (t == NULL_TREE
3871 || TREE_CODE (t) != TREE_LIST)
3872 return t;
3873
3874 if (error_operand_p (TREE_VALUE (t)))
3875 return error_mark_node;
3876
3877 t = TREE_VALUE (t);
3878
3879 if (TREE_CODE (t) == TYPE_DECL
3880 || TREE_CODE (t) == TEMPLATE_DECL)
3881 {
3882 t = TREE_TYPE (t);
3883
3884 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3885 {
3886 /* Turn this argument into a TYPE_ARGUMENT_PACK
3887 with a single element, which expands T. */
3888 tree vec = make_tree_vec (1);
3889 #ifdef ENABLE_CHECKING
3890 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3891 (vec, TREE_VEC_LENGTH (vec));
3892 #endif
3893 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3894
3895 t = cxx_make_type (TYPE_ARGUMENT_PACK);
3896 SET_ARGUMENT_PACK_ARGS (t, vec);
3897 }
3898 }
3899 else
3900 {
3901 t = DECL_INITIAL (t);
3902
3903 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3904 {
3905 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
3906 with a single element, which expands T. */
3907 tree vec = make_tree_vec (1);
3908 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
3909 #ifdef ENABLE_CHECKING
3910 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3911 (vec, TREE_VEC_LENGTH (vec));
3912 #endif
3913 t = convert_from_reference (t);
3914 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3915
3916 t = make_node (NONTYPE_ARGUMENT_PACK);
3917 SET_ARGUMENT_PACK_ARGS (t, vec);
3918 TREE_TYPE (t) = type;
3919 }
3920 else
3921 t = convert_from_reference (t);
3922 }
3923 return t;
3924 }
3925
3926 /* Given a set of template parameters, return them as a set of template
3927 arguments. The template parameters are represented as a TREE_VEC, in
3928 the form documented in cp-tree.h for template arguments. */
3929
3930 static tree
3931 template_parms_to_args (tree parms)
3932 {
3933 tree header;
3934 tree args = NULL_TREE;
3935 int length = TMPL_PARMS_DEPTH (parms);
3936 int l = length;
3937
3938 /* If there is only one level of template parameters, we do not
3939 create a TREE_VEC of TREE_VECs. Instead, we return a single
3940 TREE_VEC containing the arguments. */
3941 if (length > 1)
3942 args = make_tree_vec (length);
3943
3944 for (header = parms; header; header = TREE_CHAIN (header))
3945 {
3946 tree a = copy_node (TREE_VALUE (header));
3947 int i;
3948
3949 TREE_TYPE (a) = NULL_TREE;
3950 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
3951 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
3952
3953 #ifdef ENABLE_CHECKING
3954 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
3955 #endif
3956
3957 if (length > 1)
3958 TREE_VEC_ELT (args, --l) = a;
3959 else
3960 args = a;
3961 }
3962
3963 if (length > 1 && TREE_VEC_ELT (args, 0) == NULL_TREE)
3964 /* This can happen for template parms of a template template
3965 parameter, e.g:
3966
3967 template<template<class T, class U> class TT> struct S;
3968
3969 Consider the level of the parms of TT; T and U both have
3970 level 2; TT has no template parm of level 1. So in this case
3971 the first element of full_template_args is NULL_TREE. If we
3972 leave it like this TMPL_ARGS_DEPTH on args returns 1 instead
3973 of 2. This will make tsubst wrongly consider that T and U
3974 have level 1. Instead, let's create a dummy vector as the
3975 first element of full_template_args so that TMPL_ARGS_DEPTH
3976 returns the correct depth for args. */
3977 TREE_VEC_ELT (args, 0) = make_tree_vec (1);
3978 return args;
3979 }
3980
3981 /* Within the declaration of a template, return the currently active
3982 template parameters as an argument TREE_VEC. */
3983
3984 static tree
3985 current_template_args (void)
3986 {
3987 return template_parms_to_args (current_template_parms);
3988 }
3989
3990 /* Update the declared TYPE by doing any lookups which were thought to be
3991 dependent, but are not now that we know the SCOPE of the declarator. */
3992
3993 tree
3994 maybe_update_decl_type (tree orig_type, tree scope)
3995 {
3996 tree type = orig_type;
3997
3998 if (type == NULL_TREE)
3999 return type;
4000
4001 if (TREE_CODE (orig_type) == TYPE_DECL)
4002 type = TREE_TYPE (type);
4003
4004 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4005 && dependent_type_p (type)
4006 /* Don't bother building up the args in this case. */
4007 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4008 {
4009 /* tsubst in the args corresponding to the template parameters,
4010 including auto if present. Most things will be unchanged, but
4011 make_typename_type and tsubst_qualified_id will resolve
4012 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4013 tree args = current_template_args ();
4014 tree auto_node = type_uses_auto (type);
4015 tree pushed;
4016 if (auto_node)
4017 {
4018 tree auto_vec = make_tree_vec (1);
4019 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4020 args = add_to_template_args (args, auto_vec);
4021 }
4022 pushed = push_scope (scope);
4023 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4024 if (pushed)
4025 pop_scope (scope);
4026 }
4027
4028 if (type == error_mark_node)
4029 return orig_type;
4030
4031 if (TREE_CODE (orig_type) == TYPE_DECL)
4032 {
4033 if (same_type_p (type, TREE_TYPE (orig_type)))
4034 type = orig_type;
4035 else
4036 type = TYPE_NAME (type);
4037 }
4038 return type;
4039 }
4040
4041 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4042 template PARMS. If MEMBER_TEMPLATE_P is true, the new template is
4043 a member template. Used by push_template_decl below. */
4044
4045 static tree
4046 build_template_decl (tree decl, tree parms, bool member_template_p)
4047 {
4048 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4049 DECL_TEMPLATE_PARMS (tmpl) = parms;
4050 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4051 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4052 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4053
4054 return tmpl;
4055 }
4056
4057 struct template_parm_data
4058 {
4059 /* The level of the template parameters we are currently
4060 processing. */
4061 int level;
4062
4063 /* The index of the specialization argument we are currently
4064 processing. */
4065 int current_arg;
4066
4067 /* An array whose size is the number of template parameters. The
4068 elements are nonzero if the parameter has been used in any one
4069 of the arguments processed so far. */
4070 int* parms;
4071
4072 /* An array whose size is the number of template arguments. The
4073 elements are nonzero if the argument makes use of template
4074 parameters of this level. */
4075 int* arg_uses_template_parms;
4076 };
4077
4078 /* Subroutine of push_template_decl used to see if each template
4079 parameter in a partial specialization is used in the explicit
4080 argument list. If T is of the LEVEL given in DATA (which is
4081 treated as a template_parm_data*), then DATA->PARMS is marked
4082 appropriately. */
4083
4084 static int
4085 mark_template_parm (tree t, void* data)
4086 {
4087 int level;
4088 int idx;
4089 struct template_parm_data* tpd = (struct template_parm_data*) data;
4090
4091 template_parm_level_and_index (t, &level, &idx);
4092
4093 if (level == tpd->level)
4094 {
4095 tpd->parms[idx] = 1;
4096 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4097 }
4098
4099 /* Return zero so that for_each_template_parm will continue the
4100 traversal of the tree; we want to mark *every* template parm. */
4101 return 0;
4102 }
4103
4104 /* Process the partial specialization DECL. */
4105
4106 static tree
4107 process_partial_specialization (tree decl)
4108 {
4109 tree type = TREE_TYPE (decl);
4110 tree tinfo = get_template_info (decl);
4111 tree maintmpl = TI_TEMPLATE (tinfo);
4112 tree specargs = TI_ARGS (tinfo);
4113 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4114 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4115 tree inner_parms;
4116 tree inst;
4117 int nargs = TREE_VEC_LENGTH (inner_args);
4118 int ntparms;
4119 int i;
4120 bool did_error_intro = false;
4121 struct template_parm_data tpd;
4122 struct template_parm_data tpd2;
4123
4124 gcc_assert (current_template_parms);
4125
4126 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4127 ntparms = TREE_VEC_LENGTH (inner_parms);
4128
4129 /* We check that each of the template parameters given in the
4130 partial specialization is used in the argument list to the
4131 specialization. For example:
4132
4133 template <class T> struct S;
4134 template <class T> struct S<T*>;
4135
4136 The second declaration is OK because `T*' uses the template
4137 parameter T, whereas
4138
4139 template <class T> struct S<int>;
4140
4141 is no good. Even trickier is:
4142
4143 template <class T>
4144 struct S1
4145 {
4146 template <class U>
4147 struct S2;
4148 template <class U>
4149 struct S2<T>;
4150 };
4151
4152 The S2<T> declaration is actually invalid; it is a
4153 full-specialization. Of course,
4154
4155 template <class U>
4156 struct S2<T (*)(U)>;
4157
4158 or some such would have been OK. */
4159 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4160 tpd.parms = XALLOCAVEC (int, ntparms);
4161 memset (tpd.parms, 0, sizeof (int) * ntparms);
4162
4163 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4164 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4165 for (i = 0; i < nargs; ++i)
4166 {
4167 tpd.current_arg = i;
4168 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4169 &mark_template_parm,
4170 &tpd,
4171 NULL,
4172 /*include_nondeduced_p=*/false);
4173 }
4174 for (i = 0; i < ntparms; ++i)
4175 if (tpd.parms[i] == 0)
4176 {
4177 /* One of the template parms was not used in a deduced context in the
4178 specialization. */
4179 if (!did_error_intro)
4180 {
4181 error ("template parameters not deducible in "
4182 "partial specialization:");
4183 did_error_intro = true;
4184 }
4185
4186 inform (input_location, " %qD",
4187 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4188 }
4189
4190 if (did_error_intro)
4191 return error_mark_node;
4192
4193 /* [temp.class.spec]
4194
4195 The argument list of the specialization shall not be identical to
4196 the implicit argument list of the primary template. */
4197 tree main_args
4198 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl)));
4199 if (comp_template_args (inner_args, INNERMOST_TEMPLATE_ARGS (main_args)))
4200 error ("partial specialization %qD does not specialize "
4201 "any template arguments", decl);
4202
4203 /* A partial specialization that replaces multiple parameters of the
4204 primary template with a pack expansion is less specialized for those
4205 parameters. */
4206 if (nargs < DECL_NTPARMS (maintmpl))
4207 {
4208 error ("partial specialization is not more specialized than the "
4209 "primary template because it replaces multiple parameters "
4210 "with a pack expansion");
4211 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4212 return decl;
4213 }
4214
4215 /* [temp.class.spec]
4216
4217 A partially specialized non-type argument expression shall not
4218 involve template parameters of the partial specialization except
4219 when the argument expression is a simple identifier.
4220
4221 The type of a template parameter corresponding to a specialized
4222 non-type argument shall not be dependent on a parameter of the
4223 specialization.
4224
4225 Also, we verify that pack expansions only occur at the
4226 end of the argument list. */
4227 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4228 tpd2.parms = 0;
4229 for (i = 0; i < nargs; ++i)
4230 {
4231 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4232 tree arg = TREE_VEC_ELT (inner_args, i);
4233 tree packed_args = NULL_TREE;
4234 int j, len = 1;
4235
4236 if (ARGUMENT_PACK_P (arg))
4237 {
4238 /* Extract the arguments from the argument pack. We'll be
4239 iterating over these in the following loop. */
4240 packed_args = ARGUMENT_PACK_ARGS (arg);
4241 len = TREE_VEC_LENGTH (packed_args);
4242 }
4243
4244 for (j = 0; j < len; j++)
4245 {
4246 if (packed_args)
4247 /* Get the Jth argument in the parameter pack. */
4248 arg = TREE_VEC_ELT (packed_args, j);
4249
4250 if (PACK_EXPANSION_P (arg))
4251 {
4252 /* Pack expansions must come at the end of the
4253 argument list. */
4254 if ((packed_args && j < len - 1)
4255 || (!packed_args && i < nargs - 1))
4256 {
4257 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4258 error ("parameter pack argument %qE must be at the "
4259 "end of the template argument list", arg);
4260 else
4261 error ("parameter pack argument %qT must be at the "
4262 "end of the template argument list", arg);
4263 }
4264 }
4265
4266 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4267 /* We only care about the pattern. */
4268 arg = PACK_EXPANSION_PATTERN (arg);
4269
4270 if (/* These first two lines are the `non-type' bit. */
4271 !TYPE_P (arg)
4272 && TREE_CODE (arg) != TEMPLATE_DECL
4273 /* This next two lines are the `argument expression is not just a
4274 simple identifier' condition and also the `specialized
4275 non-type argument' bit. */
4276 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4277 && !(REFERENCE_REF_P (arg)
4278 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4279 {
4280 if ((!packed_args && tpd.arg_uses_template_parms[i])
4281 || (packed_args && uses_template_parms (arg)))
4282 error ("template argument %qE involves template parameter(s)",
4283 arg);
4284 else
4285 {
4286 /* Look at the corresponding template parameter,
4287 marking which template parameters its type depends
4288 upon. */
4289 tree type = TREE_TYPE (parm);
4290
4291 if (!tpd2.parms)
4292 {
4293 /* We haven't yet initialized TPD2. Do so now. */
4294 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4295 /* The number of parameters here is the number in the
4296 main template, which, as checked in the assertion
4297 above, is NARGS. */
4298 tpd2.parms = XALLOCAVEC (int, nargs);
4299 tpd2.level =
4300 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4301 }
4302
4303 /* Mark the template parameters. But this time, we're
4304 looking for the template parameters of the main
4305 template, not in the specialization. */
4306 tpd2.current_arg = i;
4307 tpd2.arg_uses_template_parms[i] = 0;
4308 memset (tpd2.parms, 0, sizeof (int) * nargs);
4309 for_each_template_parm (type,
4310 &mark_template_parm,
4311 &tpd2,
4312 NULL,
4313 /*include_nondeduced_p=*/false);
4314
4315 if (tpd2.arg_uses_template_parms [i])
4316 {
4317 /* The type depended on some template parameters.
4318 If they are fully specialized in the
4319 specialization, that's OK. */
4320 int j;
4321 int count = 0;
4322 for (j = 0; j < nargs; ++j)
4323 if (tpd2.parms[j] != 0
4324 && tpd.arg_uses_template_parms [j])
4325 ++count;
4326 if (count != 0)
4327 error_n (input_location, count,
4328 "type %qT of template argument %qE depends "
4329 "on a template parameter",
4330 "type %qT of template argument %qE depends "
4331 "on template parameters",
4332 type,
4333 arg);
4334 }
4335 }
4336 }
4337 }
4338 }
4339
4340 /* We should only get here once. */
4341 if (TREE_CODE (decl) == TYPE_DECL)
4342 gcc_assert (!COMPLETE_TYPE_P (type));
4343
4344 tree tmpl = build_template_decl (decl, current_template_parms,
4345 DECL_MEMBER_TEMPLATE_P (maintmpl));
4346 TREE_TYPE (tmpl) = type;
4347 DECL_TEMPLATE_RESULT (tmpl) = decl;
4348 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4349 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4350 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4351
4352 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4353 = tree_cons (specargs, tmpl,
4354 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4355 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4356
4357 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4358 inst = TREE_CHAIN (inst))
4359 {
4360 tree instance = TREE_VALUE (inst);
4361 if (TYPE_P (instance)
4362 ? (COMPLETE_TYPE_P (instance)
4363 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance))
4364 : DECL_TEMPLATE_INSTANTIATION (instance))
4365 {
4366 tree spec = most_specialized_partial_spec (instance, tf_none);
4367 if (spec && TREE_VALUE (spec) == tmpl)
4368 {
4369 tree inst_decl = (DECL_P (instance)
4370 ? instance : TYPE_NAME (instance));
4371 permerror (input_location,
4372 "partial specialization of %qD after instantiation "
4373 "of %qD", decl, inst_decl);
4374 }
4375 }
4376 }
4377
4378 return decl;
4379 }
4380
4381 /* PARM is a template parameter of some form; return the corresponding
4382 TEMPLATE_PARM_INDEX. */
4383
4384 static tree
4385 get_template_parm_index (tree parm)
4386 {
4387 if (TREE_CODE (parm) == PARM_DECL
4388 || TREE_CODE (parm) == CONST_DECL)
4389 parm = DECL_INITIAL (parm);
4390 else if (TREE_CODE (parm) == TYPE_DECL
4391 || TREE_CODE (parm) == TEMPLATE_DECL)
4392 parm = TREE_TYPE (parm);
4393 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4394 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4395 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4396 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4397 return parm;
4398 }
4399
4400 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4401 parameter packs used by the template parameter PARM. */
4402
4403 static void
4404 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4405 {
4406 /* A type parm can't refer to another parm. */
4407 if (TREE_CODE (parm) == TYPE_DECL)
4408 return;
4409 else if (TREE_CODE (parm) == PARM_DECL)
4410 {
4411 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4412 ppd, ppd->visited);
4413 return;
4414 }
4415
4416 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4417
4418 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4419 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4420 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4421 }
4422
4423 /* PARM is a template parameter pack. Return any parameter packs used in
4424 its type or the type of any of its template parameters. If there are
4425 any such packs, it will be instantiated into a fixed template parameter
4426 list by partial instantiation rather than be fully deduced. */
4427
4428 tree
4429 fixed_parameter_pack_p (tree parm)
4430 {
4431 /* This can only be true in a member template. */
4432 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4433 return NULL_TREE;
4434 /* This can only be true for a parameter pack. */
4435 if (!template_parameter_pack_p (parm))
4436 return NULL_TREE;
4437 /* A type parm can't refer to another parm. */
4438 if (TREE_CODE (parm) == TYPE_DECL)
4439 return NULL_TREE;
4440
4441 tree parameter_packs = NULL_TREE;
4442 struct find_parameter_pack_data ppd;
4443 ppd.parameter_packs = &parameter_packs;
4444 ppd.visited = new hash_set<tree>;
4445
4446 fixed_parameter_pack_p_1 (parm, &ppd);
4447
4448 delete ppd.visited;
4449 return parameter_packs;
4450 }
4451
4452 /* Check that a template declaration's use of default arguments and
4453 parameter packs is not invalid. Here, PARMS are the template
4454 parameters. IS_PRIMARY is true if DECL is the thing declared by
4455 a primary template. IS_PARTIAL is true if DECL is a partial
4456 specialization.
4457
4458 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4459 declaration (but not a definition); 1 indicates a declaration, 2
4460 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4461 emitted for extraneous default arguments.
4462
4463 Returns TRUE if there were no errors found, FALSE otherwise. */
4464
4465 bool
4466 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4467 bool is_partial, int is_friend_decl)
4468 {
4469 const char *msg;
4470 int last_level_to_check;
4471 tree parm_level;
4472 bool no_errors = true;
4473
4474 /* [temp.param]
4475
4476 A default template-argument shall not be specified in a
4477 function template declaration or a function template definition, nor
4478 in the template-parameter-list of the definition of a member of a
4479 class template. */
4480
4481 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
4482 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
4483 /* You can't have a function template declaration in a local
4484 scope, nor you can you define a member of a class template in a
4485 local scope. */
4486 return true;
4487
4488 if ((TREE_CODE (decl) == TYPE_DECL
4489 && TREE_TYPE (decl)
4490 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4491 || (TREE_CODE (decl) == FUNCTION_DECL
4492 && LAMBDA_FUNCTION_P (decl)))
4493 /* A lambda doesn't have an explicit declaration; don't complain
4494 about the parms of the enclosing class. */
4495 return true;
4496
4497 if (current_class_type
4498 && !TYPE_BEING_DEFINED (current_class_type)
4499 && DECL_LANG_SPECIFIC (decl)
4500 && DECL_DECLARES_FUNCTION_P (decl)
4501 /* If this is either a friend defined in the scope of the class
4502 or a member function. */
4503 && (DECL_FUNCTION_MEMBER_P (decl)
4504 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4505 : DECL_FRIEND_CONTEXT (decl)
4506 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4507 : false)
4508 /* And, if it was a member function, it really was defined in
4509 the scope of the class. */
4510 && (!DECL_FUNCTION_MEMBER_P (decl)
4511 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4512 /* We already checked these parameters when the template was
4513 declared, so there's no need to do it again now. This function
4514 was defined in class scope, but we're processing its body now
4515 that the class is complete. */
4516 return true;
4517
4518 /* Core issue 226 (C++0x only): the following only applies to class
4519 templates. */
4520 if (is_primary
4521 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4522 {
4523 /* [temp.param]
4524
4525 If a template-parameter has a default template-argument, all
4526 subsequent template-parameters shall have a default
4527 template-argument supplied. */
4528 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4529 {
4530 tree inner_parms = TREE_VALUE (parm_level);
4531 int ntparms = TREE_VEC_LENGTH (inner_parms);
4532 int seen_def_arg_p = 0;
4533 int i;
4534
4535 for (i = 0; i < ntparms; ++i)
4536 {
4537 tree parm = TREE_VEC_ELT (inner_parms, i);
4538
4539 if (parm == error_mark_node)
4540 continue;
4541
4542 if (TREE_PURPOSE (parm))
4543 seen_def_arg_p = 1;
4544 else if (seen_def_arg_p
4545 && !template_parameter_pack_p (TREE_VALUE (parm)))
4546 {
4547 error ("no default argument for %qD", TREE_VALUE (parm));
4548 /* For better subsequent error-recovery, we indicate that
4549 there should have been a default argument. */
4550 TREE_PURPOSE (parm) = error_mark_node;
4551 no_errors = false;
4552 }
4553 else if (!is_partial
4554 && !is_friend_decl
4555 /* Don't complain about an enclosing partial
4556 specialization. */
4557 && parm_level == parms
4558 && TREE_CODE (decl) == TYPE_DECL
4559 && i < ntparms - 1
4560 && template_parameter_pack_p (TREE_VALUE (parm))
4561 /* A fixed parameter pack will be partially
4562 instantiated into a fixed length list. */
4563 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
4564 {
4565 /* A primary class template can only have one
4566 parameter pack, at the end of the template
4567 parameter list. */
4568
4569 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL)
4570 error ("parameter pack %qE must be at the end of the"
4571 " template parameter list", TREE_VALUE (parm));
4572 else
4573 error ("parameter pack %qT must be at the end of the"
4574 " template parameter list",
4575 TREE_TYPE (TREE_VALUE (parm)));
4576
4577 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4578 = error_mark_node;
4579 no_errors = false;
4580 }
4581 }
4582 }
4583 }
4584
4585 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4586 || is_partial
4587 || !is_primary
4588 || is_friend_decl)
4589 /* For an ordinary class template, default template arguments are
4590 allowed at the innermost level, e.g.:
4591 template <class T = int>
4592 struct S {};
4593 but, in a partial specialization, they're not allowed even
4594 there, as we have in [temp.class.spec]:
4595
4596 The template parameter list of a specialization shall not
4597 contain default template argument values.
4598
4599 So, for a partial specialization, or for a function template
4600 (in C++98/C++03), we look at all of them. */
4601 ;
4602 else
4603 /* But, for a primary class template that is not a partial
4604 specialization we look at all template parameters except the
4605 innermost ones. */
4606 parms = TREE_CHAIN (parms);
4607
4608 /* Figure out what error message to issue. */
4609 if (is_friend_decl == 2)
4610 msg = G_("default template arguments may not be used in function template "
4611 "friend re-declaration");
4612 else if (is_friend_decl)
4613 msg = G_("default template arguments may not be used in function template "
4614 "friend declarations");
4615 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4616 msg = G_("default template arguments may not be used in function templates "
4617 "without -std=c++11 or -std=gnu++11");
4618 else if (is_partial)
4619 msg = G_("default template arguments may not be used in "
4620 "partial specializations");
4621 else
4622 msg = G_("default argument for template parameter for class enclosing %qD");
4623
4624 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4625 /* If we're inside a class definition, there's no need to
4626 examine the parameters to the class itself. On the one
4627 hand, they will be checked when the class is defined, and,
4628 on the other, default arguments are valid in things like:
4629 template <class T = double>
4630 struct S { template <class U> void f(U); };
4631 Here the default argument for `S' has no bearing on the
4632 declaration of `f'. */
4633 last_level_to_check = template_class_depth (current_class_type) + 1;
4634 else
4635 /* Check everything. */
4636 last_level_to_check = 0;
4637
4638 for (parm_level = parms;
4639 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4640 parm_level = TREE_CHAIN (parm_level))
4641 {
4642 tree inner_parms = TREE_VALUE (parm_level);
4643 int i;
4644 int ntparms;
4645
4646 ntparms = TREE_VEC_LENGTH (inner_parms);
4647 for (i = 0; i < ntparms; ++i)
4648 {
4649 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4650 continue;
4651
4652 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4653 {
4654 if (msg)
4655 {
4656 no_errors = false;
4657 if (is_friend_decl == 2)
4658 return no_errors;
4659
4660 error (msg, decl);
4661 msg = 0;
4662 }
4663
4664 /* Clear out the default argument so that we are not
4665 confused later. */
4666 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
4667 }
4668 }
4669
4670 /* At this point, if we're still interested in issuing messages,
4671 they must apply to classes surrounding the object declared. */
4672 if (msg)
4673 msg = G_("default argument for template parameter for class "
4674 "enclosing %qD");
4675 }
4676
4677 return no_errors;
4678 }
4679
4680 /* Worker for push_template_decl_real, called via
4681 for_each_template_parm. DATA is really an int, indicating the
4682 level of the parameters we are interested in. If T is a template
4683 parameter of that level, return nonzero. */
4684
4685 static int
4686 template_parm_this_level_p (tree t, void* data)
4687 {
4688 int this_level = *(int *)data;
4689 int level;
4690
4691 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
4692 level = TEMPLATE_PARM_LEVEL (t);
4693 else
4694 level = TEMPLATE_TYPE_LEVEL (t);
4695 return level == this_level;
4696 }
4697
4698 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
4699 parameters given by current_template_args, or reuses a
4700 previously existing one, if appropriate. Returns the DECL, or an
4701 equivalent one, if it is replaced via a call to duplicate_decls.
4702
4703 If IS_FRIEND is true, DECL is a friend declaration. */
4704
4705 tree
4706 push_template_decl_real (tree decl, bool is_friend)
4707 {
4708 tree tmpl;
4709 tree args;
4710 tree info;
4711 tree ctx;
4712 bool is_primary;
4713 bool is_partial;
4714 int new_template_p = 0;
4715 /* True if the template is a member template, in the sense of
4716 [temp.mem]. */
4717 bool member_template_p = false;
4718
4719 if (decl == error_mark_node || !current_template_parms)
4720 return error_mark_node;
4721
4722 /* See if this is a partial specialization. */
4723 is_partial = ((DECL_IMPLICIT_TYPEDEF_P (decl)
4724 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
4725 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
4726 || (TREE_CODE (decl) == VAR_DECL
4727 && DECL_LANG_SPECIFIC (decl)
4728 && DECL_TEMPLATE_SPECIALIZATION (decl)
4729 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl))));
4730
4731 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
4732 is_friend = true;
4733
4734 if (is_friend)
4735 /* For a friend, we want the context of the friend function, not
4736 the type of which it is a friend. */
4737 ctx = CP_DECL_CONTEXT (decl);
4738 else if (CP_DECL_CONTEXT (decl)
4739 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
4740 /* In the case of a virtual function, we want the class in which
4741 it is defined. */
4742 ctx = CP_DECL_CONTEXT (decl);
4743 else
4744 /* Otherwise, if we're currently defining some class, the DECL
4745 is assumed to be a member of the class. */
4746 ctx = current_scope ();
4747
4748 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
4749 ctx = NULL_TREE;
4750
4751 if (!DECL_CONTEXT (decl))
4752 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
4753
4754 /* See if this is a primary template. */
4755 if (is_friend && ctx
4756 && uses_template_parms_level (ctx, processing_template_decl))
4757 /* A friend template that specifies a class context, i.e.
4758 template <typename T> friend void A<T>::f();
4759 is not primary. */
4760 is_primary = false;
4761 else if (TREE_CODE (decl) == TYPE_DECL
4762 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4763 is_primary = false;
4764 else
4765 is_primary = template_parm_scope_p ();
4766
4767 if (is_primary)
4768 {
4769 if (DECL_CLASS_SCOPE_P (decl))
4770 member_template_p = true;
4771 if (TREE_CODE (decl) == TYPE_DECL
4772 && ANON_AGGRNAME_P (DECL_NAME (decl)))
4773 {
4774 error ("template class without a name");
4775 return error_mark_node;
4776 }
4777 else if (TREE_CODE (decl) == FUNCTION_DECL)
4778 {
4779 if (member_template_p)
4780 {
4781 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
4782 error ("member template %qD may not have virt-specifiers", decl);
4783 }
4784 if (DECL_DESTRUCTOR_P (decl))
4785 {
4786 /* [temp.mem]
4787
4788 A destructor shall not be a member template. */
4789 error ("destructor %qD declared as member template", decl);
4790 return error_mark_node;
4791 }
4792 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
4793 && (!prototype_p (TREE_TYPE (decl))
4794 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
4795 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
4796 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
4797 == void_list_node)))
4798 {
4799 /* [basic.stc.dynamic.allocation]
4800
4801 An allocation function can be a function
4802 template. ... Template allocation functions shall
4803 have two or more parameters. */
4804 error ("invalid template declaration of %qD", decl);
4805 return error_mark_node;
4806 }
4807 }
4808 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4809 && CLASS_TYPE_P (TREE_TYPE (decl)))
4810 /* OK */;
4811 else if (TREE_CODE (decl) == TYPE_DECL
4812 && TYPE_DECL_ALIAS_P (decl))
4813 /* alias-declaration */
4814 gcc_assert (!DECL_ARTIFICIAL (decl));
4815 else if (VAR_P (decl))
4816 /* C++14 variable template. */;
4817 else
4818 {
4819 error ("template declaration of %q#D", decl);
4820 return error_mark_node;
4821 }
4822 }
4823
4824 /* Check to see that the rules regarding the use of default
4825 arguments are not being violated. */
4826 check_default_tmpl_args (decl, current_template_parms,
4827 is_primary, is_partial, /*is_friend_decl=*/0);
4828
4829 /* Ensure that there are no parameter packs in the type of this
4830 declaration that have not been expanded. */
4831 if (TREE_CODE (decl) == FUNCTION_DECL)
4832 {
4833 /* Check each of the arguments individually to see if there are
4834 any bare parameter packs. */
4835 tree type = TREE_TYPE (decl);
4836 tree arg = DECL_ARGUMENTS (decl);
4837 tree argtype = TYPE_ARG_TYPES (type);
4838
4839 while (arg && argtype)
4840 {
4841 if (!DECL_PACK_P (arg)
4842 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
4843 {
4844 /* This is a PARM_DECL that contains unexpanded parameter
4845 packs. We have already complained about this in the
4846 check_for_bare_parameter_packs call, so just replace
4847 these types with ERROR_MARK_NODE. */
4848 TREE_TYPE (arg) = error_mark_node;
4849 TREE_VALUE (argtype) = error_mark_node;
4850 }
4851
4852 arg = DECL_CHAIN (arg);
4853 argtype = TREE_CHAIN (argtype);
4854 }
4855
4856 /* Check for bare parameter packs in the return type and the
4857 exception specifiers. */
4858 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
4859 /* Errors were already issued, set return type to int
4860 as the frontend doesn't expect error_mark_node as
4861 the return type. */
4862 TREE_TYPE (type) = integer_type_node;
4863 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
4864 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
4865 }
4866 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
4867 && TYPE_DECL_ALIAS_P (decl))
4868 ? DECL_ORIGINAL_TYPE (decl)
4869 : TREE_TYPE (decl)))
4870 {
4871 TREE_TYPE (decl) = error_mark_node;
4872 return error_mark_node;
4873 }
4874
4875 if (is_partial)
4876 return process_partial_specialization (decl);
4877
4878 args = current_template_args ();
4879
4880 if (!ctx
4881 || TREE_CODE (ctx) == FUNCTION_DECL
4882 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
4883 || (TREE_CODE (decl) == TYPE_DECL
4884 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4885 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
4886 {
4887 if (DECL_LANG_SPECIFIC (decl)
4888 && DECL_TEMPLATE_INFO (decl)
4889 && DECL_TI_TEMPLATE (decl))
4890 tmpl = DECL_TI_TEMPLATE (decl);
4891 /* If DECL is a TYPE_DECL for a class-template, then there won't
4892 be DECL_LANG_SPECIFIC. The information equivalent to
4893 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
4894 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4895 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
4896 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
4897 {
4898 /* Since a template declaration already existed for this
4899 class-type, we must be redeclaring it here. Make sure
4900 that the redeclaration is valid. */
4901 redeclare_class_template (TREE_TYPE (decl),
4902 current_template_parms);
4903 /* We don't need to create a new TEMPLATE_DECL; just use the
4904 one we already had. */
4905 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
4906 }
4907 else
4908 {
4909 tmpl = build_template_decl (decl, current_template_parms,
4910 member_template_p);
4911 new_template_p = 1;
4912
4913 if (DECL_LANG_SPECIFIC (decl)
4914 && DECL_TEMPLATE_SPECIALIZATION (decl))
4915 {
4916 /* A specialization of a member template of a template
4917 class. */
4918 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4919 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
4920 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
4921 }
4922 }
4923 }
4924 else
4925 {
4926 tree a, t, current, parms;
4927 int i;
4928 tree tinfo = get_template_info (decl);
4929
4930 if (!tinfo)
4931 {
4932 error ("template definition of non-template %q#D", decl);
4933 return error_mark_node;
4934 }
4935
4936 tmpl = TI_TEMPLATE (tinfo);
4937
4938 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
4939 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
4940 && DECL_TEMPLATE_SPECIALIZATION (decl)
4941 && DECL_MEMBER_TEMPLATE_P (tmpl))
4942 {
4943 tree new_tmpl;
4944
4945 /* The declaration is a specialization of a member
4946 template, declared outside the class. Therefore, the
4947 innermost template arguments will be NULL, so we
4948 replace them with the arguments determined by the
4949 earlier call to check_explicit_specialization. */
4950 args = DECL_TI_ARGS (decl);
4951
4952 new_tmpl
4953 = build_template_decl (decl, current_template_parms,
4954 member_template_p);
4955 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
4956 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
4957 DECL_TI_TEMPLATE (decl) = new_tmpl;
4958 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
4959 DECL_TEMPLATE_INFO (new_tmpl)
4960 = build_template_info (tmpl, args);
4961
4962 register_specialization (new_tmpl,
4963 most_general_template (tmpl),
4964 args,
4965 is_friend, 0);
4966 return decl;
4967 }
4968
4969 /* Make sure the template headers we got make sense. */
4970
4971 parms = DECL_TEMPLATE_PARMS (tmpl);
4972 i = TMPL_PARMS_DEPTH (parms);
4973 if (TMPL_ARGS_DEPTH (args) != i)
4974 {
4975 error ("expected %d levels of template parms for %q#D, got %d",
4976 i, decl, TMPL_ARGS_DEPTH (args));
4977 DECL_INTERFACE_KNOWN (decl) = 1;
4978 return error_mark_node;
4979 }
4980 else
4981 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
4982 {
4983 a = TMPL_ARGS_LEVEL (args, i);
4984 t = INNERMOST_TEMPLATE_PARMS (parms);
4985
4986 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
4987 {
4988 if (current == decl)
4989 error ("got %d template parameters for %q#D",
4990 TREE_VEC_LENGTH (a), decl);
4991 else
4992 error ("got %d template parameters for %q#T",
4993 TREE_VEC_LENGTH (a), current);
4994 error (" but %d required", TREE_VEC_LENGTH (t));
4995 /* Avoid crash in import_export_decl. */
4996 DECL_INTERFACE_KNOWN (decl) = 1;
4997 return error_mark_node;
4998 }
4999
5000 if (current == decl)
5001 current = ctx;
5002 else if (current == NULL_TREE)
5003 /* Can happen in erroneous input. */
5004 break;
5005 else
5006 current = get_containing_scope (current);
5007 }
5008
5009 /* Check that the parms are used in the appropriate qualifying scopes
5010 in the declarator. */
5011 if (!comp_template_args
5012 (TI_ARGS (tinfo),
5013 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5014 {
5015 error ("\
5016 template arguments to %qD do not match original template %qD",
5017 decl, DECL_TEMPLATE_RESULT (tmpl));
5018 if (!uses_template_parms (TI_ARGS (tinfo)))
5019 inform (input_location, "use template<> for an explicit specialization");
5020 /* Avoid crash in import_export_decl. */
5021 DECL_INTERFACE_KNOWN (decl) = 1;
5022 return error_mark_node;
5023 }
5024 }
5025
5026 DECL_TEMPLATE_RESULT (tmpl) = decl;
5027 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5028
5029 /* Push template declarations for global functions and types. Note
5030 that we do not try to push a global template friend declared in a
5031 template class; such a thing may well depend on the template
5032 parameters of the class. */
5033 if (new_template_p && !ctx
5034 && !(is_friend && template_class_depth (current_class_type) > 0))
5035 {
5036 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5037 if (tmpl == error_mark_node)
5038 return error_mark_node;
5039
5040 /* Hide template friend classes that haven't been declared yet. */
5041 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5042 {
5043 DECL_ANTICIPATED (tmpl) = 1;
5044 DECL_FRIEND_P (tmpl) = 1;
5045 }
5046 }
5047
5048 if (is_primary)
5049 {
5050 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5051 int i;
5052
5053 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5054 if (DECL_CONV_FN_P (tmpl))
5055 {
5056 int depth = TMPL_PARMS_DEPTH (parms);
5057
5058 /* It is a conversion operator. See if the type converted to
5059 depends on innermost template operands. */
5060
5061 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5062 depth))
5063 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5064 }
5065
5066 /* Give template template parms a DECL_CONTEXT of the template
5067 for which they are a parameter. */
5068 parms = INNERMOST_TEMPLATE_PARMS (parms);
5069 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5070 {
5071 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5072 if (TREE_CODE (parm) == TEMPLATE_DECL)
5073 DECL_CONTEXT (parm) = tmpl;
5074 }
5075 }
5076
5077 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5078 back to its most general template. If TMPL is a specialization,
5079 ARGS may only have the innermost set of arguments. Add the missing
5080 argument levels if necessary. */
5081 if (DECL_TEMPLATE_INFO (tmpl))
5082 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5083
5084 info = build_template_info (tmpl, args);
5085
5086 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5087 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5088 else
5089 {
5090 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5091 retrofit_lang_decl (decl);
5092 if (DECL_LANG_SPECIFIC (decl))
5093 DECL_TEMPLATE_INFO (decl) = info;
5094 }
5095
5096 if (flag_implicit_templates
5097 && !is_friend
5098 && TREE_PUBLIC (decl)
5099 && VAR_OR_FUNCTION_DECL_P (decl))
5100 /* Set DECL_COMDAT on template instantiations; if we force
5101 them to be emitted by explicit instantiation or -frepo,
5102 mark_needed will tell cgraph to do the right thing. */
5103 DECL_COMDAT (decl) = true;
5104
5105 return DECL_TEMPLATE_RESULT (tmpl);
5106 }
5107
5108 tree
5109 push_template_decl (tree decl)
5110 {
5111 return push_template_decl_real (decl, false);
5112 }
5113
5114 /* FN is an inheriting constructor that inherits from the constructor
5115 template INHERITED; turn FN into a constructor template with a matching
5116 template header. */
5117
5118 tree
5119 add_inherited_template_parms (tree fn, tree inherited)
5120 {
5121 tree inner_parms
5122 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5123 inner_parms = copy_node (inner_parms);
5124 tree parms
5125 = tree_cons (size_int (processing_template_decl + 1),
5126 inner_parms, current_template_parms);
5127 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5128 tree args = template_parms_to_args (parms);
5129 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5130 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5131 DECL_TEMPLATE_RESULT (tmpl) = fn;
5132 DECL_ARTIFICIAL (tmpl) = true;
5133 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5134 return tmpl;
5135 }
5136
5137 /* Called when a class template TYPE is redeclared with the indicated
5138 template PARMS, e.g.:
5139
5140 template <class T> struct S;
5141 template <class T> struct S {}; */
5142
5143 bool
5144 redeclare_class_template (tree type, tree parms)
5145 {
5146 tree tmpl;
5147 tree tmpl_parms;
5148 int i;
5149
5150 if (!TYPE_TEMPLATE_INFO (type))
5151 {
5152 error ("%qT is not a template type", type);
5153 return false;
5154 }
5155
5156 tmpl = TYPE_TI_TEMPLATE (type);
5157 if (!PRIMARY_TEMPLATE_P (tmpl))
5158 /* The type is nested in some template class. Nothing to worry
5159 about here; there are no new template parameters for the nested
5160 type. */
5161 return true;
5162
5163 if (!parms)
5164 {
5165 error ("template specifiers not specified in declaration of %qD",
5166 tmpl);
5167 return false;
5168 }
5169
5170 parms = INNERMOST_TEMPLATE_PARMS (parms);
5171 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5172
5173 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5174 {
5175 error_n (input_location, TREE_VEC_LENGTH (parms),
5176 "redeclared with %d template parameter",
5177 "redeclared with %d template parameters",
5178 TREE_VEC_LENGTH (parms));
5179 inform_n (input_location, TREE_VEC_LENGTH (tmpl_parms),
5180 "previous declaration %q+D used %d template parameter",
5181 "previous declaration %q+D used %d template parameters",
5182 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5183 return false;
5184 }
5185
5186 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5187 {
5188 tree tmpl_parm;
5189 tree parm;
5190 tree tmpl_default;
5191 tree parm_default;
5192
5193 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5194 || TREE_VEC_ELT (parms, i) == error_mark_node)
5195 continue;
5196
5197 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5198 if (error_operand_p (tmpl_parm))
5199 return false;
5200
5201 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5202 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5203 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5204
5205 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5206 TEMPLATE_DECL. */
5207 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5208 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5209 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5210 || (TREE_CODE (tmpl_parm) != PARM_DECL
5211 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5212 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5213 || (TREE_CODE (tmpl_parm) == PARM_DECL
5214 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5215 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5216 {
5217 error ("template parameter %q+#D", tmpl_parm);
5218 error ("redeclared here as %q#D", parm);
5219 return false;
5220 }
5221
5222 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5223 {
5224 /* We have in [temp.param]:
5225
5226 A template-parameter may not be given default arguments
5227 by two different declarations in the same scope. */
5228 error_at (input_location, "redefinition of default argument for %q#D", parm);
5229 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5230 "original definition appeared here");
5231 return false;
5232 }
5233
5234 if (parm_default != NULL_TREE)
5235 /* Update the previous template parameters (which are the ones
5236 that will really count) with the new default value. */
5237 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5238 else if (tmpl_default != NULL_TREE)
5239 /* Update the new parameters, too; they'll be used as the
5240 parameters for any members. */
5241 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5242 }
5243
5244 return true;
5245 }
5246
5247 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5248 to be used when the caller has already checked
5249 (processing_template_decl
5250 && !instantiation_dependent_expression_p (expr)
5251 && potential_constant_expression (expr))
5252 and cleared processing_template_decl. */
5253
5254 tree
5255 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
5256 {
5257 return tsubst_copy_and_build (expr,
5258 /*args=*/NULL_TREE,
5259 complain,
5260 /*in_decl=*/NULL_TREE,
5261 /*function_p=*/false,
5262 /*integral_constant_expression_p=*/true);
5263 }
5264
5265 /* Simplify EXPR if it is a non-dependent expression. Returns the
5266 (possibly simplified) expression. */
5267
5268 tree
5269 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5270 {
5271 if (expr == NULL_TREE)
5272 return NULL_TREE;
5273
5274 /* If we're in a template, but EXPR isn't value dependent, simplify
5275 it. We're supposed to treat:
5276
5277 template <typename T> void f(T[1 + 1]);
5278 template <typename T> void f(T[2]);
5279
5280 as two declarations of the same function, for example. */
5281 if (processing_template_decl
5282 && !instantiation_dependent_expression_p (expr)
5283 && potential_constant_expression (expr))
5284 {
5285 processing_template_decl_sentinel s;
5286 expr = instantiate_non_dependent_expr_internal (expr, complain);
5287 }
5288 return expr;
5289 }
5290
5291 tree
5292 instantiate_non_dependent_expr (tree expr)
5293 {
5294 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
5295 }
5296
5297 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5298 template declaration, or a TYPE_DECL for an alias declaration. */
5299
5300 bool
5301 alias_type_or_template_p (tree t)
5302 {
5303 if (t == NULL_TREE)
5304 return false;
5305 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5306 || (TYPE_P (t)
5307 && TYPE_NAME (t)
5308 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5309 || DECL_ALIAS_TEMPLATE_P (t));
5310 }
5311
5312 /* Return TRUE iff T is a specialization of an alias template. */
5313
5314 bool
5315 alias_template_specialization_p (const_tree t)
5316 {
5317 if (t == NULL_TREE)
5318 return false;
5319
5320 return (TYPE_P (t)
5321 && TYPE_TEMPLATE_INFO (t)
5322 && PRIMARY_TEMPLATE_P (TYPE_TI_TEMPLATE (t))
5323 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (t)));
5324 }
5325
5326 /* Return TRUE iff T is a specialization of an alias template with
5327 dependent template-arguments. */
5328
5329 bool
5330 dependent_alias_template_spec_p (const_tree t)
5331 {
5332 return (alias_template_specialization_p (t)
5333 && any_dependent_template_arguments_p (TYPE_TI_ARGS (t)));
5334 }
5335
5336 /* Return the number of innermost template parameters in TMPL. */
5337
5338 static int
5339 num_innermost_template_parms (tree tmpl)
5340 {
5341 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5342 return TREE_VEC_LENGTH (parms);
5343 }
5344
5345 /* Return either TMPL or another template that it is equivalent to under DR
5346 1286: An alias that just changes the name of a template is equivalent to
5347 the other template. */
5348
5349 static tree
5350 get_underlying_template (tree tmpl)
5351 {
5352 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5353 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5354 {
5355 tree result = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5356 if (TYPE_TEMPLATE_INFO (result))
5357 {
5358 tree sub = TYPE_TI_TEMPLATE (result);
5359 if (PRIMARY_TEMPLATE_P (sub)
5360 && (num_innermost_template_parms (tmpl)
5361 == num_innermost_template_parms (sub)))
5362 {
5363 tree alias_args = INNERMOST_TEMPLATE_ARGS
5364 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5365 if (!comp_template_args (TYPE_TI_ARGS (result), alias_args))
5366 break;
5367 /* The alias type is equivalent to the pattern of the
5368 underlying template, so strip the alias. */
5369 tmpl = sub;
5370 continue;
5371 }
5372 }
5373 break;
5374 }
5375 return tmpl;
5376 }
5377
5378 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5379 must be a function or a pointer-to-function type, as specified
5380 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5381 and check that the resulting function has external linkage. */
5382
5383 static tree
5384 convert_nontype_argument_function (tree type, tree expr,
5385 tsubst_flags_t complain)
5386 {
5387 tree fns = expr;
5388 tree fn, fn_no_ptr;
5389 linkage_kind linkage;
5390
5391 fn = instantiate_type (type, fns, tf_none);
5392 if (fn == error_mark_node)
5393 return error_mark_node;
5394
5395 fn_no_ptr = fn;
5396 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5397 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5398 if (BASELINK_P (fn_no_ptr))
5399 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5400
5401 /* [temp.arg.nontype]/1
5402
5403 A template-argument for a non-type, non-template template-parameter
5404 shall be one of:
5405 [...]
5406 -- the address of an object or function with external [C++11: or
5407 internal] linkage. */
5408
5409 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5410 {
5411 if (complain & tf_error)
5412 {
5413 error ("%qE is not a valid template argument for type %qT",
5414 expr, type);
5415 if (TYPE_PTR_P (type))
5416 error ("it must be the address of a function with "
5417 "external linkage");
5418 else
5419 error ("it must be the name of a function with "
5420 "external linkage");
5421 }
5422 return NULL_TREE;
5423 }
5424
5425 linkage = decl_linkage (fn_no_ptr);
5426 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
5427 {
5428 if (complain & tf_error)
5429 {
5430 if (cxx_dialect >= cxx11)
5431 error ("%qE is not a valid template argument for type %qT "
5432 "because %qD has no linkage",
5433 expr, type, fn_no_ptr);
5434 else
5435 error ("%qE is not a valid template argument for type %qT "
5436 "because %qD does not have external linkage",
5437 expr, type, fn_no_ptr);
5438 }
5439 return NULL_TREE;
5440 }
5441
5442 return fn;
5443 }
5444
5445 /* Subroutine of convert_nontype_argument.
5446 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5447 Emit an error otherwise. */
5448
5449 static bool
5450 check_valid_ptrmem_cst_expr (tree type, tree expr,
5451 tsubst_flags_t complain)
5452 {
5453 STRIP_NOPS (expr);
5454 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5455 return true;
5456 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
5457 return true;
5458 if (processing_template_decl
5459 && TREE_CODE (expr) == ADDR_EXPR
5460 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
5461 return true;
5462 if (complain & tf_error)
5463 {
5464 error ("%qE is not a valid template argument for type %qT",
5465 expr, type);
5466 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5467 }
5468 return false;
5469 }
5470
5471 /* Returns TRUE iff the address of OP is value-dependent.
5472
5473 14.6.2.4 [temp.dep.temp]:
5474 A non-integral non-type template-argument is dependent if its type is
5475 dependent or it has either of the following forms
5476 qualified-id
5477 & qualified-id
5478 and contains a nested-name-specifier which specifies a class-name that
5479 names a dependent type.
5480
5481 We generalize this to just say that the address of a member of a
5482 dependent class is value-dependent; the above doesn't cover the
5483 address of a static data member named with an unqualified-id. */
5484
5485 static bool
5486 has_value_dependent_address (tree op)
5487 {
5488 /* We could use get_inner_reference here, but there's no need;
5489 this is only relevant for template non-type arguments, which
5490 can only be expressed as &id-expression. */
5491 if (DECL_P (op))
5492 {
5493 tree ctx = CP_DECL_CONTEXT (op);
5494 if (TYPE_P (ctx) && dependent_type_p (ctx))
5495 return true;
5496 }
5497
5498 return false;
5499 }
5500
5501 /* The next set of functions are used for providing helpful explanatory
5502 diagnostics for failed overload resolution. Their messages should be
5503 indented by two spaces for consistency with the messages in
5504 call.c */
5505
5506 static int
5507 unify_success (bool /*explain_p*/)
5508 {
5509 return 0;
5510 }
5511
5512 static int
5513 unify_parameter_deduction_failure (bool explain_p, tree parm)
5514 {
5515 if (explain_p)
5516 inform (input_location,
5517 " couldn't deduce template parameter %qD", parm);
5518 return 1;
5519 }
5520
5521 static int
5522 unify_invalid (bool /*explain_p*/)
5523 {
5524 return 1;
5525 }
5526
5527 static int
5528 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5529 {
5530 if (explain_p)
5531 inform (input_location,
5532 " types %qT and %qT have incompatible cv-qualifiers",
5533 parm, arg);
5534 return 1;
5535 }
5536
5537 static int
5538 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5539 {
5540 if (explain_p)
5541 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5542 return 1;
5543 }
5544
5545 static int
5546 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
5547 {
5548 if (explain_p)
5549 inform (input_location,
5550 " template parameter %qD is not a parameter pack, but "
5551 "argument %qD is",
5552 parm, arg);
5553 return 1;
5554 }
5555
5556 static int
5557 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
5558 {
5559 if (explain_p)
5560 inform (input_location,
5561 " template argument %qE does not match "
5562 "pointer-to-member constant %qE",
5563 arg, parm);
5564 return 1;
5565 }
5566
5567 static int
5568 unify_expression_unequal (bool explain_p, tree parm, tree arg)
5569 {
5570 if (explain_p)
5571 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
5572 return 1;
5573 }
5574
5575 static int
5576 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
5577 {
5578 if (explain_p)
5579 inform (input_location,
5580 " inconsistent parameter pack deduction with %qT and %qT",
5581 old_arg, new_arg);
5582 return 1;
5583 }
5584
5585 static int
5586 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
5587 {
5588 if (explain_p)
5589 {
5590 if (TYPE_P (parm))
5591 inform (input_location,
5592 " deduced conflicting types for parameter %qT (%qT and %qT)",
5593 parm, first, second);
5594 else
5595 inform (input_location,
5596 " deduced conflicting values for non-type parameter "
5597 "%qE (%qE and %qE)", parm, first, second);
5598 }
5599 return 1;
5600 }
5601
5602 static int
5603 unify_vla_arg (bool explain_p, tree arg)
5604 {
5605 if (explain_p)
5606 inform (input_location,
5607 " variable-sized array type %qT is not "
5608 "a valid template argument",
5609 arg);
5610 return 1;
5611 }
5612
5613 static int
5614 unify_method_type_error (bool explain_p, tree arg)
5615 {
5616 if (explain_p)
5617 inform (input_location,
5618 " member function type %qT is not a valid template argument",
5619 arg);
5620 return 1;
5621 }
5622
5623 static int
5624 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
5625 {
5626 if (explain_p)
5627 {
5628 if (least_p)
5629 inform_n (input_location, wanted,
5630 " candidate expects at least %d argument, %d provided",
5631 " candidate expects at least %d arguments, %d provided",
5632 wanted, have);
5633 else
5634 inform_n (input_location, wanted,
5635 " candidate expects %d argument, %d provided",
5636 " candidate expects %d arguments, %d provided",
5637 wanted, have);
5638 }
5639 return 1;
5640 }
5641
5642 static int
5643 unify_too_many_arguments (bool explain_p, int have, int wanted)
5644 {
5645 return unify_arity (explain_p, have, wanted);
5646 }
5647
5648 static int
5649 unify_too_few_arguments (bool explain_p, int have, int wanted,
5650 bool least_p = false)
5651 {
5652 return unify_arity (explain_p, have, wanted, least_p);
5653 }
5654
5655 static int
5656 unify_arg_conversion (bool explain_p, tree to_type,
5657 tree from_type, tree arg)
5658 {
5659 if (explain_p)
5660 inform (EXPR_LOC_OR_LOC (arg, input_location),
5661 " cannot convert %qE (type %qT) to type %qT",
5662 arg, from_type, to_type);
5663 return 1;
5664 }
5665
5666 static int
5667 unify_no_common_base (bool explain_p, enum template_base_result r,
5668 tree parm, tree arg)
5669 {
5670 if (explain_p)
5671 switch (r)
5672 {
5673 case tbr_ambiguous_baseclass:
5674 inform (input_location, " %qT is an ambiguous base class of %qT",
5675 parm, arg);
5676 break;
5677 default:
5678 inform (input_location, " %qT is not derived from %qT", arg, parm);
5679 break;
5680 }
5681 return 1;
5682 }
5683
5684 static int
5685 unify_inconsistent_template_template_parameters (bool explain_p)
5686 {
5687 if (explain_p)
5688 inform (input_location,
5689 " template parameters of a template template argument are "
5690 "inconsistent with other deduced template arguments");
5691 return 1;
5692 }
5693
5694 static int
5695 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
5696 {
5697 if (explain_p)
5698 inform (input_location,
5699 " can't deduce a template for %qT from non-template type %qT",
5700 parm, arg);
5701 return 1;
5702 }
5703
5704 static int
5705 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
5706 {
5707 if (explain_p)
5708 inform (input_location,
5709 " template argument %qE does not match %qD", arg, parm);
5710 return 1;
5711 }
5712
5713 static int
5714 unify_overload_resolution_failure (bool explain_p, tree arg)
5715 {
5716 if (explain_p)
5717 inform (input_location,
5718 " could not resolve address from overloaded function %qE",
5719 arg);
5720 return 1;
5721 }
5722
5723 /* Attempt to convert the non-type template parameter EXPR to the
5724 indicated TYPE. If the conversion is successful, return the
5725 converted value. If the conversion is unsuccessful, return
5726 NULL_TREE if we issued an error message, or error_mark_node if we
5727 did not. We issue error messages for out-and-out bad template
5728 parameters, but not simply because the conversion failed, since we
5729 might be just trying to do argument deduction. Both TYPE and EXPR
5730 must be non-dependent.
5731
5732 The conversion follows the special rules described in
5733 [temp.arg.nontype], and it is much more strict than an implicit
5734 conversion.
5735
5736 This function is called twice for each template argument (see
5737 lookup_template_class for a more accurate description of this
5738 problem). This means that we need to handle expressions which
5739 are not valid in a C++ source, but can be created from the
5740 first call (for instance, casts to perform conversions). These
5741 hacks can go away after we fix the double coercion problem. */
5742
5743 static tree
5744 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
5745 {
5746 tree expr_type;
5747
5748 /* Detect immediately string literals as invalid non-type argument.
5749 This special-case is not needed for correctness (we would easily
5750 catch this later), but only to provide better diagnostic for this
5751 common user mistake. As suggested by DR 100, we do not mention
5752 linkage issues in the diagnostic as this is not the point. */
5753 /* FIXME we're making this OK. */
5754 if (TREE_CODE (expr) == STRING_CST)
5755 {
5756 if (complain & tf_error)
5757 error ("%qE is not a valid template argument for type %qT "
5758 "because string literals can never be used in this context",
5759 expr, type);
5760 return NULL_TREE;
5761 }
5762
5763 /* Add the ADDR_EXPR now for the benefit of
5764 value_dependent_expression_p. */
5765 if (TYPE_PTROBV_P (type)
5766 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
5767 {
5768 expr = decay_conversion (expr, complain);
5769 if (expr == error_mark_node)
5770 return error_mark_node;
5771 }
5772
5773 /* If we are in a template, EXPR may be non-dependent, but still
5774 have a syntactic, rather than semantic, form. For example, EXPR
5775 might be a SCOPE_REF, rather than the VAR_DECL to which the
5776 SCOPE_REF refers. Preserving the qualifying scope is necessary
5777 so that access checking can be performed when the template is
5778 instantiated -- but here we need the resolved form so that we can
5779 convert the argument. */
5780 bool non_dep = false;
5781 if (TYPE_REF_OBJ_P (type)
5782 && has_value_dependent_address (expr))
5783 /* If we want the address and it's value-dependent, don't fold. */;
5784 else if (!type_unknown_p (expr)
5785 && processing_template_decl
5786 && !instantiation_dependent_expression_p (expr)
5787 && potential_constant_expression (expr))
5788 non_dep = true;
5789 if (error_operand_p (expr))
5790 return error_mark_node;
5791 expr_type = TREE_TYPE (expr);
5792 if (TREE_CODE (type) == REFERENCE_TYPE)
5793 expr = mark_lvalue_use (expr);
5794 else
5795 expr = mark_rvalue_use (expr);
5796
5797 /* If the argument is non-dependent, perform any conversions in
5798 non-dependent context as well. */
5799 processing_template_decl_sentinel s (non_dep);
5800 if (non_dep)
5801 expr = instantiate_non_dependent_expr_internal (expr, complain);
5802
5803 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
5804 to a non-type argument of "nullptr". */
5805 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
5806 expr = convert (type, expr);
5807
5808 /* In C++11, integral or enumeration non-type template arguments can be
5809 arbitrary constant expressions. Pointer and pointer to
5810 member arguments can be general constant expressions that evaluate
5811 to a null value, but otherwise still need to be of a specific form. */
5812 if (cxx_dialect >= cxx11)
5813 {
5814 if (TREE_CODE (expr) == PTRMEM_CST)
5815 /* A PTRMEM_CST is already constant, and a valid template
5816 argument for a parameter of pointer to member type, we just want
5817 to leave it in that form rather than lower it to a
5818 CONSTRUCTOR. */;
5819 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5820 expr = maybe_constant_value (expr);
5821 else if (TYPE_PTR_OR_PTRMEM_P (type))
5822 {
5823 tree folded = maybe_constant_value (expr);
5824 if (TYPE_PTR_P (type) ? integer_zerop (folded)
5825 : null_member_pointer_value_p (folded))
5826 expr = folded;
5827 }
5828 }
5829
5830 /* HACK: Due to double coercion, we can get a
5831 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
5832 which is the tree that we built on the first call (see
5833 below when coercing to reference to object or to reference to
5834 function). We just strip everything and get to the arg.
5835 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
5836 for examples. */
5837 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
5838 {
5839 tree probe_type, probe = expr;
5840 if (REFERENCE_REF_P (probe))
5841 probe = TREE_OPERAND (probe, 0);
5842 probe_type = TREE_TYPE (probe);
5843 if (TREE_CODE (probe) == NOP_EXPR)
5844 {
5845 /* ??? Maybe we could use convert_from_reference here, but we
5846 would need to relax its constraints because the NOP_EXPR
5847 could actually change the type to something more cv-qualified,
5848 and this is not folded by convert_from_reference. */
5849 tree addr = TREE_OPERAND (probe, 0);
5850 if (TREE_CODE (probe_type) == REFERENCE_TYPE
5851 && TREE_CODE (addr) == ADDR_EXPR
5852 && TYPE_PTR_P (TREE_TYPE (addr))
5853 && (same_type_ignoring_top_level_qualifiers_p
5854 (TREE_TYPE (probe_type),
5855 TREE_TYPE (TREE_TYPE (addr)))))
5856 {
5857 expr = TREE_OPERAND (addr, 0);
5858 expr_type = TREE_TYPE (probe_type);
5859 }
5860 }
5861 }
5862
5863 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
5864 parameter is a pointer to object, through decay and
5865 qualification conversion. Let's strip everything. */
5866 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
5867 {
5868 tree probe = expr;
5869 STRIP_NOPS (probe);
5870 if (TREE_CODE (probe) == ADDR_EXPR
5871 && TYPE_PTR_P (TREE_TYPE (probe)))
5872 {
5873 /* Skip the ADDR_EXPR only if it is part of the decay for
5874 an array. Otherwise, it is part of the original argument
5875 in the source code. */
5876 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
5877 probe = TREE_OPERAND (probe, 0);
5878 expr = probe;
5879 expr_type = TREE_TYPE (expr);
5880 }
5881 }
5882
5883 /* [temp.arg.nontype]/5, bullet 1
5884
5885 For a non-type template-parameter of integral or enumeration type,
5886 integral promotions (_conv.prom_) and integral conversions
5887 (_conv.integral_) are applied. */
5888 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5889 {
5890 tree t = build_integral_nontype_arg_conv (type, expr, complain);
5891 t = maybe_constant_value (t);
5892 if (t != error_mark_node)
5893 expr = t;
5894
5895 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
5896 return error_mark_node;
5897
5898 /* Notice that there are constant expressions like '4 % 0' which
5899 do not fold into integer constants. */
5900 if (TREE_CODE (expr) != INTEGER_CST)
5901 {
5902 if (complain & tf_error)
5903 {
5904 int errs = errorcount, warns = warningcount + werrorcount;
5905 if (processing_template_decl
5906 && !require_potential_constant_expression (expr))
5907 return NULL_TREE;
5908 expr = cxx_constant_value (expr);
5909 if (errorcount > errs || warningcount + werrorcount > warns)
5910 inform (EXPR_LOC_OR_LOC (expr, input_location),
5911 "in template argument for type %qT ", type);
5912 if (expr == error_mark_node)
5913 return NULL_TREE;
5914 /* else cxx_constant_value complained but gave us
5915 a real constant, so go ahead. */
5916 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
5917 }
5918 else
5919 return NULL_TREE;
5920 }
5921
5922 /* Avoid typedef problems. */
5923 if (TREE_TYPE (expr) != type)
5924 expr = fold_convert (type, expr);
5925 }
5926 /* [temp.arg.nontype]/5, bullet 2
5927
5928 For a non-type template-parameter of type pointer to object,
5929 qualification conversions (_conv.qual_) and the array-to-pointer
5930 conversion (_conv.array_) are applied. */
5931 else if (TYPE_PTROBV_P (type))
5932 {
5933 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
5934
5935 A template-argument for a non-type, non-template template-parameter
5936 shall be one of: [...]
5937
5938 -- the name of a non-type template-parameter;
5939 -- the address of an object or function with external linkage, [...]
5940 expressed as "& id-expression" where the & is optional if the name
5941 refers to a function or array, or if the corresponding
5942 template-parameter is a reference.
5943
5944 Here, we do not care about functions, as they are invalid anyway
5945 for a parameter of type pointer-to-object. */
5946
5947 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
5948 /* Non-type template parameters are OK. */
5949 ;
5950 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
5951 /* Null pointer values are OK in C++11. */;
5952 else if (TREE_CODE (expr) != ADDR_EXPR
5953 && TREE_CODE (expr_type) != ARRAY_TYPE)
5954 {
5955 if (VAR_P (expr))
5956 {
5957 if (complain & tf_error)
5958 error ("%qD is not a valid template argument "
5959 "because %qD is a variable, not the address of "
5960 "a variable", expr, expr);
5961 return NULL_TREE;
5962 }
5963 if (POINTER_TYPE_P (expr_type))
5964 {
5965 if (complain & tf_error)
5966 error ("%qE is not a valid template argument for %qT "
5967 "because it is not the address of a variable",
5968 expr, type);
5969 return NULL_TREE;
5970 }
5971 /* Other values, like integer constants, might be valid
5972 non-type arguments of some other type. */
5973 return error_mark_node;
5974 }
5975 else
5976 {
5977 tree decl;
5978
5979 decl = ((TREE_CODE (expr) == ADDR_EXPR)
5980 ? TREE_OPERAND (expr, 0) : expr);
5981 if (!VAR_P (decl))
5982 {
5983 if (complain & tf_error)
5984 error ("%qE is not a valid template argument of type %qT "
5985 "because %qE is not a variable", expr, type, decl);
5986 return NULL_TREE;
5987 }
5988 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
5989 {
5990 if (complain & tf_error)
5991 error ("%qE is not a valid template argument of type %qT "
5992 "because %qD does not have external linkage",
5993 expr, type, decl);
5994 return NULL_TREE;
5995 }
5996 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
5997 {
5998 if (complain & tf_error)
5999 error ("%qE is not a valid template argument of type %qT "
6000 "because %qD has no linkage", expr, type, decl);
6001 return NULL_TREE;
6002 }
6003 }
6004
6005 expr = decay_conversion (expr, complain);
6006 if (expr == error_mark_node)
6007 return error_mark_node;
6008
6009 expr = perform_qualification_conversions (type, expr);
6010 if (expr == error_mark_node)
6011 return error_mark_node;
6012 }
6013 /* [temp.arg.nontype]/5, bullet 3
6014
6015 For a non-type template-parameter of type reference to object, no
6016 conversions apply. The type referred to by the reference may be more
6017 cv-qualified than the (otherwise identical) type of the
6018 template-argument. The template-parameter is bound directly to the
6019 template-argument, which must be an lvalue. */
6020 else if (TYPE_REF_OBJ_P (type))
6021 {
6022 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
6023 expr_type))
6024 return error_mark_node;
6025
6026 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
6027 {
6028 if (complain & tf_error)
6029 error ("%qE is not a valid template argument for type %qT "
6030 "because of conflicts in cv-qualification", expr, type);
6031 return NULL_TREE;
6032 }
6033
6034 if (!real_lvalue_p (expr))
6035 {
6036 if (complain & tf_error)
6037 error ("%qE is not a valid template argument for type %qT "
6038 "because it is not an lvalue", expr, type);
6039 return NULL_TREE;
6040 }
6041
6042 /* [temp.arg.nontype]/1
6043
6044 A template-argument for a non-type, non-template template-parameter
6045 shall be one of: [...]
6046
6047 -- the address of an object or function with external linkage. */
6048 if (INDIRECT_REF_P (expr)
6049 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
6050 {
6051 expr = TREE_OPERAND (expr, 0);
6052 if (DECL_P (expr))
6053 {
6054 if (complain & tf_error)
6055 error ("%q#D is not a valid template argument for type %qT "
6056 "because a reference variable does not have a constant "
6057 "address", expr, type);
6058 return NULL_TREE;
6059 }
6060 }
6061
6062 if (!DECL_P (expr))
6063 {
6064 if (complain & tf_error)
6065 error ("%qE is not a valid template argument for type %qT "
6066 "because it is not an object with external linkage",
6067 expr, type);
6068 return NULL_TREE;
6069 }
6070
6071 if (!DECL_EXTERNAL_LINKAGE_P (expr))
6072 {
6073 if (complain & tf_error)
6074 error ("%qE is not a valid template argument for type %qT "
6075 "because object %qD has not external linkage",
6076 expr, type, expr);
6077 return NULL_TREE;
6078 }
6079
6080 expr = build_nop (type, build_address (expr));
6081 }
6082 /* [temp.arg.nontype]/5, bullet 4
6083
6084 For a non-type template-parameter of type pointer to function, only
6085 the function-to-pointer conversion (_conv.func_) is applied. If the
6086 template-argument represents a set of overloaded functions (or a
6087 pointer to such), the matching function is selected from the set
6088 (_over.over_). */
6089 else if (TYPE_PTRFN_P (type))
6090 {
6091 /* If the argument is a template-id, we might not have enough
6092 context information to decay the pointer. */
6093 if (!type_unknown_p (expr_type))
6094 {
6095 expr = decay_conversion (expr, complain);
6096 if (expr == error_mark_node)
6097 return error_mark_node;
6098 }
6099
6100 if (cxx_dialect >= cxx11 && integer_zerop (expr))
6101 /* Null pointer values are OK in C++11. */
6102 return perform_qualification_conversions (type, expr);
6103
6104 expr = convert_nontype_argument_function (type, expr, complain);
6105 if (!expr || expr == error_mark_node)
6106 return expr;
6107 }
6108 /* [temp.arg.nontype]/5, bullet 5
6109
6110 For a non-type template-parameter of type reference to function, no
6111 conversions apply. If the template-argument represents a set of
6112 overloaded functions, the matching function is selected from the set
6113 (_over.over_). */
6114 else if (TYPE_REFFN_P (type))
6115 {
6116 if (TREE_CODE (expr) == ADDR_EXPR)
6117 {
6118 if (complain & tf_error)
6119 {
6120 error ("%qE is not a valid template argument for type %qT "
6121 "because it is a pointer", expr, type);
6122 inform (input_location, "try using %qE instead",
6123 TREE_OPERAND (expr, 0));
6124 }
6125 return NULL_TREE;
6126 }
6127
6128 expr = convert_nontype_argument_function (type, expr, complain);
6129 if (!expr || expr == error_mark_node)
6130 return expr;
6131
6132 expr = build_nop (type, build_address (expr));
6133 }
6134 /* [temp.arg.nontype]/5, bullet 6
6135
6136 For a non-type template-parameter of type pointer to member function,
6137 no conversions apply. If the template-argument represents a set of
6138 overloaded member functions, the matching member function is selected
6139 from the set (_over.over_). */
6140 else if (TYPE_PTRMEMFUNC_P (type))
6141 {
6142 expr = instantiate_type (type, expr, tf_none);
6143 if (expr == error_mark_node)
6144 return error_mark_node;
6145
6146 /* [temp.arg.nontype] bullet 1 says the pointer to member
6147 expression must be a pointer-to-member constant. */
6148 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6149 return error_mark_node;
6150
6151 /* There is no way to disable standard conversions in
6152 resolve_address_of_overloaded_function (called by
6153 instantiate_type). It is possible that the call succeeded by
6154 converting &B::I to &D::I (where B is a base of D), so we need
6155 to reject this conversion here.
6156
6157 Actually, even if there was a way to disable standard conversions,
6158 it would still be better to reject them here so that we can
6159 provide a superior diagnostic. */
6160 if (!same_type_p (TREE_TYPE (expr), type))
6161 {
6162 if (complain & tf_error)
6163 {
6164 error ("%qE is not a valid template argument for type %qT "
6165 "because it is of type %qT", expr, type,
6166 TREE_TYPE (expr));
6167 /* If we are just one standard conversion off, explain. */
6168 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6169 inform (input_location,
6170 "standard conversions are not allowed in this context");
6171 }
6172 return NULL_TREE;
6173 }
6174 }
6175 /* [temp.arg.nontype]/5, bullet 7
6176
6177 For a non-type template-parameter of type pointer to data member,
6178 qualification conversions (_conv.qual_) are applied. */
6179 else if (TYPE_PTRDATAMEM_P (type))
6180 {
6181 /* [temp.arg.nontype] bullet 1 says the pointer to member
6182 expression must be a pointer-to-member constant. */
6183 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6184 return error_mark_node;
6185
6186 expr = perform_qualification_conversions (type, expr);
6187 if (expr == error_mark_node)
6188 return expr;
6189 }
6190 else if (NULLPTR_TYPE_P (type))
6191 {
6192 if (expr != nullptr_node)
6193 {
6194 if (complain & tf_error)
6195 error ("%qE is not a valid template argument for type %qT "
6196 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6197 return NULL_TREE;
6198 }
6199 return expr;
6200 }
6201 /* A template non-type parameter must be one of the above. */
6202 else
6203 gcc_unreachable ();
6204
6205 /* Sanity check: did we actually convert the argument to the
6206 right type? */
6207 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6208 (type, TREE_TYPE (expr)));
6209 return convert_from_reference (expr);
6210 }
6211
6212 /* Subroutine of coerce_template_template_parms, which returns 1 if
6213 PARM_PARM and ARG_PARM match using the rule for the template
6214 parameters of template template parameters. Both PARM and ARG are
6215 template parameters; the rest of the arguments are the same as for
6216 coerce_template_template_parms.
6217 */
6218 static int
6219 coerce_template_template_parm (tree parm,
6220 tree arg,
6221 tsubst_flags_t complain,
6222 tree in_decl,
6223 tree outer_args)
6224 {
6225 if (arg == NULL_TREE || error_operand_p (arg)
6226 || parm == NULL_TREE || error_operand_p (parm))
6227 return 0;
6228
6229 if (TREE_CODE (arg) != TREE_CODE (parm))
6230 return 0;
6231
6232 switch (TREE_CODE (parm))
6233 {
6234 case TEMPLATE_DECL:
6235 /* We encounter instantiations of templates like
6236 template <template <template <class> class> class TT>
6237 class C; */
6238 {
6239 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6240 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6241
6242 if (!coerce_template_template_parms
6243 (parmparm, argparm, complain, in_decl, outer_args))
6244 return 0;
6245 }
6246 /* Fall through. */
6247
6248 case TYPE_DECL:
6249 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6250 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6251 /* Argument is a parameter pack but parameter is not. */
6252 return 0;
6253 break;
6254
6255 case PARM_DECL:
6256 /* The tsubst call is used to handle cases such as
6257
6258 template <int> class C {};
6259 template <class T, template <T> class TT> class D {};
6260 D<int, C> d;
6261
6262 i.e. the parameter list of TT depends on earlier parameters. */
6263 if (!uses_template_parms (TREE_TYPE (arg))
6264 && !same_type_p
6265 (tsubst (TREE_TYPE (parm), outer_args, complain, in_decl),
6266 TREE_TYPE (arg)))
6267 return 0;
6268
6269 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6270 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6271 /* Argument is a parameter pack but parameter is not. */
6272 return 0;
6273
6274 break;
6275
6276 default:
6277 gcc_unreachable ();
6278 }
6279
6280 return 1;
6281 }
6282
6283
6284 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6285 template template parameters. Both PARM_PARMS and ARG_PARMS are
6286 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6287 or PARM_DECL.
6288
6289 Consider the example:
6290 template <class T> class A;
6291 template<template <class U> class TT> class B;
6292
6293 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6294 the parameters to A, and OUTER_ARGS contains A. */
6295
6296 static int
6297 coerce_template_template_parms (tree parm_parms,
6298 tree arg_parms,
6299 tsubst_flags_t complain,
6300 tree in_decl,
6301 tree outer_args)
6302 {
6303 int nparms, nargs, i;
6304 tree parm, arg;
6305 int variadic_p = 0;
6306
6307 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
6308 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
6309
6310 nparms = TREE_VEC_LENGTH (parm_parms);
6311 nargs = TREE_VEC_LENGTH (arg_parms);
6312
6313 /* Determine whether we have a parameter pack at the end of the
6314 template template parameter's template parameter list. */
6315 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
6316 {
6317 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
6318
6319 if (error_operand_p (parm))
6320 return 0;
6321
6322 switch (TREE_CODE (parm))
6323 {
6324 case TEMPLATE_DECL:
6325 case TYPE_DECL:
6326 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6327 variadic_p = 1;
6328 break;
6329
6330 case PARM_DECL:
6331 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6332 variadic_p = 1;
6333 break;
6334
6335 default:
6336 gcc_unreachable ();
6337 }
6338 }
6339
6340 if (nargs != nparms
6341 && !(variadic_p && nargs >= nparms - 1))
6342 return 0;
6343
6344 /* Check all of the template parameters except the parameter pack at
6345 the end (if any). */
6346 for (i = 0; i < nparms - variadic_p; ++i)
6347 {
6348 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6349 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6350 continue;
6351
6352 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6353 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6354
6355 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6356 outer_args))
6357 return 0;
6358
6359 }
6360
6361 if (variadic_p)
6362 {
6363 /* Check each of the template parameters in the template
6364 argument against the template parameter pack at the end of
6365 the template template parameter. */
6366 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6367 return 0;
6368
6369 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6370
6371 for (; i < nargs; ++i)
6372 {
6373 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6374 continue;
6375
6376 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6377
6378 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6379 outer_args))
6380 return 0;
6381 }
6382 }
6383
6384 return 1;
6385 }
6386
6387 /* Verifies that the deduced template arguments (in TARGS) for the
6388 template template parameters (in TPARMS) represent valid bindings,
6389 by comparing the template parameter list of each template argument
6390 to the template parameter list of its corresponding template
6391 template parameter, in accordance with DR150. This
6392 routine can only be called after all template arguments have been
6393 deduced. It will return TRUE if all of the template template
6394 parameter bindings are okay, FALSE otherwise. */
6395 bool
6396 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6397 {
6398 int i, ntparms = TREE_VEC_LENGTH (tparms);
6399 bool ret = true;
6400
6401 /* We're dealing with template parms in this process. */
6402 ++processing_template_decl;
6403
6404 targs = INNERMOST_TEMPLATE_ARGS (targs);
6405
6406 for (i = 0; i < ntparms; ++i)
6407 {
6408 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6409 tree targ = TREE_VEC_ELT (targs, i);
6410
6411 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6412 {
6413 tree packed_args = NULL_TREE;
6414 int idx, len = 1;
6415
6416 if (ARGUMENT_PACK_P (targ))
6417 {
6418 /* Look inside the argument pack. */
6419 packed_args = ARGUMENT_PACK_ARGS (targ);
6420 len = TREE_VEC_LENGTH (packed_args);
6421 }
6422
6423 for (idx = 0; idx < len; ++idx)
6424 {
6425 tree targ_parms = NULL_TREE;
6426
6427 if (packed_args)
6428 /* Extract the next argument from the argument
6429 pack. */
6430 targ = TREE_VEC_ELT (packed_args, idx);
6431
6432 if (PACK_EXPANSION_P (targ))
6433 /* Look at the pattern of the pack expansion. */
6434 targ = PACK_EXPANSION_PATTERN (targ);
6435
6436 /* Extract the template parameters from the template
6437 argument. */
6438 if (TREE_CODE (targ) == TEMPLATE_DECL)
6439 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6440 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6441 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6442
6443 /* Verify that we can coerce the template template
6444 parameters from the template argument to the template
6445 parameter. This requires an exact match. */
6446 if (targ_parms
6447 && !coerce_template_template_parms
6448 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6449 targ_parms,
6450 tf_none,
6451 tparm,
6452 targs))
6453 {
6454 ret = false;
6455 goto out;
6456 }
6457 }
6458 }
6459 }
6460
6461 out:
6462
6463 --processing_template_decl;
6464 return ret;
6465 }
6466
6467 /* Since type attributes aren't mangled, we need to strip them from
6468 template type arguments. */
6469
6470 static tree
6471 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6472 {
6473 tree mv;
6474 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6475 return arg;
6476 mv = TYPE_MAIN_VARIANT (arg);
6477 arg = strip_typedefs (arg);
6478 if (TYPE_ALIGN (arg) != TYPE_ALIGN (mv)
6479 || TYPE_ATTRIBUTES (arg) != TYPE_ATTRIBUTES (mv))
6480 {
6481 if (complain & tf_warning)
6482 warning (0, "ignoring attributes on template argument %qT", arg);
6483 arg = build_aligned_type (arg, TYPE_ALIGN (mv));
6484 arg = cp_build_type_attribute_variant (arg, TYPE_ATTRIBUTES (mv));
6485 }
6486 return arg;
6487 }
6488
6489 /* Convert the indicated template ARG as necessary to match the
6490 indicated template PARM. Returns the converted ARG, or
6491 error_mark_node if the conversion was unsuccessful. Error and
6492 warning messages are issued under control of COMPLAIN. This
6493 conversion is for the Ith parameter in the parameter list. ARGS is
6494 the full set of template arguments deduced so far. */
6495
6496 static tree
6497 convert_template_argument (tree parm,
6498 tree arg,
6499 tree args,
6500 tsubst_flags_t complain,
6501 int i,
6502 tree in_decl)
6503 {
6504 tree orig_arg;
6505 tree val;
6506 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
6507
6508 if (TREE_CODE (arg) == TREE_LIST
6509 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
6510 {
6511 /* The template argument was the name of some
6512 member function. That's usually
6513 invalid, but static members are OK. In any
6514 case, grab the underlying fields/functions
6515 and issue an error later if required. */
6516 orig_arg = TREE_VALUE (arg);
6517 TREE_TYPE (arg) = unknown_type_node;
6518 }
6519
6520 orig_arg = arg;
6521
6522 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
6523 requires_type = (TREE_CODE (parm) == TYPE_DECL
6524 || requires_tmpl_type);
6525
6526 /* When determining whether an argument pack expansion is a template,
6527 look at the pattern. */
6528 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
6529 arg = PACK_EXPANSION_PATTERN (arg);
6530
6531 /* Deal with an injected-class-name used as a template template arg. */
6532 if (requires_tmpl_type && CLASS_TYPE_P (arg))
6533 {
6534 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
6535 if (TREE_CODE (t) == TEMPLATE_DECL)
6536 {
6537 if (cxx_dialect >= cxx11)
6538 /* OK under DR 1004. */;
6539 else if (complain & tf_warning_or_error)
6540 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
6541 " used as template template argument", TYPE_NAME (arg));
6542 else if (flag_pedantic_errors)
6543 t = arg;
6544
6545 arg = t;
6546 }
6547 }
6548
6549 is_tmpl_type =
6550 ((TREE_CODE (arg) == TEMPLATE_DECL
6551 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
6552 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
6553 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6554 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
6555
6556 if (is_tmpl_type
6557 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6558 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
6559 arg = TYPE_STUB_DECL (arg);
6560
6561 is_type = TYPE_P (arg) || is_tmpl_type;
6562
6563 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
6564 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
6565 {
6566 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
6567 {
6568 if (complain & tf_error)
6569 error ("invalid use of destructor %qE as a type", orig_arg);
6570 return error_mark_node;
6571 }
6572
6573 permerror (input_location,
6574 "to refer to a type member of a template parameter, "
6575 "use %<typename %E%>", orig_arg);
6576
6577 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
6578 TREE_OPERAND (arg, 1),
6579 typename_type,
6580 complain);
6581 arg = orig_arg;
6582 is_type = 1;
6583 }
6584 if (is_type != requires_type)
6585 {
6586 if (in_decl)
6587 {
6588 if (complain & tf_error)
6589 {
6590 error ("type/value mismatch at argument %d in template "
6591 "parameter list for %qD",
6592 i + 1, in_decl);
6593 if (is_type)
6594 inform (input_location,
6595 " expected a constant of type %qT, got %qT",
6596 TREE_TYPE (parm),
6597 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
6598 else if (requires_tmpl_type)
6599 inform (input_location,
6600 " expected a class template, got %qE", orig_arg);
6601 else
6602 inform (input_location,
6603 " expected a type, got %qE", orig_arg);
6604 }
6605 }
6606 return error_mark_node;
6607 }
6608 if (is_tmpl_type ^ requires_tmpl_type)
6609 {
6610 if (in_decl && (complain & tf_error))
6611 {
6612 error ("type/value mismatch at argument %d in template "
6613 "parameter list for %qD",
6614 i + 1, in_decl);
6615 if (is_tmpl_type)
6616 inform (input_location,
6617 " expected a type, got %qT", DECL_NAME (arg));
6618 else
6619 inform (input_location,
6620 " expected a class template, got %qT", orig_arg);
6621 }
6622 return error_mark_node;
6623 }
6624
6625 if (is_type)
6626 {
6627 if (requires_tmpl_type)
6628 {
6629 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6630 val = orig_arg;
6631 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
6632 /* The number of argument required is not known yet.
6633 Just accept it for now. */
6634 val = TREE_TYPE (arg);
6635 else
6636 {
6637 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6638 tree argparm;
6639
6640 /* Strip alias templates that are equivalent to another
6641 template. */
6642 arg = get_underlying_template (arg);
6643 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6644
6645 if (coerce_template_template_parms (parmparm, argparm,
6646 complain, in_decl,
6647 args))
6648 {
6649 val = arg;
6650
6651 /* TEMPLATE_TEMPLATE_PARM node is preferred over
6652 TEMPLATE_DECL. */
6653 if (val != error_mark_node)
6654 {
6655 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
6656 val = TREE_TYPE (val);
6657 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
6658 val = make_pack_expansion (val);
6659 }
6660 }
6661 else
6662 {
6663 if (in_decl && (complain & tf_error))
6664 {
6665 error ("type/value mismatch at argument %d in "
6666 "template parameter list for %qD",
6667 i + 1, in_decl);
6668 inform (input_location,
6669 " expected a template of type %qD, got %qT",
6670 parm, orig_arg);
6671 }
6672
6673 val = error_mark_node;
6674 }
6675 }
6676 }
6677 else
6678 val = orig_arg;
6679 /* We only form one instance of each template specialization.
6680 Therefore, if we use a non-canonical variant (i.e., a
6681 typedef), any future messages referring to the type will use
6682 the typedef, which is confusing if those future uses do not
6683 themselves also use the typedef. */
6684 if (TYPE_P (val))
6685 val = canonicalize_type_argument (val, complain);
6686 }
6687 else
6688 {
6689 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
6690
6691 if (invalid_nontype_parm_type_p (t, complain))
6692 return error_mark_node;
6693
6694 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6695 {
6696 if (same_type_p (t, TREE_TYPE (orig_arg)))
6697 val = orig_arg;
6698 else
6699 {
6700 /* Not sure if this is reachable, but it doesn't hurt
6701 to be robust. */
6702 error ("type mismatch in nontype parameter pack");
6703 val = error_mark_node;
6704 }
6705 }
6706 else if (!dependent_template_arg_p (orig_arg)
6707 && !uses_template_parms (t))
6708 /* We used to call digest_init here. However, digest_init
6709 will report errors, which we don't want when complain
6710 is zero. More importantly, digest_init will try too
6711 hard to convert things: for example, `0' should not be
6712 converted to pointer type at this point according to
6713 the standard. Accepting this is not merely an
6714 extension, since deciding whether or not these
6715 conversions can occur is part of determining which
6716 function template to call, or whether a given explicit
6717 argument specification is valid. */
6718 val = convert_nontype_argument (t, orig_arg, complain);
6719 else
6720 val = strip_typedefs_expr (orig_arg);
6721
6722 if (val == NULL_TREE)
6723 val = error_mark_node;
6724 else if (val == error_mark_node && (complain & tf_error))
6725 error ("could not convert template argument %qE to %qT", orig_arg, t);
6726
6727 if (TREE_CODE (val) == SCOPE_REF)
6728 {
6729 /* Strip typedefs from the SCOPE_REF. */
6730 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
6731 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
6732 complain);
6733 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
6734 QUALIFIED_NAME_IS_TEMPLATE (val));
6735 }
6736 }
6737
6738 return val;
6739 }
6740
6741 /* Coerces the remaining template arguments in INNER_ARGS (from
6742 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
6743 Returns the coerced argument pack. PARM_IDX is the position of this
6744 parameter in the template parameter list. ARGS is the original
6745 template argument list. */
6746 static tree
6747 coerce_template_parameter_pack (tree parms,
6748 int parm_idx,
6749 tree args,
6750 tree inner_args,
6751 int arg_idx,
6752 tree new_args,
6753 int* lost,
6754 tree in_decl,
6755 tsubst_flags_t complain)
6756 {
6757 tree parm = TREE_VEC_ELT (parms, parm_idx);
6758 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6759 tree packed_args;
6760 tree argument_pack;
6761 tree packed_parms = NULL_TREE;
6762
6763 if (arg_idx > nargs)
6764 arg_idx = nargs;
6765
6766 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
6767 {
6768 /* When the template parameter is a non-type template parameter pack
6769 or template template parameter pack whose type or template
6770 parameters use parameter packs, we know exactly how many arguments
6771 we are looking for. Build a vector of the instantiated decls for
6772 these template parameters in PACKED_PARMS. */
6773 /* We can't use make_pack_expansion here because it would interpret a
6774 _DECL as a use rather than a declaration. */
6775 tree decl = TREE_VALUE (parm);
6776 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
6777 SET_PACK_EXPANSION_PATTERN (exp, decl);
6778 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
6779 SET_TYPE_STRUCTURAL_EQUALITY (exp);
6780
6781 TREE_VEC_LENGTH (args)--;
6782 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
6783 TREE_VEC_LENGTH (args)++;
6784
6785 if (packed_parms == error_mark_node)
6786 return error_mark_node;
6787
6788 /* If we're doing a partial instantiation of a member template,
6789 verify that all of the types used for the non-type
6790 template parameter pack are, in fact, valid for non-type
6791 template parameters. */
6792 if (arg_idx < nargs
6793 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
6794 {
6795 int j, len = TREE_VEC_LENGTH (packed_parms);
6796 for (j = 0; j < len; ++j)
6797 {
6798 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
6799 if (invalid_nontype_parm_type_p (t, complain))
6800 return error_mark_node;
6801 }
6802 }
6803
6804 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
6805 }
6806 else
6807 packed_args = make_tree_vec (nargs - arg_idx);
6808
6809 /* Convert the remaining arguments, which will be a part of the
6810 parameter pack "parm". */
6811 for (; arg_idx < nargs; ++arg_idx)
6812 {
6813 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
6814 tree actual_parm = TREE_VALUE (parm);
6815 int pack_idx = arg_idx - parm_idx;
6816
6817 if (packed_parms)
6818 {
6819 /* Once we've packed as many args as we have types, stop. */
6820 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
6821 break;
6822 else if (PACK_EXPANSION_P (arg))
6823 /* We don't know how many args we have yet, just
6824 use the unconverted ones for now. */
6825 return NULL_TREE;
6826 else
6827 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
6828 }
6829
6830 if (arg == error_mark_node)
6831 {
6832 if (complain & tf_error)
6833 error ("template argument %d is invalid", arg_idx + 1);
6834 }
6835 else
6836 arg = convert_template_argument (actual_parm,
6837 arg, new_args, complain, parm_idx,
6838 in_decl);
6839 if (arg == error_mark_node)
6840 (*lost)++;
6841 TREE_VEC_ELT (packed_args, pack_idx) = arg;
6842 }
6843
6844 if (arg_idx - parm_idx < TREE_VEC_LENGTH (packed_args)
6845 && TREE_VEC_LENGTH (packed_args) > 0)
6846 {
6847 if (complain & tf_error)
6848 error ("wrong number of template arguments (%d, should be %d)",
6849 arg_idx - parm_idx, TREE_VEC_LENGTH (packed_args));
6850 return error_mark_node;
6851 }
6852
6853 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
6854 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
6855 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
6856 else
6857 {
6858 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
6859 TREE_TYPE (argument_pack)
6860 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
6861 TREE_CONSTANT (argument_pack) = 1;
6862 }
6863
6864 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
6865 #ifdef ENABLE_CHECKING
6866 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
6867 TREE_VEC_LENGTH (packed_args));
6868 #endif
6869 return argument_pack;
6870 }
6871
6872 /* Returns the number of pack expansions in the template argument vector
6873 ARGS. */
6874
6875 static int
6876 pack_expansion_args_count (tree args)
6877 {
6878 int i;
6879 int count = 0;
6880 if (args)
6881 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
6882 {
6883 tree elt = TREE_VEC_ELT (args, i);
6884 if (elt && PACK_EXPANSION_P (elt))
6885 ++count;
6886 }
6887 return count;
6888 }
6889
6890 /* Convert all template arguments to their appropriate types, and
6891 return a vector containing the innermost resulting template
6892 arguments. If any error occurs, return error_mark_node. Error and
6893 warning messages are issued under control of COMPLAIN.
6894
6895 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
6896 for arguments not specified in ARGS. Otherwise, if
6897 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
6898 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
6899 USE_DEFAULT_ARGS is false, then all arguments must be specified in
6900 ARGS. */
6901
6902 static tree
6903 coerce_template_parms (tree parms,
6904 tree args,
6905 tree in_decl,
6906 tsubst_flags_t complain,
6907 bool require_all_args,
6908 bool use_default_args)
6909 {
6910 int nparms, nargs, parm_idx, arg_idx, lost = 0;
6911 tree orig_inner_args;
6912 tree inner_args;
6913 tree new_args;
6914 tree new_inner_args;
6915 int saved_unevaluated_operand;
6916 int saved_inhibit_evaluation_warnings;
6917
6918 /* When used as a boolean value, indicates whether this is a
6919 variadic template parameter list. Since it's an int, we can also
6920 subtract it from nparms to get the number of non-variadic
6921 parameters. */
6922 int variadic_p = 0;
6923 int variadic_args_p = 0;
6924 int post_variadic_parms = 0;
6925
6926 /* Likewise for parameters with default arguments. */
6927 int default_p = 0;
6928
6929 if (args == error_mark_node)
6930 return error_mark_node;
6931
6932 nparms = TREE_VEC_LENGTH (parms);
6933
6934 /* Determine if there are any parameter packs or default arguments. */
6935 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
6936 {
6937 tree parm = TREE_VEC_ELT (parms, parm_idx);
6938 if (variadic_p)
6939 ++post_variadic_parms;
6940 if (template_parameter_pack_p (TREE_VALUE (parm)))
6941 ++variadic_p;
6942 if (TREE_PURPOSE (parm))
6943 ++default_p;
6944 }
6945
6946 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
6947 /* If there are no parameters that follow a parameter pack, we need to
6948 expand any argument packs so that we can deduce a parameter pack from
6949 some non-packed args followed by an argument pack, as in variadic85.C.
6950 If there are such parameters, we need to leave argument packs intact
6951 so the arguments are assigned properly. This can happen when dealing
6952 with a nested class inside a partial specialization of a class
6953 template, as in variadic92.C, or when deducing a template parameter pack
6954 from a sub-declarator, as in variadic114.C. */
6955 if (!post_variadic_parms)
6956 inner_args = expand_template_argument_pack (inner_args);
6957
6958 /* Count any pack expansion args. */
6959 variadic_args_p = pack_expansion_args_count (inner_args);
6960
6961 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6962 if ((nargs > nparms && !variadic_p)
6963 || (nargs < nparms - variadic_p
6964 && require_all_args
6965 && !variadic_args_p
6966 && (!use_default_args
6967 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
6968 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
6969 {
6970 if (complain & tf_error)
6971 {
6972 if (variadic_p || default_p)
6973 {
6974 nparms -= variadic_p + default_p;
6975 error ("wrong number of template arguments "
6976 "(%d, should be at least %d)", nargs, nparms);
6977 }
6978 else
6979 error ("wrong number of template arguments "
6980 "(%d, should be %d)", nargs, nparms);
6981
6982 if (in_decl)
6983 inform (input_location, "provided for %q+D", in_decl);
6984 }
6985
6986 return error_mark_node;
6987 }
6988 /* We can't pass a pack expansion to a non-pack parameter of an alias
6989 template (DR 1430). */
6990 else if (in_decl && DECL_ALIAS_TEMPLATE_P (in_decl)
6991 && variadic_args_p
6992 && nargs - variadic_args_p < nparms - variadic_p)
6993 {
6994 if (complain & tf_error)
6995 {
6996 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
6997 {
6998 tree arg = TREE_VEC_ELT (inner_args, i);
6999 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
7000
7001 if (PACK_EXPANSION_P (arg)
7002 && !template_parameter_pack_p (parm))
7003 {
7004 error ("pack expansion argument for non-pack parameter "
7005 "%qD of alias template %qD", parm, in_decl);
7006 inform (DECL_SOURCE_LOCATION (parm), "declared here");
7007 goto found;
7008 }
7009 }
7010 gcc_unreachable ();
7011 found:;
7012 }
7013 return error_mark_node;
7014 }
7015
7016 /* We need to evaluate the template arguments, even though this
7017 template-id may be nested within a "sizeof". */
7018 saved_unevaluated_operand = cp_unevaluated_operand;
7019 cp_unevaluated_operand = 0;
7020 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
7021 c_inhibit_evaluation_warnings = 0;
7022 new_inner_args = make_tree_vec (nparms);
7023 new_args = add_outermost_template_args (args, new_inner_args);
7024 int pack_adjust = 0;
7025 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
7026 {
7027 tree arg;
7028 tree parm;
7029
7030 /* Get the Ith template parameter. */
7031 parm = TREE_VEC_ELT (parms, parm_idx);
7032
7033 if (parm == error_mark_node)
7034 {
7035 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
7036 continue;
7037 }
7038
7039 /* Calculate the next argument. */
7040 if (arg_idx < nargs)
7041 arg = TREE_VEC_ELT (inner_args, arg_idx);
7042 else
7043 arg = NULL_TREE;
7044
7045 if (template_parameter_pack_p (TREE_VALUE (parm))
7046 && !(arg && ARGUMENT_PACK_P (arg)))
7047 {
7048 /* Some arguments will be placed in the
7049 template parameter pack PARM. */
7050 arg = coerce_template_parameter_pack (parms, parm_idx, args,
7051 inner_args, arg_idx,
7052 new_args, &lost,
7053 in_decl, complain);
7054
7055 if (arg == NULL_TREE)
7056 {
7057 /* We don't know how many args we have yet, just use the
7058 unconverted (and still packed) ones for now. */
7059 new_inner_args = orig_inner_args;
7060 arg_idx = nargs;
7061 break;
7062 }
7063
7064 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
7065
7066 /* Store this argument. */
7067 if (arg == error_mark_node)
7068 {
7069 lost++;
7070 /* We are done with all of the arguments. */
7071 arg_idx = nargs;
7072 }
7073 else
7074 {
7075 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
7076 arg_idx += pack_adjust;
7077 }
7078
7079 continue;
7080 }
7081 else if (arg)
7082 {
7083 if (PACK_EXPANSION_P (arg))
7084 {
7085 /* "If every valid specialization of a variadic template
7086 requires an empty template parameter pack, the template is
7087 ill-formed, no diagnostic required." So check that the
7088 pattern works with this parameter. */
7089 tree pattern = PACK_EXPANSION_PATTERN (arg);
7090 tree conv = convert_template_argument (TREE_VALUE (parm),
7091 pattern, new_args,
7092 complain, parm_idx,
7093 in_decl);
7094 if (conv == error_mark_node)
7095 {
7096 inform (input_location, "so any instantiation with a "
7097 "non-empty parameter pack would be ill-formed");
7098 ++lost;
7099 }
7100 else if (TYPE_P (conv) && !TYPE_P (pattern))
7101 /* Recover from missing typename. */
7102 TREE_VEC_ELT (inner_args, arg_idx)
7103 = make_pack_expansion (conv);
7104
7105 /* We don't know how many args we have yet, just
7106 use the unconverted ones for now. */
7107 new_inner_args = inner_args;
7108 arg_idx = nargs;
7109 break;
7110 }
7111 }
7112 else if (require_all_args)
7113 {
7114 /* There must be a default arg in this case. */
7115 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
7116 complain, in_decl);
7117 /* The position of the first default template argument,
7118 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
7119 Record that. */
7120 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7121 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7122 arg_idx - pack_adjust);
7123 }
7124 else
7125 break;
7126
7127 if (arg == error_mark_node)
7128 {
7129 if (complain & tf_error)
7130 error ("template argument %d is invalid", arg_idx + 1);
7131 }
7132 else if (!arg)
7133 /* This only occurs if there was an error in the template
7134 parameter list itself (which we would already have
7135 reported) that we are trying to recover from, e.g., a class
7136 template with a parameter list such as
7137 template<typename..., typename>. */
7138 ++lost;
7139 else
7140 arg = convert_template_argument (TREE_VALUE (parm),
7141 arg, new_args, complain,
7142 parm_idx, in_decl);
7143
7144 if (arg == error_mark_node)
7145 lost++;
7146 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
7147 }
7148 cp_unevaluated_operand = saved_unevaluated_operand;
7149 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
7150
7151 if (variadic_p && arg_idx < nargs)
7152 {
7153 if (complain & tf_error)
7154 {
7155 error ("wrong number of template arguments "
7156 "(%d, should be %d)", nargs, arg_idx);
7157 if (in_decl)
7158 error ("provided for %q+D", in_decl);
7159 }
7160 return error_mark_node;
7161 }
7162
7163 if (lost)
7164 return error_mark_node;
7165
7166 #ifdef ENABLE_CHECKING
7167 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7168 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7169 TREE_VEC_LENGTH (new_inner_args));
7170 #endif
7171
7172 return new_inner_args;
7173 }
7174
7175 /* Like coerce_template_parms. If PARMS represents all template
7176 parameters levels, this function returns a vector of vectors
7177 representing all the resulting argument levels. Note that in this
7178 case, only the innermost arguments are coerced because the
7179 outermost ones are supposed to have been coerced already.
7180
7181 Otherwise, if PARMS represents only (the innermost) vector of
7182 parameters, this function returns a vector containing just the
7183 innermost resulting arguments. */
7184
7185 static tree
7186 coerce_innermost_template_parms (tree parms,
7187 tree args,
7188 tree in_decl,
7189 tsubst_flags_t complain,
7190 bool require_all_args,
7191 bool use_default_args)
7192 {
7193 int parms_depth = TMPL_PARMS_DEPTH (parms);
7194 int args_depth = TMPL_ARGS_DEPTH (args);
7195 tree coerced_args;
7196
7197 if (parms_depth > 1)
7198 {
7199 coerced_args = make_tree_vec (parms_depth);
7200 tree level;
7201 int cur_depth;
7202
7203 for (level = parms, cur_depth = parms_depth;
7204 parms_depth > 0 && level != NULL_TREE;
7205 level = TREE_CHAIN (level), --cur_depth)
7206 {
7207 tree l;
7208 if (cur_depth == args_depth)
7209 l = coerce_template_parms (TREE_VALUE (level),
7210 args, in_decl, complain,
7211 require_all_args,
7212 use_default_args);
7213 else
7214 l = TMPL_ARGS_LEVEL (args, cur_depth);
7215
7216 if (l == error_mark_node)
7217 return error_mark_node;
7218
7219 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
7220 }
7221 }
7222 else
7223 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
7224 args, in_decl, complain,
7225 require_all_args,
7226 use_default_args);
7227 return coerced_args;
7228 }
7229
7230 /* Returns 1 if template args OT and NT are equivalent. */
7231
7232 static int
7233 template_args_equal (tree ot, tree nt)
7234 {
7235 if (nt == ot)
7236 return 1;
7237 if (nt == NULL_TREE || ot == NULL_TREE)
7238 return false;
7239
7240 if (TREE_CODE (nt) == TREE_VEC)
7241 /* For member templates */
7242 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
7243 else if (PACK_EXPANSION_P (ot))
7244 return (PACK_EXPANSION_P (nt)
7245 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
7246 PACK_EXPANSION_PATTERN (nt))
7247 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
7248 PACK_EXPANSION_EXTRA_ARGS (nt)));
7249 else if (ARGUMENT_PACK_P (ot))
7250 {
7251 int i, len;
7252 tree opack, npack;
7253
7254 if (!ARGUMENT_PACK_P (nt))
7255 return 0;
7256
7257 opack = ARGUMENT_PACK_ARGS (ot);
7258 npack = ARGUMENT_PACK_ARGS (nt);
7259 len = TREE_VEC_LENGTH (opack);
7260 if (TREE_VEC_LENGTH (npack) != len)
7261 return 0;
7262 for (i = 0; i < len; ++i)
7263 if (!template_args_equal (TREE_VEC_ELT (opack, i),
7264 TREE_VEC_ELT (npack, i)))
7265 return 0;
7266 return 1;
7267 }
7268 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
7269 {
7270 /* We get here probably because we are in the middle of substituting
7271 into the pattern of a pack expansion. In that case the
7272 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
7273 interested in. So we want to use the initial pack argument for
7274 the comparison. */
7275 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
7276 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
7277 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
7278 return template_args_equal (ot, nt);
7279 }
7280 else if (TYPE_P (nt))
7281 {
7282 if (!TYPE_P (ot))
7283 return false;
7284 /* Don't treat an alias template specialization with dependent
7285 arguments as equivalent to its underlying type when used as a
7286 template argument; we need them to hash differently. */
7287 bool ndep = dependent_alias_template_spec_p (nt);
7288 ++processing_template_decl;
7289 bool odep = dependent_alias_template_spec_p (ot);
7290 --processing_template_decl;
7291 if (ndep != odep)
7292 return false;
7293 else if (ndep)
7294 return (TYPE_TI_TEMPLATE (nt) == TYPE_TI_TEMPLATE (ot)
7295 && template_args_equal (TYPE_TI_ARGS (nt), TYPE_TI_ARGS (ot)));
7296 else
7297 return same_type_p (ot, nt);
7298 }
7299 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
7300 return 0;
7301 else
7302 return cp_tree_equal (ot, nt);
7303 }
7304
7305 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
7306 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
7307 NEWARG_PTR with the offending arguments if they are non-NULL. */
7308
7309 static int
7310 comp_template_args_with_info (tree oldargs, tree newargs,
7311 tree *oldarg_ptr, tree *newarg_ptr)
7312 {
7313 int i;
7314
7315 if (oldargs == newargs)
7316 return 1;
7317
7318 if (!oldargs || !newargs)
7319 return 0;
7320
7321 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
7322 return 0;
7323
7324 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
7325 {
7326 tree nt = TREE_VEC_ELT (newargs, i);
7327 tree ot = TREE_VEC_ELT (oldargs, i);
7328
7329 if (! template_args_equal (ot, nt))
7330 {
7331 if (oldarg_ptr != NULL)
7332 *oldarg_ptr = ot;
7333 if (newarg_ptr != NULL)
7334 *newarg_ptr = nt;
7335 return 0;
7336 }
7337 }
7338 return 1;
7339 }
7340
7341 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
7342 of template arguments. Returns 0 otherwise. */
7343
7344 int
7345 comp_template_args (tree oldargs, tree newargs)
7346 {
7347 return comp_template_args_with_info (oldargs, newargs, NULL, NULL);
7348 }
7349
7350 static void
7351 add_pending_template (tree d)
7352 {
7353 tree ti = (TYPE_P (d)
7354 ? CLASSTYPE_TEMPLATE_INFO (d)
7355 : DECL_TEMPLATE_INFO (d));
7356 struct pending_template *pt;
7357 int level;
7358
7359 if (TI_PENDING_TEMPLATE_FLAG (ti))
7360 return;
7361
7362 /* We are called both from instantiate_decl, where we've already had a
7363 tinst_level pushed, and instantiate_template, where we haven't.
7364 Compensate. */
7365 level = !current_tinst_level || current_tinst_level->decl != d;
7366
7367 if (level)
7368 push_tinst_level (d);
7369
7370 pt = ggc_alloc<pending_template> ();
7371 pt->next = NULL;
7372 pt->tinst = current_tinst_level;
7373 if (last_pending_template)
7374 last_pending_template->next = pt;
7375 else
7376 pending_templates = pt;
7377
7378 last_pending_template = pt;
7379
7380 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
7381
7382 if (level)
7383 pop_tinst_level ();
7384 }
7385
7386
7387 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
7388 ARGLIST. Valid choices for FNS are given in the cp-tree.def
7389 documentation for TEMPLATE_ID_EXPR. */
7390
7391 tree
7392 lookup_template_function (tree fns, tree arglist)
7393 {
7394 tree type;
7395
7396 if (fns == error_mark_node || arglist == error_mark_node)
7397 return error_mark_node;
7398
7399 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
7400
7401 if (!is_overloaded_fn (fns) && !identifier_p (fns))
7402 {
7403 error ("%q#D is not a function template", fns);
7404 return error_mark_node;
7405 }
7406
7407 if (BASELINK_P (fns))
7408 {
7409 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
7410 unknown_type_node,
7411 BASELINK_FUNCTIONS (fns),
7412 arglist);
7413 return fns;
7414 }
7415
7416 type = TREE_TYPE (fns);
7417 if (TREE_CODE (fns) == OVERLOAD || !type)
7418 type = unknown_type_node;
7419
7420 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
7421 }
7422
7423 /* Within the scope of a template class S<T>, the name S gets bound
7424 (in build_self_reference) to a TYPE_DECL for the class, not a
7425 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
7426 or one of its enclosing classes, and that type is a template,
7427 return the associated TEMPLATE_DECL. Otherwise, the original
7428 DECL is returned.
7429
7430 Also handle the case when DECL is a TREE_LIST of ambiguous
7431 injected-class-names from different bases. */
7432
7433 tree
7434 maybe_get_template_decl_from_type_decl (tree decl)
7435 {
7436 if (decl == NULL_TREE)
7437 return decl;
7438
7439 /* DR 176: A lookup that finds an injected-class-name (10.2
7440 [class.member.lookup]) can result in an ambiguity in certain cases
7441 (for example, if it is found in more than one base class). If all of
7442 the injected-class-names that are found refer to specializations of
7443 the same class template, and if the name is followed by a
7444 template-argument-list, the reference refers to the class template
7445 itself and not a specialization thereof, and is not ambiguous. */
7446 if (TREE_CODE (decl) == TREE_LIST)
7447 {
7448 tree t, tmpl = NULL_TREE;
7449 for (t = decl; t; t = TREE_CHAIN (t))
7450 {
7451 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
7452 if (!tmpl)
7453 tmpl = elt;
7454 else if (tmpl != elt)
7455 break;
7456 }
7457 if (tmpl && t == NULL_TREE)
7458 return tmpl;
7459 else
7460 return decl;
7461 }
7462
7463 return (decl != NULL_TREE
7464 && DECL_SELF_REFERENCE_P (decl)
7465 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
7466 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
7467 }
7468
7469 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
7470 parameters, find the desired type.
7471
7472 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
7473
7474 IN_DECL, if non-NULL, is the template declaration we are trying to
7475 instantiate.
7476
7477 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
7478 the class we are looking up.
7479
7480 Issue error and warning messages under control of COMPLAIN.
7481
7482 If the template class is really a local class in a template
7483 function, then the FUNCTION_CONTEXT is the function in which it is
7484 being instantiated.
7485
7486 ??? Note that this function is currently called *twice* for each
7487 template-id: the first time from the parser, while creating the
7488 incomplete type (finish_template_type), and the second type during the
7489 real instantiation (instantiate_template_class). This is surely something
7490 that we want to avoid. It also causes some problems with argument
7491 coercion (see convert_nontype_argument for more information on this). */
7492
7493 static tree
7494 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
7495 int entering_scope, tsubst_flags_t complain)
7496 {
7497 tree templ = NULL_TREE, parmlist;
7498 tree t;
7499 spec_entry **slot;
7500 spec_entry *entry;
7501 spec_entry elt;
7502 hashval_t hash;
7503
7504 if (identifier_p (d1))
7505 {
7506 tree value = innermost_non_namespace_value (d1);
7507 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
7508 templ = value;
7509 else
7510 {
7511 if (context)
7512 push_decl_namespace (context);
7513 templ = lookup_name (d1);
7514 templ = maybe_get_template_decl_from_type_decl (templ);
7515 if (context)
7516 pop_decl_namespace ();
7517 }
7518 if (templ)
7519 context = DECL_CONTEXT (templ);
7520 }
7521 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
7522 {
7523 tree type = TREE_TYPE (d1);
7524
7525 /* If we are declaring a constructor, say A<T>::A<T>, we will get
7526 an implicit typename for the second A. Deal with it. */
7527 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
7528 type = TREE_TYPE (type);
7529
7530 if (CLASSTYPE_TEMPLATE_INFO (type))
7531 {
7532 templ = CLASSTYPE_TI_TEMPLATE (type);
7533 d1 = DECL_NAME (templ);
7534 }
7535 }
7536 else if (TREE_CODE (d1) == ENUMERAL_TYPE
7537 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
7538 {
7539 templ = TYPE_TI_TEMPLATE (d1);
7540 d1 = DECL_NAME (templ);
7541 }
7542 else if (DECL_TYPE_TEMPLATE_P (d1))
7543 {
7544 templ = d1;
7545 d1 = DECL_NAME (templ);
7546 context = DECL_CONTEXT (templ);
7547 }
7548 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
7549 {
7550 templ = d1;
7551 d1 = DECL_NAME (templ);
7552 }
7553
7554 /* Issue an error message if we didn't find a template. */
7555 if (! templ)
7556 {
7557 if (complain & tf_error)
7558 error ("%qT is not a template", d1);
7559 return error_mark_node;
7560 }
7561
7562 if (TREE_CODE (templ) != TEMPLATE_DECL
7563 /* Make sure it's a user visible template, if it was named by
7564 the user. */
7565 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
7566 && !PRIMARY_TEMPLATE_P (templ)))
7567 {
7568 if (complain & tf_error)
7569 {
7570 error ("non-template type %qT used as a template", d1);
7571 if (in_decl)
7572 error ("for template declaration %q+D", in_decl);
7573 }
7574 return error_mark_node;
7575 }
7576
7577 complain &= ~tf_user;
7578
7579 /* An alias that just changes the name of a template is equivalent to the
7580 other template, so if any of the arguments are pack expansions, strip
7581 the alias to avoid problems with a pack expansion passed to a non-pack
7582 alias template parameter (DR 1430). */
7583 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
7584 templ = get_underlying_template (templ);
7585
7586 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
7587 {
7588 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
7589 template arguments */
7590
7591 tree parm;
7592 tree arglist2;
7593 tree outer;
7594
7595 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
7596
7597 /* Consider an example where a template template parameter declared as
7598
7599 template <class T, class U = std::allocator<T> > class TT
7600
7601 The template parameter level of T and U are one level larger than
7602 of TT. To proper process the default argument of U, say when an
7603 instantiation `TT<int>' is seen, we need to build the full
7604 arguments containing {int} as the innermost level. Outer levels,
7605 available when not appearing as default template argument, can be
7606 obtained from the arguments of the enclosing template.
7607
7608 Suppose that TT is later substituted with std::vector. The above
7609 instantiation is `TT<int, std::allocator<T> >' with TT at
7610 level 1, and T at level 2, while the template arguments at level 1
7611 becomes {std::vector} and the inner level 2 is {int}. */
7612
7613 outer = DECL_CONTEXT (templ);
7614 if (outer)
7615 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
7616 else if (current_template_parms)
7617 /* This is an argument of the current template, so we haven't set
7618 DECL_CONTEXT yet. */
7619 outer = current_template_args ();
7620
7621 if (outer)
7622 arglist = add_to_template_args (outer, arglist);
7623
7624 arglist2 = coerce_template_parms (parmlist, arglist, templ,
7625 complain,
7626 /*require_all_args=*/true,
7627 /*use_default_args=*/true);
7628 if (arglist2 == error_mark_node
7629 || (!uses_template_parms (arglist2)
7630 && check_instantiated_args (templ, arglist2, complain)))
7631 return error_mark_node;
7632
7633 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
7634 return parm;
7635 }
7636 else
7637 {
7638 tree template_type = TREE_TYPE (templ);
7639 tree gen_tmpl;
7640 tree type_decl;
7641 tree found = NULL_TREE;
7642 int arg_depth;
7643 int parm_depth;
7644 int is_dependent_type;
7645 int use_partial_inst_tmpl = false;
7646
7647 if (template_type == error_mark_node)
7648 /* An error occurred while building the template TEMPL, and a
7649 diagnostic has most certainly been emitted for that
7650 already. Let's propagate that error. */
7651 return error_mark_node;
7652
7653 gen_tmpl = most_general_template (templ);
7654 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
7655 parm_depth = TMPL_PARMS_DEPTH (parmlist);
7656 arg_depth = TMPL_ARGS_DEPTH (arglist);
7657
7658 if (arg_depth == 1 && parm_depth > 1)
7659 {
7660 /* We've been given an incomplete set of template arguments.
7661 For example, given:
7662
7663 template <class T> struct S1 {
7664 template <class U> struct S2 {};
7665 template <class U> struct S2<U*> {};
7666 };
7667
7668 we will be called with an ARGLIST of `U*', but the
7669 TEMPLATE will be `template <class T> template
7670 <class U> struct S1<T>::S2'. We must fill in the missing
7671 arguments. */
7672 arglist
7673 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
7674 arglist);
7675 arg_depth = TMPL_ARGS_DEPTH (arglist);
7676 }
7677
7678 /* Now we should have enough arguments. */
7679 gcc_assert (parm_depth == arg_depth);
7680
7681 /* From here on, we're only interested in the most general
7682 template. */
7683
7684 /* Calculate the BOUND_ARGS. These will be the args that are
7685 actually tsubst'd into the definition to create the
7686 instantiation. */
7687 if (parm_depth > 1)
7688 {
7689 /* We have multiple levels of arguments to coerce, at once. */
7690 int i;
7691 int saved_depth = TMPL_ARGS_DEPTH (arglist);
7692
7693 tree bound_args = make_tree_vec (parm_depth);
7694
7695 for (i = saved_depth,
7696 t = DECL_TEMPLATE_PARMS (gen_tmpl);
7697 i > 0 && t != NULL_TREE;
7698 --i, t = TREE_CHAIN (t))
7699 {
7700 tree a;
7701 if (i == saved_depth)
7702 a = coerce_template_parms (TREE_VALUE (t),
7703 arglist, gen_tmpl,
7704 complain,
7705 /*require_all_args=*/true,
7706 /*use_default_args=*/true);
7707 else
7708 /* Outer levels should have already been coerced. */
7709 a = TMPL_ARGS_LEVEL (arglist, i);
7710
7711 /* Don't process further if one of the levels fails. */
7712 if (a == error_mark_node)
7713 {
7714 /* Restore the ARGLIST to its full size. */
7715 TREE_VEC_LENGTH (arglist) = saved_depth;
7716 return error_mark_node;
7717 }
7718
7719 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
7720
7721 /* We temporarily reduce the length of the ARGLIST so
7722 that coerce_template_parms will see only the arguments
7723 corresponding to the template parameters it is
7724 examining. */
7725 TREE_VEC_LENGTH (arglist)--;
7726 }
7727
7728 /* Restore the ARGLIST to its full size. */
7729 TREE_VEC_LENGTH (arglist) = saved_depth;
7730
7731 arglist = bound_args;
7732 }
7733 else
7734 arglist
7735 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
7736 INNERMOST_TEMPLATE_ARGS (arglist),
7737 gen_tmpl,
7738 complain,
7739 /*require_all_args=*/true,
7740 /*use_default_args=*/true);
7741
7742 if (arglist == error_mark_node)
7743 /* We were unable to bind the arguments. */
7744 return error_mark_node;
7745
7746 /* In the scope of a template class, explicit references to the
7747 template class refer to the type of the template, not any
7748 instantiation of it. For example, in:
7749
7750 template <class T> class C { void f(C<T>); }
7751
7752 the `C<T>' is just the same as `C'. Outside of the
7753 class, however, such a reference is an instantiation. */
7754 if ((entering_scope
7755 || !PRIMARY_TEMPLATE_P (gen_tmpl)
7756 || currently_open_class (template_type))
7757 /* comp_template_args is expensive, check it last. */
7758 && comp_template_args (TYPE_TI_ARGS (template_type),
7759 arglist))
7760 return template_type;
7761
7762 /* If we already have this specialization, return it. */
7763 elt.tmpl = gen_tmpl;
7764 elt.args = arglist;
7765 hash = spec_hasher::hash (&elt);
7766 entry = type_specializations->find_with_hash (&elt, hash);
7767
7768 if (entry)
7769 return entry->spec;
7770
7771 is_dependent_type = uses_template_parms (arglist);
7772
7773 /* If the deduced arguments are invalid, then the binding
7774 failed. */
7775 if (!is_dependent_type
7776 && check_instantiated_args (gen_tmpl,
7777 INNERMOST_TEMPLATE_ARGS (arglist),
7778 complain))
7779 return error_mark_node;
7780
7781 if (!is_dependent_type
7782 && !PRIMARY_TEMPLATE_P (gen_tmpl)
7783 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
7784 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
7785 {
7786 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
7787 DECL_NAME (gen_tmpl),
7788 /*tag_scope=*/ts_global);
7789 return found;
7790 }
7791
7792 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
7793 complain, in_decl);
7794 if (context == error_mark_node)
7795 return error_mark_node;
7796
7797 if (!context)
7798 context = global_namespace;
7799
7800 /* Create the type. */
7801 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7802 {
7803 /* The user referred to a specialization of an alias
7804 template represented by GEN_TMPL.
7805
7806 [temp.alias]/2 says:
7807
7808 When a template-id refers to the specialization of an
7809 alias template, it is equivalent to the associated
7810 type obtained by substitution of its
7811 template-arguments for the template-parameters in the
7812 type-id of the alias template. */
7813
7814 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
7815 /* Note that the call above (by indirectly calling
7816 register_specialization in tsubst_decl) registers the
7817 TYPE_DECL representing the specialization of the alias
7818 template. So next time someone substitutes ARGLIST for
7819 the template parms into the alias template (GEN_TMPL),
7820 she'll get that TYPE_DECL back. */
7821
7822 if (t == error_mark_node)
7823 return t;
7824 }
7825 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
7826 {
7827 if (!is_dependent_type)
7828 {
7829 set_current_access_from_decl (TYPE_NAME (template_type));
7830 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
7831 tsubst (ENUM_UNDERLYING_TYPE (template_type),
7832 arglist, complain, in_decl),
7833 SCOPED_ENUM_P (template_type), NULL);
7834
7835 if (t == error_mark_node)
7836 return t;
7837 }
7838 else
7839 {
7840 /* We don't want to call start_enum for this type, since
7841 the values for the enumeration constants may involve
7842 template parameters. And, no one should be interested
7843 in the enumeration constants for such a type. */
7844 t = cxx_make_type (ENUMERAL_TYPE);
7845 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
7846 }
7847 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
7848 ENUM_FIXED_UNDERLYING_TYPE_P (t)
7849 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
7850 }
7851 else if (CLASS_TYPE_P (template_type))
7852 {
7853 t = make_class_type (TREE_CODE (template_type));
7854 CLASSTYPE_DECLARED_CLASS (t)
7855 = CLASSTYPE_DECLARED_CLASS (template_type);
7856 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
7857 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
7858
7859 /* A local class. Make sure the decl gets registered properly. */
7860 if (context == current_function_decl)
7861 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
7862
7863 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
7864 /* This instantiation is another name for the primary
7865 template type. Set the TYPE_CANONICAL field
7866 appropriately. */
7867 TYPE_CANONICAL (t) = template_type;
7868 else if (any_template_arguments_need_structural_equality_p (arglist))
7869 /* Some of the template arguments require structural
7870 equality testing, so this template class requires
7871 structural equality testing. */
7872 SET_TYPE_STRUCTURAL_EQUALITY (t);
7873 }
7874 else
7875 gcc_unreachable ();
7876
7877 /* If we called start_enum or pushtag above, this information
7878 will already be set up. */
7879 if (!TYPE_NAME (t))
7880 {
7881 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
7882
7883 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
7884 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
7885 DECL_SOURCE_LOCATION (type_decl)
7886 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
7887 }
7888 else
7889 type_decl = TYPE_NAME (t);
7890
7891 if (CLASS_TYPE_P (template_type))
7892 {
7893 TREE_PRIVATE (type_decl)
7894 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
7895 TREE_PROTECTED (type_decl)
7896 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
7897 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
7898 {
7899 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
7900 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
7901 }
7902 }
7903
7904 if (OVERLOAD_TYPE_P (t)
7905 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7906 {
7907 if (tree attributes
7908 = lookup_attribute ("abi_tag", TYPE_ATTRIBUTES (template_type)))
7909 {
7910 if (!TREE_CHAIN (attributes))
7911 TYPE_ATTRIBUTES (t) = attributes;
7912 else
7913 TYPE_ATTRIBUTES (t)
7914 = build_tree_list (TREE_PURPOSE (attributes),
7915 TREE_VALUE (attributes));
7916 }
7917 }
7918
7919 /* Let's consider the explicit specialization of a member
7920 of a class template specialization that is implicitly instantiated,
7921 e.g.:
7922 template<class T>
7923 struct S
7924 {
7925 template<class U> struct M {}; //#0
7926 };
7927
7928 template<>
7929 template<>
7930 struct S<int>::M<char> //#1
7931 {
7932 int i;
7933 };
7934 [temp.expl.spec]/4 says this is valid.
7935
7936 In this case, when we write:
7937 S<int>::M<char> m;
7938
7939 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
7940 the one of #0.
7941
7942 When we encounter #1, we want to store the partial instantiation
7943 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
7944
7945 For all cases other than this "explicit specialization of member of a
7946 class template", we just want to store the most general template into
7947 the CLASSTYPE_TI_TEMPLATE of M.
7948
7949 This case of "explicit specialization of member of a class template"
7950 only happens when:
7951 1/ the enclosing class is an instantiation of, and therefore not
7952 the same as, the context of the most general template, and
7953 2/ we aren't looking at the partial instantiation itself, i.e.
7954 the innermost arguments are not the same as the innermost parms of
7955 the most general template.
7956
7957 So it's only when 1/ and 2/ happens that we want to use the partial
7958 instantiation of the member template in lieu of its most general
7959 template. */
7960
7961 if (PRIMARY_TEMPLATE_P (gen_tmpl)
7962 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
7963 /* the enclosing class must be an instantiation... */
7964 && CLASS_TYPE_P (context)
7965 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
7966 {
7967 tree partial_inst_args;
7968 TREE_VEC_LENGTH (arglist)--;
7969 ++processing_template_decl;
7970 partial_inst_args =
7971 tsubst (INNERMOST_TEMPLATE_ARGS
7972 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
7973 arglist, complain, NULL_TREE);
7974 --processing_template_decl;
7975 TREE_VEC_LENGTH (arglist)++;
7976 use_partial_inst_tmpl =
7977 /*...and we must not be looking at the partial instantiation
7978 itself. */
7979 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
7980 partial_inst_args);
7981 }
7982
7983 if (!use_partial_inst_tmpl)
7984 /* This case is easy; there are no member templates involved. */
7985 found = gen_tmpl;
7986 else
7987 {
7988 /* This is a full instantiation of a member template. Find
7989 the partial instantiation of which this is an instance. */
7990
7991 /* Temporarily reduce by one the number of levels in the ARGLIST
7992 so as to avoid comparing the last set of arguments. */
7993 TREE_VEC_LENGTH (arglist)--;
7994 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
7995 TREE_VEC_LENGTH (arglist)++;
7996 /* FOUND is either a proper class type, or an alias
7997 template specialization. In the later case, it's a
7998 TYPE_DECL, resulting from the substituting of arguments
7999 for parameters in the TYPE_DECL of the alias template
8000 done earlier. So be careful while getting the template
8001 of FOUND. */
8002 found = TREE_CODE (found) == TYPE_DECL
8003 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
8004 : CLASSTYPE_TI_TEMPLATE (found);
8005 }
8006
8007 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
8008
8009 elt.spec = t;
8010 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
8011 entry = ggc_alloc<spec_entry> ();
8012 *entry = elt;
8013 *slot = entry;
8014
8015 /* Note this use of the partial instantiation so we can check it
8016 later in maybe_process_partial_specialization. */
8017 DECL_TEMPLATE_INSTANTIATIONS (found)
8018 = tree_cons (arglist, t,
8019 DECL_TEMPLATE_INSTANTIATIONS (found));
8020
8021 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
8022 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8023 /* Now that the type has been registered on the instantiations
8024 list, we set up the enumerators. Because the enumeration
8025 constants may involve the enumeration type itself, we make
8026 sure to register the type first, and then create the
8027 constants. That way, doing tsubst_expr for the enumeration
8028 constants won't result in recursive calls here; we'll find
8029 the instantiation and exit above. */
8030 tsubst_enum (template_type, t, arglist);
8031
8032 if (CLASS_TYPE_P (template_type) && is_dependent_type)
8033 /* If the type makes use of template parameters, the
8034 code that generates debugging information will crash. */
8035 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
8036
8037 /* Possibly limit visibility based on template args. */
8038 TREE_PUBLIC (type_decl) = 1;
8039 determine_visibility (type_decl);
8040
8041 inherit_targ_abi_tags (t);
8042
8043 return t;
8044 }
8045 }
8046
8047 /* Wrapper for lookup_template_class_1. */
8048
8049 tree
8050 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
8051 int entering_scope, tsubst_flags_t complain)
8052 {
8053 tree ret;
8054 timevar_push (TV_TEMPLATE_INST);
8055 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
8056 entering_scope, complain);
8057 timevar_pop (TV_TEMPLATE_INST);
8058 return ret;
8059 }
8060
8061 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST.
8062 The type of the expression is the unknown_type_node since the
8063 template-id could refer to an explicit or partial specialization. */
8064
8065 tree
8066 lookup_template_variable (tree templ, tree arglist)
8067 {
8068 tree type = unknown_type_node;
8069 tsubst_flags_t complain = tf_warning_or_error;
8070 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (templ));
8071 arglist = coerce_template_parms (parms, arglist, templ, complain,
8072 /*req_all*/true, /*use_default*/true);
8073 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
8074 }
8075
8076 \f
8077 struct pair_fn_data
8078 {
8079 tree_fn_t fn;
8080 void *data;
8081 /* True when we should also visit template parameters that occur in
8082 non-deduced contexts. */
8083 bool include_nondeduced_p;
8084 hash_set<tree> *visited;
8085 };
8086
8087 /* Called from for_each_template_parm via walk_tree. */
8088
8089 static tree
8090 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
8091 {
8092 tree t = *tp;
8093 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
8094 tree_fn_t fn = pfd->fn;
8095 void *data = pfd->data;
8096
8097 if (TYPE_P (t)
8098 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE)
8099 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited,
8100 pfd->include_nondeduced_p))
8101 return error_mark_node;
8102
8103 switch (TREE_CODE (t))
8104 {
8105 case RECORD_TYPE:
8106 if (TYPE_PTRMEMFUNC_P (t))
8107 break;
8108 /* Fall through. */
8109
8110 case UNION_TYPE:
8111 case ENUMERAL_TYPE:
8112 if (!TYPE_TEMPLATE_INFO (t))
8113 *walk_subtrees = 0;
8114 else if (for_each_template_parm (TYPE_TI_ARGS (t),
8115 fn, data, pfd->visited,
8116 pfd->include_nondeduced_p))
8117 return error_mark_node;
8118 break;
8119
8120 case INTEGER_TYPE:
8121 if (for_each_template_parm (TYPE_MIN_VALUE (t),
8122 fn, data, pfd->visited,
8123 pfd->include_nondeduced_p)
8124 || for_each_template_parm (TYPE_MAX_VALUE (t),
8125 fn, data, pfd->visited,
8126 pfd->include_nondeduced_p))
8127 return error_mark_node;
8128 break;
8129
8130 case METHOD_TYPE:
8131 /* Since we're not going to walk subtrees, we have to do this
8132 explicitly here. */
8133 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
8134 pfd->visited, pfd->include_nondeduced_p))
8135 return error_mark_node;
8136 /* Fall through. */
8137
8138 case FUNCTION_TYPE:
8139 /* Check the return type. */
8140 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
8141 pfd->include_nondeduced_p))
8142 return error_mark_node;
8143
8144 /* Check the parameter types. Since default arguments are not
8145 instantiated until they are needed, the TYPE_ARG_TYPES may
8146 contain expressions that involve template parameters. But,
8147 no-one should be looking at them yet. And, once they're
8148 instantiated, they don't contain template parameters, so
8149 there's no point in looking at them then, either. */
8150 {
8151 tree parm;
8152
8153 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
8154 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
8155 pfd->visited, pfd->include_nondeduced_p))
8156 return error_mark_node;
8157
8158 /* Since we've already handled the TYPE_ARG_TYPES, we don't
8159 want walk_tree walking into them itself. */
8160 *walk_subtrees = 0;
8161 }
8162 break;
8163
8164 case TYPEOF_TYPE:
8165 case UNDERLYING_TYPE:
8166 if (pfd->include_nondeduced_p
8167 && for_each_template_parm (TYPE_FIELDS (t), fn, data,
8168 pfd->visited,
8169 pfd->include_nondeduced_p))
8170 return error_mark_node;
8171 break;
8172
8173 case FUNCTION_DECL:
8174 case VAR_DECL:
8175 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
8176 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
8177 pfd->visited, pfd->include_nondeduced_p))
8178 return error_mark_node;
8179 /* Fall through. */
8180
8181 case PARM_DECL:
8182 case CONST_DECL:
8183 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
8184 && for_each_template_parm (DECL_INITIAL (t), fn, data,
8185 pfd->visited, pfd->include_nondeduced_p))
8186 return error_mark_node;
8187 if (DECL_CONTEXT (t)
8188 && pfd->include_nondeduced_p
8189 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
8190 pfd->visited, pfd->include_nondeduced_p))
8191 return error_mark_node;
8192 break;
8193
8194 case BOUND_TEMPLATE_TEMPLATE_PARM:
8195 /* Record template parameters such as `T' inside `TT<T>'. */
8196 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited,
8197 pfd->include_nondeduced_p))
8198 return error_mark_node;
8199 /* Fall through. */
8200
8201 case TEMPLATE_TEMPLATE_PARM:
8202 case TEMPLATE_TYPE_PARM:
8203 case TEMPLATE_PARM_INDEX:
8204 if (fn && (*fn)(t, data))
8205 return error_mark_node;
8206 else if (!fn)
8207 return error_mark_node;
8208 break;
8209
8210 case TEMPLATE_DECL:
8211 /* A template template parameter is encountered. */
8212 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
8213 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
8214 pfd->include_nondeduced_p))
8215 return error_mark_node;
8216
8217 /* Already substituted template template parameter */
8218 *walk_subtrees = 0;
8219 break;
8220
8221 case TYPENAME_TYPE:
8222 if (!fn
8223 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
8224 data, pfd->visited,
8225 pfd->include_nondeduced_p))
8226 return error_mark_node;
8227 break;
8228
8229 case CONSTRUCTOR:
8230 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
8231 && pfd->include_nondeduced_p
8232 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
8233 (TREE_TYPE (t)), fn, data,
8234 pfd->visited, pfd->include_nondeduced_p))
8235 return error_mark_node;
8236 break;
8237
8238 case INDIRECT_REF:
8239 case COMPONENT_REF:
8240 /* If there's no type, then this thing must be some expression
8241 involving template parameters. */
8242 if (!fn && !TREE_TYPE (t))
8243 return error_mark_node;
8244 break;
8245
8246 case MODOP_EXPR:
8247 case CAST_EXPR:
8248 case IMPLICIT_CONV_EXPR:
8249 case REINTERPRET_CAST_EXPR:
8250 case CONST_CAST_EXPR:
8251 case STATIC_CAST_EXPR:
8252 case DYNAMIC_CAST_EXPR:
8253 case ARROW_EXPR:
8254 case DOTSTAR_EXPR:
8255 case TYPEID_EXPR:
8256 case PSEUDO_DTOR_EXPR:
8257 if (!fn)
8258 return error_mark_node;
8259 break;
8260
8261 default:
8262 break;
8263 }
8264
8265 /* We didn't find any template parameters we liked. */
8266 return NULL_TREE;
8267 }
8268
8269 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
8270 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
8271 call FN with the parameter and the DATA.
8272 If FN returns nonzero, the iteration is terminated, and
8273 for_each_template_parm returns 1. Otherwise, the iteration
8274 continues. If FN never returns a nonzero value, the value
8275 returned by for_each_template_parm is 0. If FN is NULL, it is
8276 considered to be the function which always returns 1.
8277
8278 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
8279 parameters that occur in non-deduced contexts. When false, only
8280 visits those template parameters that can be deduced. */
8281
8282 static int
8283 for_each_template_parm (tree t, tree_fn_t fn, void* data,
8284 hash_set<tree> *visited,
8285 bool include_nondeduced_p)
8286 {
8287 struct pair_fn_data pfd;
8288 int result;
8289
8290 /* Set up. */
8291 pfd.fn = fn;
8292 pfd.data = data;
8293 pfd.include_nondeduced_p = include_nondeduced_p;
8294
8295 /* Walk the tree. (Conceptually, we would like to walk without
8296 duplicates, but for_each_template_parm_r recursively calls
8297 for_each_template_parm, so we would need to reorganize a fair
8298 bit to use walk_tree_without_duplicates, so we keep our own
8299 visited list.) */
8300 if (visited)
8301 pfd.visited = visited;
8302 else
8303 pfd.visited = new hash_set<tree>;
8304 result = cp_walk_tree (&t,
8305 for_each_template_parm_r,
8306 &pfd,
8307 pfd.visited) != NULL_TREE;
8308
8309 /* Clean up. */
8310 if (!visited)
8311 {
8312 delete pfd.visited;
8313 pfd.visited = 0;
8314 }
8315
8316 return result;
8317 }
8318
8319 /* Returns true if T depends on any template parameter. */
8320
8321 int
8322 uses_template_parms (tree t)
8323 {
8324 if (t == NULL_TREE)
8325 return false;
8326
8327 bool dependent_p;
8328 int saved_processing_template_decl;
8329
8330 saved_processing_template_decl = processing_template_decl;
8331 if (!saved_processing_template_decl)
8332 processing_template_decl = 1;
8333 if (TYPE_P (t))
8334 dependent_p = dependent_type_p (t);
8335 else if (TREE_CODE (t) == TREE_VEC)
8336 dependent_p = any_dependent_template_arguments_p (t);
8337 else if (TREE_CODE (t) == TREE_LIST)
8338 dependent_p = (uses_template_parms (TREE_VALUE (t))
8339 || uses_template_parms (TREE_CHAIN (t)));
8340 else if (TREE_CODE (t) == TYPE_DECL)
8341 dependent_p = dependent_type_p (TREE_TYPE (t));
8342 else if (DECL_P (t)
8343 || EXPR_P (t)
8344 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
8345 || TREE_CODE (t) == OVERLOAD
8346 || BASELINK_P (t)
8347 || identifier_p (t)
8348 || TREE_CODE (t) == TRAIT_EXPR
8349 || TREE_CODE (t) == CONSTRUCTOR
8350 || CONSTANT_CLASS_P (t))
8351 dependent_p = (type_dependent_expression_p (t)
8352 || value_dependent_expression_p (t));
8353 else
8354 {
8355 gcc_assert (t == error_mark_node);
8356 dependent_p = false;
8357 }
8358
8359 processing_template_decl = saved_processing_template_decl;
8360
8361 return dependent_p;
8362 }
8363
8364 /* Returns true iff current_function_decl is an incompletely instantiated
8365 template. Useful instead of processing_template_decl because the latter
8366 is set to 0 during instantiate_non_dependent_expr. */
8367
8368 bool
8369 in_template_function (void)
8370 {
8371 tree fn = current_function_decl;
8372 bool ret;
8373 ++processing_template_decl;
8374 ret = (fn && DECL_LANG_SPECIFIC (fn)
8375 && DECL_TEMPLATE_INFO (fn)
8376 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
8377 --processing_template_decl;
8378 return ret;
8379 }
8380
8381 /* Returns true if T depends on any template parameter with level LEVEL. */
8382
8383 int
8384 uses_template_parms_level (tree t, int level)
8385 {
8386 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
8387 /*include_nondeduced_p=*/true);
8388 }
8389
8390 /* Returns TRUE iff INST is an instantiation we don't need to do in an
8391 ill-formed translation unit, i.e. a variable or function that isn't
8392 usable in a constant expression. */
8393
8394 static inline bool
8395 neglectable_inst_p (tree d)
8396 {
8397 return (DECL_P (d)
8398 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
8399 : decl_maybe_constant_var_p (d)));
8400 }
8401
8402 /* Returns TRUE iff we should refuse to instantiate DECL because it's
8403 neglectable and instantiated from within an erroneous instantiation. */
8404
8405 static bool
8406 limit_bad_template_recursion (tree decl)
8407 {
8408 struct tinst_level *lev = current_tinst_level;
8409 int errs = errorcount + sorrycount;
8410 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
8411 return false;
8412
8413 for (; lev; lev = lev->next)
8414 if (neglectable_inst_p (lev->decl))
8415 break;
8416
8417 return (lev && errs > lev->errors);
8418 }
8419
8420 static int tinst_depth;
8421 extern int max_tinst_depth;
8422 int depth_reached;
8423
8424 static GTY(()) struct tinst_level *last_error_tinst_level;
8425
8426 /* We're starting to instantiate D; record the template instantiation context
8427 for diagnostics and to restore it later. */
8428
8429 bool
8430 push_tinst_level (tree d)
8431 {
8432 return push_tinst_level_loc (d, input_location);
8433 }
8434
8435 /* We're starting to instantiate D; record the template instantiation context
8436 at LOC for diagnostics and to restore it later. */
8437
8438 bool
8439 push_tinst_level_loc (tree d, location_t loc)
8440 {
8441 struct tinst_level *new_level;
8442
8443 if (tinst_depth >= max_tinst_depth)
8444 {
8445 fatal_error ("template instantiation depth exceeds maximum of %d"
8446 " (use -ftemplate-depth= to increase the maximum)",
8447 max_tinst_depth);
8448 return false;
8449 }
8450
8451 /* If the current instantiation caused problems, don't let it instantiate
8452 anything else. Do allow deduction substitution and decls usable in
8453 constant expressions. */
8454 if (limit_bad_template_recursion (d))
8455 return false;
8456
8457 new_level = ggc_alloc<tinst_level> ();
8458 new_level->decl = d;
8459 new_level->locus = loc;
8460 new_level->errors = errorcount+sorrycount;
8461 new_level->in_system_header_p = in_system_header_at (input_location);
8462 new_level->next = current_tinst_level;
8463 current_tinst_level = new_level;
8464
8465 ++tinst_depth;
8466 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
8467 depth_reached = tinst_depth;
8468
8469 return true;
8470 }
8471
8472 /* We're done instantiating this template; return to the instantiation
8473 context. */
8474
8475 void
8476 pop_tinst_level (void)
8477 {
8478 /* Restore the filename and line number stashed away when we started
8479 this instantiation. */
8480 input_location = current_tinst_level->locus;
8481 current_tinst_level = current_tinst_level->next;
8482 --tinst_depth;
8483 }
8484
8485 /* We're instantiating a deferred template; restore the template
8486 instantiation context in which the instantiation was requested, which
8487 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
8488
8489 static tree
8490 reopen_tinst_level (struct tinst_level *level)
8491 {
8492 struct tinst_level *t;
8493
8494 tinst_depth = 0;
8495 for (t = level; t; t = t->next)
8496 ++tinst_depth;
8497
8498 current_tinst_level = level;
8499 pop_tinst_level ();
8500 if (current_tinst_level)
8501 current_tinst_level->errors = errorcount+sorrycount;
8502 return level->decl;
8503 }
8504
8505 /* Returns the TINST_LEVEL which gives the original instantiation
8506 context. */
8507
8508 struct tinst_level *
8509 outermost_tinst_level (void)
8510 {
8511 struct tinst_level *level = current_tinst_level;
8512 if (level)
8513 while (level->next)
8514 level = level->next;
8515 return level;
8516 }
8517
8518 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
8519 vector of template arguments, as for tsubst.
8520
8521 Returns an appropriate tsubst'd friend declaration. */
8522
8523 static tree
8524 tsubst_friend_function (tree decl, tree args)
8525 {
8526 tree new_friend;
8527
8528 if (TREE_CODE (decl) == FUNCTION_DECL
8529 && DECL_TEMPLATE_INSTANTIATION (decl)
8530 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
8531 /* This was a friend declared with an explicit template
8532 argument list, e.g.:
8533
8534 friend void f<>(T);
8535
8536 to indicate that f was a template instantiation, not a new
8537 function declaration. Now, we have to figure out what
8538 instantiation of what template. */
8539 {
8540 tree template_id, arglist, fns;
8541 tree new_args;
8542 tree tmpl;
8543 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
8544
8545 /* Friend functions are looked up in the containing namespace scope.
8546 We must enter that scope, to avoid finding member functions of the
8547 current class with same name. */
8548 push_nested_namespace (ns);
8549 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
8550 tf_warning_or_error, NULL_TREE,
8551 /*integral_constant_expression_p=*/false);
8552 pop_nested_namespace (ns);
8553 arglist = tsubst (DECL_TI_ARGS (decl), args,
8554 tf_warning_or_error, NULL_TREE);
8555 template_id = lookup_template_function (fns, arglist);
8556
8557 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8558 tmpl = determine_specialization (template_id, new_friend,
8559 &new_args,
8560 /*need_member_template=*/0,
8561 TREE_VEC_LENGTH (args),
8562 tsk_none);
8563 return instantiate_template (tmpl, new_args, tf_error);
8564 }
8565
8566 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8567
8568 /* The NEW_FRIEND will look like an instantiation, to the
8569 compiler, but is not an instantiation from the point of view of
8570 the language. For example, we might have had:
8571
8572 template <class T> struct S {
8573 template <class U> friend void f(T, U);
8574 };
8575
8576 Then, in S<int>, template <class U> void f(int, U) is not an
8577 instantiation of anything. */
8578 if (new_friend == error_mark_node)
8579 return error_mark_node;
8580
8581 DECL_USE_TEMPLATE (new_friend) = 0;
8582 if (TREE_CODE (decl) == TEMPLATE_DECL)
8583 {
8584 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
8585 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
8586 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
8587 }
8588
8589 /* The mangled name for the NEW_FRIEND is incorrect. The function
8590 is not a template instantiation and should not be mangled like
8591 one. Therefore, we forget the mangling here; we'll recompute it
8592 later if we need it. */
8593 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
8594 {
8595 SET_DECL_RTL (new_friend, NULL);
8596 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
8597 }
8598
8599 if (DECL_NAMESPACE_SCOPE_P (new_friend))
8600 {
8601 tree old_decl;
8602 tree new_friend_template_info;
8603 tree new_friend_result_template_info;
8604 tree ns;
8605 int new_friend_is_defn;
8606
8607 /* We must save some information from NEW_FRIEND before calling
8608 duplicate decls since that function will free NEW_FRIEND if
8609 possible. */
8610 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
8611 new_friend_is_defn =
8612 (DECL_INITIAL (DECL_TEMPLATE_RESULT
8613 (template_for_substitution (new_friend)))
8614 != NULL_TREE);
8615 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
8616 {
8617 /* This declaration is a `primary' template. */
8618 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
8619
8620 new_friend_result_template_info
8621 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
8622 }
8623 else
8624 new_friend_result_template_info = NULL_TREE;
8625
8626 /* Make the init_value nonzero so pushdecl knows this is a defn. */
8627 if (new_friend_is_defn)
8628 DECL_INITIAL (new_friend) = error_mark_node;
8629
8630 /* Inside pushdecl_namespace_level, we will push into the
8631 current namespace. However, the friend function should go
8632 into the namespace of the template. */
8633 ns = decl_namespace_context (new_friend);
8634 push_nested_namespace (ns);
8635 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
8636 pop_nested_namespace (ns);
8637
8638 if (old_decl == error_mark_node)
8639 return error_mark_node;
8640
8641 if (old_decl != new_friend)
8642 {
8643 /* This new friend declaration matched an existing
8644 declaration. For example, given:
8645
8646 template <class T> void f(T);
8647 template <class U> class C {
8648 template <class T> friend void f(T) {}
8649 };
8650
8651 the friend declaration actually provides the definition
8652 of `f', once C has been instantiated for some type. So,
8653 old_decl will be the out-of-class template declaration,
8654 while new_friend is the in-class definition.
8655
8656 But, if `f' was called before this point, the
8657 instantiation of `f' will have DECL_TI_ARGS corresponding
8658 to `T' but not to `U', references to which might appear
8659 in the definition of `f'. Previously, the most general
8660 template for an instantiation of `f' was the out-of-class
8661 version; now it is the in-class version. Therefore, we
8662 run through all specialization of `f', adding to their
8663 DECL_TI_ARGS appropriately. In particular, they need a
8664 new set of outer arguments, corresponding to the
8665 arguments for this class instantiation.
8666
8667 The same situation can arise with something like this:
8668
8669 friend void f(int);
8670 template <class T> class C {
8671 friend void f(T) {}
8672 };
8673
8674 when `C<int>' is instantiated. Now, `f(int)' is defined
8675 in the class. */
8676
8677 if (!new_friend_is_defn)
8678 /* On the other hand, if the in-class declaration does
8679 *not* provide a definition, then we don't want to alter
8680 existing definitions. We can just leave everything
8681 alone. */
8682 ;
8683 else
8684 {
8685 tree new_template = TI_TEMPLATE (new_friend_template_info);
8686 tree new_args = TI_ARGS (new_friend_template_info);
8687
8688 /* Overwrite whatever template info was there before, if
8689 any, with the new template information pertaining to
8690 the declaration. */
8691 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
8692
8693 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
8694 {
8695 /* We should have called reregister_specialization in
8696 duplicate_decls. */
8697 gcc_assert (retrieve_specialization (new_template,
8698 new_args, 0)
8699 == old_decl);
8700
8701 /* Instantiate it if the global has already been used. */
8702 if (DECL_ODR_USED (old_decl))
8703 instantiate_decl (old_decl, /*defer_ok=*/true,
8704 /*expl_inst_class_mem_p=*/false);
8705 }
8706 else
8707 {
8708 tree t;
8709
8710 /* Indicate that the old function template is a partial
8711 instantiation. */
8712 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
8713 = new_friend_result_template_info;
8714
8715 gcc_assert (new_template
8716 == most_general_template (new_template));
8717 gcc_assert (new_template != old_decl);
8718
8719 /* Reassign any specializations already in the hash table
8720 to the new more general template, and add the
8721 additional template args. */
8722 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
8723 t != NULL_TREE;
8724 t = TREE_CHAIN (t))
8725 {
8726 tree spec = TREE_VALUE (t);
8727 spec_entry elt;
8728
8729 elt.tmpl = old_decl;
8730 elt.args = DECL_TI_ARGS (spec);
8731 elt.spec = NULL_TREE;
8732
8733 decl_specializations->remove_elt (&elt);
8734
8735 DECL_TI_ARGS (spec)
8736 = add_outermost_template_args (new_args,
8737 DECL_TI_ARGS (spec));
8738
8739 register_specialization
8740 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
8741
8742 }
8743 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
8744 }
8745 }
8746
8747 /* The information from NEW_FRIEND has been merged into OLD_DECL
8748 by duplicate_decls. */
8749 new_friend = old_decl;
8750 }
8751 }
8752 else
8753 {
8754 tree context = DECL_CONTEXT (new_friend);
8755 bool dependent_p;
8756
8757 /* In the code
8758 template <class T> class C {
8759 template <class U> friend void C1<U>::f (); // case 1
8760 friend void C2<T>::f (); // case 2
8761 };
8762 we only need to make sure CONTEXT is a complete type for
8763 case 2. To distinguish between the two cases, we note that
8764 CONTEXT of case 1 remains dependent type after tsubst while
8765 this isn't true for case 2. */
8766 ++processing_template_decl;
8767 dependent_p = dependent_type_p (context);
8768 --processing_template_decl;
8769
8770 if (!dependent_p
8771 && !complete_type_or_else (context, NULL_TREE))
8772 return error_mark_node;
8773
8774 if (COMPLETE_TYPE_P (context))
8775 {
8776 tree fn = new_friend;
8777 /* do_friend adds the TEMPLATE_DECL for any member friend
8778 template even if it isn't a member template, i.e.
8779 template <class T> friend A<T>::f();
8780 Look through it in that case. */
8781 if (TREE_CODE (fn) == TEMPLATE_DECL
8782 && !PRIMARY_TEMPLATE_P (fn))
8783 fn = DECL_TEMPLATE_RESULT (fn);
8784 /* Check to see that the declaration is really present, and,
8785 possibly obtain an improved declaration. */
8786 fn = check_classfn (context, fn, NULL_TREE);
8787
8788 if (fn)
8789 new_friend = fn;
8790 }
8791 }
8792
8793 return new_friend;
8794 }
8795
8796 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
8797 template arguments, as for tsubst.
8798
8799 Returns an appropriate tsubst'd friend type or error_mark_node on
8800 failure. */
8801
8802 static tree
8803 tsubst_friend_class (tree friend_tmpl, tree args)
8804 {
8805 tree friend_type;
8806 tree tmpl;
8807 tree context;
8808
8809 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
8810 {
8811 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
8812 return TREE_TYPE (t);
8813 }
8814
8815 context = CP_DECL_CONTEXT (friend_tmpl);
8816
8817 if (context != global_namespace)
8818 {
8819 if (TREE_CODE (context) == NAMESPACE_DECL)
8820 push_nested_namespace (context);
8821 else
8822 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
8823 }
8824
8825 /* Look for a class template declaration. We look for hidden names
8826 because two friend declarations of the same template are the
8827 same. For example, in:
8828
8829 struct A {
8830 template <typename> friend class F;
8831 };
8832 template <typename> struct B {
8833 template <typename> friend class F;
8834 };
8835
8836 both F templates are the same. */
8837 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
8838 /*block_p=*/true, 0, LOOKUP_HIDDEN);
8839
8840 /* But, if we don't find one, it might be because we're in a
8841 situation like this:
8842
8843 template <class T>
8844 struct S {
8845 template <class U>
8846 friend struct S;
8847 };
8848
8849 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
8850 for `S<int>', not the TEMPLATE_DECL. */
8851 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
8852 {
8853 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
8854 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
8855 }
8856
8857 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
8858 {
8859 /* The friend template has already been declared. Just
8860 check to see that the declarations match, and install any new
8861 default parameters. We must tsubst the default parameters,
8862 of course. We only need the innermost template parameters
8863 because that is all that redeclare_class_template will look
8864 at. */
8865 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
8866 > TMPL_ARGS_DEPTH (args))
8867 {
8868 tree parms;
8869 location_t saved_input_location;
8870 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
8871 args, tf_warning_or_error);
8872
8873 saved_input_location = input_location;
8874 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
8875 redeclare_class_template (TREE_TYPE (tmpl), parms);
8876 input_location = saved_input_location;
8877
8878 }
8879
8880 friend_type = TREE_TYPE (tmpl);
8881 }
8882 else
8883 {
8884 /* The friend template has not already been declared. In this
8885 case, the instantiation of the template class will cause the
8886 injection of this template into the global scope. */
8887 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
8888 if (tmpl == error_mark_node)
8889 return error_mark_node;
8890
8891 /* The new TMPL is not an instantiation of anything, so we
8892 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
8893 the new type because that is supposed to be the corresponding
8894 template decl, i.e., TMPL. */
8895 DECL_USE_TEMPLATE (tmpl) = 0;
8896 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
8897 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
8898 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
8899 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
8900
8901 /* Inject this template into the global scope. */
8902 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
8903 }
8904
8905 if (context != global_namespace)
8906 {
8907 if (TREE_CODE (context) == NAMESPACE_DECL)
8908 pop_nested_namespace (context);
8909 else
8910 pop_nested_class ();
8911 }
8912
8913 return friend_type;
8914 }
8915
8916 /* Returns zero if TYPE cannot be completed later due to circularity.
8917 Otherwise returns one. */
8918
8919 static int
8920 can_complete_type_without_circularity (tree type)
8921 {
8922 if (type == NULL_TREE || type == error_mark_node)
8923 return 0;
8924 else if (COMPLETE_TYPE_P (type))
8925 return 1;
8926 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
8927 return can_complete_type_without_circularity (TREE_TYPE (type));
8928 else if (CLASS_TYPE_P (type)
8929 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
8930 return 0;
8931 else
8932 return 1;
8933 }
8934
8935 static tree tsubst_omp_clauses (tree, bool, tree, tsubst_flags_t, tree);
8936
8937 /* Apply any attributes which had to be deferred until instantiation
8938 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
8939 ARGS, COMPLAIN, IN_DECL are as tsubst. */
8940
8941 static void
8942 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
8943 tree args, tsubst_flags_t complain, tree in_decl)
8944 {
8945 tree last_dep = NULL_TREE;
8946 tree t;
8947 tree *p;
8948
8949 for (t = attributes; t; t = TREE_CHAIN (t))
8950 if (ATTR_IS_DEPENDENT (t))
8951 {
8952 last_dep = t;
8953 attributes = copy_list (attributes);
8954 break;
8955 }
8956
8957 if (DECL_P (*decl_p))
8958 {
8959 if (TREE_TYPE (*decl_p) == error_mark_node)
8960 return;
8961 p = &DECL_ATTRIBUTES (*decl_p);
8962 }
8963 else
8964 p = &TYPE_ATTRIBUTES (*decl_p);
8965
8966 if (last_dep)
8967 {
8968 tree late_attrs = NULL_TREE;
8969 tree *q = &late_attrs;
8970
8971 for (*p = attributes; *p; )
8972 {
8973 t = *p;
8974 if (ATTR_IS_DEPENDENT (t))
8975 {
8976 *p = TREE_CHAIN (t);
8977 TREE_CHAIN (t) = NULL_TREE;
8978 if ((flag_openmp || flag_cilkplus)
8979 && is_attribute_p ("omp declare simd",
8980 get_attribute_name (t))
8981 && TREE_VALUE (t))
8982 {
8983 tree clauses = TREE_VALUE (TREE_VALUE (t));
8984 clauses = tsubst_omp_clauses (clauses, true, args,
8985 complain, in_decl);
8986 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
8987 clauses = finish_omp_clauses (clauses);
8988 tree parms = DECL_ARGUMENTS (*decl_p);
8989 clauses
8990 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
8991 if (clauses)
8992 TREE_VALUE (TREE_VALUE (t)) = clauses;
8993 else
8994 TREE_VALUE (t) = NULL_TREE;
8995 }
8996 /* If the first attribute argument is an identifier, don't
8997 pass it through tsubst. Attributes like mode, format,
8998 cleanup and several target specific attributes expect it
8999 unmodified. */
9000 else if (attribute_takes_identifier_p (get_attribute_name (t))
9001 && TREE_VALUE (t))
9002 {
9003 tree chain
9004 = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain,
9005 in_decl,
9006 /*integral_constant_expression_p=*/false);
9007 if (chain != TREE_CHAIN (TREE_VALUE (t)))
9008 TREE_VALUE (t)
9009 = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)),
9010 chain);
9011 }
9012 else
9013 TREE_VALUE (t)
9014 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
9015 /*integral_constant_expression_p=*/false);
9016 *q = t;
9017 q = &TREE_CHAIN (t);
9018 }
9019 else
9020 p = &TREE_CHAIN (t);
9021 }
9022
9023 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
9024 }
9025 }
9026
9027 /* Perform (or defer) access check for typedefs that were referenced
9028 from within the template TMPL code.
9029 This is a subroutine of instantiate_decl and instantiate_class_template.
9030 TMPL is the template to consider and TARGS is the list of arguments of
9031 that template. */
9032
9033 static void
9034 perform_typedefs_access_check (tree tmpl, tree targs)
9035 {
9036 location_t saved_location;
9037 unsigned i;
9038 qualified_typedef_usage_t *iter;
9039
9040 if (!tmpl
9041 || (!CLASS_TYPE_P (tmpl)
9042 && TREE_CODE (tmpl) != FUNCTION_DECL))
9043 return;
9044
9045 saved_location = input_location;
9046 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
9047 {
9048 tree type_decl = iter->typedef_decl;
9049 tree type_scope = iter->context;
9050
9051 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
9052 continue;
9053
9054 if (uses_template_parms (type_decl))
9055 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
9056 if (uses_template_parms (type_scope))
9057 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
9058
9059 /* Make access check error messages point to the location
9060 of the use of the typedef. */
9061 input_location = iter->locus;
9062 perform_or_defer_access_check (TYPE_BINFO (type_scope),
9063 type_decl, type_decl,
9064 tf_warning_or_error);
9065 }
9066 input_location = saved_location;
9067 }
9068
9069 static tree
9070 instantiate_class_template_1 (tree type)
9071 {
9072 tree templ, args, pattern, t, member;
9073 tree typedecl;
9074 tree pbinfo;
9075 tree base_list;
9076 unsigned int saved_maximum_field_alignment;
9077 tree fn_context;
9078
9079 if (type == error_mark_node)
9080 return error_mark_node;
9081
9082 if (COMPLETE_OR_OPEN_TYPE_P (type)
9083 || uses_template_parms (type))
9084 return type;
9085
9086 /* Figure out which template is being instantiated. */
9087 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
9088 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
9089
9090 /* Determine what specialization of the original template to
9091 instantiate. */
9092 t = most_specialized_partial_spec (type, tf_warning_or_error);
9093 if (t == error_mark_node)
9094 {
9095 TYPE_BEING_DEFINED (type) = 1;
9096 return error_mark_node;
9097 }
9098 else if (t)
9099 {
9100 /* This TYPE is actually an instantiation of a partial
9101 specialization. We replace the innermost set of ARGS with
9102 the arguments appropriate for substitution. For example,
9103 given:
9104
9105 template <class T> struct S {};
9106 template <class T> struct S<T*> {};
9107
9108 and supposing that we are instantiating S<int*>, ARGS will
9109 presently be {int*} -- but we need {int}. */
9110 pattern = TREE_TYPE (t);
9111 args = TREE_PURPOSE (t);
9112 }
9113 else
9114 {
9115 pattern = TREE_TYPE (templ);
9116 args = CLASSTYPE_TI_ARGS (type);
9117 }
9118
9119 /* If the template we're instantiating is incomplete, then clearly
9120 there's nothing we can do. */
9121 if (!COMPLETE_TYPE_P (pattern))
9122 return type;
9123
9124 /* If we've recursively instantiated too many templates, stop. */
9125 if (! push_tinst_level (type))
9126 return type;
9127
9128 /* Now we're really doing the instantiation. Mark the type as in
9129 the process of being defined. */
9130 TYPE_BEING_DEFINED (type) = 1;
9131
9132 /* We may be in the middle of deferred access check. Disable
9133 it now. */
9134 push_deferring_access_checks (dk_no_deferred);
9135
9136 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
9137 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
9138 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
9139 fn_context = error_mark_node;
9140 if (!fn_context)
9141 push_to_top_level ();
9142 /* Use #pragma pack from the template context. */
9143 saved_maximum_field_alignment = maximum_field_alignment;
9144 maximum_field_alignment = TYPE_PRECISION (pattern);
9145
9146 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
9147
9148 /* Set the input location to the most specialized template definition.
9149 This is needed if tsubsting causes an error. */
9150 typedecl = TYPE_MAIN_DECL (pattern);
9151 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
9152 DECL_SOURCE_LOCATION (typedecl);
9153
9154 TYPE_PACKED (type) = TYPE_PACKED (pattern);
9155 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
9156 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
9157 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
9158 if (ANON_AGGR_TYPE_P (pattern))
9159 SET_ANON_AGGR_TYPE_P (type);
9160 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
9161 {
9162 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
9163 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
9164 /* Adjust visibility for template arguments. */
9165 determine_visibility (TYPE_MAIN_DECL (type));
9166 }
9167 if (CLASS_TYPE_P (type))
9168 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
9169
9170 pbinfo = TYPE_BINFO (pattern);
9171
9172 /* We should never instantiate a nested class before its enclosing
9173 class; we need to look up the nested class by name before we can
9174 instantiate it, and that lookup should instantiate the enclosing
9175 class. */
9176 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
9177 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
9178
9179 base_list = NULL_TREE;
9180 if (BINFO_N_BASE_BINFOS (pbinfo))
9181 {
9182 tree pbase_binfo;
9183 tree pushed_scope;
9184 int i;
9185
9186 /* We must enter the scope containing the type, as that is where
9187 the accessibility of types named in dependent bases are
9188 looked up from. */
9189 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
9190
9191 /* Substitute into each of the bases to determine the actual
9192 basetypes. */
9193 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
9194 {
9195 tree base;
9196 tree access = BINFO_BASE_ACCESS (pbinfo, i);
9197 tree expanded_bases = NULL_TREE;
9198 int idx, len = 1;
9199
9200 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
9201 {
9202 expanded_bases =
9203 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
9204 args, tf_error, NULL_TREE);
9205 if (expanded_bases == error_mark_node)
9206 continue;
9207
9208 len = TREE_VEC_LENGTH (expanded_bases);
9209 }
9210
9211 for (idx = 0; idx < len; idx++)
9212 {
9213 if (expanded_bases)
9214 /* Extract the already-expanded base class. */
9215 base = TREE_VEC_ELT (expanded_bases, idx);
9216 else
9217 /* Substitute to figure out the base class. */
9218 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
9219 NULL_TREE);
9220
9221 if (base == error_mark_node)
9222 continue;
9223
9224 base_list = tree_cons (access, base, base_list);
9225 if (BINFO_VIRTUAL_P (pbase_binfo))
9226 TREE_TYPE (base_list) = integer_type_node;
9227 }
9228 }
9229
9230 /* The list is now in reverse order; correct that. */
9231 base_list = nreverse (base_list);
9232
9233 if (pushed_scope)
9234 pop_scope (pushed_scope);
9235 }
9236 /* Now call xref_basetypes to set up all the base-class
9237 information. */
9238 xref_basetypes (type, base_list);
9239
9240 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
9241 (int) ATTR_FLAG_TYPE_IN_PLACE,
9242 args, tf_error, NULL_TREE);
9243 fixup_attribute_variants (type);
9244
9245 /* Now that our base classes are set up, enter the scope of the
9246 class, so that name lookups into base classes, etc. will work
9247 correctly. This is precisely analogous to what we do in
9248 begin_class_definition when defining an ordinary non-template
9249 class, except we also need to push the enclosing classes. */
9250 push_nested_class (type);
9251
9252 /* Now members are processed in the order of declaration. */
9253 for (member = CLASSTYPE_DECL_LIST (pattern);
9254 member; member = TREE_CHAIN (member))
9255 {
9256 tree t = TREE_VALUE (member);
9257
9258 if (TREE_PURPOSE (member))
9259 {
9260 if (TYPE_P (t))
9261 {
9262 /* Build new CLASSTYPE_NESTED_UTDS. */
9263
9264 tree newtag;
9265 bool class_template_p;
9266
9267 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
9268 && TYPE_LANG_SPECIFIC (t)
9269 && CLASSTYPE_IS_TEMPLATE (t));
9270 /* If the member is a class template, then -- even after
9271 substitution -- there may be dependent types in the
9272 template argument list for the class. We increment
9273 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
9274 that function will assume that no types are dependent
9275 when outside of a template. */
9276 if (class_template_p)
9277 ++processing_template_decl;
9278 newtag = tsubst (t, args, tf_error, NULL_TREE);
9279 if (class_template_p)
9280 --processing_template_decl;
9281 if (newtag == error_mark_node)
9282 continue;
9283
9284 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
9285 {
9286 tree name = TYPE_IDENTIFIER (t);
9287
9288 if (class_template_p)
9289 /* Unfortunately, lookup_template_class sets
9290 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
9291 instantiation (i.e., for the type of a member
9292 template class nested within a template class.)
9293 This behavior is required for
9294 maybe_process_partial_specialization to work
9295 correctly, but is not accurate in this case;
9296 the TAG is not an instantiation of anything.
9297 (The corresponding TEMPLATE_DECL is an
9298 instantiation, but the TYPE is not.) */
9299 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
9300
9301 /* Now, we call pushtag to put this NEWTAG into the scope of
9302 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
9303 pushtag calling push_template_decl. We don't have to do
9304 this for enums because it will already have been done in
9305 tsubst_enum. */
9306 if (name)
9307 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
9308 pushtag (name, newtag, /*tag_scope=*/ts_current);
9309 }
9310 }
9311 else if (DECL_DECLARES_FUNCTION_P (t))
9312 {
9313 /* Build new TYPE_METHODS. */
9314 tree r;
9315
9316 if (TREE_CODE (t) == TEMPLATE_DECL)
9317 ++processing_template_decl;
9318 r = tsubst (t, args, tf_error, NULL_TREE);
9319 if (TREE_CODE (t) == TEMPLATE_DECL)
9320 --processing_template_decl;
9321 set_current_access_from_decl (r);
9322 finish_member_declaration (r);
9323 /* Instantiate members marked with attribute used. */
9324 if (r != error_mark_node && DECL_PRESERVE_P (r))
9325 mark_used (r);
9326 if (TREE_CODE (r) == FUNCTION_DECL
9327 && DECL_OMP_DECLARE_REDUCTION_P (r))
9328 cp_check_omp_declare_reduction (r);
9329 }
9330 else if (DECL_CLASS_TEMPLATE_P (t)
9331 && LAMBDA_TYPE_P (TREE_TYPE (t)))
9332 /* A closure type for a lambda in a default argument for a
9333 member template. Ignore it; it will be instantiated with
9334 the default argument. */;
9335 else
9336 {
9337 /* Build new TYPE_FIELDS. */
9338 if (TREE_CODE (t) == STATIC_ASSERT)
9339 {
9340 tree condition;
9341
9342 ++c_inhibit_evaluation_warnings;
9343 condition =
9344 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
9345 tf_warning_or_error, NULL_TREE,
9346 /*integral_constant_expression_p=*/true);
9347 --c_inhibit_evaluation_warnings;
9348
9349 finish_static_assert (condition,
9350 STATIC_ASSERT_MESSAGE (t),
9351 STATIC_ASSERT_SOURCE_LOCATION (t),
9352 /*member_p=*/true);
9353 }
9354 else if (TREE_CODE (t) != CONST_DECL)
9355 {
9356 tree r;
9357 tree vec = NULL_TREE;
9358 int len = 1;
9359
9360 /* The file and line for this declaration, to
9361 assist in error message reporting. Since we
9362 called push_tinst_level above, we don't need to
9363 restore these. */
9364 input_location = DECL_SOURCE_LOCATION (t);
9365
9366 if (TREE_CODE (t) == TEMPLATE_DECL)
9367 ++processing_template_decl;
9368 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
9369 if (TREE_CODE (t) == TEMPLATE_DECL)
9370 --processing_template_decl;
9371
9372 if (TREE_CODE (r) == TREE_VEC)
9373 {
9374 /* A capture pack became multiple fields. */
9375 vec = r;
9376 len = TREE_VEC_LENGTH (vec);
9377 }
9378
9379 for (int i = 0; i < len; ++i)
9380 {
9381 if (vec)
9382 r = TREE_VEC_ELT (vec, i);
9383 if (VAR_P (r))
9384 {
9385 /* In [temp.inst]:
9386
9387 [t]he initialization (and any associated
9388 side-effects) of a static data member does
9389 not occur unless the static data member is
9390 itself used in a way that requires the
9391 definition of the static data member to
9392 exist.
9393
9394 Therefore, we do not substitute into the
9395 initialized for the static data member here. */
9396 finish_static_data_member_decl
9397 (r,
9398 /*init=*/NULL_TREE,
9399 /*init_const_expr_p=*/false,
9400 /*asmspec_tree=*/NULL_TREE,
9401 /*flags=*/0);
9402 /* Instantiate members marked with attribute used. */
9403 if (r != error_mark_node && DECL_PRESERVE_P (r))
9404 mark_used (r);
9405 }
9406 else if (TREE_CODE (r) == FIELD_DECL)
9407 {
9408 /* Determine whether R has a valid type and can be
9409 completed later. If R is invalid, then its type
9410 is replaced by error_mark_node. */
9411 tree rtype = TREE_TYPE (r);
9412 if (can_complete_type_without_circularity (rtype))
9413 complete_type (rtype);
9414
9415 if (!COMPLETE_TYPE_P (rtype))
9416 {
9417 cxx_incomplete_type_error (r, rtype);
9418 TREE_TYPE (r) = error_mark_node;
9419 }
9420 }
9421
9422 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
9423 such a thing will already have been added to the field
9424 list by tsubst_enum in finish_member_declaration in the
9425 CLASSTYPE_NESTED_UTDS case above. */
9426 if (!(TREE_CODE (r) == TYPE_DECL
9427 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
9428 && DECL_ARTIFICIAL (r)))
9429 {
9430 set_current_access_from_decl (r);
9431 finish_member_declaration (r);
9432 }
9433 }
9434 }
9435 }
9436 }
9437 else
9438 {
9439 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
9440 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
9441 {
9442 /* Build new CLASSTYPE_FRIEND_CLASSES. */
9443
9444 tree friend_type = t;
9445 bool adjust_processing_template_decl = false;
9446
9447 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
9448 {
9449 /* template <class T> friend class C; */
9450 friend_type = tsubst_friend_class (friend_type, args);
9451 adjust_processing_template_decl = true;
9452 }
9453 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
9454 {
9455 /* template <class T> friend class C::D; */
9456 friend_type = tsubst (friend_type, args,
9457 tf_warning_or_error, NULL_TREE);
9458 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
9459 friend_type = TREE_TYPE (friend_type);
9460 adjust_processing_template_decl = true;
9461 }
9462 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
9463 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
9464 {
9465 /* This could be either
9466
9467 friend class T::C;
9468
9469 when dependent_type_p is false or
9470
9471 template <class U> friend class T::C;
9472
9473 otherwise. */
9474 friend_type = tsubst (friend_type, args,
9475 tf_warning_or_error, NULL_TREE);
9476 /* Bump processing_template_decl for correct
9477 dependent_type_p calculation. */
9478 ++processing_template_decl;
9479 if (dependent_type_p (friend_type))
9480 adjust_processing_template_decl = true;
9481 --processing_template_decl;
9482 }
9483 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
9484 && hidden_name_p (TYPE_NAME (friend_type)))
9485 {
9486 /* friend class C;
9487
9488 where C hasn't been declared yet. Let's lookup name
9489 from namespace scope directly, bypassing any name that
9490 come from dependent base class. */
9491 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
9492
9493 /* The call to xref_tag_from_type does injection for friend
9494 classes. */
9495 push_nested_namespace (ns);
9496 friend_type =
9497 xref_tag_from_type (friend_type, NULL_TREE,
9498 /*tag_scope=*/ts_current);
9499 pop_nested_namespace (ns);
9500 }
9501 else if (uses_template_parms (friend_type))
9502 /* friend class C<T>; */
9503 friend_type = tsubst (friend_type, args,
9504 tf_warning_or_error, NULL_TREE);
9505 /* Otherwise it's
9506
9507 friend class C;
9508
9509 where C is already declared or
9510
9511 friend class C<int>;
9512
9513 We don't have to do anything in these cases. */
9514
9515 if (adjust_processing_template_decl)
9516 /* Trick make_friend_class into realizing that the friend
9517 we're adding is a template, not an ordinary class. It's
9518 important that we use make_friend_class since it will
9519 perform some error-checking and output cross-reference
9520 information. */
9521 ++processing_template_decl;
9522
9523 if (friend_type != error_mark_node)
9524 make_friend_class (type, friend_type, /*complain=*/false);
9525
9526 if (adjust_processing_template_decl)
9527 --processing_template_decl;
9528 }
9529 else
9530 {
9531 /* Build new DECL_FRIENDLIST. */
9532 tree r;
9533
9534 /* The file and line for this declaration, to
9535 assist in error message reporting. Since we
9536 called push_tinst_level above, we don't need to
9537 restore these. */
9538 input_location = DECL_SOURCE_LOCATION (t);
9539
9540 if (TREE_CODE (t) == TEMPLATE_DECL)
9541 {
9542 ++processing_template_decl;
9543 push_deferring_access_checks (dk_no_check);
9544 }
9545
9546 r = tsubst_friend_function (t, args);
9547 add_friend (type, r, /*complain=*/false);
9548 if (TREE_CODE (t) == TEMPLATE_DECL)
9549 {
9550 pop_deferring_access_checks ();
9551 --processing_template_decl;
9552 }
9553 }
9554 }
9555 }
9556
9557 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
9558 {
9559 tree decl = lambda_function (type);
9560 if (decl)
9561 {
9562 if (!DECL_TEMPLATE_INFO (decl)
9563 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
9564 instantiate_decl (decl, false, false);
9565
9566 /* We need to instantiate the capture list from the template
9567 after we've instantiated the closure members, but before we
9568 consider adding the conversion op. Also keep any captures
9569 that may have been added during instantiation of the op(). */
9570 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
9571 tree tmpl_cap
9572 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
9573 args, tf_warning_or_error, NULL_TREE,
9574 false, false);
9575
9576 LAMBDA_EXPR_CAPTURE_LIST (expr)
9577 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
9578
9579 maybe_add_lambda_conv_op (type);
9580 }
9581 else
9582 gcc_assert (errorcount);
9583 }
9584
9585 /* Set the file and line number information to whatever is given for
9586 the class itself. This puts error messages involving generated
9587 implicit functions at a predictable point, and the same point
9588 that would be used for non-template classes. */
9589 input_location = DECL_SOURCE_LOCATION (typedecl);
9590
9591 unreverse_member_declarations (type);
9592 finish_struct_1 (type);
9593 TYPE_BEING_DEFINED (type) = 0;
9594
9595 /* We don't instantiate default arguments for member functions. 14.7.1:
9596
9597 The implicit instantiation of a class template specialization causes
9598 the implicit instantiation of the declarations, but not of the
9599 definitions or default arguments, of the class member functions,
9600 member classes, static data members and member templates.... */
9601
9602 /* Some typedefs referenced from within the template code need to be access
9603 checked at template instantiation time, i.e now. These types were
9604 added to the template at parsing time. Let's get those and perform
9605 the access checks then. */
9606 perform_typedefs_access_check (pattern, args);
9607 perform_deferred_access_checks (tf_warning_or_error);
9608 pop_nested_class ();
9609 maximum_field_alignment = saved_maximum_field_alignment;
9610 if (!fn_context)
9611 pop_from_top_level ();
9612 pop_deferring_access_checks ();
9613 pop_tinst_level ();
9614
9615 /* The vtable for a template class can be emitted in any translation
9616 unit in which the class is instantiated. When there is no key
9617 method, however, finish_struct_1 will already have added TYPE to
9618 the keyed_classes list. */
9619 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
9620 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
9621
9622 return type;
9623 }
9624
9625 /* Wrapper for instantiate_class_template_1. */
9626
9627 tree
9628 instantiate_class_template (tree type)
9629 {
9630 tree ret;
9631 timevar_push (TV_TEMPLATE_INST);
9632 ret = instantiate_class_template_1 (type);
9633 timevar_pop (TV_TEMPLATE_INST);
9634 return ret;
9635 }
9636
9637 static tree
9638 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9639 {
9640 tree r;
9641
9642 if (!t)
9643 r = t;
9644 else if (TYPE_P (t))
9645 r = tsubst (t, args, complain, in_decl);
9646 else
9647 {
9648 if (!(complain & tf_warning))
9649 ++c_inhibit_evaluation_warnings;
9650 r = tsubst_expr (t, args, complain, in_decl,
9651 /*integral_constant_expression_p=*/true);
9652 if (!(complain & tf_warning))
9653 --c_inhibit_evaluation_warnings;
9654 }
9655 return r;
9656 }
9657
9658 /* Given a function parameter pack TMPL_PARM and some function parameters
9659 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
9660 and set *SPEC_P to point at the next point in the list. */
9661
9662 static tree
9663 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
9664 {
9665 /* Collect all of the extra "packed" parameters into an
9666 argument pack. */
9667 tree parmvec;
9668 tree parmtypevec;
9669 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
9670 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
9671 tree spec_parm = *spec_p;
9672 int i, len;
9673
9674 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
9675 if (tmpl_parm
9676 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
9677 break;
9678
9679 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
9680 parmvec = make_tree_vec (len);
9681 parmtypevec = make_tree_vec (len);
9682 spec_parm = *spec_p;
9683 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
9684 {
9685 TREE_VEC_ELT (parmvec, i) = spec_parm;
9686 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
9687 }
9688
9689 /* Build the argument packs. */
9690 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
9691 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
9692 TREE_TYPE (argpack) = argtypepack;
9693 *spec_p = spec_parm;
9694
9695 return argpack;
9696 }
9697
9698 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
9699 NONTYPE_ARGUMENT_PACK. */
9700
9701 static tree
9702 make_fnparm_pack (tree spec_parm)
9703 {
9704 return extract_fnparm_pack (NULL_TREE, &spec_parm);
9705 }
9706
9707 /* Return true iff the Ith element of the argument pack ARG_PACK is a
9708 pack expansion. */
9709
9710 static bool
9711 argument_pack_element_is_expansion_p (tree arg_pack, int i)
9712 {
9713 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
9714 if (i >= TREE_VEC_LENGTH (vec))
9715 return false;
9716 return PACK_EXPANSION_P (TREE_VEC_ELT (vec, i));
9717 }
9718
9719
9720 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
9721
9722 static tree
9723 make_argument_pack_select (tree arg_pack, unsigned index)
9724 {
9725 tree aps = make_node (ARGUMENT_PACK_SELECT);
9726
9727 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
9728 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
9729
9730 return aps;
9731 }
9732
9733 /* This is a subroutine of tsubst_pack_expansion.
9734
9735 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
9736 mechanism to store the (non complete list of) arguments of the
9737 substitution and return a non substituted pack expansion, in order
9738 to wait for when we have enough arguments to really perform the
9739 substitution. */
9740
9741 static bool
9742 use_pack_expansion_extra_args_p (tree parm_packs,
9743 int arg_pack_len,
9744 bool has_empty_arg)
9745 {
9746 /* If one pack has an expansion and another pack has a normal
9747 argument or if one pack has an empty argument and an another
9748 one hasn't then tsubst_pack_expansion cannot perform the
9749 substitution and need to fall back on the
9750 PACK_EXPANSION_EXTRA mechanism. */
9751 if (parm_packs == NULL_TREE)
9752 return false;
9753 else if (has_empty_arg)
9754 return true;
9755
9756 bool has_expansion_arg = false;
9757 for (int i = 0 ; i < arg_pack_len; ++i)
9758 {
9759 bool has_non_expansion_arg = false;
9760 for (tree parm_pack = parm_packs;
9761 parm_pack;
9762 parm_pack = TREE_CHAIN (parm_pack))
9763 {
9764 tree arg = TREE_VALUE (parm_pack);
9765
9766 if (argument_pack_element_is_expansion_p (arg, i))
9767 has_expansion_arg = true;
9768 else
9769 has_non_expansion_arg = true;
9770 }
9771
9772 if (has_expansion_arg && has_non_expansion_arg)
9773 return true;
9774 }
9775 return false;
9776 }
9777
9778 /* [temp.variadic]/6 says that:
9779
9780 The instantiation of a pack expansion [...]
9781 produces a list E1,E2, ..., En, where N is the number of elements
9782 in the pack expansion parameters.
9783
9784 This subroutine of tsubst_pack_expansion produces one of these Ei.
9785
9786 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
9787 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
9788 PATTERN, and each TREE_VALUE is its corresponding argument pack.
9789 INDEX is the index 'i' of the element Ei to produce. ARGS,
9790 COMPLAIN, and IN_DECL are the same parameters as for the
9791 tsubst_pack_expansion function.
9792
9793 The function returns the resulting Ei upon successful completion,
9794 or error_mark_node.
9795
9796 Note that this function possibly modifies the ARGS parameter, so
9797 it's the responsibility of the caller to restore it. */
9798
9799 static tree
9800 gen_elem_of_pack_expansion_instantiation (tree pattern,
9801 tree parm_packs,
9802 unsigned index,
9803 tree args /* This parm gets
9804 modified. */,
9805 tsubst_flags_t complain,
9806 tree in_decl)
9807 {
9808 tree t;
9809 bool ith_elem_is_expansion = false;
9810
9811 /* For each parameter pack, change the substitution of the parameter
9812 pack to the ith argument in its argument pack, then expand the
9813 pattern. */
9814 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
9815 {
9816 tree parm = TREE_PURPOSE (pack);
9817 tree arg_pack = TREE_VALUE (pack);
9818 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
9819
9820 ith_elem_is_expansion |=
9821 argument_pack_element_is_expansion_p (arg_pack, index);
9822
9823 /* Select the Ith argument from the pack. */
9824 if (TREE_CODE (parm) == PARM_DECL
9825 || TREE_CODE (parm) == FIELD_DECL)
9826 {
9827 if (index == 0)
9828 {
9829 aps = make_argument_pack_select (arg_pack, index);
9830 mark_used (parm);
9831 register_local_specialization (aps, parm);
9832 }
9833 else
9834 aps = retrieve_local_specialization (parm);
9835 }
9836 else
9837 {
9838 int idx, level;
9839 template_parm_level_and_index (parm, &level, &idx);
9840
9841 if (index == 0)
9842 {
9843 aps = make_argument_pack_select (arg_pack, index);
9844 /* Update the corresponding argument. */
9845 TMPL_ARG (args, level, idx) = aps;
9846 }
9847 else
9848 /* Re-use the ARGUMENT_PACK_SELECT. */
9849 aps = TMPL_ARG (args, level, idx);
9850 }
9851 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
9852 }
9853
9854 /* Substitute into the PATTERN with the (possibly altered)
9855 arguments. */
9856 if (pattern == in_decl)
9857 /* Expanding a fixed parameter pack from
9858 coerce_template_parameter_pack. */
9859 t = tsubst_decl (pattern, args, complain);
9860 else if (!TYPE_P (pattern))
9861 t = tsubst_expr (pattern, args, complain, in_decl,
9862 /*integral_constant_expression_p=*/false);
9863 else
9864 t = tsubst (pattern, args, complain, in_decl);
9865
9866 /* If the Ith argument pack element is a pack expansion, then
9867 the Ith element resulting from the substituting is going to
9868 be a pack expansion as well. */
9869 if (ith_elem_is_expansion)
9870 t = make_pack_expansion (t);
9871
9872 return t;
9873 }
9874
9875 /* Substitute ARGS into T, which is an pack expansion
9876 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
9877 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
9878 (if only a partial substitution could be performed) or
9879 ERROR_MARK_NODE if there was an error. */
9880 tree
9881 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
9882 tree in_decl)
9883 {
9884 tree pattern;
9885 tree pack, packs = NULL_TREE;
9886 bool unsubstituted_packs = false;
9887 int i, len = -1;
9888 tree result;
9889 hash_map<tree, tree> *saved_local_specializations = NULL;
9890 bool need_local_specializations = false;
9891 int levels;
9892
9893 gcc_assert (PACK_EXPANSION_P (t));
9894 pattern = PACK_EXPANSION_PATTERN (t);
9895
9896 /* Add in any args remembered from an earlier partial instantiation. */
9897 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
9898
9899 levels = TMPL_ARGS_DEPTH (args);
9900
9901 /* Determine the argument packs that will instantiate the parameter
9902 packs used in the expansion expression. While we're at it,
9903 compute the number of arguments to be expanded and make sure it
9904 is consistent. */
9905 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
9906 pack = TREE_CHAIN (pack))
9907 {
9908 tree parm_pack = TREE_VALUE (pack);
9909 tree arg_pack = NULL_TREE;
9910 tree orig_arg = NULL_TREE;
9911 int level = 0;
9912
9913 if (TREE_CODE (parm_pack) == BASES)
9914 {
9915 if (BASES_DIRECT (parm_pack))
9916 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
9917 args, complain, in_decl, false));
9918 else
9919 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
9920 args, complain, in_decl, false));
9921 }
9922 if (TREE_CODE (parm_pack) == PARM_DECL)
9923 {
9924 if (PACK_EXPANSION_LOCAL_P (t))
9925 arg_pack = retrieve_local_specialization (parm_pack);
9926 else
9927 {
9928 /* We can't rely on local_specializations for a parameter
9929 name used later in a function declaration (such as in a
9930 late-specified return type). Even if it exists, it might
9931 have the wrong value for a recursive call. Just make a
9932 dummy decl, since it's only used for its type. */
9933 arg_pack = tsubst_decl (parm_pack, args, complain);
9934 if (arg_pack && DECL_PACK_P (arg_pack))
9935 /* Partial instantiation of the parm_pack, we can't build
9936 up an argument pack yet. */
9937 arg_pack = NULL_TREE;
9938 else
9939 arg_pack = make_fnparm_pack (arg_pack);
9940 need_local_specializations = true;
9941 }
9942 }
9943 else if (TREE_CODE (parm_pack) == FIELD_DECL)
9944 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
9945 else
9946 {
9947 int idx;
9948 template_parm_level_and_index (parm_pack, &level, &idx);
9949
9950 if (level <= levels)
9951 arg_pack = TMPL_ARG (args, level, idx);
9952 }
9953
9954 orig_arg = arg_pack;
9955 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
9956 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
9957
9958 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
9959 /* This can only happen if we forget to expand an argument
9960 pack somewhere else. Just return an error, silently. */
9961 {
9962 result = make_tree_vec (1);
9963 TREE_VEC_ELT (result, 0) = error_mark_node;
9964 return result;
9965 }
9966
9967 if (arg_pack)
9968 {
9969 int my_len =
9970 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
9971
9972 /* Don't bother trying to do a partial substitution with
9973 incomplete packs; we'll try again after deduction. */
9974 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
9975 return t;
9976
9977 if (len < 0)
9978 len = my_len;
9979 else if (len != my_len)
9980 {
9981 if (!(complain & tf_error))
9982 /* Fail quietly. */;
9983 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
9984 error ("mismatched argument pack lengths while expanding "
9985 "%<%T%>",
9986 pattern);
9987 else
9988 error ("mismatched argument pack lengths while expanding "
9989 "%<%E%>",
9990 pattern);
9991 return error_mark_node;
9992 }
9993
9994 /* Keep track of the parameter packs and their corresponding
9995 argument packs. */
9996 packs = tree_cons (parm_pack, arg_pack, packs);
9997 TREE_TYPE (packs) = orig_arg;
9998 }
9999 else
10000 {
10001 /* We can't substitute for this parameter pack. We use a flag as
10002 well as the missing_level counter because function parameter
10003 packs don't have a level. */
10004 unsubstituted_packs = true;
10005 }
10006 }
10007
10008 /* If the expansion is just T..., return the matching argument pack. */
10009 if (!unsubstituted_packs
10010 && TREE_PURPOSE (packs) == pattern)
10011 {
10012 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
10013 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
10014 || pack_expansion_args_count (args))
10015 return args;
10016 /* Otherwise use the normal path so we get convert_from_reference. */
10017 }
10018
10019 /* We cannot expand this expansion expression, because we don't have
10020 all of the argument packs we need. */
10021 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
10022 {
10023 /* We got some full packs, but we can't substitute them in until we
10024 have values for all the packs. So remember these until then. */
10025
10026 t = make_pack_expansion (pattern);
10027 PACK_EXPANSION_EXTRA_ARGS (t) = args;
10028 return t;
10029 }
10030 else if (unsubstituted_packs)
10031 {
10032 /* There were no real arguments, we're just replacing a parameter
10033 pack with another version of itself. Substitute into the
10034 pattern and return a PACK_EXPANSION_*. The caller will need to
10035 deal with that. */
10036 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
10037 t = tsubst_expr (pattern, args, complain, in_decl,
10038 /*integral_constant_expression_p=*/false);
10039 else
10040 t = tsubst (pattern, args, complain, in_decl);
10041 t = make_pack_expansion (t);
10042 return t;
10043 }
10044
10045 gcc_assert (len >= 0);
10046
10047 if (need_local_specializations)
10048 {
10049 /* We're in a late-specified return type, so create our own local
10050 specializations map; the current map is either NULL or (in the
10051 case of recursive unification) might have bindings that we don't
10052 want to use or alter. */
10053 saved_local_specializations = local_specializations;
10054 local_specializations = new hash_map<tree, tree>;
10055 }
10056
10057 /* For each argument in each argument pack, substitute into the
10058 pattern. */
10059 result = make_tree_vec (len);
10060 for (i = 0; i < len; ++i)
10061 {
10062 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
10063 i,
10064 args, complain,
10065 in_decl);
10066 TREE_VEC_ELT (result, i) = t;
10067 if (t == error_mark_node)
10068 {
10069 result = error_mark_node;
10070 break;
10071 }
10072 }
10073
10074 /* Update ARGS to restore the substitution from parameter packs to
10075 their argument packs. */
10076 for (pack = packs; pack; pack = TREE_CHAIN (pack))
10077 {
10078 tree parm = TREE_PURPOSE (pack);
10079
10080 if (TREE_CODE (parm) == PARM_DECL
10081 || TREE_CODE (parm) == FIELD_DECL)
10082 register_local_specialization (TREE_TYPE (pack), parm);
10083 else
10084 {
10085 int idx, level;
10086
10087 if (TREE_VALUE (pack) == NULL_TREE)
10088 continue;
10089
10090 template_parm_level_and_index (parm, &level, &idx);
10091
10092 /* Update the corresponding argument. */
10093 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
10094 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
10095 TREE_TYPE (pack);
10096 else
10097 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
10098 }
10099 }
10100
10101 if (need_local_specializations)
10102 {
10103 delete local_specializations;
10104 local_specializations = saved_local_specializations;
10105 }
10106
10107 return result;
10108 }
10109
10110 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
10111 TMPL. We do this using DECL_PARM_INDEX, which should work even with
10112 parameter packs; all parms generated from a function parameter pack will
10113 have the same DECL_PARM_INDEX. */
10114
10115 tree
10116 get_pattern_parm (tree parm, tree tmpl)
10117 {
10118 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
10119 tree patparm;
10120
10121 if (DECL_ARTIFICIAL (parm))
10122 {
10123 for (patparm = DECL_ARGUMENTS (pattern);
10124 patparm; patparm = DECL_CHAIN (patparm))
10125 if (DECL_ARTIFICIAL (patparm)
10126 && DECL_NAME (parm) == DECL_NAME (patparm))
10127 break;
10128 }
10129 else
10130 {
10131 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
10132 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
10133 gcc_assert (DECL_PARM_INDEX (patparm)
10134 == DECL_PARM_INDEX (parm));
10135 }
10136
10137 return patparm;
10138 }
10139
10140 /* Substitute ARGS into the vector or list of template arguments T. */
10141
10142 static tree
10143 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10144 {
10145 tree orig_t = t;
10146 int len, need_new = 0, i, expanded_len_adjust = 0, out;
10147 tree *elts;
10148
10149 if (t == error_mark_node)
10150 return error_mark_node;
10151
10152 len = TREE_VEC_LENGTH (t);
10153 elts = XALLOCAVEC (tree, len);
10154
10155 for (i = 0; i < len; i++)
10156 {
10157 tree orig_arg = TREE_VEC_ELT (t, i);
10158 tree new_arg;
10159
10160 if (TREE_CODE (orig_arg) == TREE_VEC)
10161 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
10162 else if (PACK_EXPANSION_P (orig_arg))
10163 {
10164 /* Substitute into an expansion expression. */
10165 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
10166
10167 if (TREE_CODE (new_arg) == TREE_VEC)
10168 /* Add to the expanded length adjustment the number of
10169 expanded arguments. We subtract one from this
10170 measurement, because the argument pack expression
10171 itself is already counted as 1 in
10172 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
10173 the argument pack is empty. */
10174 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
10175 }
10176 else if (ARGUMENT_PACK_P (orig_arg))
10177 {
10178 /* Substitute into each of the arguments. */
10179 new_arg = TYPE_P (orig_arg)
10180 ? cxx_make_type (TREE_CODE (orig_arg))
10181 : make_node (TREE_CODE (orig_arg));
10182
10183 SET_ARGUMENT_PACK_ARGS (
10184 new_arg,
10185 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
10186 args, complain, in_decl));
10187
10188 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
10189 new_arg = error_mark_node;
10190
10191 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
10192 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
10193 complain, in_decl);
10194 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
10195
10196 if (TREE_TYPE (new_arg) == error_mark_node)
10197 new_arg = error_mark_node;
10198 }
10199 }
10200 else
10201 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
10202
10203 if (new_arg == error_mark_node)
10204 return error_mark_node;
10205
10206 elts[i] = new_arg;
10207 if (new_arg != orig_arg)
10208 need_new = 1;
10209 }
10210
10211 if (!need_new)
10212 return t;
10213
10214 /* Make space for the expanded arguments coming from template
10215 argument packs. */
10216 t = make_tree_vec (len + expanded_len_adjust);
10217 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
10218 arguments for a member template.
10219 In that case each TREE_VEC in ORIG_T represents a level of template
10220 arguments, and ORIG_T won't carry any non defaulted argument count.
10221 It will rather be the nested TREE_VECs that will carry one.
10222 In other words, ORIG_T carries a non defaulted argument count only
10223 if it doesn't contain any nested TREE_VEC. */
10224 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
10225 {
10226 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
10227 count += expanded_len_adjust;
10228 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
10229 }
10230 for (i = 0, out = 0; i < len; i++)
10231 {
10232 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
10233 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
10234 && TREE_CODE (elts[i]) == TREE_VEC)
10235 {
10236 int idx;
10237
10238 /* Now expand the template argument pack "in place". */
10239 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
10240 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
10241 }
10242 else
10243 {
10244 TREE_VEC_ELT (t, out) = elts[i];
10245 out++;
10246 }
10247 }
10248
10249 return t;
10250 }
10251
10252 /* Return the result of substituting ARGS into the template parameters
10253 given by PARMS. If there are m levels of ARGS and m + n levels of
10254 PARMS, then the result will contain n levels of PARMS. For
10255 example, if PARMS is `template <class T> template <class U>
10256 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
10257 result will be `template <int*, double, class V>'. */
10258
10259 static tree
10260 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
10261 {
10262 tree r = NULL_TREE;
10263 tree* new_parms;
10264
10265 /* When substituting into a template, we must set
10266 PROCESSING_TEMPLATE_DECL as the template parameters may be
10267 dependent if they are based on one-another, and the dependency
10268 predicates are short-circuit outside of templates. */
10269 ++processing_template_decl;
10270
10271 for (new_parms = &r;
10272 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
10273 new_parms = &(TREE_CHAIN (*new_parms)),
10274 parms = TREE_CHAIN (parms))
10275 {
10276 tree new_vec =
10277 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
10278 int i;
10279
10280 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
10281 {
10282 tree tuple;
10283
10284 if (parms == error_mark_node)
10285 continue;
10286
10287 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
10288
10289 if (tuple == error_mark_node)
10290 continue;
10291
10292 TREE_VEC_ELT (new_vec, i) =
10293 tsubst_template_parm (tuple, args, complain);
10294 }
10295
10296 *new_parms =
10297 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
10298 - TMPL_ARGS_DEPTH (args)),
10299 new_vec, NULL_TREE);
10300 }
10301
10302 --processing_template_decl;
10303
10304 return r;
10305 }
10306
10307 /* Return the result of substituting ARGS into one template parameter
10308 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
10309 parameter and which TREE_PURPOSE is the default argument of the
10310 template parameter. */
10311
10312 static tree
10313 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
10314 {
10315 tree default_value, parm_decl;
10316
10317 if (args == NULL_TREE
10318 || t == NULL_TREE
10319 || t == error_mark_node)
10320 return t;
10321
10322 gcc_assert (TREE_CODE (t) == TREE_LIST);
10323
10324 default_value = TREE_PURPOSE (t);
10325 parm_decl = TREE_VALUE (t);
10326
10327 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
10328 if (TREE_CODE (parm_decl) == PARM_DECL
10329 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
10330 parm_decl = error_mark_node;
10331 default_value = tsubst_template_arg (default_value, args,
10332 complain, NULL_TREE);
10333
10334 return build_tree_list (default_value, parm_decl);
10335 }
10336
10337 /* Substitute the ARGS into the indicated aggregate (or enumeration)
10338 type T. If T is not an aggregate or enumeration type, it is
10339 handled as if by tsubst. IN_DECL is as for tsubst. If
10340 ENTERING_SCOPE is nonzero, T is the context for a template which
10341 we are presently tsubst'ing. Return the substituted value. */
10342
10343 static tree
10344 tsubst_aggr_type (tree t,
10345 tree args,
10346 tsubst_flags_t complain,
10347 tree in_decl,
10348 int entering_scope)
10349 {
10350 if (t == NULL_TREE)
10351 return NULL_TREE;
10352
10353 switch (TREE_CODE (t))
10354 {
10355 case RECORD_TYPE:
10356 if (TYPE_PTRMEMFUNC_P (t))
10357 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
10358
10359 /* Else fall through. */
10360 case ENUMERAL_TYPE:
10361 case UNION_TYPE:
10362 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
10363 {
10364 tree argvec;
10365 tree context;
10366 tree r;
10367 int saved_unevaluated_operand;
10368 int saved_inhibit_evaluation_warnings;
10369
10370 /* In "sizeof(X<I>)" we need to evaluate "I". */
10371 saved_unevaluated_operand = cp_unevaluated_operand;
10372 cp_unevaluated_operand = 0;
10373 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
10374 c_inhibit_evaluation_warnings = 0;
10375
10376 /* First, determine the context for the type we are looking
10377 up. */
10378 context = TYPE_CONTEXT (t);
10379 if (context && TYPE_P (context))
10380 {
10381 context = tsubst_aggr_type (context, args, complain,
10382 in_decl, /*entering_scope=*/1);
10383 /* If context is a nested class inside a class template,
10384 it may still need to be instantiated (c++/33959). */
10385 context = complete_type (context);
10386 }
10387
10388 /* Then, figure out what arguments are appropriate for the
10389 type we are trying to find. For example, given:
10390
10391 template <class T> struct S;
10392 template <class T, class U> void f(T, U) { S<U> su; }
10393
10394 and supposing that we are instantiating f<int, double>,
10395 then our ARGS will be {int, double}, but, when looking up
10396 S we only want {double}. */
10397 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
10398 complain, in_decl);
10399 if (argvec == error_mark_node)
10400 r = error_mark_node;
10401 else
10402 {
10403 r = lookup_template_class (t, argvec, in_decl, context,
10404 entering_scope, complain);
10405 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
10406 }
10407
10408 cp_unevaluated_operand = saved_unevaluated_operand;
10409 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10410
10411 return r;
10412 }
10413 else
10414 /* This is not a template type, so there's nothing to do. */
10415 return t;
10416
10417 default:
10418 return tsubst (t, args, complain, in_decl);
10419 }
10420 }
10421
10422 /* Substitute into the default argument ARG (a default argument for
10423 FN), which has the indicated TYPE. */
10424
10425 tree
10426 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
10427 {
10428 tree saved_class_ptr = NULL_TREE;
10429 tree saved_class_ref = NULL_TREE;
10430 int errs = errorcount + sorrycount;
10431
10432 /* This can happen in invalid code. */
10433 if (TREE_CODE (arg) == DEFAULT_ARG)
10434 return arg;
10435
10436 /* This default argument came from a template. Instantiate the
10437 default argument here, not in tsubst. In the case of
10438 something like:
10439
10440 template <class T>
10441 struct S {
10442 static T t();
10443 void f(T = t());
10444 };
10445
10446 we must be careful to do name lookup in the scope of S<T>,
10447 rather than in the current class. */
10448 push_access_scope (fn);
10449 /* The "this" pointer is not valid in a default argument. */
10450 if (cfun)
10451 {
10452 saved_class_ptr = current_class_ptr;
10453 cp_function_chain->x_current_class_ptr = NULL_TREE;
10454 saved_class_ref = current_class_ref;
10455 cp_function_chain->x_current_class_ref = NULL_TREE;
10456 }
10457
10458 push_deferring_access_checks(dk_no_deferred);
10459 /* The default argument expression may cause implicitly defined
10460 member functions to be synthesized, which will result in garbage
10461 collection. We must treat this situation as if we were within
10462 the body of function so as to avoid collecting live data on the
10463 stack. */
10464 ++function_depth;
10465 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
10466 complain, NULL_TREE,
10467 /*integral_constant_expression_p=*/false);
10468 --function_depth;
10469 pop_deferring_access_checks();
10470
10471 /* Restore the "this" pointer. */
10472 if (cfun)
10473 {
10474 cp_function_chain->x_current_class_ptr = saved_class_ptr;
10475 cp_function_chain->x_current_class_ref = saved_class_ref;
10476 }
10477
10478 if (errorcount+sorrycount > errs
10479 && (complain & tf_warning_or_error))
10480 inform (input_location,
10481 " when instantiating default argument for call to %D", fn);
10482
10483 /* Make sure the default argument is reasonable. */
10484 arg = check_default_argument (type, arg, complain);
10485
10486 pop_access_scope (fn);
10487
10488 return arg;
10489 }
10490
10491 /* Substitute into all the default arguments for FN. */
10492
10493 static void
10494 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
10495 {
10496 tree arg;
10497 tree tmpl_args;
10498
10499 tmpl_args = DECL_TI_ARGS (fn);
10500
10501 /* If this function is not yet instantiated, we certainly don't need
10502 its default arguments. */
10503 if (uses_template_parms (tmpl_args))
10504 return;
10505 /* Don't do this again for clones. */
10506 if (DECL_CLONED_FUNCTION_P (fn))
10507 return;
10508
10509 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
10510 arg;
10511 arg = TREE_CHAIN (arg))
10512 if (TREE_PURPOSE (arg))
10513 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
10514 TREE_VALUE (arg),
10515 TREE_PURPOSE (arg),
10516 complain);
10517 }
10518
10519 /* Substitute the ARGS into the T, which is a _DECL. Return the
10520 result of the substitution. Issue error and warning messages under
10521 control of COMPLAIN. */
10522
10523 static tree
10524 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
10525 {
10526 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
10527 location_t saved_loc;
10528 tree r = NULL_TREE;
10529 tree in_decl = t;
10530 hashval_t hash = 0;
10531
10532 /* Set the filename and linenumber to improve error-reporting. */
10533 saved_loc = input_location;
10534 input_location = DECL_SOURCE_LOCATION (t);
10535
10536 switch (TREE_CODE (t))
10537 {
10538 case TEMPLATE_DECL:
10539 {
10540 /* We can get here when processing a member function template,
10541 member class template, or template template parameter. */
10542 tree decl = DECL_TEMPLATE_RESULT (t);
10543 tree spec;
10544 tree tmpl_args;
10545 tree full_args;
10546
10547 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10548 {
10549 /* Template template parameter is treated here. */
10550 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10551 if (new_type == error_mark_node)
10552 RETURN (error_mark_node);
10553 /* If we get a real template back, return it. This can happen in
10554 the context of most_specialized_partial_spec. */
10555 if (TREE_CODE (new_type) == TEMPLATE_DECL)
10556 return new_type;
10557
10558 r = copy_decl (t);
10559 DECL_CHAIN (r) = NULL_TREE;
10560 TREE_TYPE (r) = new_type;
10561 DECL_TEMPLATE_RESULT (r)
10562 = build_decl (DECL_SOURCE_LOCATION (decl),
10563 TYPE_DECL, DECL_NAME (decl), new_type);
10564 DECL_TEMPLATE_PARMS (r)
10565 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
10566 complain);
10567 TYPE_NAME (new_type) = r;
10568 break;
10569 }
10570
10571 /* We might already have an instance of this template.
10572 The ARGS are for the surrounding class type, so the
10573 full args contain the tsubst'd args for the context,
10574 plus the innermost args from the template decl. */
10575 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
10576 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
10577 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
10578 /* Because this is a template, the arguments will still be
10579 dependent, even after substitution. If
10580 PROCESSING_TEMPLATE_DECL is not set, the dependency
10581 predicates will short-circuit. */
10582 ++processing_template_decl;
10583 full_args = tsubst_template_args (tmpl_args, args,
10584 complain, in_decl);
10585 --processing_template_decl;
10586 if (full_args == error_mark_node)
10587 RETURN (error_mark_node);
10588
10589 /* If this is a default template template argument,
10590 tsubst might not have changed anything. */
10591 if (full_args == tmpl_args)
10592 RETURN (t);
10593
10594 hash = hash_tmpl_and_args (t, full_args);
10595 spec = retrieve_specialization (t, full_args, hash);
10596 if (spec != NULL_TREE)
10597 {
10598 r = spec;
10599 break;
10600 }
10601
10602 /* Make a new template decl. It will be similar to the
10603 original, but will record the current template arguments.
10604 We also create a new function declaration, which is just
10605 like the old one, but points to this new template, rather
10606 than the old one. */
10607 r = copy_decl (t);
10608 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
10609 DECL_CHAIN (r) = NULL_TREE;
10610
10611 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
10612
10613 if (TREE_CODE (decl) == TYPE_DECL
10614 && !TYPE_DECL_ALIAS_P (decl))
10615 {
10616 tree new_type;
10617 ++processing_template_decl;
10618 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10619 --processing_template_decl;
10620 if (new_type == error_mark_node)
10621 RETURN (error_mark_node);
10622
10623 TREE_TYPE (r) = new_type;
10624 /* For a partial specialization, we need to keep pointing to
10625 the primary template. */
10626 if (!DECL_TEMPLATE_SPECIALIZATION (t))
10627 CLASSTYPE_TI_TEMPLATE (new_type) = r;
10628 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
10629 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
10630 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
10631 }
10632 else
10633 {
10634 tree new_decl;
10635 ++processing_template_decl;
10636 new_decl = tsubst (decl, args, complain, in_decl);
10637 --processing_template_decl;
10638 if (new_decl == error_mark_node)
10639 RETURN (error_mark_node);
10640
10641 DECL_TEMPLATE_RESULT (r) = new_decl;
10642 DECL_TI_TEMPLATE (new_decl) = r;
10643 TREE_TYPE (r) = TREE_TYPE (new_decl);
10644 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
10645 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
10646 }
10647
10648 SET_DECL_IMPLICIT_INSTANTIATION (r);
10649 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
10650 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
10651
10652 /* The template parameters for this new template are all the
10653 template parameters for the old template, except the
10654 outermost level of parameters. */
10655 DECL_TEMPLATE_PARMS (r)
10656 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
10657 complain);
10658
10659 if (PRIMARY_TEMPLATE_P (t))
10660 DECL_PRIMARY_TEMPLATE (r) = r;
10661
10662 if (TREE_CODE (decl) != TYPE_DECL && TREE_CODE (decl) != VAR_DECL)
10663 /* Record this non-type partial instantiation. */
10664 register_specialization (r, t,
10665 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
10666 false, hash);
10667 }
10668 break;
10669
10670 case FUNCTION_DECL:
10671 {
10672 tree ctx;
10673 tree argvec = NULL_TREE;
10674 tree *friends;
10675 tree gen_tmpl;
10676 tree type;
10677 int member;
10678 int args_depth;
10679 int parms_depth;
10680
10681 /* Nobody should be tsubst'ing into non-template functions. */
10682 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
10683
10684 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
10685 {
10686 tree spec;
10687 bool dependent_p;
10688
10689 /* If T is not dependent, just return it. We have to
10690 increment PROCESSING_TEMPLATE_DECL because
10691 value_dependent_expression_p assumes that nothing is
10692 dependent when PROCESSING_TEMPLATE_DECL is zero. */
10693 ++processing_template_decl;
10694 dependent_p = value_dependent_expression_p (t);
10695 --processing_template_decl;
10696 if (!dependent_p)
10697 RETURN (t);
10698
10699 /* Calculate the most general template of which R is a
10700 specialization, and the complete set of arguments used to
10701 specialize R. */
10702 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
10703 argvec = tsubst_template_args (DECL_TI_ARGS
10704 (DECL_TEMPLATE_RESULT
10705 (DECL_TI_TEMPLATE (t))),
10706 args, complain, in_decl);
10707 if (argvec == error_mark_node)
10708 RETURN (error_mark_node);
10709
10710 /* Check to see if we already have this specialization. */
10711 hash = hash_tmpl_and_args (gen_tmpl, argvec);
10712 spec = retrieve_specialization (gen_tmpl, argvec, hash);
10713
10714 if (spec)
10715 {
10716 r = spec;
10717 break;
10718 }
10719
10720 /* We can see more levels of arguments than parameters if
10721 there was a specialization of a member template, like
10722 this:
10723
10724 template <class T> struct S { template <class U> void f(); }
10725 template <> template <class U> void S<int>::f(U);
10726
10727 Here, we'll be substituting into the specialization,
10728 because that's where we can find the code we actually
10729 want to generate, but we'll have enough arguments for
10730 the most general template.
10731
10732 We also deal with the peculiar case:
10733
10734 template <class T> struct S {
10735 template <class U> friend void f();
10736 };
10737 template <class U> void f() {}
10738 template S<int>;
10739 template void f<double>();
10740
10741 Here, the ARGS for the instantiation of will be {int,
10742 double}. But, we only need as many ARGS as there are
10743 levels of template parameters in CODE_PATTERN. We are
10744 careful not to get fooled into reducing the ARGS in
10745 situations like:
10746
10747 template <class T> struct S { template <class U> void f(U); }
10748 template <class T> template <> void S<T>::f(int) {}
10749
10750 which we can spot because the pattern will be a
10751 specialization in this case. */
10752 args_depth = TMPL_ARGS_DEPTH (args);
10753 parms_depth =
10754 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
10755 if (args_depth > parms_depth
10756 && !DECL_TEMPLATE_SPECIALIZATION (t))
10757 args = get_innermost_template_args (args, parms_depth);
10758 }
10759 else
10760 {
10761 /* This special case arises when we have something like this:
10762
10763 template <class T> struct S {
10764 friend void f<int>(int, double);
10765 };
10766
10767 Here, the DECL_TI_TEMPLATE for the friend declaration
10768 will be an IDENTIFIER_NODE. We are being called from
10769 tsubst_friend_function, and we want only to create a
10770 new decl (R) with appropriate types so that we can call
10771 determine_specialization. */
10772 gen_tmpl = NULL_TREE;
10773 }
10774
10775 if (DECL_CLASS_SCOPE_P (t))
10776 {
10777 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
10778 member = 2;
10779 else
10780 member = 1;
10781 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
10782 complain, t, /*entering_scope=*/1);
10783 }
10784 else
10785 {
10786 member = 0;
10787 ctx = DECL_CONTEXT (t);
10788 }
10789 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10790 if (type == error_mark_node)
10791 RETURN (error_mark_node);
10792
10793 /* If we hit excessive deduction depth, the type is bogus even if
10794 it isn't error_mark_node, so don't build a decl. */
10795 if (excessive_deduction_depth)
10796 RETURN (error_mark_node);
10797
10798 /* We do NOT check for matching decls pushed separately at this
10799 point, as they may not represent instantiations of this
10800 template, and in any case are considered separate under the
10801 discrete model. */
10802 r = copy_decl (t);
10803 DECL_USE_TEMPLATE (r) = 0;
10804 TREE_TYPE (r) = type;
10805 /* Clear out the mangled name and RTL for the instantiation. */
10806 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
10807 SET_DECL_RTL (r, NULL);
10808 /* Leave DECL_INITIAL set on deleted instantiations. */
10809 if (!DECL_DELETED_FN (r))
10810 DECL_INITIAL (r) = NULL_TREE;
10811 DECL_CONTEXT (r) = ctx;
10812
10813 /* OpenMP UDRs have the only argument a reference to the declared
10814 type. We want to diagnose if the declared type is a reference,
10815 which is invalid, but as references to references are usually
10816 quietly merged, diagnose it here. */
10817 if (DECL_OMP_DECLARE_REDUCTION_P (t))
10818 {
10819 tree argtype
10820 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
10821 argtype = tsubst (argtype, args, complain, in_decl);
10822 if (TREE_CODE (argtype) == REFERENCE_TYPE)
10823 error_at (DECL_SOURCE_LOCATION (t),
10824 "reference type %qT in "
10825 "%<#pragma omp declare reduction%>", argtype);
10826 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
10827 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
10828 argtype);
10829 }
10830
10831 if (member && DECL_CONV_FN_P (r))
10832 /* Type-conversion operator. Reconstruct the name, in
10833 case it's the name of one of the template's parameters. */
10834 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
10835
10836 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
10837 complain, t);
10838 DECL_RESULT (r) = NULL_TREE;
10839
10840 TREE_STATIC (r) = 0;
10841 TREE_PUBLIC (r) = TREE_PUBLIC (t);
10842 DECL_EXTERNAL (r) = 1;
10843 /* If this is an instantiation of a function with internal
10844 linkage, we already know what object file linkage will be
10845 assigned to the instantiation. */
10846 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
10847 DECL_DEFER_OUTPUT (r) = 0;
10848 DECL_CHAIN (r) = NULL_TREE;
10849 DECL_PENDING_INLINE_INFO (r) = 0;
10850 DECL_PENDING_INLINE_P (r) = 0;
10851 DECL_SAVED_TREE (r) = NULL_TREE;
10852 DECL_STRUCT_FUNCTION (r) = NULL;
10853 TREE_USED (r) = 0;
10854 /* We'll re-clone as appropriate in instantiate_template. */
10855 DECL_CLONED_FUNCTION (r) = NULL_TREE;
10856
10857 /* If we aren't complaining now, return on error before we register
10858 the specialization so that we'll complain eventually. */
10859 if ((complain & tf_error) == 0
10860 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10861 && !grok_op_properties (r, /*complain=*/false))
10862 RETURN (error_mark_node);
10863
10864 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
10865 this in the special friend case mentioned above where
10866 GEN_TMPL is NULL. */
10867 if (gen_tmpl)
10868 {
10869 DECL_TEMPLATE_INFO (r)
10870 = build_template_info (gen_tmpl, argvec);
10871 SET_DECL_IMPLICIT_INSTANTIATION (r);
10872
10873 tree new_r
10874 = register_specialization (r, gen_tmpl, argvec, false, hash);
10875 if (new_r != r)
10876 /* We instantiated this while substituting into
10877 the type earlier (template/friend54.C). */
10878 RETURN (new_r);
10879
10880 /* We're not supposed to instantiate default arguments
10881 until they are called, for a template. But, for a
10882 declaration like:
10883
10884 template <class T> void f ()
10885 { extern void g(int i = T()); }
10886
10887 we should do the substitution when the template is
10888 instantiated. We handle the member function case in
10889 instantiate_class_template since the default arguments
10890 might refer to other members of the class. */
10891 if (!member
10892 && !PRIMARY_TEMPLATE_P (gen_tmpl)
10893 && !uses_template_parms (argvec))
10894 tsubst_default_arguments (r, complain);
10895 }
10896 else
10897 DECL_TEMPLATE_INFO (r) = NULL_TREE;
10898
10899 /* Copy the list of befriending classes. */
10900 for (friends = &DECL_BEFRIENDING_CLASSES (r);
10901 *friends;
10902 friends = &TREE_CHAIN (*friends))
10903 {
10904 *friends = copy_node (*friends);
10905 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
10906 args, complain,
10907 in_decl);
10908 }
10909
10910 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
10911 {
10912 maybe_retrofit_in_chrg (r);
10913 if (DECL_CONSTRUCTOR_P (r))
10914 grok_ctor_properties (ctx, r);
10915 if (DECL_INHERITED_CTOR_BASE (r))
10916 deduce_inheriting_ctor (r);
10917 /* If this is an instantiation of a member template, clone it.
10918 If it isn't, that'll be handled by
10919 clone_constructors_and_destructors. */
10920 if (PRIMARY_TEMPLATE_P (gen_tmpl))
10921 clone_function_decl (r, /*update_method_vec_p=*/0);
10922 }
10923 else if ((complain & tf_error) != 0
10924 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10925 && !grok_op_properties (r, /*complain=*/true))
10926 RETURN (error_mark_node);
10927
10928 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
10929 SET_DECL_FRIEND_CONTEXT (r,
10930 tsubst (DECL_FRIEND_CONTEXT (t),
10931 args, complain, in_decl));
10932
10933 /* Possibly limit visibility based on template args. */
10934 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
10935 if (DECL_VISIBILITY_SPECIFIED (t))
10936 {
10937 DECL_VISIBILITY_SPECIFIED (r) = 0;
10938 DECL_ATTRIBUTES (r)
10939 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
10940 }
10941 determine_visibility (r);
10942 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
10943 && !processing_template_decl)
10944 defaulted_late_check (r);
10945
10946 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10947 args, complain, in_decl);
10948 }
10949 break;
10950
10951 case PARM_DECL:
10952 {
10953 tree type = NULL_TREE;
10954 int i, len = 1;
10955 tree expanded_types = NULL_TREE;
10956 tree prev_r = NULL_TREE;
10957 tree first_r = NULL_TREE;
10958
10959 if (DECL_PACK_P (t))
10960 {
10961 /* If there is a local specialization that isn't a
10962 parameter pack, it means that we're doing a "simple"
10963 substitution from inside tsubst_pack_expansion. Just
10964 return the local specialization (which will be a single
10965 parm). */
10966 tree spec = retrieve_local_specialization (t);
10967 if (spec
10968 && TREE_CODE (spec) == PARM_DECL
10969 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
10970 RETURN (spec);
10971
10972 /* Expand the TYPE_PACK_EXPANSION that provides the types for
10973 the parameters in this function parameter pack. */
10974 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
10975 complain, in_decl);
10976 if (TREE_CODE (expanded_types) == TREE_VEC)
10977 {
10978 len = TREE_VEC_LENGTH (expanded_types);
10979
10980 /* Zero-length parameter packs are boring. Just substitute
10981 into the chain. */
10982 if (len == 0)
10983 RETURN (tsubst (TREE_CHAIN (t), args, complain,
10984 TREE_CHAIN (t)));
10985 }
10986 else
10987 {
10988 /* All we did was update the type. Make a note of that. */
10989 type = expanded_types;
10990 expanded_types = NULL_TREE;
10991 }
10992 }
10993
10994 /* Loop through all of the parameters we'll build. When T is
10995 a function parameter pack, LEN is the number of expanded
10996 types in EXPANDED_TYPES; otherwise, LEN is 1. */
10997 r = NULL_TREE;
10998 for (i = 0; i < len; ++i)
10999 {
11000 prev_r = r;
11001 r = copy_node (t);
11002 if (DECL_TEMPLATE_PARM_P (t))
11003 SET_DECL_TEMPLATE_PARM_P (r);
11004
11005 if (expanded_types)
11006 /* We're on the Ith parameter of the function parameter
11007 pack. */
11008 {
11009 /* Get the Ith type. */
11010 type = TREE_VEC_ELT (expanded_types, i);
11011
11012 /* Rename the parameter to include the index. */
11013 DECL_NAME (r)
11014 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11015 }
11016 else if (!type)
11017 /* We're dealing with a normal parameter. */
11018 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11019
11020 type = type_decays_to (type);
11021 TREE_TYPE (r) = type;
11022 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11023
11024 if (DECL_INITIAL (r))
11025 {
11026 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
11027 DECL_INITIAL (r) = TREE_TYPE (r);
11028 else
11029 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
11030 complain, in_decl);
11031 }
11032
11033 DECL_CONTEXT (r) = NULL_TREE;
11034
11035 if (!DECL_TEMPLATE_PARM_P (r))
11036 DECL_ARG_TYPE (r) = type_passed_as (type);
11037
11038 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11039 args, complain, in_decl);
11040
11041 /* Keep track of the first new parameter we
11042 generate. That's what will be returned to the
11043 caller. */
11044 if (!first_r)
11045 first_r = r;
11046
11047 /* Build a proper chain of parameters when substituting
11048 into a function parameter pack. */
11049 if (prev_r)
11050 DECL_CHAIN (prev_r) = r;
11051 }
11052
11053 /* If cp_unevaluated_operand is set, we're just looking for a
11054 single dummy parameter, so don't keep going. */
11055 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
11056 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
11057 complain, DECL_CHAIN (t));
11058
11059 /* FIRST_R contains the start of the chain we've built. */
11060 r = first_r;
11061 }
11062 break;
11063
11064 case FIELD_DECL:
11065 {
11066 tree type = NULL_TREE;
11067 tree vec = NULL_TREE;
11068 tree expanded_types = NULL_TREE;
11069 int len = 1;
11070
11071 if (PACK_EXPANSION_P (TREE_TYPE (t)))
11072 {
11073 /* This field is a lambda capture pack. Return a TREE_VEC of
11074 the expanded fields to instantiate_class_template_1 and
11075 store them in the specializations hash table as a
11076 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
11077 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11078 complain, in_decl);
11079 if (TREE_CODE (expanded_types) == TREE_VEC)
11080 {
11081 len = TREE_VEC_LENGTH (expanded_types);
11082 vec = make_tree_vec (len);
11083 }
11084 else
11085 {
11086 /* All we did was update the type. Make a note of that. */
11087 type = expanded_types;
11088 expanded_types = NULL_TREE;
11089 }
11090 }
11091
11092 for (int i = 0; i < len; ++i)
11093 {
11094 r = copy_decl (t);
11095 if (expanded_types)
11096 {
11097 type = TREE_VEC_ELT (expanded_types, i);
11098 DECL_NAME (r)
11099 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11100 }
11101 else if (!type)
11102 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11103
11104 if (type == error_mark_node)
11105 RETURN (error_mark_node);
11106 TREE_TYPE (r) = type;
11107 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11108
11109 if (DECL_C_BIT_FIELD (r))
11110 /* For bit-fields, DECL_INITIAL gives the number of bits. For
11111 non-bit-fields DECL_INITIAL is a non-static data member
11112 initializer, which gets deferred instantiation. */
11113 DECL_INITIAL (r)
11114 = tsubst_expr (DECL_INITIAL (t), args,
11115 complain, in_decl,
11116 /*integral_constant_expression_p=*/true);
11117 else if (DECL_INITIAL (t))
11118 {
11119 /* Set up DECL_TEMPLATE_INFO so that we can get at the
11120 NSDMI in perform_member_init. Still set DECL_INITIAL
11121 so that we know there is one. */
11122 DECL_INITIAL (r) = void_node;
11123 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
11124 retrofit_lang_decl (r);
11125 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11126 }
11127 /* We don't have to set DECL_CONTEXT here; it is set by
11128 finish_member_declaration. */
11129 DECL_CHAIN (r) = NULL_TREE;
11130
11131 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11132 args, complain, in_decl);
11133
11134 if (vec)
11135 TREE_VEC_ELT (vec, i) = r;
11136 }
11137
11138 if (vec)
11139 {
11140 r = vec;
11141 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
11142 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
11143 SET_ARGUMENT_PACK_ARGS (pack, vec);
11144 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
11145 TREE_TYPE (pack) = tpack;
11146 register_specialization (pack, t, args, false, 0);
11147 }
11148 }
11149 break;
11150
11151 case USING_DECL:
11152 /* We reach here only for member using decls. We also need to check
11153 uses_template_parms because DECL_DEPENDENT_P is not set for a
11154 using-declaration that designates a member of the current
11155 instantiation (c++/53549). */
11156 if (DECL_DEPENDENT_P (t)
11157 || uses_template_parms (USING_DECL_SCOPE (t)))
11158 {
11159 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
11160 complain, in_decl);
11161 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
11162 r = do_class_using_decl (inst_scope, name);
11163 if (!r)
11164 r = error_mark_node;
11165 else
11166 {
11167 TREE_PROTECTED (r) = TREE_PROTECTED (t);
11168 TREE_PRIVATE (r) = TREE_PRIVATE (t);
11169 }
11170 }
11171 else
11172 {
11173 r = copy_node (t);
11174 DECL_CHAIN (r) = NULL_TREE;
11175 }
11176 break;
11177
11178 case TYPE_DECL:
11179 case VAR_DECL:
11180 {
11181 tree argvec = NULL_TREE;
11182 tree gen_tmpl = NULL_TREE;
11183 tree spec;
11184 tree tmpl = NULL_TREE;
11185 tree ctx;
11186 tree type = NULL_TREE;
11187 bool local_p;
11188
11189 if (TREE_TYPE (t) == error_mark_node)
11190 RETURN (error_mark_node);
11191
11192 if (TREE_CODE (t) == TYPE_DECL
11193 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
11194 {
11195 /* If this is the canonical decl, we don't have to
11196 mess with instantiations, and often we can't (for
11197 typename, template type parms and such). Note that
11198 TYPE_NAME is not correct for the above test if
11199 we've copied the type for a typedef. */
11200 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11201 if (type == error_mark_node)
11202 RETURN (error_mark_node);
11203 r = TYPE_NAME (type);
11204 break;
11205 }
11206
11207 /* Check to see if we already have the specialization we
11208 need. */
11209 spec = NULL_TREE;
11210 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
11211 {
11212 /* T is a static data member or namespace-scope entity.
11213 We have to substitute into namespace-scope variables
11214 (even though such entities are never templates) because
11215 of cases like:
11216
11217 template <class T> void f() { extern T t; }
11218
11219 where the entity referenced is not known until
11220 instantiation time. */
11221 local_p = false;
11222 ctx = DECL_CONTEXT (t);
11223 if (DECL_CLASS_SCOPE_P (t))
11224 {
11225 ctx = tsubst_aggr_type (ctx, args,
11226 complain,
11227 in_decl, /*entering_scope=*/1);
11228 /* If CTX is unchanged, then T is in fact the
11229 specialization we want. That situation occurs when
11230 referencing a static data member within in its own
11231 class. We can use pointer equality, rather than
11232 same_type_p, because DECL_CONTEXT is always
11233 canonical... */
11234 if (ctx == DECL_CONTEXT (t)
11235 /* ... unless T is a member template; in which
11236 case our caller can be willing to create a
11237 specialization of that template represented
11238 by T. */
11239 && !(DECL_TI_TEMPLATE (t)
11240 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
11241 spec = t;
11242 }
11243
11244 if (!spec)
11245 {
11246 tmpl = DECL_TI_TEMPLATE (t);
11247 gen_tmpl = most_general_template (tmpl);
11248 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
11249 if (argvec == error_mark_node)
11250 RETURN (error_mark_node);
11251 hash = hash_tmpl_and_args (gen_tmpl, argvec);
11252 spec = retrieve_specialization (gen_tmpl, argvec, hash);
11253 }
11254 }
11255 else
11256 {
11257 /* A local variable. */
11258 local_p = true;
11259 /* Subsequent calls to pushdecl will fill this in. */
11260 ctx = NULL_TREE;
11261 spec = retrieve_local_specialization (t);
11262 }
11263 /* If we already have the specialization we need, there is
11264 nothing more to do. */
11265 if (spec)
11266 {
11267 r = spec;
11268 break;
11269 }
11270
11271 /* Create a new node for the specialization we need. */
11272 r = copy_decl (t);
11273 if (type == NULL_TREE)
11274 {
11275 if (is_typedef_decl (t))
11276 type = DECL_ORIGINAL_TYPE (t);
11277 else
11278 type = TREE_TYPE (t);
11279 if (VAR_P (t)
11280 && VAR_HAD_UNKNOWN_BOUND (t)
11281 && type != error_mark_node)
11282 type = strip_array_domain (type);
11283 type = tsubst (type, args, complain, in_decl);
11284 }
11285 if (VAR_P (r))
11286 {
11287 /* Even if the original location is out of scope, the
11288 newly substituted one is not. */
11289 DECL_DEAD_FOR_LOCAL (r) = 0;
11290 DECL_INITIALIZED_P (r) = 0;
11291 DECL_TEMPLATE_INSTANTIATED (r) = 0;
11292 if (type == error_mark_node)
11293 RETURN (error_mark_node);
11294 if (TREE_CODE (type) == FUNCTION_TYPE)
11295 {
11296 /* It may seem that this case cannot occur, since:
11297
11298 typedef void f();
11299 void g() { f x; }
11300
11301 declares a function, not a variable. However:
11302
11303 typedef void f();
11304 template <typename T> void g() { T t; }
11305 template void g<f>();
11306
11307 is an attempt to declare a variable with function
11308 type. */
11309 error ("variable %qD has function type",
11310 /* R is not yet sufficiently initialized, so we
11311 just use its name. */
11312 DECL_NAME (r));
11313 RETURN (error_mark_node);
11314 }
11315 type = complete_type (type);
11316 /* Wait until cp_finish_decl to set this again, to handle
11317 circular dependency (template/instantiate6.C). */
11318 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
11319 type = check_var_type (DECL_NAME (r), type);
11320
11321 if (DECL_HAS_VALUE_EXPR_P (t))
11322 {
11323 tree ve = DECL_VALUE_EXPR (t);
11324 ve = tsubst_expr (ve, args, complain, in_decl,
11325 /*constant_expression_p=*/false);
11326 if (REFERENCE_REF_P (ve))
11327 {
11328 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
11329 ve = TREE_OPERAND (ve, 0);
11330 }
11331 SET_DECL_VALUE_EXPR (r, ve);
11332 }
11333 if (TREE_STATIC (r) || DECL_EXTERNAL (r))
11334 set_decl_tls_model (r, decl_tls_model (t));
11335 }
11336 else if (DECL_SELF_REFERENCE_P (t))
11337 SET_DECL_SELF_REFERENCE_P (r);
11338 TREE_TYPE (r) = type;
11339 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11340 DECL_CONTEXT (r) = ctx;
11341 /* Clear out the mangled name and RTL for the instantiation. */
11342 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
11343 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
11344 SET_DECL_RTL (r, NULL);
11345 /* The initializer must not be expanded until it is required;
11346 see [temp.inst]. */
11347 DECL_INITIAL (r) = NULL_TREE;
11348 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
11349 SET_DECL_RTL (r, NULL);
11350 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
11351 if (VAR_P (r))
11352 {
11353 /* Possibly limit visibility based on template args. */
11354 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
11355 if (DECL_VISIBILITY_SPECIFIED (t))
11356 {
11357 DECL_VISIBILITY_SPECIFIED (r) = 0;
11358 DECL_ATTRIBUTES (r)
11359 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
11360 }
11361 determine_visibility (r);
11362 }
11363
11364 if (!local_p)
11365 {
11366 /* A static data member declaration is always marked
11367 external when it is declared in-class, even if an
11368 initializer is present. We mimic the non-template
11369 processing here. */
11370 DECL_EXTERNAL (r) = 1;
11371
11372 register_specialization (r, gen_tmpl, argvec, false, hash);
11373 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
11374 SET_DECL_IMPLICIT_INSTANTIATION (r);
11375 }
11376 else if (!cp_unevaluated_operand)
11377 register_local_specialization (r, t);
11378
11379 DECL_CHAIN (r) = NULL_TREE;
11380
11381 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
11382 /*flags=*/0,
11383 args, complain, in_decl);
11384
11385 /* Preserve a typedef that names a type. */
11386 if (is_typedef_decl (r))
11387 {
11388 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
11389 set_underlying_type (r);
11390 }
11391
11392 layout_decl (r, 0);
11393 }
11394 break;
11395
11396 default:
11397 gcc_unreachable ();
11398 }
11399 #undef RETURN
11400
11401 out:
11402 /* Restore the file and line information. */
11403 input_location = saved_loc;
11404
11405 return r;
11406 }
11407
11408 /* Substitute into the ARG_TYPES of a function type.
11409 If END is a TREE_CHAIN, leave it and any following types
11410 un-substituted. */
11411
11412 static tree
11413 tsubst_arg_types (tree arg_types,
11414 tree args,
11415 tree end,
11416 tsubst_flags_t complain,
11417 tree in_decl)
11418 {
11419 tree remaining_arg_types;
11420 tree type = NULL_TREE;
11421 int i = 1;
11422 tree expanded_args = NULL_TREE;
11423 tree default_arg;
11424
11425 if (!arg_types || arg_types == void_list_node || arg_types == end)
11426 return arg_types;
11427
11428 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
11429 args, end, complain, in_decl);
11430 if (remaining_arg_types == error_mark_node)
11431 return error_mark_node;
11432
11433 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
11434 {
11435 /* For a pack expansion, perform substitution on the
11436 entire expression. Later on, we'll handle the arguments
11437 one-by-one. */
11438 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
11439 args, complain, in_decl);
11440
11441 if (TREE_CODE (expanded_args) == TREE_VEC)
11442 /* So that we'll spin through the parameters, one by one. */
11443 i = TREE_VEC_LENGTH (expanded_args);
11444 else
11445 {
11446 /* We only partially substituted into the parameter
11447 pack. Our type is TYPE_PACK_EXPANSION. */
11448 type = expanded_args;
11449 expanded_args = NULL_TREE;
11450 }
11451 }
11452
11453 while (i > 0) {
11454 --i;
11455
11456 if (expanded_args)
11457 type = TREE_VEC_ELT (expanded_args, i);
11458 else if (!type)
11459 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
11460
11461 if (type == error_mark_node)
11462 return error_mark_node;
11463 if (VOID_TYPE_P (type))
11464 {
11465 if (complain & tf_error)
11466 {
11467 error ("invalid parameter type %qT", type);
11468 if (in_decl)
11469 error ("in declaration %q+D", in_decl);
11470 }
11471 return error_mark_node;
11472 }
11473 /* DR 657. */
11474 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
11475 return error_mark_node;
11476
11477 /* Do array-to-pointer, function-to-pointer conversion, and ignore
11478 top-level qualifiers as required. */
11479 type = cv_unqualified (type_decays_to (type));
11480
11481 /* We do not substitute into default arguments here. The standard
11482 mandates that they be instantiated only when needed, which is
11483 done in build_over_call. */
11484 default_arg = TREE_PURPOSE (arg_types);
11485
11486 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
11487 {
11488 /* We've instantiated a template before its default arguments
11489 have been parsed. This can happen for a nested template
11490 class, and is not an error unless we require the default
11491 argument in a call of this function. */
11492 remaining_arg_types =
11493 tree_cons (default_arg, type, remaining_arg_types);
11494 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
11495 }
11496 else
11497 remaining_arg_types =
11498 hash_tree_cons (default_arg, type, remaining_arg_types);
11499 }
11500
11501 return remaining_arg_types;
11502 }
11503
11504 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
11505 *not* handle the exception-specification for FNTYPE, because the
11506 initial substitution of explicitly provided template parameters
11507 during argument deduction forbids substitution into the
11508 exception-specification:
11509
11510 [temp.deduct]
11511
11512 All references in the function type of the function template to the
11513 corresponding template parameters are replaced by the specified tem-
11514 plate argument values. If a substitution in a template parameter or
11515 in the function type of the function template results in an invalid
11516 type, type deduction fails. [Note: The equivalent substitution in
11517 exception specifications is done only when the function is instanti-
11518 ated, at which point a program is ill-formed if the substitution
11519 results in an invalid type.] */
11520
11521 static tree
11522 tsubst_function_type (tree t,
11523 tree args,
11524 tsubst_flags_t complain,
11525 tree in_decl)
11526 {
11527 tree return_type;
11528 tree arg_types = NULL_TREE;
11529 tree fntype;
11530
11531 /* The TYPE_CONTEXT is not used for function/method types. */
11532 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
11533
11534 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
11535 failure. */
11536 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
11537
11538 if (late_return_type_p)
11539 {
11540 /* Substitute the argument types. */
11541 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
11542 complain, in_decl);
11543 if (arg_types == error_mark_node)
11544 return error_mark_node;
11545
11546 tree save_ccp = current_class_ptr;
11547 tree save_ccr = current_class_ref;
11548 tree this_type = (TREE_CODE (t) == METHOD_TYPE
11549 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
11550 bool do_inject = this_type && CLASS_TYPE_P (this_type);
11551 if (do_inject)
11552 {
11553 /* DR 1207: 'this' is in scope in the trailing return type. */
11554 inject_this_parameter (this_type, cp_type_quals (this_type));
11555 }
11556
11557 /* Substitute the return type. */
11558 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11559
11560 if (do_inject)
11561 {
11562 current_class_ptr = save_ccp;
11563 current_class_ref = save_ccr;
11564 }
11565 }
11566 else
11567 /* Substitute the return type. */
11568 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11569
11570 if (return_type == error_mark_node)
11571 return error_mark_node;
11572 /* DR 486 clarifies that creation of a function type with an
11573 invalid return type is a deduction failure. */
11574 if (TREE_CODE (return_type) == ARRAY_TYPE
11575 || TREE_CODE (return_type) == FUNCTION_TYPE)
11576 {
11577 if (complain & tf_error)
11578 {
11579 if (TREE_CODE (return_type) == ARRAY_TYPE)
11580 error ("function returning an array");
11581 else
11582 error ("function returning a function");
11583 }
11584 return error_mark_node;
11585 }
11586 /* And DR 657. */
11587 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
11588 return error_mark_node;
11589
11590 if (!late_return_type_p)
11591 {
11592 /* Substitute the argument types. */
11593 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
11594 complain, in_decl);
11595 if (arg_types == error_mark_node)
11596 return error_mark_node;
11597 }
11598
11599 /* Construct a new type node and return it. */
11600 if (TREE_CODE (t) == FUNCTION_TYPE)
11601 {
11602 fntype = build_function_type (return_type, arg_types);
11603 fntype = apply_memfn_quals (fntype,
11604 type_memfn_quals (t),
11605 type_memfn_rqual (t));
11606 }
11607 else
11608 {
11609 tree r = TREE_TYPE (TREE_VALUE (arg_types));
11610 /* Don't pick up extra function qualifiers from the basetype. */
11611 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
11612 if (! MAYBE_CLASS_TYPE_P (r))
11613 {
11614 /* [temp.deduct]
11615
11616 Type deduction may fail for any of the following
11617 reasons:
11618
11619 -- Attempting to create "pointer to member of T" when T
11620 is not a class type. */
11621 if (complain & tf_error)
11622 error ("creating pointer to member function of non-class type %qT",
11623 r);
11624 return error_mark_node;
11625 }
11626
11627 fntype = build_method_type_directly (r, return_type,
11628 TREE_CHAIN (arg_types));
11629 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
11630 }
11631 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
11632
11633 if (late_return_type_p)
11634 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
11635
11636 return fntype;
11637 }
11638
11639 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
11640 ARGS into that specification, and return the substituted
11641 specification. If there is no specification, return NULL_TREE. */
11642
11643 static tree
11644 tsubst_exception_specification (tree fntype,
11645 tree args,
11646 tsubst_flags_t complain,
11647 tree in_decl,
11648 bool defer_ok)
11649 {
11650 tree specs;
11651 tree new_specs;
11652
11653 specs = TYPE_RAISES_EXCEPTIONS (fntype);
11654 new_specs = NULL_TREE;
11655 if (specs && TREE_PURPOSE (specs))
11656 {
11657 /* A noexcept-specifier. */
11658 tree expr = TREE_PURPOSE (specs);
11659 if (TREE_CODE (expr) == INTEGER_CST)
11660 new_specs = expr;
11661 else if (defer_ok)
11662 {
11663 /* Defer instantiation of noexcept-specifiers to avoid
11664 excessive instantiations (c++/49107). */
11665 new_specs = make_node (DEFERRED_NOEXCEPT);
11666 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
11667 {
11668 /* We already partially instantiated this member template,
11669 so combine the new args with the old. */
11670 DEFERRED_NOEXCEPT_PATTERN (new_specs)
11671 = DEFERRED_NOEXCEPT_PATTERN (expr);
11672 DEFERRED_NOEXCEPT_ARGS (new_specs)
11673 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
11674 }
11675 else
11676 {
11677 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
11678 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
11679 }
11680 }
11681 else
11682 new_specs = tsubst_copy_and_build
11683 (expr, args, complain, in_decl, /*function_p=*/false,
11684 /*integral_constant_expression_p=*/true);
11685 new_specs = build_noexcept_spec (new_specs, complain);
11686 }
11687 else if (specs)
11688 {
11689 if (! TREE_VALUE (specs))
11690 new_specs = specs;
11691 else
11692 while (specs)
11693 {
11694 tree spec;
11695 int i, len = 1;
11696 tree expanded_specs = NULL_TREE;
11697
11698 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
11699 {
11700 /* Expand the pack expansion type. */
11701 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
11702 args, complain,
11703 in_decl);
11704
11705 if (expanded_specs == error_mark_node)
11706 return error_mark_node;
11707 else if (TREE_CODE (expanded_specs) == TREE_VEC)
11708 len = TREE_VEC_LENGTH (expanded_specs);
11709 else
11710 {
11711 /* We're substituting into a member template, so
11712 we got a TYPE_PACK_EXPANSION back. Add that
11713 expansion and move on. */
11714 gcc_assert (TREE_CODE (expanded_specs)
11715 == TYPE_PACK_EXPANSION);
11716 new_specs = add_exception_specifier (new_specs,
11717 expanded_specs,
11718 complain);
11719 specs = TREE_CHAIN (specs);
11720 continue;
11721 }
11722 }
11723
11724 for (i = 0; i < len; ++i)
11725 {
11726 if (expanded_specs)
11727 spec = TREE_VEC_ELT (expanded_specs, i);
11728 else
11729 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
11730 if (spec == error_mark_node)
11731 return spec;
11732 new_specs = add_exception_specifier (new_specs, spec,
11733 complain);
11734 }
11735
11736 specs = TREE_CHAIN (specs);
11737 }
11738 }
11739 return new_specs;
11740 }
11741
11742 /* Take the tree structure T and replace template parameters used
11743 therein with the argument vector ARGS. IN_DECL is an associated
11744 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
11745 Issue error and warning messages under control of COMPLAIN. Note
11746 that we must be relatively non-tolerant of extensions here, in
11747 order to preserve conformance; if we allow substitutions that
11748 should not be allowed, we may allow argument deductions that should
11749 not succeed, and therefore report ambiguous overload situations
11750 where there are none. In theory, we could allow the substitution,
11751 but indicate that it should have failed, and allow our caller to
11752 make sure that the right thing happens, but we don't try to do this
11753 yet.
11754
11755 This function is used for dealing with types, decls and the like;
11756 for expressions, use tsubst_expr or tsubst_copy. */
11757
11758 tree
11759 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11760 {
11761 enum tree_code code;
11762 tree type, r = NULL_TREE;
11763
11764 if (t == NULL_TREE || t == error_mark_node
11765 || t == integer_type_node
11766 || t == void_type_node
11767 || t == char_type_node
11768 || t == unknown_type_node
11769 || TREE_CODE (t) == NAMESPACE_DECL
11770 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
11771 return t;
11772
11773 if (DECL_P (t))
11774 return tsubst_decl (t, args, complain);
11775
11776 if (args == NULL_TREE)
11777 return t;
11778
11779 code = TREE_CODE (t);
11780
11781 if (code == IDENTIFIER_NODE)
11782 type = IDENTIFIER_TYPE_VALUE (t);
11783 else
11784 type = TREE_TYPE (t);
11785
11786 gcc_assert (type != unknown_type_node);
11787
11788 /* Reuse typedefs. We need to do this to handle dependent attributes,
11789 such as attribute aligned. */
11790 if (TYPE_P (t)
11791 && typedef_variant_p (t))
11792 {
11793 tree decl = TYPE_NAME (t);
11794
11795 if (alias_template_specialization_p (t))
11796 {
11797 /* DECL represents an alias template and we want to
11798 instantiate it. */
11799 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11800 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11801 r = instantiate_alias_template (tmpl, gen_args, complain);
11802 }
11803 else if (DECL_CLASS_SCOPE_P (decl)
11804 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
11805 && uses_template_parms (DECL_CONTEXT (decl)))
11806 {
11807 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11808 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11809 r = retrieve_specialization (tmpl, gen_args, 0);
11810 }
11811 else if (DECL_FUNCTION_SCOPE_P (decl)
11812 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
11813 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
11814 r = retrieve_local_specialization (decl);
11815 else
11816 /* The typedef is from a non-template context. */
11817 return t;
11818
11819 if (r)
11820 {
11821 r = TREE_TYPE (r);
11822 r = cp_build_qualified_type_real
11823 (r, cp_type_quals (t) | cp_type_quals (r),
11824 complain | tf_ignore_bad_quals);
11825 return r;
11826 }
11827 else
11828 {
11829 /* We don't have an instantiation yet, so drop the typedef. */
11830 int quals = cp_type_quals (t);
11831 t = DECL_ORIGINAL_TYPE (decl);
11832 t = cp_build_qualified_type_real (t, quals,
11833 complain | tf_ignore_bad_quals);
11834 }
11835 }
11836
11837 if (type
11838 && code != TYPENAME_TYPE
11839 && code != TEMPLATE_TYPE_PARM
11840 && code != IDENTIFIER_NODE
11841 && code != FUNCTION_TYPE
11842 && code != METHOD_TYPE)
11843 type = tsubst (type, args, complain, in_decl);
11844 if (type == error_mark_node)
11845 return error_mark_node;
11846
11847 switch (code)
11848 {
11849 case RECORD_TYPE:
11850 case UNION_TYPE:
11851 case ENUMERAL_TYPE:
11852 return tsubst_aggr_type (t, args, complain, in_decl,
11853 /*entering_scope=*/0);
11854
11855 case ERROR_MARK:
11856 case IDENTIFIER_NODE:
11857 case VOID_TYPE:
11858 case REAL_TYPE:
11859 case COMPLEX_TYPE:
11860 case VECTOR_TYPE:
11861 case BOOLEAN_TYPE:
11862 case NULLPTR_TYPE:
11863 case LANG_TYPE:
11864 return t;
11865
11866 case INTEGER_TYPE:
11867 if (t == integer_type_node)
11868 return t;
11869
11870 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
11871 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
11872 return t;
11873
11874 {
11875 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
11876
11877 max = tsubst_expr (omax, args, complain, in_decl,
11878 /*integral_constant_expression_p=*/false);
11879
11880 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
11881 needed. */
11882 if (TREE_CODE (max) == NOP_EXPR
11883 && TREE_SIDE_EFFECTS (omax)
11884 && !TREE_TYPE (max))
11885 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
11886
11887 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
11888 with TREE_SIDE_EFFECTS that indicates this is not an integral
11889 constant expression. */
11890 if (processing_template_decl
11891 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
11892 {
11893 gcc_assert (TREE_CODE (max) == NOP_EXPR);
11894 TREE_SIDE_EFFECTS (max) = 1;
11895 }
11896
11897 return compute_array_index_type (NULL_TREE, max, complain);
11898 }
11899
11900 case TEMPLATE_TYPE_PARM:
11901 case TEMPLATE_TEMPLATE_PARM:
11902 case BOUND_TEMPLATE_TEMPLATE_PARM:
11903 case TEMPLATE_PARM_INDEX:
11904 {
11905 int idx;
11906 int level;
11907 int levels;
11908 tree arg = NULL_TREE;
11909
11910 r = NULL_TREE;
11911
11912 gcc_assert (TREE_VEC_LENGTH (args) > 0);
11913 template_parm_level_and_index (t, &level, &idx);
11914
11915 levels = TMPL_ARGS_DEPTH (args);
11916 if (level <= levels)
11917 {
11918 arg = TMPL_ARG (args, level, idx);
11919
11920 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
11921 {
11922 /* See through ARGUMENT_PACK_SELECT arguments. */
11923 arg = ARGUMENT_PACK_SELECT_ARG (arg);
11924 /* If the selected argument is an expansion E, that most
11925 likely means we were called from
11926 gen_elem_of_pack_expansion_instantiation during the
11927 substituting of pack an argument pack (which Ith
11928 element is a pack expansion, where I is
11929 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
11930 In this case, the Ith element resulting from this
11931 substituting is going to be a pack expansion, which
11932 pattern is the pattern of E. Let's return the
11933 pattern of E, and
11934 gen_elem_of_pack_expansion_instantiation will
11935 build the resulting pack expansion from it. */
11936 if (PACK_EXPANSION_P (arg))
11937 {
11938 /* Make sure we aren't throwing away arg info. */
11939 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
11940 arg = PACK_EXPANSION_PATTERN (arg);
11941 }
11942 }
11943 }
11944
11945 if (arg == error_mark_node)
11946 return error_mark_node;
11947 else if (arg != NULL_TREE)
11948 {
11949 if (ARGUMENT_PACK_P (arg))
11950 /* If ARG is an argument pack, we don't actually want to
11951 perform a substitution here, because substitutions
11952 for argument packs are only done
11953 element-by-element. We can get to this point when
11954 substituting the type of a non-type template
11955 parameter pack, when that type actually contains
11956 template parameter packs from an outer template, e.g.,
11957
11958 template<typename... Types> struct A {
11959 template<Types... Values> struct B { };
11960 }; */
11961 return t;
11962
11963 if (code == TEMPLATE_TYPE_PARM)
11964 {
11965 int quals;
11966 gcc_assert (TYPE_P (arg));
11967
11968 quals = cp_type_quals (arg) | cp_type_quals (t);
11969
11970 return cp_build_qualified_type_real
11971 (arg, quals, complain | tf_ignore_bad_quals);
11972 }
11973 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
11974 {
11975 /* We are processing a type constructed from a
11976 template template parameter. */
11977 tree argvec = tsubst (TYPE_TI_ARGS (t),
11978 args, complain, in_decl);
11979 if (argvec == error_mark_node)
11980 return error_mark_node;
11981
11982 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
11983 || TREE_CODE (arg) == TEMPLATE_DECL
11984 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
11985
11986 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
11987 /* Consider this code:
11988
11989 template <template <class> class Template>
11990 struct Internal {
11991 template <class Arg> using Bind = Template<Arg>;
11992 };
11993
11994 template <template <class> class Template, class Arg>
11995 using Instantiate = Template<Arg>; //#0
11996
11997 template <template <class> class Template,
11998 class Argument>
11999 using Bind =
12000 Instantiate<Internal<Template>::template Bind,
12001 Argument>; //#1
12002
12003 When #1 is parsed, the
12004 BOUND_TEMPLATE_TEMPLATE_PARM representing the
12005 parameter `Template' in #0 matches the
12006 UNBOUND_CLASS_TEMPLATE representing the argument
12007 `Internal<Template>::template Bind'; We then want
12008 to assemble the type `Bind<Argument>' that can't
12009 be fully created right now, because
12010 `Internal<Template>' not being complete, the Bind
12011 template cannot be looked up in that context. So
12012 we need to "store" `Bind<Argument>' for later
12013 when the context of Bind becomes complete. Let's
12014 store that in a TYPENAME_TYPE. */
12015 return make_typename_type (TYPE_CONTEXT (arg),
12016 build_nt (TEMPLATE_ID_EXPR,
12017 TYPE_IDENTIFIER (arg),
12018 argvec),
12019 typename_type,
12020 complain);
12021
12022 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
12023 are resolving nested-types in the signature of a
12024 member function templates. Otherwise ARG is a
12025 TEMPLATE_DECL and is the real template to be
12026 instantiated. */
12027 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
12028 arg = TYPE_NAME (arg);
12029
12030 r = lookup_template_class (arg,
12031 argvec, in_decl,
12032 DECL_CONTEXT (arg),
12033 /*entering_scope=*/0,
12034 complain);
12035 return cp_build_qualified_type_real
12036 (r, cp_type_quals (t) | cp_type_quals (r), complain);
12037 }
12038 else
12039 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
12040 return convert_from_reference (unshare_expr (arg));
12041 }
12042
12043 if (level == 1)
12044 /* This can happen during the attempted tsubst'ing in
12045 unify. This means that we don't yet have any information
12046 about the template parameter in question. */
12047 return t;
12048
12049 /* Early in template argument deduction substitution, we don't
12050 want to reduce the level of 'auto', or it will be confused
12051 with a normal template parm in subsequent deduction. */
12052 if (is_auto (t) && (complain & tf_partial))
12053 return t;
12054
12055 /* If we get here, we must have been looking at a parm for a
12056 more deeply nested template. Make a new version of this
12057 template parameter, but with a lower level. */
12058 switch (code)
12059 {
12060 case TEMPLATE_TYPE_PARM:
12061 case TEMPLATE_TEMPLATE_PARM:
12062 case BOUND_TEMPLATE_TEMPLATE_PARM:
12063 if (cp_type_quals (t))
12064 {
12065 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
12066 r = cp_build_qualified_type_real
12067 (r, cp_type_quals (t),
12068 complain | (code == TEMPLATE_TYPE_PARM
12069 ? tf_ignore_bad_quals : 0));
12070 }
12071 else
12072 {
12073 r = copy_type (t);
12074 TEMPLATE_TYPE_PARM_INDEX (r)
12075 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
12076 r, levels, args, complain);
12077 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
12078 TYPE_MAIN_VARIANT (r) = r;
12079 TYPE_POINTER_TO (r) = NULL_TREE;
12080 TYPE_REFERENCE_TO (r) = NULL_TREE;
12081
12082 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
12083 /* We have reduced the level of the template
12084 template parameter, but not the levels of its
12085 template parameters, so canonical_type_parameter
12086 will not be able to find the canonical template
12087 template parameter for this level. Thus, we
12088 require structural equality checking to compare
12089 TEMPLATE_TEMPLATE_PARMs. */
12090 SET_TYPE_STRUCTURAL_EQUALITY (r);
12091 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
12092 SET_TYPE_STRUCTURAL_EQUALITY (r);
12093 else
12094 TYPE_CANONICAL (r) = canonical_type_parameter (r);
12095
12096 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
12097 {
12098 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
12099 complain, in_decl);
12100 if (argvec == error_mark_node)
12101 return error_mark_node;
12102
12103 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
12104 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
12105 }
12106 }
12107 break;
12108
12109 case TEMPLATE_PARM_INDEX:
12110 r = reduce_template_parm_level (t, type, levels, args, complain);
12111 break;
12112
12113 default:
12114 gcc_unreachable ();
12115 }
12116
12117 return r;
12118 }
12119
12120 case TREE_LIST:
12121 {
12122 tree purpose, value, chain;
12123
12124 if (t == void_list_node)
12125 return t;
12126
12127 purpose = TREE_PURPOSE (t);
12128 if (purpose)
12129 {
12130 purpose = tsubst (purpose, args, complain, in_decl);
12131 if (purpose == error_mark_node)
12132 return error_mark_node;
12133 }
12134 value = TREE_VALUE (t);
12135 if (value)
12136 {
12137 value = tsubst (value, args, complain, in_decl);
12138 if (value == error_mark_node)
12139 return error_mark_node;
12140 }
12141 chain = TREE_CHAIN (t);
12142 if (chain && chain != void_type_node)
12143 {
12144 chain = tsubst (chain, args, complain, in_decl);
12145 if (chain == error_mark_node)
12146 return error_mark_node;
12147 }
12148 if (purpose == TREE_PURPOSE (t)
12149 && value == TREE_VALUE (t)
12150 && chain == TREE_CHAIN (t))
12151 return t;
12152 return hash_tree_cons (purpose, value, chain);
12153 }
12154
12155 case TREE_BINFO:
12156 /* We should never be tsubsting a binfo. */
12157 gcc_unreachable ();
12158
12159 case TREE_VEC:
12160 /* A vector of template arguments. */
12161 gcc_assert (!type);
12162 return tsubst_template_args (t, args, complain, in_decl);
12163
12164 case POINTER_TYPE:
12165 case REFERENCE_TYPE:
12166 {
12167 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
12168 return t;
12169
12170 /* [temp.deduct]
12171
12172 Type deduction may fail for any of the following
12173 reasons:
12174
12175 -- Attempting to create a pointer to reference type.
12176 -- Attempting to create a reference to a reference type or
12177 a reference to void.
12178
12179 Core issue 106 says that creating a reference to a reference
12180 during instantiation is no longer a cause for failure. We
12181 only enforce this check in strict C++98 mode. */
12182 if ((TREE_CODE (type) == REFERENCE_TYPE
12183 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
12184 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
12185 {
12186 static location_t last_loc;
12187
12188 /* We keep track of the last time we issued this error
12189 message to avoid spewing a ton of messages during a
12190 single bad template instantiation. */
12191 if (complain & tf_error
12192 && last_loc != input_location)
12193 {
12194 if (VOID_TYPE_P (type))
12195 error ("forming reference to void");
12196 else if (code == POINTER_TYPE)
12197 error ("forming pointer to reference type %qT", type);
12198 else
12199 error ("forming reference to reference type %qT", type);
12200 last_loc = input_location;
12201 }
12202
12203 return error_mark_node;
12204 }
12205 else if (TREE_CODE (type) == FUNCTION_TYPE
12206 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
12207 || type_memfn_rqual (type) != REF_QUAL_NONE))
12208 {
12209 if (complain & tf_error)
12210 {
12211 if (code == POINTER_TYPE)
12212 error ("forming pointer to qualified function type %qT",
12213 type);
12214 else
12215 error ("forming reference to qualified function type %qT",
12216 type);
12217 }
12218 return error_mark_node;
12219 }
12220 else if (code == POINTER_TYPE)
12221 {
12222 r = build_pointer_type (type);
12223 if (TREE_CODE (type) == METHOD_TYPE)
12224 r = build_ptrmemfunc_type (r);
12225 }
12226 else if (TREE_CODE (type) == REFERENCE_TYPE)
12227 /* In C++0x, during template argument substitution, when there is an
12228 attempt to create a reference to a reference type, reference
12229 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
12230
12231 "If a template-argument for a template-parameter T names a type
12232 that is a reference to a type A, an attempt to create the type
12233 'lvalue reference to cv T' creates the type 'lvalue reference to
12234 A,' while an attempt to create the type type rvalue reference to
12235 cv T' creates the type T"
12236 */
12237 r = cp_build_reference_type
12238 (TREE_TYPE (type),
12239 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
12240 else
12241 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
12242 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
12243
12244 if (r != error_mark_node)
12245 /* Will this ever be needed for TYPE_..._TO values? */
12246 layout_type (r);
12247
12248 return r;
12249 }
12250 case OFFSET_TYPE:
12251 {
12252 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
12253 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
12254 {
12255 /* [temp.deduct]
12256
12257 Type deduction may fail for any of the following
12258 reasons:
12259
12260 -- Attempting to create "pointer to member of T" when T
12261 is not a class type. */
12262 if (complain & tf_error)
12263 error ("creating pointer to member of non-class type %qT", r);
12264 return error_mark_node;
12265 }
12266 if (TREE_CODE (type) == REFERENCE_TYPE)
12267 {
12268 if (complain & tf_error)
12269 error ("creating pointer to member reference type %qT", type);
12270 return error_mark_node;
12271 }
12272 if (VOID_TYPE_P (type))
12273 {
12274 if (complain & tf_error)
12275 error ("creating pointer to member of type void");
12276 return error_mark_node;
12277 }
12278 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
12279 if (TREE_CODE (type) == FUNCTION_TYPE)
12280 {
12281 /* The type of the implicit object parameter gets its
12282 cv-qualifiers from the FUNCTION_TYPE. */
12283 tree memptr;
12284 tree method_type
12285 = build_memfn_type (type, r, type_memfn_quals (type),
12286 type_memfn_rqual (type));
12287 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
12288 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
12289 complain);
12290 }
12291 else
12292 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
12293 cp_type_quals (t),
12294 complain);
12295 }
12296 case FUNCTION_TYPE:
12297 case METHOD_TYPE:
12298 {
12299 tree fntype;
12300 tree specs;
12301 fntype = tsubst_function_type (t, args, complain, in_decl);
12302 if (fntype == error_mark_node)
12303 return error_mark_node;
12304
12305 /* Substitute the exception specification. */
12306 specs = tsubst_exception_specification (t, args, complain,
12307 in_decl, /*defer_ok*/true);
12308 if (specs == error_mark_node)
12309 return error_mark_node;
12310 if (specs)
12311 fntype = build_exception_variant (fntype, specs);
12312 return fntype;
12313 }
12314 case ARRAY_TYPE:
12315 {
12316 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
12317 if (domain == error_mark_node)
12318 return error_mark_node;
12319
12320 /* As an optimization, we avoid regenerating the array type if
12321 it will obviously be the same as T. */
12322 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
12323 return t;
12324
12325 /* These checks should match the ones in create_array_type_for_decl.
12326
12327 [temp.deduct]
12328
12329 The deduction may fail for any of the following reasons:
12330
12331 -- Attempting to create an array with an element type that
12332 is void, a function type, or a reference type, or [DR337]
12333 an abstract class type. */
12334 if (VOID_TYPE_P (type)
12335 || TREE_CODE (type) == FUNCTION_TYPE
12336 || (TREE_CODE (type) == ARRAY_TYPE
12337 && TYPE_DOMAIN (type) == NULL_TREE)
12338 || TREE_CODE (type) == REFERENCE_TYPE)
12339 {
12340 if (complain & tf_error)
12341 error ("creating array of %qT", type);
12342 return error_mark_node;
12343 }
12344
12345 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
12346 return error_mark_node;
12347
12348 r = build_cplus_array_type (type, domain);
12349
12350 if (TYPE_USER_ALIGN (t))
12351 {
12352 TYPE_ALIGN (r) = TYPE_ALIGN (t);
12353 TYPE_USER_ALIGN (r) = 1;
12354 }
12355
12356 return r;
12357 }
12358
12359 case TYPENAME_TYPE:
12360 {
12361 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
12362 in_decl, /*entering_scope=*/1);
12363 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
12364 complain, in_decl);
12365
12366 if (ctx == error_mark_node || f == error_mark_node)
12367 return error_mark_node;
12368
12369 if (!MAYBE_CLASS_TYPE_P (ctx))
12370 {
12371 if (complain & tf_error)
12372 error ("%qT is not a class, struct, or union type", ctx);
12373 return error_mark_node;
12374 }
12375 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
12376 {
12377 /* Normally, make_typename_type does not require that the CTX
12378 have complete type in order to allow things like:
12379
12380 template <class T> struct S { typename S<T>::X Y; };
12381
12382 But, such constructs have already been resolved by this
12383 point, so here CTX really should have complete type, unless
12384 it's a partial instantiation. */
12385 ctx = complete_type (ctx);
12386 if (!COMPLETE_TYPE_P (ctx))
12387 {
12388 if (complain & tf_error)
12389 cxx_incomplete_type_error (NULL_TREE, ctx);
12390 return error_mark_node;
12391 }
12392 }
12393
12394 f = make_typename_type (ctx, f, typename_type,
12395 complain | tf_keep_type_decl);
12396 if (f == error_mark_node)
12397 return f;
12398 if (TREE_CODE (f) == TYPE_DECL)
12399 {
12400 complain |= tf_ignore_bad_quals;
12401 f = TREE_TYPE (f);
12402 }
12403
12404 if (TREE_CODE (f) != TYPENAME_TYPE)
12405 {
12406 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
12407 {
12408 if (complain & tf_error)
12409 error ("%qT resolves to %qT, which is not an enumeration type",
12410 t, f);
12411 else
12412 return error_mark_node;
12413 }
12414 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
12415 {
12416 if (complain & tf_error)
12417 error ("%qT resolves to %qT, which is is not a class type",
12418 t, f);
12419 else
12420 return error_mark_node;
12421 }
12422 }
12423
12424 return cp_build_qualified_type_real
12425 (f, cp_type_quals (f) | cp_type_quals (t), complain);
12426 }
12427
12428 case UNBOUND_CLASS_TEMPLATE:
12429 {
12430 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
12431 in_decl, /*entering_scope=*/1);
12432 tree name = TYPE_IDENTIFIER (t);
12433 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
12434
12435 if (ctx == error_mark_node || name == error_mark_node)
12436 return error_mark_node;
12437
12438 if (parm_list)
12439 parm_list = tsubst_template_parms (parm_list, args, complain);
12440 return make_unbound_class_template (ctx, name, parm_list, complain);
12441 }
12442
12443 case TYPEOF_TYPE:
12444 {
12445 tree type;
12446
12447 ++cp_unevaluated_operand;
12448 ++c_inhibit_evaluation_warnings;
12449
12450 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
12451 complain, in_decl,
12452 /*integral_constant_expression_p=*/false);
12453
12454 --cp_unevaluated_operand;
12455 --c_inhibit_evaluation_warnings;
12456
12457 type = finish_typeof (type);
12458 return cp_build_qualified_type_real (type,
12459 cp_type_quals (t)
12460 | cp_type_quals (type),
12461 complain);
12462 }
12463
12464 case DECLTYPE_TYPE:
12465 {
12466 tree type;
12467
12468 ++cp_unevaluated_operand;
12469 ++c_inhibit_evaluation_warnings;
12470
12471 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
12472 complain|tf_decltype, in_decl,
12473 /*function_p*/false,
12474 /*integral_constant_expression*/false);
12475
12476 --cp_unevaluated_operand;
12477 --c_inhibit_evaluation_warnings;
12478
12479 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
12480 type = lambda_capture_field_type (type,
12481 DECLTYPE_FOR_INIT_CAPTURE (t));
12482 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
12483 type = lambda_proxy_type (type);
12484 else
12485 {
12486 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
12487 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
12488 && EXPR_P (type))
12489 /* In a template ~id could be either a complement expression
12490 or an unqualified-id naming a destructor; if instantiating
12491 it produces an expression, it's not an id-expression or
12492 member access. */
12493 id = false;
12494 type = finish_decltype_type (type, id, complain);
12495 }
12496 return cp_build_qualified_type_real (type,
12497 cp_type_quals (t)
12498 | cp_type_quals (type),
12499 complain | tf_ignore_bad_quals);
12500 }
12501
12502 case UNDERLYING_TYPE:
12503 {
12504 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
12505 complain, in_decl);
12506 return finish_underlying_type (type);
12507 }
12508
12509 case TYPE_ARGUMENT_PACK:
12510 case NONTYPE_ARGUMENT_PACK:
12511 {
12512 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
12513 tree packed_out =
12514 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
12515 args,
12516 complain,
12517 in_decl);
12518 SET_ARGUMENT_PACK_ARGS (r, packed_out);
12519
12520 /* For template nontype argument packs, also substitute into
12521 the type. */
12522 if (code == NONTYPE_ARGUMENT_PACK)
12523 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
12524
12525 return r;
12526 }
12527 break;
12528
12529 case VOID_CST:
12530 case INTEGER_CST:
12531 case REAL_CST:
12532 case STRING_CST:
12533 case PLUS_EXPR:
12534 case MINUS_EXPR:
12535 case NEGATE_EXPR:
12536 case NOP_EXPR:
12537 case INDIRECT_REF:
12538 case ADDR_EXPR:
12539 case CALL_EXPR:
12540 case ARRAY_REF:
12541 case SCOPE_REF:
12542 /* We should use one of the expression tsubsts for these codes. */
12543 gcc_unreachable ();
12544
12545 default:
12546 sorry ("use of %qs in template", get_tree_code_name (code));
12547 return error_mark_node;
12548 }
12549 }
12550
12551 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
12552 type of the expression on the left-hand side of the "." or "->"
12553 operator. */
12554
12555 static tree
12556 tsubst_baselink (tree baselink, tree object_type,
12557 tree args, tsubst_flags_t complain, tree in_decl)
12558 {
12559 tree name;
12560 tree qualifying_scope;
12561 tree fns;
12562 tree optype;
12563 tree template_args = 0;
12564 bool template_id_p = false;
12565 bool qualified = BASELINK_QUALIFIED_P (baselink);
12566
12567 /* A baselink indicates a function from a base class. Both the
12568 BASELINK_ACCESS_BINFO and the base class referenced may
12569 indicate bases of the template class, rather than the
12570 instantiated class. In addition, lookups that were not
12571 ambiguous before may be ambiguous now. Therefore, we perform
12572 the lookup again. */
12573 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
12574 qualifying_scope = tsubst (qualifying_scope, args,
12575 complain, in_decl);
12576 fns = BASELINK_FUNCTIONS (baselink);
12577 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
12578 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
12579 {
12580 template_id_p = true;
12581 template_args = TREE_OPERAND (fns, 1);
12582 fns = TREE_OPERAND (fns, 0);
12583 if (template_args)
12584 template_args = tsubst_template_args (template_args, args,
12585 complain, in_decl);
12586 }
12587 name = DECL_NAME (get_first_fn (fns));
12588 if (IDENTIFIER_TYPENAME_P (name))
12589 name = mangle_conv_op_name_for_type (optype);
12590 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
12591 if (!baselink)
12592 return error_mark_node;
12593
12594 /* If lookup found a single function, mark it as used at this
12595 point. (If it lookup found multiple functions the one selected
12596 later by overload resolution will be marked as used at that
12597 point.) */
12598 if (BASELINK_P (baselink))
12599 fns = BASELINK_FUNCTIONS (baselink);
12600 if (!template_id_p && !really_overloaded_fn (fns))
12601 mark_used (OVL_CURRENT (fns));
12602
12603 /* Add back the template arguments, if present. */
12604 if (BASELINK_P (baselink) && template_id_p)
12605 BASELINK_FUNCTIONS (baselink)
12606 = build_nt (TEMPLATE_ID_EXPR,
12607 BASELINK_FUNCTIONS (baselink),
12608 template_args);
12609 /* Update the conversion operator type. */
12610 BASELINK_OPTYPE (baselink) = optype;
12611
12612 if (!object_type)
12613 object_type = current_class_type;
12614
12615 if (qualified)
12616 baselink = adjust_result_of_qualified_name_lookup (baselink,
12617 qualifying_scope,
12618 object_type);
12619 return baselink;
12620 }
12621
12622 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
12623 true if the qualified-id will be a postfix-expression in-and-of
12624 itself; false if more of the postfix-expression follows the
12625 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
12626 of "&". */
12627
12628 static tree
12629 tsubst_qualified_id (tree qualified_id, tree args,
12630 tsubst_flags_t complain, tree in_decl,
12631 bool done, bool address_p)
12632 {
12633 tree expr;
12634 tree scope;
12635 tree name;
12636 bool is_template;
12637 tree template_args;
12638 location_t loc = UNKNOWN_LOCATION;
12639
12640 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
12641
12642 /* Figure out what name to look up. */
12643 name = TREE_OPERAND (qualified_id, 1);
12644 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
12645 {
12646 is_template = true;
12647 loc = EXPR_LOCATION (name);
12648 template_args = TREE_OPERAND (name, 1);
12649 if (template_args)
12650 template_args = tsubst_template_args (template_args, args,
12651 complain, in_decl);
12652 name = TREE_OPERAND (name, 0);
12653 }
12654 else
12655 {
12656 is_template = false;
12657 template_args = NULL_TREE;
12658 }
12659
12660 /* Substitute into the qualifying scope. When there are no ARGS, we
12661 are just trying to simplify a non-dependent expression. In that
12662 case the qualifying scope may be dependent, and, in any case,
12663 substituting will not help. */
12664 scope = TREE_OPERAND (qualified_id, 0);
12665 if (args)
12666 {
12667 scope = tsubst (scope, args, complain, in_decl);
12668 expr = tsubst_copy (name, args, complain, in_decl);
12669 }
12670 else
12671 expr = name;
12672
12673 if (dependent_scope_p (scope))
12674 {
12675 if (is_template)
12676 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
12677 return build_qualified_name (NULL_TREE, scope, expr,
12678 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
12679 }
12680
12681 if (!BASELINK_P (name) && !DECL_P (expr))
12682 {
12683 if (TREE_CODE (expr) == BIT_NOT_EXPR)
12684 {
12685 /* A BIT_NOT_EXPR is used to represent a destructor. */
12686 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
12687 {
12688 error ("qualifying type %qT does not match destructor name ~%qT",
12689 scope, TREE_OPERAND (expr, 0));
12690 expr = error_mark_node;
12691 }
12692 else
12693 expr = lookup_qualified_name (scope, complete_dtor_identifier,
12694 /*is_type_p=*/0, false);
12695 }
12696 else
12697 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
12698 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
12699 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
12700 {
12701 if (complain & tf_error)
12702 {
12703 error ("dependent-name %qE is parsed as a non-type, but "
12704 "instantiation yields a type", qualified_id);
12705 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
12706 }
12707 return error_mark_node;
12708 }
12709 }
12710
12711 if (DECL_P (expr))
12712 {
12713 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
12714 scope);
12715 /* Remember that there was a reference to this entity. */
12716 mark_used (expr);
12717 }
12718
12719 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
12720 {
12721 if (complain & tf_error)
12722 qualified_name_lookup_error (scope,
12723 TREE_OPERAND (qualified_id, 1),
12724 expr, input_location);
12725 return error_mark_node;
12726 }
12727
12728 if (is_template)
12729 expr = lookup_template_function (expr, template_args);
12730
12731 if (expr == error_mark_node && complain & tf_error)
12732 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
12733 expr, input_location);
12734 else if (TYPE_P (scope))
12735 {
12736 expr = (adjust_result_of_qualified_name_lookup
12737 (expr, scope, current_nonlambda_class_type ()));
12738 expr = (finish_qualified_id_expr
12739 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
12740 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
12741 /*template_arg_p=*/false, complain));
12742 }
12743
12744 /* Expressions do not generally have reference type. */
12745 if (TREE_CODE (expr) != SCOPE_REF
12746 /* However, if we're about to form a pointer-to-member, we just
12747 want the referenced member referenced. */
12748 && TREE_CODE (expr) != OFFSET_REF)
12749 expr = convert_from_reference (expr);
12750
12751 return expr;
12752 }
12753
12754 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
12755 initializer, DECL is the substituted VAR_DECL. Other arguments are as
12756 for tsubst. */
12757
12758 static tree
12759 tsubst_init (tree init, tree decl, tree args,
12760 tsubst_flags_t complain, tree in_decl)
12761 {
12762 if (!init)
12763 return NULL_TREE;
12764
12765 init = tsubst_expr (init, args, complain, in_decl, false);
12766
12767 if (!init)
12768 {
12769 /* If we had an initializer but it
12770 instantiated to nothing,
12771 value-initialize the object. This will
12772 only occur when the initializer was a
12773 pack expansion where the parameter packs
12774 used in that expansion were of length
12775 zero. */
12776 init = build_value_init (TREE_TYPE (decl),
12777 complain);
12778 if (TREE_CODE (init) == AGGR_INIT_EXPR)
12779 init = get_target_expr_sfinae (init, complain);
12780 }
12781
12782 return init;
12783 }
12784
12785 /* Like tsubst, but deals with expressions. This function just replaces
12786 template parms; to finish processing the resultant expression, use
12787 tsubst_copy_and_build or tsubst_expr. */
12788
12789 static tree
12790 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12791 {
12792 enum tree_code code;
12793 tree r;
12794
12795 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
12796 return t;
12797
12798 code = TREE_CODE (t);
12799
12800 switch (code)
12801 {
12802 case PARM_DECL:
12803 r = retrieve_local_specialization (t);
12804
12805 if (r == NULL_TREE)
12806 {
12807 /* We get here for a use of 'this' in an NSDMI. */
12808 if (DECL_NAME (t) == this_identifier
12809 && current_function_decl
12810 && DECL_CONSTRUCTOR_P (current_function_decl))
12811 return current_class_ptr;
12812
12813 /* This can happen for a parameter name used later in a function
12814 declaration (such as in a late-specified return type). Just
12815 make a dummy decl, since it's only used for its type. */
12816 gcc_assert (cp_unevaluated_operand != 0);
12817 r = tsubst_decl (t, args, complain);
12818 /* Give it the template pattern as its context; its true context
12819 hasn't been instantiated yet and this is good enough for
12820 mangling. */
12821 DECL_CONTEXT (r) = DECL_CONTEXT (t);
12822 }
12823
12824 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
12825 r = ARGUMENT_PACK_SELECT_ARG (r);
12826 mark_used (r);
12827 return r;
12828
12829 case CONST_DECL:
12830 {
12831 tree enum_type;
12832 tree v;
12833
12834 if (DECL_TEMPLATE_PARM_P (t))
12835 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
12836 /* There is no need to substitute into namespace-scope
12837 enumerators. */
12838 if (DECL_NAMESPACE_SCOPE_P (t))
12839 return t;
12840 /* If ARGS is NULL, then T is known to be non-dependent. */
12841 if (args == NULL_TREE)
12842 return scalar_constant_value (t);
12843
12844 /* Unfortunately, we cannot just call lookup_name here.
12845 Consider:
12846
12847 template <int I> int f() {
12848 enum E { a = I };
12849 struct S { void g() { E e = a; } };
12850 };
12851
12852 When we instantiate f<7>::S::g(), say, lookup_name is not
12853 clever enough to find f<7>::a. */
12854 enum_type
12855 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12856 /*entering_scope=*/0);
12857
12858 for (v = TYPE_VALUES (enum_type);
12859 v != NULL_TREE;
12860 v = TREE_CHAIN (v))
12861 if (TREE_PURPOSE (v) == DECL_NAME (t))
12862 return TREE_VALUE (v);
12863
12864 /* We didn't find the name. That should never happen; if
12865 name-lookup found it during preliminary parsing, we
12866 should find it again here during instantiation. */
12867 gcc_unreachable ();
12868 }
12869 return t;
12870
12871 case FIELD_DECL:
12872 if (PACK_EXPANSION_P (TREE_TYPE (t)))
12873 {
12874 /* Check for a local specialization set up by
12875 tsubst_pack_expansion. */
12876 if (tree r = retrieve_local_specialization (t))
12877 {
12878 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
12879 r = ARGUMENT_PACK_SELECT_ARG (r);
12880 return r;
12881 }
12882
12883 /* When retrieving a capture pack from a generic lambda, remove the
12884 lambda call op's own template argument list from ARGS. Only the
12885 template arguments active for the closure type should be used to
12886 retrieve the pack specialization. */
12887 if (LAMBDA_FUNCTION_P (current_function_decl)
12888 && (template_class_depth (DECL_CONTEXT (t))
12889 != TMPL_ARGS_DEPTH (args)))
12890 args = strip_innermost_template_args (args, 1);
12891
12892 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
12893 tsubst_decl put in the hash table. */
12894 return retrieve_specialization (t, args, 0);
12895 }
12896
12897 if (DECL_CONTEXT (t))
12898 {
12899 tree ctx;
12900
12901 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12902 /*entering_scope=*/1);
12903 if (ctx != DECL_CONTEXT (t))
12904 {
12905 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
12906 if (!r)
12907 {
12908 if (complain & tf_error)
12909 error ("using invalid field %qD", t);
12910 return error_mark_node;
12911 }
12912 return r;
12913 }
12914 }
12915
12916 return t;
12917
12918 case VAR_DECL:
12919 case FUNCTION_DECL:
12920 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
12921 r = tsubst (t, args, complain, in_decl);
12922 else if (local_variable_p (t))
12923 {
12924 r = retrieve_local_specialization (t);
12925 if (r == NULL_TREE)
12926 {
12927 /* First try name lookup to find the instantiation. */
12928 r = lookup_name (DECL_NAME (t));
12929 if (r)
12930 {
12931 /* Make sure that the one we found is the one we want. */
12932 tree ctx = tsubst (DECL_CONTEXT (t), args,
12933 complain, in_decl);
12934 if (ctx != DECL_CONTEXT (r))
12935 r = NULL_TREE;
12936 }
12937
12938 if (r)
12939 /* OK */;
12940 else
12941 {
12942 /* This can happen for a variable used in a
12943 late-specified return type of a local lambda, or for a
12944 local static or constant. Building a new VAR_DECL
12945 should be OK in all those cases. */
12946 r = tsubst_decl (t, args, complain);
12947 if (decl_maybe_constant_var_p (r))
12948 {
12949 /* We can't call cp_finish_decl, so handle the
12950 initializer by hand. */
12951 tree init = tsubst_init (DECL_INITIAL (t), r, args,
12952 complain, in_decl);
12953 if (!processing_template_decl)
12954 init = maybe_constant_init (init);
12955 if (processing_template_decl
12956 ? potential_constant_expression (init)
12957 : reduced_constant_expression_p (init))
12958 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
12959 = TREE_CONSTANT (r) = true;
12960 DECL_INITIAL (r) = init;
12961 }
12962 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
12963 || decl_constant_var_p (r)
12964 || errorcount || sorrycount);
12965 if (!processing_template_decl)
12966 {
12967 if (TREE_STATIC (r))
12968 rest_of_decl_compilation (r, toplevel_bindings_p (),
12969 at_eof);
12970 else if (decl_constant_var_p (r))
12971 /* A use of a local constant decays to its value.
12972 FIXME update for core DR 696. */
12973 r = scalar_constant_value (r);
12974 }
12975 }
12976 /* Remember this for subsequent uses. */
12977 if (local_specializations)
12978 register_local_specialization (r, t);
12979 }
12980 }
12981 else
12982 r = t;
12983 mark_used (r);
12984 return r;
12985
12986 case NAMESPACE_DECL:
12987 return t;
12988
12989 case OVERLOAD:
12990 /* An OVERLOAD will always be a non-dependent overload set; an
12991 overload set from function scope will just be represented with an
12992 IDENTIFIER_NODE, and from class scope with a BASELINK. */
12993 gcc_assert (!uses_template_parms (t));
12994 return t;
12995
12996 case BASELINK:
12997 return tsubst_baselink (t, current_nonlambda_class_type (),
12998 args, complain, in_decl);
12999
13000 case TEMPLATE_DECL:
13001 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
13002 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
13003 args, complain, in_decl);
13004 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
13005 return tsubst (t, args, complain, in_decl);
13006 else if (DECL_CLASS_SCOPE_P (t)
13007 && uses_template_parms (DECL_CONTEXT (t)))
13008 {
13009 /* Template template argument like the following example need
13010 special treatment:
13011
13012 template <template <class> class TT> struct C {};
13013 template <class T> struct D {
13014 template <class U> struct E {};
13015 C<E> c; // #1
13016 };
13017 D<int> d; // #2
13018
13019 We are processing the template argument `E' in #1 for
13020 the template instantiation #2. Originally, `E' is a
13021 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
13022 have to substitute this with one having context `D<int>'. */
13023
13024 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
13025 return lookup_field (context, DECL_NAME(t), 0, false);
13026 }
13027 else
13028 /* Ordinary template template argument. */
13029 return t;
13030
13031 case CAST_EXPR:
13032 case REINTERPRET_CAST_EXPR:
13033 case CONST_CAST_EXPR:
13034 case STATIC_CAST_EXPR:
13035 case DYNAMIC_CAST_EXPR:
13036 case IMPLICIT_CONV_EXPR:
13037 case CONVERT_EXPR:
13038 case NOP_EXPR:
13039 {
13040 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13041 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13042 return build1 (code, type, op0);
13043 }
13044
13045 case SIZEOF_EXPR:
13046 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
13047 {
13048
13049 tree expanded, op = TREE_OPERAND (t, 0);
13050 int len = 0;
13051
13052 if (SIZEOF_EXPR_TYPE_P (t))
13053 op = TREE_TYPE (op);
13054
13055 ++cp_unevaluated_operand;
13056 ++c_inhibit_evaluation_warnings;
13057 /* We only want to compute the number of arguments. */
13058 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
13059 --cp_unevaluated_operand;
13060 --c_inhibit_evaluation_warnings;
13061
13062 if (TREE_CODE (expanded) == TREE_VEC)
13063 len = TREE_VEC_LENGTH (expanded);
13064
13065 if (expanded == error_mark_node)
13066 return error_mark_node;
13067 else if (PACK_EXPANSION_P (expanded)
13068 || (TREE_CODE (expanded) == TREE_VEC
13069 && len > 0
13070 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
13071 {
13072 if (TREE_CODE (expanded) == TREE_VEC)
13073 expanded = TREE_VEC_ELT (expanded, len - 1);
13074
13075 if (TYPE_P (expanded))
13076 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
13077 complain & tf_error);
13078 else
13079 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
13080 complain & tf_error);
13081 }
13082 else
13083 return build_int_cst (size_type_node, len);
13084 }
13085 if (SIZEOF_EXPR_TYPE_P (t))
13086 {
13087 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
13088 args, complain, in_decl);
13089 r = build1 (NOP_EXPR, r, error_mark_node);
13090 r = build1 (SIZEOF_EXPR,
13091 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
13092 SIZEOF_EXPR_TYPE_P (r) = 1;
13093 return r;
13094 }
13095 /* Fall through */
13096
13097 case INDIRECT_REF:
13098 case NEGATE_EXPR:
13099 case TRUTH_NOT_EXPR:
13100 case BIT_NOT_EXPR:
13101 case ADDR_EXPR:
13102 case UNARY_PLUS_EXPR: /* Unary + */
13103 case ALIGNOF_EXPR:
13104 case AT_ENCODE_EXPR:
13105 case ARROW_EXPR:
13106 case THROW_EXPR:
13107 case TYPEID_EXPR:
13108 case REALPART_EXPR:
13109 case IMAGPART_EXPR:
13110 case PAREN_EXPR:
13111 {
13112 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13113 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13114 return build1 (code, type, op0);
13115 }
13116
13117 case COMPONENT_REF:
13118 {
13119 tree object;
13120 tree name;
13121
13122 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13123 name = TREE_OPERAND (t, 1);
13124 if (TREE_CODE (name) == BIT_NOT_EXPR)
13125 {
13126 name = tsubst_copy (TREE_OPERAND (name, 0), args,
13127 complain, in_decl);
13128 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
13129 }
13130 else if (TREE_CODE (name) == SCOPE_REF
13131 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
13132 {
13133 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
13134 complain, in_decl);
13135 name = TREE_OPERAND (name, 1);
13136 name = tsubst_copy (TREE_OPERAND (name, 0), args,
13137 complain, in_decl);
13138 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
13139 name = build_qualified_name (/*type=*/NULL_TREE,
13140 base, name,
13141 /*template_p=*/false);
13142 }
13143 else if (BASELINK_P (name))
13144 name = tsubst_baselink (name,
13145 non_reference (TREE_TYPE (object)),
13146 args, complain,
13147 in_decl);
13148 else
13149 name = tsubst_copy (name, args, complain, in_decl);
13150 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
13151 }
13152
13153 case PLUS_EXPR:
13154 case MINUS_EXPR:
13155 case MULT_EXPR:
13156 case TRUNC_DIV_EXPR:
13157 case CEIL_DIV_EXPR:
13158 case FLOOR_DIV_EXPR:
13159 case ROUND_DIV_EXPR:
13160 case EXACT_DIV_EXPR:
13161 case BIT_AND_EXPR:
13162 case BIT_IOR_EXPR:
13163 case BIT_XOR_EXPR:
13164 case TRUNC_MOD_EXPR:
13165 case FLOOR_MOD_EXPR:
13166 case TRUTH_ANDIF_EXPR:
13167 case TRUTH_ORIF_EXPR:
13168 case TRUTH_AND_EXPR:
13169 case TRUTH_OR_EXPR:
13170 case RSHIFT_EXPR:
13171 case LSHIFT_EXPR:
13172 case RROTATE_EXPR:
13173 case LROTATE_EXPR:
13174 case EQ_EXPR:
13175 case NE_EXPR:
13176 case MAX_EXPR:
13177 case MIN_EXPR:
13178 case LE_EXPR:
13179 case GE_EXPR:
13180 case LT_EXPR:
13181 case GT_EXPR:
13182 case COMPOUND_EXPR:
13183 case DOTSTAR_EXPR:
13184 case MEMBER_REF:
13185 case PREDECREMENT_EXPR:
13186 case PREINCREMENT_EXPR:
13187 case POSTDECREMENT_EXPR:
13188 case POSTINCREMENT_EXPR:
13189 {
13190 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13191 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13192 return build_nt (code, op0, op1);
13193 }
13194
13195 case SCOPE_REF:
13196 {
13197 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13198 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13199 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
13200 QUALIFIED_NAME_IS_TEMPLATE (t));
13201 }
13202
13203 case ARRAY_REF:
13204 {
13205 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13206 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13207 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
13208 }
13209
13210 case CALL_EXPR:
13211 {
13212 int n = VL_EXP_OPERAND_LENGTH (t);
13213 tree result = build_vl_exp (CALL_EXPR, n);
13214 int i;
13215 for (i = 0; i < n; i++)
13216 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
13217 complain, in_decl);
13218 return result;
13219 }
13220
13221 case COND_EXPR:
13222 case MODOP_EXPR:
13223 case PSEUDO_DTOR_EXPR:
13224 case VEC_PERM_EXPR:
13225 {
13226 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13227 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13228 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
13229 r = build_nt (code, op0, op1, op2);
13230 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
13231 return r;
13232 }
13233
13234 case NEW_EXPR:
13235 {
13236 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13237 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13238 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
13239 r = build_nt (code, op0, op1, op2);
13240 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
13241 return r;
13242 }
13243
13244 case DELETE_EXPR:
13245 {
13246 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13247 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13248 r = build_nt (code, op0, op1);
13249 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
13250 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
13251 return r;
13252 }
13253
13254 case TEMPLATE_ID_EXPR:
13255 {
13256 /* Substituted template arguments */
13257 tree fn = TREE_OPERAND (t, 0);
13258 tree targs = TREE_OPERAND (t, 1);
13259
13260 fn = tsubst_copy (fn, args, complain, in_decl);
13261 if (targs)
13262 targs = tsubst_template_args (targs, args, complain, in_decl);
13263
13264 return lookup_template_function (fn, targs);
13265 }
13266
13267 case TREE_LIST:
13268 {
13269 tree purpose, value, chain;
13270
13271 if (t == void_list_node)
13272 return t;
13273
13274 purpose = TREE_PURPOSE (t);
13275 if (purpose)
13276 purpose = tsubst_copy (purpose, args, complain, in_decl);
13277 value = TREE_VALUE (t);
13278 if (value)
13279 value = tsubst_copy (value, args, complain, in_decl);
13280 chain = TREE_CHAIN (t);
13281 if (chain && chain != void_type_node)
13282 chain = tsubst_copy (chain, args, complain, in_decl);
13283 if (purpose == TREE_PURPOSE (t)
13284 && value == TREE_VALUE (t)
13285 && chain == TREE_CHAIN (t))
13286 return t;
13287 return tree_cons (purpose, value, chain);
13288 }
13289
13290 case RECORD_TYPE:
13291 case UNION_TYPE:
13292 case ENUMERAL_TYPE:
13293 case INTEGER_TYPE:
13294 case TEMPLATE_TYPE_PARM:
13295 case TEMPLATE_TEMPLATE_PARM:
13296 case BOUND_TEMPLATE_TEMPLATE_PARM:
13297 case TEMPLATE_PARM_INDEX:
13298 case POINTER_TYPE:
13299 case REFERENCE_TYPE:
13300 case OFFSET_TYPE:
13301 case FUNCTION_TYPE:
13302 case METHOD_TYPE:
13303 case ARRAY_TYPE:
13304 case TYPENAME_TYPE:
13305 case UNBOUND_CLASS_TEMPLATE:
13306 case TYPEOF_TYPE:
13307 case DECLTYPE_TYPE:
13308 case TYPE_DECL:
13309 return tsubst (t, args, complain, in_decl);
13310
13311 case USING_DECL:
13312 t = DECL_NAME (t);
13313 /* Fall through. */
13314 case IDENTIFIER_NODE:
13315 if (IDENTIFIER_TYPENAME_P (t))
13316 {
13317 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13318 return mangle_conv_op_name_for_type (new_type);
13319 }
13320 else
13321 return t;
13322
13323 case CONSTRUCTOR:
13324 /* This is handled by tsubst_copy_and_build. */
13325 gcc_unreachable ();
13326
13327 case VA_ARG_EXPR:
13328 {
13329 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13330 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13331 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
13332 }
13333
13334 case CLEANUP_POINT_EXPR:
13335 /* We shouldn't have built any of these during initial template
13336 generation. Instead, they should be built during instantiation
13337 in response to the saved STMT_IS_FULL_EXPR_P setting. */
13338 gcc_unreachable ();
13339
13340 case OFFSET_REF:
13341 {
13342 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13343 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13344 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13345 r = build2 (code, type, op0, op1);
13346 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
13347 mark_used (TREE_OPERAND (r, 1));
13348 return r;
13349 }
13350
13351 case EXPR_PACK_EXPANSION:
13352 error ("invalid use of pack expansion expression");
13353 return error_mark_node;
13354
13355 case NONTYPE_ARGUMENT_PACK:
13356 error ("use %<...%> to expand argument pack");
13357 return error_mark_node;
13358
13359 case VOID_CST:
13360 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
13361 return t;
13362
13363 case INTEGER_CST:
13364 case REAL_CST:
13365 case STRING_CST:
13366 case COMPLEX_CST:
13367 {
13368 /* Instantiate any typedefs in the type. */
13369 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13370 r = fold_convert (type, t);
13371 gcc_assert (TREE_CODE (r) == code);
13372 return r;
13373 }
13374
13375 case PTRMEM_CST:
13376 /* These can sometimes show up in a partial instantiation, but never
13377 involve template parms. */
13378 gcc_assert (!uses_template_parms (t));
13379 return t;
13380
13381 default:
13382 /* We shouldn't get here, but keep going if !ENABLE_CHECKING. */
13383 gcc_checking_assert (false);
13384 return t;
13385 }
13386 }
13387
13388 /* Like tsubst_copy, but specifically for OpenMP clauses. */
13389
13390 static tree
13391 tsubst_omp_clauses (tree clauses, bool declare_simd,
13392 tree args, tsubst_flags_t complain, tree in_decl)
13393 {
13394 tree new_clauses = NULL, nc, oc;
13395
13396 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
13397 {
13398 nc = copy_node (oc);
13399 OMP_CLAUSE_CHAIN (nc) = new_clauses;
13400 new_clauses = nc;
13401
13402 switch (OMP_CLAUSE_CODE (nc))
13403 {
13404 case OMP_CLAUSE_LASTPRIVATE:
13405 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
13406 {
13407 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
13408 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
13409 in_decl, /*integral_constant_expression_p=*/false);
13410 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
13411 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
13412 }
13413 /* FALLTHRU */
13414 case OMP_CLAUSE_PRIVATE:
13415 case OMP_CLAUSE_SHARED:
13416 case OMP_CLAUSE_FIRSTPRIVATE:
13417 case OMP_CLAUSE_COPYIN:
13418 case OMP_CLAUSE_COPYPRIVATE:
13419 case OMP_CLAUSE_IF:
13420 case OMP_CLAUSE_NUM_THREADS:
13421 case OMP_CLAUSE_SCHEDULE:
13422 case OMP_CLAUSE_COLLAPSE:
13423 case OMP_CLAUSE_FINAL:
13424 case OMP_CLAUSE_DEPEND:
13425 case OMP_CLAUSE_FROM:
13426 case OMP_CLAUSE_TO:
13427 case OMP_CLAUSE_UNIFORM:
13428 case OMP_CLAUSE_MAP:
13429 case OMP_CLAUSE_DEVICE:
13430 case OMP_CLAUSE_DIST_SCHEDULE:
13431 case OMP_CLAUSE_NUM_TEAMS:
13432 case OMP_CLAUSE_THREAD_LIMIT:
13433 case OMP_CLAUSE_SAFELEN:
13434 case OMP_CLAUSE_SIMDLEN:
13435 OMP_CLAUSE_OPERAND (nc, 0)
13436 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13437 in_decl, /*integral_constant_expression_p=*/false);
13438 break;
13439 case OMP_CLAUSE_REDUCTION:
13440 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
13441 {
13442 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
13443 if (TREE_CODE (placeholder) == SCOPE_REF)
13444 {
13445 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
13446 complain, in_decl);
13447 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
13448 = build_qualified_name (NULL_TREE, scope,
13449 TREE_OPERAND (placeholder, 1),
13450 false);
13451 }
13452 else
13453 gcc_assert (identifier_p (placeholder));
13454 }
13455 OMP_CLAUSE_OPERAND (nc, 0)
13456 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13457 in_decl, /*integral_constant_expression_p=*/false);
13458 break;
13459 case OMP_CLAUSE_LINEAR:
13460 case OMP_CLAUSE_ALIGNED:
13461 OMP_CLAUSE_OPERAND (nc, 0)
13462 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13463 in_decl, /*integral_constant_expression_p=*/false);
13464 OMP_CLAUSE_OPERAND (nc, 1)
13465 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
13466 in_decl, /*integral_constant_expression_p=*/false);
13467 break;
13468
13469 case OMP_CLAUSE_NOWAIT:
13470 case OMP_CLAUSE_ORDERED:
13471 case OMP_CLAUSE_DEFAULT:
13472 case OMP_CLAUSE_UNTIED:
13473 case OMP_CLAUSE_MERGEABLE:
13474 case OMP_CLAUSE_INBRANCH:
13475 case OMP_CLAUSE_NOTINBRANCH:
13476 case OMP_CLAUSE_PROC_BIND:
13477 case OMP_CLAUSE_FOR:
13478 case OMP_CLAUSE_PARALLEL:
13479 case OMP_CLAUSE_SECTIONS:
13480 case OMP_CLAUSE_TASKGROUP:
13481 break;
13482 default:
13483 gcc_unreachable ();
13484 }
13485 }
13486
13487 new_clauses = nreverse (new_clauses);
13488 if (!declare_simd)
13489 new_clauses = finish_omp_clauses (new_clauses);
13490 return new_clauses;
13491 }
13492
13493 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
13494
13495 static tree
13496 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
13497 tree in_decl)
13498 {
13499 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
13500
13501 tree purpose, value, chain;
13502
13503 if (t == NULL)
13504 return t;
13505
13506 if (TREE_CODE (t) != TREE_LIST)
13507 return tsubst_copy_and_build (t, args, complain, in_decl,
13508 /*function_p=*/false,
13509 /*integral_constant_expression_p=*/false);
13510
13511 if (t == void_list_node)
13512 return t;
13513
13514 purpose = TREE_PURPOSE (t);
13515 if (purpose)
13516 purpose = RECUR (purpose);
13517 value = TREE_VALUE (t);
13518 if (value)
13519 {
13520 if (TREE_CODE (value) != LABEL_DECL)
13521 value = RECUR (value);
13522 else
13523 {
13524 value = lookup_label (DECL_NAME (value));
13525 gcc_assert (TREE_CODE (value) == LABEL_DECL);
13526 TREE_USED (value) = 1;
13527 }
13528 }
13529 chain = TREE_CHAIN (t);
13530 if (chain && chain != void_type_node)
13531 chain = RECUR (chain);
13532 return tree_cons (purpose, value, chain);
13533 #undef RECUR
13534 }
13535
13536 /* Substitute one OMP_FOR iterator. */
13537
13538 static void
13539 tsubst_omp_for_iterator (tree t, int i, tree declv, tree initv,
13540 tree condv, tree incrv, tree *clauses,
13541 tree args, tsubst_flags_t complain, tree in_decl,
13542 bool integral_constant_expression_p)
13543 {
13544 #define RECUR(NODE) \
13545 tsubst_expr ((NODE), args, complain, in_decl, \
13546 integral_constant_expression_p)
13547 tree decl, init, cond, incr;
13548
13549 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
13550 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
13551 decl = TREE_OPERAND (init, 0);
13552 init = TREE_OPERAND (init, 1);
13553 tree decl_expr = NULL_TREE;
13554 if (init && TREE_CODE (init) == DECL_EXPR)
13555 {
13556 /* We need to jump through some hoops to handle declarations in the
13557 for-init-statement, since we might need to handle auto deduction,
13558 but we need to keep control of initialization. */
13559 decl_expr = init;
13560 init = DECL_INITIAL (DECL_EXPR_DECL (init));
13561 decl = tsubst_decl (decl, args, complain);
13562 }
13563 else
13564 decl = RECUR (decl);
13565 init = RECUR (init);
13566
13567 tree auto_node = type_uses_auto (TREE_TYPE (decl));
13568 if (auto_node && init)
13569 TREE_TYPE (decl)
13570 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
13571
13572 gcc_assert (!type_dependent_expression_p (decl));
13573
13574 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
13575 {
13576 if (decl_expr)
13577 {
13578 /* Declare the variable, but don't let that initialize it. */
13579 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
13580 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
13581 RECUR (decl_expr);
13582 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
13583 }
13584
13585 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
13586 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
13587 if (TREE_CODE (incr) == MODIFY_EXPR)
13588 {
13589 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13590 tree rhs = RECUR (TREE_OPERAND (incr, 1));
13591 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
13592 NOP_EXPR, rhs, complain);
13593 }
13594 else
13595 incr = RECUR (incr);
13596 TREE_VEC_ELT (declv, i) = decl;
13597 TREE_VEC_ELT (initv, i) = init;
13598 TREE_VEC_ELT (condv, i) = cond;
13599 TREE_VEC_ELT (incrv, i) = incr;
13600 return;
13601 }
13602
13603 if (decl_expr)
13604 {
13605 /* Declare and initialize the variable. */
13606 RECUR (decl_expr);
13607 init = NULL_TREE;
13608 }
13609 else if (init)
13610 {
13611 tree c;
13612 for (c = *clauses; c ; c = OMP_CLAUSE_CHAIN (c))
13613 {
13614 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
13615 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
13616 && OMP_CLAUSE_DECL (c) == decl)
13617 break;
13618 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
13619 && OMP_CLAUSE_DECL (c) == decl)
13620 error ("iteration variable %qD should not be firstprivate", decl);
13621 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
13622 && OMP_CLAUSE_DECL (c) == decl)
13623 error ("iteration variable %qD should not be reduction", decl);
13624 }
13625 if (c == NULL)
13626 {
13627 c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
13628 OMP_CLAUSE_DECL (c) = decl;
13629 c = finish_omp_clauses (c);
13630 if (c)
13631 {
13632 OMP_CLAUSE_CHAIN (c) = *clauses;
13633 *clauses = c;
13634 }
13635 }
13636 }
13637 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
13638 if (COMPARISON_CLASS_P (cond))
13639 {
13640 tree op0 = RECUR (TREE_OPERAND (cond, 0));
13641 tree op1 = RECUR (TREE_OPERAND (cond, 1));
13642 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
13643 }
13644 else
13645 cond = RECUR (cond);
13646 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
13647 switch (TREE_CODE (incr))
13648 {
13649 case PREINCREMENT_EXPR:
13650 case PREDECREMENT_EXPR:
13651 case POSTINCREMENT_EXPR:
13652 case POSTDECREMENT_EXPR:
13653 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
13654 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
13655 break;
13656 case MODIFY_EXPR:
13657 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
13658 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
13659 {
13660 tree rhs = TREE_OPERAND (incr, 1);
13661 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13662 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
13663 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
13664 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13665 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
13666 rhs0, rhs1));
13667 }
13668 else
13669 incr = RECUR (incr);
13670 break;
13671 case MODOP_EXPR:
13672 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
13673 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
13674 {
13675 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13676 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13677 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
13678 TREE_TYPE (decl), lhs,
13679 RECUR (TREE_OPERAND (incr, 2))));
13680 }
13681 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
13682 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
13683 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
13684 {
13685 tree rhs = TREE_OPERAND (incr, 2);
13686 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13687 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
13688 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
13689 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13690 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
13691 rhs0, rhs1));
13692 }
13693 else
13694 incr = RECUR (incr);
13695 break;
13696 default:
13697 incr = RECUR (incr);
13698 break;
13699 }
13700
13701 TREE_VEC_ELT (declv, i) = decl;
13702 TREE_VEC_ELT (initv, i) = init;
13703 TREE_VEC_ELT (condv, i) = cond;
13704 TREE_VEC_ELT (incrv, i) = incr;
13705 #undef RECUR
13706 }
13707
13708 /* Like tsubst_copy for expressions, etc. but also does semantic
13709 processing. */
13710
13711 static tree
13712 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
13713 bool integral_constant_expression_p)
13714 {
13715 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
13716 #define RECUR(NODE) \
13717 tsubst_expr ((NODE), args, complain, in_decl, \
13718 integral_constant_expression_p)
13719
13720 tree stmt, tmp;
13721 tree r;
13722 location_t loc;
13723
13724 if (t == NULL_TREE || t == error_mark_node)
13725 return t;
13726
13727 loc = input_location;
13728 if (EXPR_HAS_LOCATION (t))
13729 input_location = EXPR_LOCATION (t);
13730 if (STATEMENT_CODE_P (TREE_CODE (t)))
13731 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
13732
13733 switch (TREE_CODE (t))
13734 {
13735 case STATEMENT_LIST:
13736 {
13737 tree_stmt_iterator i;
13738 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
13739 RECUR (tsi_stmt (i));
13740 break;
13741 }
13742
13743 case CTOR_INITIALIZER:
13744 finish_mem_initializers (tsubst_initializer_list
13745 (TREE_OPERAND (t, 0), args));
13746 break;
13747
13748 case RETURN_EXPR:
13749 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
13750 break;
13751
13752 case EXPR_STMT:
13753 tmp = RECUR (EXPR_STMT_EXPR (t));
13754 if (EXPR_STMT_STMT_EXPR_RESULT (t))
13755 finish_stmt_expr_expr (tmp, cur_stmt_expr);
13756 else
13757 finish_expr_stmt (tmp);
13758 break;
13759
13760 case USING_STMT:
13761 do_using_directive (USING_STMT_NAMESPACE (t));
13762 break;
13763
13764 case DECL_EXPR:
13765 {
13766 tree decl, pattern_decl;
13767 tree init;
13768
13769 pattern_decl = decl = DECL_EXPR_DECL (t);
13770 if (TREE_CODE (decl) == LABEL_DECL)
13771 finish_label_decl (DECL_NAME (decl));
13772 else if (TREE_CODE (decl) == USING_DECL)
13773 {
13774 tree scope = USING_DECL_SCOPE (decl);
13775 tree name = DECL_NAME (decl);
13776 tree decl;
13777
13778 scope = tsubst (scope, args, complain, in_decl);
13779 decl = lookup_qualified_name (scope, name,
13780 /*is_type_p=*/false,
13781 /*complain=*/false);
13782 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
13783 qualified_name_lookup_error (scope, name, decl, input_location);
13784 else
13785 do_local_using_decl (decl, scope, name);
13786 }
13787 else if (DECL_PACK_P (decl))
13788 {
13789 /* Don't build up decls for a variadic capture proxy, we'll
13790 instantiate the elements directly as needed. */
13791 break;
13792 }
13793 else
13794 {
13795 init = DECL_INITIAL (decl);
13796 decl = tsubst (decl, args, complain, in_decl);
13797 if (decl != error_mark_node)
13798 {
13799 /* By marking the declaration as instantiated, we avoid
13800 trying to instantiate it. Since instantiate_decl can't
13801 handle local variables, and since we've already done
13802 all that needs to be done, that's the right thing to
13803 do. */
13804 if (VAR_P (decl))
13805 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
13806 if (VAR_P (decl)
13807 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
13808 /* Anonymous aggregates are a special case. */
13809 finish_anon_union (decl);
13810 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
13811 {
13812 DECL_CONTEXT (decl) = current_function_decl;
13813 if (DECL_NAME (decl) == this_identifier)
13814 {
13815 tree lam = DECL_CONTEXT (current_function_decl);
13816 lam = CLASSTYPE_LAMBDA_EXPR (lam);
13817 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
13818 }
13819 insert_capture_proxy (decl);
13820 }
13821 else if (DECL_IMPLICIT_TYPEDEF_P (t))
13822 /* We already did a pushtag. */;
13823 else if (TREE_CODE (decl) == FUNCTION_DECL
13824 && DECL_OMP_DECLARE_REDUCTION_P (decl)
13825 && DECL_FUNCTION_SCOPE_P (pattern_decl))
13826 {
13827 DECL_CONTEXT (decl) = NULL_TREE;
13828 pushdecl (decl);
13829 DECL_CONTEXT (decl) = current_function_decl;
13830 cp_check_omp_declare_reduction (decl);
13831 }
13832 else
13833 {
13834 int const_init = false;
13835 maybe_push_decl (decl);
13836 if (VAR_P (decl)
13837 && DECL_PRETTY_FUNCTION_P (decl))
13838 {
13839 /* For __PRETTY_FUNCTION__ we have to adjust the
13840 initializer. */
13841 const char *const name
13842 = cxx_printable_name (current_function_decl, 2);
13843 init = cp_fname_init (name, &TREE_TYPE (decl));
13844 }
13845 else
13846 init = tsubst_init (init, decl, args, complain, in_decl);
13847
13848 if (VAR_P (decl))
13849 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
13850 (pattern_decl));
13851 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
13852 }
13853 }
13854 }
13855
13856 break;
13857 }
13858
13859 case FOR_STMT:
13860 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
13861 RECUR (FOR_INIT_STMT (t));
13862 finish_for_init_stmt (stmt);
13863 tmp = RECUR (FOR_COND (t));
13864 finish_for_cond (tmp, stmt, false);
13865 tmp = RECUR (FOR_EXPR (t));
13866 finish_for_expr (tmp, stmt);
13867 RECUR (FOR_BODY (t));
13868 finish_for_stmt (stmt);
13869 break;
13870
13871 case RANGE_FOR_STMT:
13872 {
13873 tree decl, expr;
13874 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
13875 decl = RANGE_FOR_DECL (t);
13876 decl = tsubst (decl, args, complain, in_decl);
13877 maybe_push_decl (decl);
13878 expr = RECUR (RANGE_FOR_EXPR (t));
13879 stmt = cp_convert_range_for (stmt, decl, expr, RANGE_FOR_IVDEP (t));
13880 RECUR (RANGE_FOR_BODY (t));
13881 finish_for_stmt (stmt);
13882 }
13883 break;
13884
13885 case WHILE_STMT:
13886 stmt = begin_while_stmt ();
13887 tmp = RECUR (WHILE_COND (t));
13888 finish_while_stmt_cond (tmp, stmt, false);
13889 RECUR (WHILE_BODY (t));
13890 finish_while_stmt (stmt);
13891 break;
13892
13893 case DO_STMT:
13894 stmt = begin_do_stmt ();
13895 RECUR (DO_BODY (t));
13896 finish_do_body (stmt);
13897 tmp = RECUR (DO_COND (t));
13898 finish_do_stmt (tmp, stmt, false);
13899 break;
13900
13901 case IF_STMT:
13902 stmt = begin_if_stmt ();
13903 tmp = RECUR (IF_COND (t));
13904 finish_if_stmt_cond (tmp, stmt);
13905 RECUR (THEN_CLAUSE (t));
13906 finish_then_clause (stmt);
13907
13908 if (ELSE_CLAUSE (t))
13909 {
13910 begin_else_clause (stmt);
13911 RECUR (ELSE_CLAUSE (t));
13912 finish_else_clause (stmt);
13913 }
13914
13915 finish_if_stmt (stmt);
13916 break;
13917
13918 case BIND_EXPR:
13919 if (BIND_EXPR_BODY_BLOCK (t))
13920 stmt = begin_function_body ();
13921 else
13922 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
13923 ? BCS_TRY_BLOCK : 0);
13924
13925 RECUR (BIND_EXPR_BODY (t));
13926
13927 if (BIND_EXPR_BODY_BLOCK (t))
13928 finish_function_body (stmt);
13929 else
13930 finish_compound_stmt (stmt);
13931 break;
13932
13933 case BREAK_STMT:
13934 finish_break_stmt ();
13935 break;
13936
13937 case CONTINUE_STMT:
13938 finish_continue_stmt ();
13939 break;
13940
13941 case SWITCH_STMT:
13942 stmt = begin_switch_stmt ();
13943 tmp = RECUR (SWITCH_STMT_COND (t));
13944 finish_switch_cond (tmp, stmt);
13945 RECUR (SWITCH_STMT_BODY (t));
13946 finish_switch_stmt (stmt);
13947 break;
13948
13949 case CASE_LABEL_EXPR:
13950 {
13951 tree low = RECUR (CASE_LOW (t));
13952 tree high = RECUR (CASE_HIGH (t));
13953 finish_case_label (EXPR_LOCATION (t), low, high);
13954 }
13955 break;
13956
13957 case LABEL_EXPR:
13958 {
13959 tree decl = LABEL_EXPR_LABEL (t);
13960 tree label;
13961
13962 label = finish_label_stmt (DECL_NAME (decl));
13963 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
13964 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
13965 }
13966 break;
13967
13968 case GOTO_EXPR:
13969 tmp = GOTO_DESTINATION (t);
13970 if (TREE_CODE (tmp) != LABEL_DECL)
13971 /* Computed goto's must be tsubst'd into. On the other hand,
13972 non-computed gotos must not be; the identifier in question
13973 will have no binding. */
13974 tmp = RECUR (tmp);
13975 else
13976 tmp = DECL_NAME (tmp);
13977 finish_goto_stmt (tmp);
13978 break;
13979
13980 case ASM_EXPR:
13981 {
13982 tree string = RECUR (ASM_STRING (t));
13983 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
13984 complain, in_decl);
13985 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
13986 complain, in_decl);
13987 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
13988 complain, in_decl);
13989 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
13990 complain, in_decl);
13991 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
13992 clobbers, labels);
13993 tree asm_expr = tmp;
13994 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
13995 asm_expr = TREE_OPERAND (asm_expr, 0);
13996 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
13997 }
13998 break;
13999
14000 case TRY_BLOCK:
14001 if (CLEANUP_P (t))
14002 {
14003 stmt = begin_try_block ();
14004 RECUR (TRY_STMTS (t));
14005 finish_cleanup_try_block (stmt);
14006 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
14007 }
14008 else
14009 {
14010 tree compound_stmt = NULL_TREE;
14011
14012 if (FN_TRY_BLOCK_P (t))
14013 stmt = begin_function_try_block (&compound_stmt);
14014 else
14015 stmt = begin_try_block ();
14016
14017 RECUR (TRY_STMTS (t));
14018
14019 if (FN_TRY_BLOCK_P (t))
14020 finish_function_try_block (stmt);
14021 else
14022 finish_try_block (stmt);
14023
14024 RECUR (TRY_HANDLERS (t));
14025 if (FN_TRY_BLOCK_P (t))
14026 finish_function_handler_sequence (stmt, compound_stmt);
14027 else
14028 finish_handler_sequence (stmt);
14029 }
14030 break;
14031
14032 case HANDLER:
14033 {
14034 tree decl = HANDLER_PARMS (t);
14035
14036 if (decl)
14037 {
14038 decl = tsubst (decl, args, complain, in_decl);
14039 /* Prevent instantiate_decl from trying to instantiate
14040 this variable. We've already done all that needs to be
14041 done. */
14042 if (decl != error_mark_node)
14043 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
14044 }
14045 stmt = begin_handler ();
14046 finish_handler_parms (decl, stmt);
14047 RECUR (HANDLER_BODY (t));
14048 finish_handler (stmt);
14049 }
14050 break;
14051
14052 case TAG_DEFN:
14053 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
14054 if (CLASS_TYPE_P (tmp))
14055 {
14056 /* Local classes are not independent templates; they are
14057 instantiated along with their containing function. And this
14058 way we don't have to deal with pushing out of one local class
14059 to instantiate a member of another local class. */
14060 tree fn;
14061 /* Closures are handled by the LAMBDA_EXPR. */
14062 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
14063 complete_type (tmp);
14064 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
14065 if (!DECL_ARTIFICIAL (fn))
14066 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
14067 }
14068 break;
14069
14070 case STATIC_ASSERT:
14071 {
14072 tree condition;
14073
14074 ++c_inhibit_evaluation_warnings;
14075 condition =
14076 tsubst_expr (STATIC_ASSERT_CONDITION (t),
14077 args,
14078 complain, in_decl,
14079 /*integral_constant_expression_p=*/true);
14080 --c_inhibit_evaluation_warnings;
14081
14082 finish_static_assert (condition,
14083 STATIC_ASSERT_MESSAGE (t),
14084 STATIC_ASSERT_SOURCE_LOCATION (t),
14085 /*member_p=*/false);
14086 }
14087 break;
14088
14089 case OMP_PARALLEL:
14090 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), false,
14091 args, complain, in_decl);
14092 stmt = begin_omp_parallel ();
14093 RECUR (OMP_PARALLEL_BODY (t));
14094 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
14095 = OMP_PARALLEL_COMBINED (t);
14096 break;
14097
14098 case OMP_TASK:
14099 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), false,
14100 args, complain, in_decl);
14101 stmt = begin_omp_task ();
14102 RECUR (OMP_TASK_BODY (t));
14103 finish_omp_task (tmp, stmt);
14104 break;
14105
14106 case OMP_FOR:
14107 case OMP_SIMD:
14108 case CILK_SIMD:
14109 case CILK_FOR:
14110 case OMP_DISTRIBUTE:
14111 {
14112 tree clauses, body, pre_body;
14113 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
14114 tree incrv = NULL_TREE;
14115 int i;
14116
14117 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), false,
14118 args, complain, in_decl);
14119 if (OMP_FOR_INIT (t) != NULL_TREE)
14120 {
14121 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14122 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14123 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14124 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14125 }
14126
14127 stmt = begin_omp_structured_block ();
14128
14129 pre_body = push_stmt_list ();
14130 RECUR (OMP_FOR_PRE_BODY (t));
14131 pre_body = pop_stmt_list (pre_body);
14132
14133 if (OMP_FOR_INIT (t) != NULL_TREE)
14134 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
14135 tsubst_omp_for_iterator (t, i, declv, initv, condv, incrv,
14136 &clauses, args, complain, in_decl,
14137 integral_constant_expression_p);
14138
14139 body = push_stmt_list ();
14140 RECUR (OMP_FOR_BODY (t));
14141 body = pop_stmt_list (body);
14142
14143 if (OMP_FOR_INIT (t) != NULL_TREE)
14144 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv, initv,
14145 condv, incrv, body, pre_body, clauses);
14146 else
14147 {
14148 t = make_node (TREE_CODE (t));
14149 TREE_TYPE (t) = void_type_node;
14150 OMP_FOR_BODY (t) = body;
14151 OMP_FOR_PRE_BODY (t) = pre_body;
14152 OMP_FOR_CLAUSES (t) = clauses;
14153 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
14154 add_stmt (t);
14155 }
14156
14157 add_stmt (finish_omp_structured_block (stmt));
14158 }
14159 break;
14160
14161 case OMP_SECTIONS:
14162 case OMP_SINGLE:
14163 case OMP_TEAMS:
14164 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
14165 args, complain, in_decl);
14166 stmt = push_stmt_list ();
14167 RECUR (OMP_BODY (t));
14168 stmt = pop_stmt_list (stmt);
14169
14170 t = copy_node (t);
14171 OMP_BODY (t) = stmt;
14172 OMP_CLAUSES (t) = tmp;
14173 add_stmt (t);
14174 break;
14175
14176 case OMP_TARGET_DATA:
14177 case OMP_TARGET:
14178 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
14179 args, complain, in_decl);
14180 keep_next_level (true);
14181 stmt = begin_omp_structured_block ();
14182
14183 RECUR (OMP_BODY (t));
14184 stmt = finish_omp_structured_block (stmt);
14185
14186 t = copy_node (t);
14187 OMP_BODY (t) = stmt;
14188 OMP_CLAUSES (t) = tmp;
14189 add_stmt (t);
14190 break;
14191
14192 case OMP_TARGET_UPDATE:
14193 tmp = tsubst_omp_clauses (OMP_TARGET_UPDATE_CLAUSES (t), false,
14194 args, complain, in_decl);
14195 t = copy_node (t);
14196 OMP_CLAUSES (t) = tmp;
14197 add_stmt (t);
14198 break;
14199
14200 case OMP_SECTION:
14201 case OMP_CRITICAL:
14202 case OMP_MASTER:
14203 case OMP_TASKGROUP:
14204 case OMP_ORDERED:
14205 stmt = push_stmt_list ();
14206 RECUR (OMP_BODY (t));
14207 stmt = pop_stmt_list (stmt);
14208
14209 t = copy_node (t);
14210 OMP_BODY (t) = stmt;
14211 add_stmt (t);
14212 break;
14213
14214 case OMP_ATOMIC:
14215 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
14216 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
14217 {
14218 tree op1 = TREE_OPERAND (t, 1);
14219 tree rhs1 = NULL_TREE;
14220 tree lhs, rhs;
14221 if (TREE_CODE (op1) == COMPOUND_EXPR)
14222 {
14223 rhs1 = RECUR (TREE_OPERAND (op1, 0));
14224 op1 = TREE_OPERAND (op1, 1);
14225 }
14226 lhs = RECUR (TREE_OPERAND (op1, 0));
14227 rhs = RECUR (TREE_OPERAND (op1, 1));
14228 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
14229 NULL_TREE, NULL_TREE, rhs1,
14230 OMP_ATOMIC_SEQ_CST (t));
14231 }
14232 else
14233 {
14234 tree op1 = TREE_OPERAND (t, 1);
14235 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
14236 tree rhs1 = NULL_TREE;
14237 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
14238 enum tree_code opcode = NOP_EXPR;
14239 if (code == OMP_ATOMIC_READ)
14240 {
14241 v = RECUR (TREE_OPERAND (op1, 0));
14242 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
14243 }
14244 else if (code == OMP_ATOMIC_CAPTURE_OLD
14245 || code == OMP_ATOMIC_CAPTURE_NEW)
14246 {
14247 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
14248 v = RECUR (TREE_OPERAND (op1, 0));
14249 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
14250 if (TREE_CODE (op11) == COMPOUND_EXPR)
14251 {
14252 rhs1 = RECUR (TREE_OPERAND (op11, 0));
14253 op11 = TREE_OPERAND (op11, 1);
14254 }
14255 lhs = RECUR (TREE_OPERAND (op11, 0));
14256 rhs = RECUR (TREE_OPERAND (op11, 1));
14257 opcode = TREE_CODE (op11);
14258 if (opcode == MODIFY_EXPR)
14259 opcode = NOP_EXPR;
14260 }
14261 else
14262 {
14263 code = OMP_ATOMIC;
14264 lhs = RECUR (TREE_OPERAND (op1, 0));
14265 rhs = RECUR (TREE_OPERAND (op1, 1));
14266 }
14267 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
14268 OMP_ATOMIC_SEQ_CST (t));
14269 }
14270 break;
14271
14272 case TRANSACTION_EXPR:
14273 {
14274 int flags = 0;
14275 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
14276 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
14277
14278 if (TRANSACTION_EXPR_IS_STMT (t))
14279 {
14280 tree body = TRANSACTION_EXPR_BODY (t);
14281 tree noex = NULL_TREE;
14282 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
14283 {
14284 noex = MUST_NOT_THROW_COND (body);
14285 if (noex == NULL_TREE)
14286 noex = boolean_true_node;
14287 body = TREE_OPERAND (body, 0);
14288 }
14289 stmt = begin_transaction_stmt (input_location, NULL, flags);
14290 RECUR (body);
14291 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
14292 }
14293 else
14294 {
14295 stmt = build_transaction_expr (EXPR_LOCATION (t),
14296 RECUR (TRANSACTION_EXPR_BODY (t)),
14297 flags, NULL_TREE);
14298 RETURN (stmt);
14299 }
14300 }
14301 break;
14302
14303 case MUST_NOT_THROW_EXPR:
14304 {
14305 tree op0 = RECUR (TREE_OPERAND (t, 0));
14306 tree cond = RECUR (MUST_NOT_THROW_COND (t));
14307 RETURN (build_must_not_throw_expr (op0, cond));
14308 }
14309
14310 case EXPR_PACK_EXPANSION:
14311 error ("invalid use of pack expansion expression");
14312 RETURN (error_mark_node);
14313
14314 case NONTYPE_ARGUMENT_PACK:
14315 error ("use %<...%> to expand argument pack");
14316 RETURN (error_mark_node);
14317
14318 case CILK_SPAWN_STMT:
14319 cfun->calls_cilk_spawn = 1;
14320 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
14321
14322 case CILK_SYNC_STMT:
14323 RETURN (build_cilk_sync ());
14324
14325 case COMPOUND_EXPR:
14326 tmp = RECUR (TREE_OPERAND (t, 0));
14327 if (tmp == NULL_TREE)
14328 /* If the first operand was a statement, we're done with it. */
14329 RETURN (RECUR (TREE_OPERAND (t, 1)));
14330 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
14331 RECUR (TREE_OPERAND (t, 1)),
14332 complain));
14333
14334 case ANNOTATE_EXPR:
14335 tmp = RECUR (TREE_OPERAND (t, 0));
14336 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
14337 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
14338
14339 default:
14340 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
14341
14342 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
14343 /*function_p=*/false,
14344 integral_constant_expression_p));
14345 }
14346
14347 RETURN (NULL_TREE);
14348 out:
14349 input_location = loc;
14350 return r;
14351 #undef RECUR
14352 #undef RETURN
14353 }
14354
14355 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
14356 function. For description of the body see comment above
14357 cp_parser_omp_declare_reduction_exprs. */
14358
14359 static void
14360 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
14361 {
14362 if (t == NULL_TREE || t == error_mark_node)
14363 return;
14364
14365 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
14366
14367 tree_stmt_iterator tsi;
14368 int i;
14369 tree stmts[7];
14370 memset (stmts, 0, sizeof stmts);
14371 for (i = 0, tsi = tsi_start (t);
14372 i < 7 && !tsi_end_p (tsi);
14373 i++, tsi_next (&tsi))
14374 stmts[i] = tsi_stmt (tsi);
14375 gcc_assert (tsi_end_p (tsi));
14376
14377 if (i >= 3)
14378 {
14379 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
14380 && TREE_CODE (stmts[1]) == DECL_EXPR);
14381 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
14382 args, complain, in_decl);
14383 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
14384 args, complain, in_decl);
14385 DECL_CONTEXT (omp_out) = current_function_decl;
14386 DECL_CONTEXT (omp_in) = current_function_decl;
14387 keep_next_level (true);
14388 tree block = begin_omp_structured_block ();
14389 tsubst_expr (stmts[2], args, complain, in_decl, false);
14390 block = finish_omp_structured_block (block);
14391 block = maybe_cleanup_point_expr_void (block);
14392 add_decl_expr (omp_out);
14393 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
14394 TREE_NO_WARNING (omp_out) = 1;
14395 add_decl_expr (omp_in);
14396 finish_expr_stmt (block);
14397 }
14398 if (i >= 6)
14399 {
14400 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
14401 && TREE_CODE (stmts[4]) == DECL_EXPR);
14402 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
14403 args, complain, in_decl);
14404 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
14405 args, complain, in_decl);
14406 DECL_CONTEXT (omp_priv) = current_function_decl;
14407 DECL_CONTEXT (omp_orig) = current_function_decl;
14408 keep_next_level (true);
14409 tree block = begin_omp_structured_block ();
14410 tsubst_expr (stmts[5], args, complain, in_decl, false);
14411 block = finish_omp_structured_block (block);
14412 block = maybe_cleanup_point_expr_void (block);
14413 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
14414 add_decl_expr (omp_priv);
14415 add_decl_expr (omp_orig);
14416 finish_expr_stmt (block);
14417 if (i == 7)
14418 add_decl_expr (omp_orig);
14419 }
14420 }
14421
14422 /* T is a postfix-expression that is not being used in a function
14423 call. Return the substituted version of T. */
14424
14425 static tree
14426 tsubst_non_call_postfix_expression (tree t, tree args,
14427 tsubst_flags_t complain,
14428 tree in_decl)
14429 {
14430 if (TREE_CODE (t) == SCOPE_REF)
14431 t = tsubst_qualified_id (t, args, complain, in_decl,
14432 /*done=*/false, /*address_p=*/false);
14433 else
14434 t = tsubst_copy_and_build (t, args, complain, in_decl,
14435 /*function_p=*/false,
14436 /*integral_constant_expression_p=*/false);
14437
14438 return t;
14439 }
14440
14441 /* Like tsubst but deals with expressions and performs semantic
14442 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
14443
14444 tree
14445 tsubst_copy_and_build (tree t,
14446 tree args,
14447 tsubst_flags_t complain,
14448 tree in_decl,
14449 bool function_p,
14450 bool integral_constant_expression_p)
14451 {
14452 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
14453 #define RECUR(NODE) \
14454 tsubst_copy_and_build (NODE, args, complain, in_decl, \
14455 /*function_p=*/false, \
14456 integral_constant_expression_p)
14457
14458 tree retval, op1;
14459 location_t loc;
14460
14461 if (t == NULL_TREE || t == error_mark_node)
14462 return t;
14463
14464 loc = input_location;
14465 if (EXPR_HAS_LOCATION (t))
14466 input_location = EXPR_LOCATION (t);
14467
14468 /* N3276 decltype magic only applies to calls at the top level or on the
14469 right side of a comma. */
14470 tsubst_flags_t decltype_flag = (complain & tf_decltype);
14471 complain &= ~tf_decltype;
14472
14473 switch (TREE_CODE (t))
14474 {
14475 case USING_DECL:
14476 t = DECL_NAME (t);
14477 /* Fall through. */
14478 case IDENTIFIER_NODE:
14479 {
14480 tree decl;
14481 cp_id_kind idk;
14482 bool non_integral_constant_expression_p;
14483 const char *error_msg;
14484
14485 if (IDENTIFIER_TYPENAME_P (t))
14486 {
14487 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14488 t = mangle_conv_op_name_for_type (new_type);
14489 }
14490
14491 /* Look up the name. */
14492 decl = lookup_name (t);
14493
14494 /* By convention, expressions use ERROR_MARK_NODE to indicate
14495 failure, not NULL_TREE. */
14496 if (decl == NULL_TREE)
14497 decl = error_mark_node;
14498
14499 decl = finish_id_expression (t, decl, NULL_TREE,
14500 &idk,
14501 integral_constant_expression_p,
14502 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
14503 &non_integral_constant_expression_p,
14504 /*template_p=*/false,
14505 /*done=*/true,
14506 /*address_p=*/false,
14507 /*template_arg_p=*/false,
14508 &error_msg,
14509 input_location);
14510 if (error_msg)
14511 error (error_msg);
14512 if (!function_p && identifier_p (decl))
14513 {
14514 if (complain & tf_error)
14515 unqualified_name_lookup_error (decl);
14516 decl = error_mark_node;
14517 }
14518 RETURN (decl);
14519 }
14520
14521 case TEMPLATE_ID_EXPR:
14522 {
14523 tree object;
14524 tree templ = RECUR (TREE_OPERAND (t, 0));
14525 tree targs = TREE_OPERAND (t, 1);
14526
14527 if (targs)
14528 targs = tsubst_template_args (targs, args, complain, in_decl);
14529
14530 if (TREE_CODE (templ) == COMPONENT_REF)
14531 {
14532 object = TREE_OPERAND (templ, 0);
14533 templ = TREE_OPERAND (templ, 1);
14534 }
14535 else
14536 object = NULL_TREE;
14537 templ = lookup_template_function (templ, targs);
14538
14539 if (object)
14540 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
14541 object, templ, NULL_TREE));
14542 else
14543 RETURN (baselink_for_fns (templ));
14544 }
14545
14546 case INDIRECT_REF:
14547 {
14548 tree r = RECUR (TREE_OPERAND (t, 0));
14549
14550 if (REFERENCE_REF_P (t))
14551 {
14552 /* A type conversion to reference type will be enclosed in
14553 such an indirect ref, but the substitution of the cast
14554 will have also added such an indirect ref. */
14555 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
14556 r = convert_from_reference (r);
14557 }
14558 else
14559 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
14560 complain|decltype_flag);
14561 RETURN (r);
14562 }
14563
14564 case NOP_EXPR:
14565 {
14566 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14567 tree op0 = RECUR (TREE_OPERAND (t, 0));
14568 RETURN (build_nop (type, op0));
14569 }
14570
14571 case IMPLICIT_CONV_EXPR:
14572 {
14573 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14574 tree expr = RECUR (TREE_OPERAND (t, 0));
14575 int flags = LOOKUP_IMPLICIT;
14576 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
14577 flags = LOOKUP_NORMAL;
14578 RETURN (perform_implicit_conversion_flags (type, expr, complain,
14579 flags));
14580 }
14581
14582 case CONVERT_EXPR:
14583 {
14584 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14585 tree op0 = RECUR (TREE_OPERAND (t, 0));
14586 RETURN (build1 (CONVERT_EXPR, type, op0));
14587 }
14588
14589 case CAST_EXPR:
14590 case REINTERPRET_CAST_EXPR:
14591 case CONST_CAST_EXPR:
14592 case DYNAMIC_CAST_EXPR:
14593 case STATIC_CAST_EXPR:
14594 {
14595 tree type;
14596 tree op, r = NULL_TREE;
14597
14598 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14599 if (integral_constant_expression_p
14600 && !cast_valid_in_integral_constant_expression_p (type))
14601 {
14602 if (complain & tf_error)
14603 error ("a cast to a type other than an integral or "
14604 "enumeration type cannot appear in a constant-expression");
14605 RETURN (error_mark_node);
14606 }
14607
14608 op = RECUR (TREE_OPERAND (t, 0));
14609
14610 warning_sentinel s(warn_useless_cast);
14611 switch (TREE_CODE (t))
14612 {
14613 case CAST_EXPR:
14614 r = build_functional_cast (type, op, complain);
14615 break;
14616 case REINTERPRET_CAST_EXPR:
14617 r = build_reinterpret_cast (type, op, complain);
14618 break;
14619 case CONST_CAST_EXPR:
14620 r = build_const_cast (type, op, complain);
14621 break;
14622 case DYNAMIC_CAST_EXPR:
14623 r = build_dynamic_cast (type, op, complain);
14624 break;
14625 case STATIC_CAST_EXPR:
14626 r = build_static_cast (type, op, complain);
14627 break;
14628 default:
14629 gcc_unreachable ();
14630 }
14631
14632 RETURN (r);
14633 }
14634
14635 case POSTDECREMENT_EXPR:
14636 case POSTINCREMENT_EXPR:
14637 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14638 args, complain, in_decl);
14639 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
14640 complain|decltype_flag));
14641
14642 case PREDECREMENT_EXPR:
14643 case PREINCREMENT_EXPR:
14644 case NEGATE_EXPR:
14645 case BIT_NOT_EXPR:
14646 case ABS_EXPR:
14647 case TRUTH_NOT_EXPR:
14648 case UNARY_PLUS_EXPR: /* Unary + */
14649 case REALPART_EXPR:
14650 case IMAGPART_EXPR:
14651 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
14652 RECUR (TREE_OPERAND (t, 0)),
14653 complain|decltype_flag));
14654
14655 case FIX_TRUNC_EXPR:
14656 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
14657 0, complain));
14658
14659 case ADDR_EXPR:
14660 op1 = TREE_OPERAND (t, 0);
14661 if (TREE_CODE (op1) == LABEL_DECL)
14662 RETURN (finish_label_address_expr (DECL_NAME (op1),
14663 EXPR_LOCATION (op1)));
14664 if (TREE_CODE (op1) == SCOPE_REF)
14665 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
14666 /*done=*/true, /*address_p=*/true);
14667 else
14668 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
14669 in_decl);
14670 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
14671 complain|decltype_flag));
14672
14673 case PLUS_EXPR:
14674 case MINUS_EXPR:
14675 case MULT_EXPR:
14676 case TRUNC_DIV_EXPR:
14677 case CEIL_DIV_EXPR:
14678 case FLOOR_DIV_EXPR:
14679 case ROUND_DIV_EXPR:
14680 case EXACT_DIV_EXPR:
14681 case BIT_AND_EXPR:
14682 case BIT_IOR_EXPR:
14683 case BIT_XOR_EXPR:
14684 case TRUNC_MOD_EXPR:
14685 case FLOOR_MOD_EXPR:
14686 case TRUTH_ANDIF_EXPR:
14687 case TRUTH_ORIF_EXPR:
14688 case TRUTH_AND_EXPR:
14689 case TRUTH_OR_EXPR:
14690 case RSHIFT_EXPR:
14691 case LSHIFT_EXPR:
14692 case RROTATE_EXPR:
14693 case LROTATE_EXPR:
14694 case EQ_EXPR:
14695 case NE_EXPR:
14696 case MAX_EXPR:
14697 case MIN_EXPR:
14698 case LE_EXPR:
14699 case GE_EXPR:
14700 case LT_EXPR:
14701 case GT_EXPR:
14702 case MEMBER_REF:
14703 case DOTSTAR_EXPR:
14704 {
14705 warning_sentinel s1(warn_type_limits);
14706 warning_sentinel s2(warn_div_by_zero);
14707 tree op0 = RECUR (TREE_OPERAND (t, 0));
14708 tree op1 = RECUR (TREE_OPERAND (t, 1));
14709 tree r = build_x_binary_op
14710 (input_location, TREE_CODE (t),
14711 op0,
14712 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
14713 ? ERROR_MARK
14714 : TREE_CODE (TREE_OPERAND (t, 0))),
14715 op1,
14716 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
14717 ? ERROR_MARK
14718 : TREE_CODE (TREE_OPERAND (t, 1))),
14719 /*overload=*/NULL,
14720 complain|decltype_flag);
14721 if (EXPR_P (r) && TREE_NO_WARNING (t))
14722 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14723
14724 RETURN (r);
14725 }
14726
14727 case POINTER_PLUS_EXPR:
14728 {
14729 tree op0 = RECUR (TREE_OPERAND (t, 0));
14730 tree op1 = RECUR (TREE_OPERAND (t, 1));
14731 return fold_build_pointer_plus (op0, op1);
14732 }
14733
14734 case SCOPE_REF:
14735 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
14736 /*address_p=*/false));
14737 case ARRAY_REF:
14738 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14739 args, complain, in_decl);
14740 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
14741 RECUR (TREE_OPERAND (t, 1)),
14742 complain|decltype_flag));
14743
14744 case ARRAY_NOTATION_REF:
14745 {
14746 tree start_index, length, stride;
14747 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
14748 args, complain, in_decl);
14749 start_index = RECUR (ARRAY_NOTATION_START (t));
14750 length = RECUR (ARRAY_NOTATION_LENGTH (t));
14751 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
14752 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
14753 length, stride, TREE_TYPE (op1)));
14754 }
14755 case SIZEOF_EXPR:
14756 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
14757 RETURN (tsubst_copy (t, args, complain, in_decl));
14758 /* Fall through */
14759
14760 case ALIGNOF_EXPR:
14761 {
14762 tree r;
14763
14764 op1 = TREE_OPERAND (t, 0);
14765 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
14766 op1 = TREE_TYPE (op1);
14767 if (!args)
14768 {
14769 /* When there are no ARGS, we are trying to evaluate a
14770 non-dependent expression from the parser. Trying to do
14771 the substitutions may not work. */
14772 if (!TYPE_P (op1))
14773 op1 = TREE_TYPE (op1);
14774 }
14775 else
14776 {
14777 ++cp_unevaluated_operand;
14778 ++c_inhibit_evaluation_warnings;
14779 if (TYPE_P (op1))
14780 op1 = tsubst (op1, args, complain, in_decl);
14781 else
14782 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14783 /*function_p=*/false,
14784 /*integral_constant_expression_p=*/
14785 false);
14786 --cp_unevaluated_operand;
14787 --c_inhibit_evaluation_warnings;
14788 }
14789 if (TYPE_P (op1))
14790 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
14791 complain & tf_error);
14792 else
14793 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
14794 complain & tf_error);
14795 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
14796 {
14797 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
14798 {
14799 if (!processing_template_decl && TYPE_P (op1))
14800 {
14801 r = build_min (SIZEOF_EXPR, size_type_node,
14802 build1 (NOP_EXPR, op1, error_mark_node));
14803 SIZEOF_EXPR_TYPE_P (r) = 1;
14804 }
14805 else
14806 r = build_min (SIZEOF_EXPR, size_type_node, op1);
14807 TREE_SIDE_EFFECTS (r) = 0;
14808 TREE_READONLY (r) = 1;
14809 }
14810 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
14811 }
14812 RETURN (r);
14813 }
14814
14815 case AT_ENCODE_EXPR:
14816 {
14817 op1 = TREE_OPERAND (t, 0);
14818 ++cp_unevaluated_operand;
14819 ++c_inhibit_evaluation_warnings;
14820 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14821 /*function_p=*/false,
14822 /*integral_constant_expression_p=*/false);
14823 --cp_unevaluated_operand;
14824 --c_inhibit_evaluation_warnings;
14825 RETURN (objc_build_encode_expr (op1));
14826 }
14827
14828 case NOEXCEPT_EXPR:
14829 op1 = TREE_OPERAND (t, 0);
14830 ++cp_unevaluated_operand;
14831 ++c_inhibit_evaluation_warnings;
14832 ++cp_noexcept_operand;
14833 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14834 /*function_p=*/false,
14835 /*integral_constant_expression_p=*/false);
14836 --cp_unevaluated_operand;
14837 --c_inhibit_evaluation_warnings;
14838 --cp_noexcept_operand;
14839 RETURN (finish_noexcept_expr (op1, complain));
14840
14841 case MODOP_EXPR:
14842 {
14843 warning_sentinel s(warn_div_by_zero);
14844 tree lhs = RECUR (TREE_OPERAND (t, 0));
14845 tree rhs = RECUR (TREE_OPERAND (t, 2));
14846 tree r = build_x_modify_expr
14847 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
14848 complain|decltype_flag);
14849 /* TREE_NO_WARNING must be set if either the expression was
14850 parenthesized or it uses an operator such as >>= rather
14851 than plain assignment. In the former case, it was already
14852 set and must be copied. In the latter case,
14853 build_x_modify_expr sets it and it must not be reset
14854 here. */
14855 if (TREE_NO_WARNING (t))
14856 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14857
14858 RETURN (r);
14859 }
14860
14861 case ARROW_EXPR:
14862 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14863 args, complain, in_decl);
14864 /* Remember that there was a reference to this entity. */
14865 if (DECL_P (op1))
14866 mark_used (op1);
14867 RETURN (build_x_arrow (input_location, op1, complain));
14868
14869 case NEW_EXPR:
14870 {
14871 tree placement = RECUR (TREE_OPERAND (t, 0));
14872 tree init = RECUR (TREE_OPERAND (t, 3));
14873 vec<tree, va_gc> *placement_vec;
14874 vec<tree, va_gc> *init_vec;
14875 tree ret;
14876
14877 if (placement == NULL_TREE)
14878 placement_vec = NULL;
14879 else
14880 {
14881 placement_vec = make_tree_vector ();
14882 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
14883 vec_safe_push (placement_vec, TREE_VALUE (placement));
14884 }
14885
14886 /* If there was an initializer in the original tree, but it
14887 instantiated to an empty list, then we should pass a
14888 non-NULL empty vector to tell build_new that it was an
14889 empty initializer() rather than no initializer. This can
14890 only happen when the initializer is a pack expansion whose
14891 parameter packs are of length zero. */
14892 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
14893 init_vec = NULL;
14894 else
14895 {
14896 init_vec = make_tree_vector ();
14897 if (init == void_node)
14898 gcc_assert (init_vec != NULL);
14899 else
14900 {
14901 for (; init != NULL_TREE; init = TREE_CHAIN (init))
14902 vec_safe_push (init_vec, TREE_VALUE (init));
14903 }
14904 }
14905
14906 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
14907 tree op2 = RECUR (TREE_OPERAND (t, 2));
14908 ret = build_new (&placement_vec, op1, op2, &init_vec,
14909 NEW_EXPR_USE_GLOBAL (t),
14910 complain);
14911
14912 if (placement_vec != NULL)
14913 release_tree_vector (placement_vec);
14914 if (init_vec != NULL)
14915 release_tree_vector (init_vec);
14916
14917 RETURN (ret);
14918 }
14919
14920 case DELETE_EXPR:
14921 {
14922 tree op0 = RECUR (TREE_OPERAND (t, 0));
14923 tree op1 = RECUR (TREE_OPERAND (t, 1));
14924 RETURN (delete_sanity (op0, op1,
14925 DELETE_EXPR_USE_VEC (t),
14926 DELETE_EXPR_USE_GLOBAL (t),
14927 complain));
14928 }
14929
14930 case COMPOUND_EXPR:
14931 {
14932 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
14933 complain & ~tf_decltype, in_decl,
14934 /*function_p=*/false,
14935 integral_constant_expression_p);
14936 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
14937 op0,
14938 RECUR (TREE_OPERAND (t, 1)),
14939 complain|decltype_flag));
14940 }
14941
14942 case CALL_EXPR:
14943 {
14944 tree function;
14945 vec<tree, va_gc> *call_args;
14946 unsigned int nargs, i;
14947 bool qualified_p;
14948 bool koenig_p;
14949 tree ret;
14950
14951 function = CALL_EXPR_FN (t);
14952 /* When we parsed the expression, we determined whether or
14953 not Koenig lookup should be performed. */
14954 koenig_p = KOENIG_LOOKUP_P (t);
14955 if (TREE_CODE (function) == SCOPE_REF)
14956 {
14957 qualified_p = true;
14958 function = tsubst_qualified_id (function, args, complain, in_decl,
14959 /*done=*/false,
14960 /*address_p=*/false);
14961 }
14962 else if (koenig_p && identifier_p (function))
14963 {
14964 /* Do nothing; calling tsubst_copy_and_build on an identifier
14965 would incorrectly perform unqualified lookup again.
14966
14967 Note that we can also have an IDENTIFIER_NODE if the earlier
14968 unqualified lookup found a member function; in that case
14969 koenig_p will be false and we do want to do the lookup
14970 again to find the instantiated member function.
14971
14972 FIXME but doing that causes c++/15272, so we need to stop
14973 using IDENTIFIER_NODE in that situation. */
14974 qualified_p = false;
14975 }
14976 else
14977 {
14978 if (TREE_CODE (function) == COMPONENT_REF)
14979 {
14980 tree op = TREE_OPERAND (function, 1);
14981
14982 qualified_p = (TREE_CODE (op) == SCOPE_REF
14983 || (BASELINK_P (op)
14984 && BASELINK_QUALIFIED_P (op)));
14985 }
14986 else
14987 qualified_p = false;
14988
14989 if (TREE_CODE (function) == ADDR_EXPR
14990 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
14991 /* Avoid error about taking the address of a constructor. */
14992 function = TREE_OPERAND (function, 0);
14993
14994 function = tsubst_copy_and_build (function, args, complain,
14995 in_decl,
14996 !qualified_p,
14997 integral_constant_expression_p);
14998
14999 if (BASELINK_P (function))
15000 qualified_p = true;
15001 }
15002
15003 nargs = call_expr_nargs (t);
15004 call_args = make_tree_vector ();
15005 for (i = 0; i < nargs; ++i)
15006 {
15007 tree arg = CALL_EXPR_ARG (t, i);
15008
15009 if (!PACK_EXPANSION_P (arg))
15010 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
15011 else
15012 {
15013 /* Expand the pack expansion and push each entry onto
15014 CALL_ARGS. */
15015 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
15016 if (TREE_CODE (arg) == TREE_VEC)
15017 {
15018 unsigned int len, j;
15019
15020 len = TREE_VEC_LENGTH (arg);
15021 for (j = 0; j < len; ++j)
15022 {
15023 tree value = TREE_VEC_ELT (arg, j);
15024 if (value != NULL_TREE)
15025 value = convert_from_reference (value);
15026 vec_safe_push (call_args, value);
15027 }
15028 }
15029 else
15030 {
15031 /* A partial substitution. Add one entry. */
15032 vec_safe_push (call_args, arg);
15033 }
15034 }
15035 }
15036
15037 /* We do not perform argument-dependent lookup if normal
15038 lookup finds a non-function, in accordance with the
15039 expected resolution of DR 218. */
15040 if (koenig_p
15041 && ((is_overloaded_fn (function)
15042 /* If lookup found a member function, the Koenig lookup is
15043 not appropriate, even if an unqualified-name was used
15044 to denote the function. */
15045 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
15046 || identifier_p (function))
15047 /* Only do this when substitution turns a dependent call
15048 into a non-dependent call. */
15049 && type_dependent_expression_p_push (t)
15050 && !any_type_dependent_arguments_p (call_args))
15051 function = perform_koenig_lookup (function, call_args, tf_none);
15052
15053 if (identifier_p (function)
15054 && !any_type_dependent_arguments_p (call_args))
15055 {
15056 if (koenig_p && (complain & tf_warning_or_error))
15057 {
15058 /* For backwards compatibility and good diagnostics, try
15059 the unqualified lookup again if we aren't in SFINAE
15060 context. */
15061 tree unq = (tsubst_copy_and_build
15062 (function, args, complain, in_decl, true,
15063 integral_constant_expression_p));
15064 if (unq == error_mark_node)
15065 RETURN (error_mark_node);
15066
15067 if (unq != function)
15068 {
15069 tree fn = unq;
15070 if (INDIRECT_REF_P (fn))
15071 fn = TREE_OPERAND (fn, 0);
15072 if (TREE_CODE (fn) == COMPONENT_REF)
15073 fn = TREE_OPERAND (fn, 1);
15074 if (is_overloaded_fn (fn))
15075 fn = get_first_fn (fn);
15076 if (permerror (EXPR_LOC_OR_LOC (t, input_location),
15077 "%qD was not declared in this scope, "
15078 "and no declarations were found by "
15079 "argument-dependent lookup at the point "
15080 "of instantiation", function))
15081 {
15082 if (!DECL_P (fn))
15083 /* Can't say anything more. */;
15084 else if (DECL_CLASS_SCOPE_P (fn))
15085 {
15086 location_t loc = EXPR_LOC_OR_LOC (t,
15087 input_location);
15088 inform (loc,
15089 "declarations in dependent base %qT are "
15090 "not found by unqualified lookup",
15091 DECL_CLASS_CONTEXT (fn));
15092 if (current_class_ptr)
15093 inform (loc,
15094 "use %<this->%D%> instead", function);
15095 else
15096 inform (loc,
15097 "use %<%T::%D%> instead",
15098 current_class_name, function);
15099 }
15100 else
15101 inform (0, "%q+D declared here, later in the "
15102 "translation unit", fn);
15103 }
15104 function = unq;
15105 }
15106 }
15107 if (identifier_p (function))
15108 {
15109 if (complain & tf_error)
15110 unqualified_name_lookup_error (function);
15111 release_tree_vector (call_args);
15112 RETURN (error_mark_node);
15113 }
15114 }
15115
15116 /* Remember that there was a reference to this entity. */
15117 if (DECL_P (function))
15118 mark_used (function, complain);
15119
15120 /* Put back tf_decltype for the actual call. */
15121 complain |= decltype_flag;
15122
15123 if (TREE_CODE (function) == OFFSET_REF)
15124 ret = build_offset_ref_call_from_tree (function, &call_args,
15125 complain);
15126 else if (TREE_CODE (function) == COMPONENT_REF)
15127 {
15128 tree instance = TREE_OPERAND (function, 0);
15129 tree fn = TREE_OPERAND (function, 1);
15130
15131 if (processing_template_decl
15132 && (type_dependent_expression_p (instance)
15133 || (!BASELINK_P (fn)
15134 && TREE_CODE (fn) != FIELD_DECL)
15135 || type_dependent_expression_p (fn)
15136 || any_type_dependent_arguments_p (call_args)))
15137 ret = build_nt_call_vec (function, call_args);
15138 else if (!BASELINK_P (fn))
15139 ret = finish_call_expr (function, &call_args,
15140 /*disallow_virtual=*/false,
15141 /*koenig_p=*/false,
15142 complain);
15143 else
15144 ret = (build_new_method_call
15145 (instance, fn,
15146 &call_args, NULL_TREE,
15147 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
15148 /*fn_p=*/NULL,
15149 complain));
15150 }
15151 else
15152 ret = finish_call_expr (function, &call_args,
15153 /*disallow_virtual=*/qualified_p,
15154 koenig_p,
15155 complain);
15156
15157 release_tree_vector (call_args);
15158
15159 RETURN (ret);
15160 }
15161
15162 case COND_EXPR:
15163 {
15164 tree cond = RECUR (TREE_OPERAND (t, 0));
15165 tree folded_cond = fold_non_dependent_expr (cond);
15166 tree exp1, exp2;
15167
15168 if (TREE_CODE (folded_cond) == INTEGER_CST)
15169 {
15170 if (integer_zerop (folded_cond))
15171 {
15172 ++c_inhibit_evaluation_warnings;
15173 exp1 = RECUR (TREE_OPERAND (t, 1));
15174 --c_inhibit_evaluation_warnings;
15175 exp2 = RECUR (TREE_OPERAND (t, 2));
15176 }
15177 else
15178 {
15179 exp1 = RECUR (TREE_OPERAND (t, 1));
15180 ++c_inhibit_evaluation_warnings;
15181 exp2 = RECUR (TREE_OPERAND (t, 2));
15182 --c_inhibit_evaluation_warnings;
15183 }
15184 cond = folded_cond;
15185 }
15186 else
15187 {
15188 exp1 = RECUR (TREE_OPERAND (t, 1));
15189 exp2 = RECUR (TREE_OPERAND (t, 2));
15190 }
15191
15192 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
15193 cond, exp1, exp2, complain));
15194 }
15195
15196 case PSEUDO_DTOR_EXPR:
15197 {
15198 tree op0 = RECUR (TREE_OPERAND (t, 0));
15199 tree op1 = RECUR (TREE_OPERAND (t, 1));
15200 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
15201 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
15202 input_location));
15203 }
15204
15205 case TREE_LIST:
15206 {
15207 tree purpose, value, chain;
15208
15209 if (t == void_list_node)
15210 RETURN (t);
15211
15212 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
15213 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
15214 {
15215 /* We have pack expansions, so expand those and
15216 create a new list out of it. */
15217 tree purposevec = NULL_TREE;
15218 tree valuevec = NULL_TREE;
15219 tree chain;
15220 int i, len = -1;
15221
15222 /* Expand the argument expressions. */
15223 if (TREE_PURPOSE (t))
15224 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
15225 complain, in_decl);
15226 if (TREE_VALUE (t))
15227 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
15228 complain, in_decl);
15229
15230 /* Build the rest of the list. */
15231 chain = TREE_CHAIN (t);
15232 if (chain && chain != void_type_node)
15233 chain = RECUR (chain);
15234
15235 /* Determine the number of arguments. */
15236 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
15237 {
15238 len = TREE_VEC_LENGTH (purposevec);
15239 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
15240 }
15241 else if (TREE_CODE (valuevec) == TREE_VEC)
15242 len = TREE_VEC_LENGTH (valuevec);
15243 else
15244 {
15245 /* Since we only performed a partial substitution into
15246 the argument pack, we only RETURN (a single list
15247 node. */
15248 if (purposevec == TREE_PURPOSE (t)
15249 && valuevec == TREE_VALUE (t)
15250 && chain == TREE_CHAIN (t))
15251 RETURN (t);
15252
15253 RETURN (tree_cons (purposevec, valuevec, chain));
15254 }
15255
15256 /* Convert the argument vectors into a TREE_LIST */
15257 i = len;
15258 while (i > 0)
15259 {
15260 /* Grab the Ith values. */
15261 i--;
15262 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
15263 : NULL_TREE;
15264 value
15265 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
15266 : NULL_TREE;
15267
15268 /* Build the list (backwards). */
15269 chain = tree_cons (purpose, value, chain);
15270 }
15271
15272 RETURN (chain);
15273 }
15274
15275 purpose = TREE_PURPOSE (t);
15276 if (purpose)
15277 purpose = RECUR (purpose);
15278 value = TREE_VALUE (t);
15279 if (value)
15280 value = RECUR (value);
15281 chain = TREE_CHAIN (t);
15282 if (chain && chain != void_type_node)
15283 chain = RECUR (chain);
15284 if (purpose == TREE_PURPOSE (t)
15285 && value == TREE_VALUE (t)
15286 && chain == TREE_CHAIN (t))
15287 RETURN (t);
15288 RETURN (tree_cons (purpose, value, chain));
15289 }
15290
15291 case COMPONENT_REF:
15292 {
15293 tree object;
15294 tree object_type;
15295 tree member;
15296 tree r;
15297
15298 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
15299 args, complain, in_decl);
15300 /* Remember that there was a reference to this entity. */
15301 if (DECL_P (object))
15302 mark_used (object);
15303 object_type = TREE_TYPE (object);
15304
15305 member = TREE_OPERAND (t, 1);
15306 if (BASELINK_P (member))
15307 member = tsubst_baselink (member,
15308 non_reference (TREE_TYPE (object)),
15309 args, complain, in_decl);
15310 else
15311 member = tsubst_copy (member, args, complain, in_decl);
15312 if (member == error_mark_node)
15313 RETURN (error_mark_node);
15314
15315 if (type_dependent_expression_p (object))
15316 /* We can't do much here. */;
15317 else if (!CLASS_TYPE_P (object_type))
15318 {
15319 if (scalarish_type_p (object_type))
15320 {
15321 tree s = NULL_TREE;
15322 tree dtor = member;
15323
15324 if (TREE_CODE (dtor) == SCOPE_REF)
15325 {
15326 s = TREE_OPERAND (dtor, 0);
15327 dtor = TREE_OPERAND (dtor, 1);
15328 }
15329 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
15330 {
15331 dtor = TREE_OPERAND (dtor, 0);
15332 if (TYPE_P (dtor))
15333 RETURN (finish_pseudo_destructor_expr
15334 (object, s, dtor, input_location));
15335 }
15336 }
15337 }
15338 else if (TREE_CODE (member) == SCOPE_REF
15339 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
15340 {
15341 /* Lookup the template functions now that we know what the
15342 scope is. */
15343 tree scope = TREE_OPERAND (member, 0);
15344 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
15345 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
15346 member = lookup_qualified_name (scope, tmpl,
15347 /*is_type_p=*/false,
15348 /*complain=*/false);
15349 if (BASELINK_P (member))
15350 {
15351 BASELINK_FUNCTIONS (member)
15352 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
15353 args);
15354 member = (adjust_result_of_qualified_name_lookup
15355 (member, BINFO_TYPE (BASELINK_BINFO (member)),
15356 object_type));
15357 }
15358 else
15359 {
15360 qualified_name_lookup_error (scope, tmpl, member,
15361 input_location);
15362 RETURN (error_mark_node);
15363 }
15364 }
15365 else if (TREE_CODE (member) == SCOPE_REF
15366 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
15367 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
15368 {
15369 if (complain & tf_error)
15370 {
15371 if (TYPE_P (TREE_OPERAND (member, 0)))
15372 error ("%qT is not a class or namespace",
15373 TREE_OPERAND (member, 0));
15374 else
15375 error ("%qD is not a class or namespace",
15376 TREE_OPERAND (member, 0));
15377 }
15378 RETURN (error_mark_node);
15379 }
15380 else if (TREE_CODE (member) == FIELD_DECL)
15381 {
15382 r = finish_non_static_data_member (member, object, NULL_TREE);
15383 if (TREE_CODE (r) == COMPONENT_REF)
15384 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
15385 RETURN (r);
15386 }
15387
15388 r = finish_class_member_access_expr (object, member,
15389 /*template_p=*/false,
15390 complain);
15391 if (TREE_CODE (r) == COMPONENT_REF)
15392 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
15393 RETURN (r);
15394 }
15395
15396 case THROW_EXPR:
15397 RETURN (build_throw
15398 (RECUR (TREE_OPERAND (t, 0))));
15399
15400 case CONSTRUCTOR:
15401 {
15402 vec<constructor_elt, va_gc> *n;
15403 constructor_elt *ce;
15404 unsigned HOST_WIDE_INT idx;
15405 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15406 bool process_index_p;
15407 int newlen;
15408 bool need_copy_p = false;
15409 tree r;
15410
15411 if (type == error_mark_node)
15412 RETURN (error_mark_node);
15413
15414 /* digest_init will do the wrong thing if we let it. */
15415 if (type && TYPE_PTRMEMFUNC_P (type))
15416 RETURN (t);
15417
15418 /* We do not want to process the index of aggregate
15419 initializers as they are identifier nodes which will be
15420 looked up by digest_init. */
15421 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
15422
15423 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
15424 newlen = vec_safe_length (n);
15425 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
15426 {
15427 if (ce->index && process_index_p
15428 /* An identifier index is looked up in the type
15429 being initialized, not the current scope. */
15430 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
15431 ce->index = RECUR (ce->index);
15432
15433 if (PACK_EXPANSION_P (ce->value))
15434 {
15435 /* Substitute into the pack expansion. */
15436 ce->value = tsubst_pack_expansion (ce->value, args, complain,
15437 in_decl);
15438
15439 if (ce->value == error_mark_node
15440 || PACK_EXPANSION_P (ce->value))
15441 ;
15442 else if (TREE_VEC_LENGTH (ce->value) == 1)
15443 /* Just move the argument into place. */
15444 ce->value = TREE_VEC_ELT (ce->value, 0);
15445 else
15446 {
15447 /* Update the length of the final CONSTRUCTOR
15448 arguments vector, and note that we will need to
15449 copy.*/
15450 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
15451 need_copy_p = true;
15452 }
15453 }
15454 else
15455 ce->value = RECUR (ce->value);
15456 }
15457
15458 if (need_copy_p)
15459 {
15460 vec<constructor_elt, va_gc> *old_n = n;
15461
15462 vec_alloc (n, newlen);
15463 FOR_EACH_VEC_ELT (*old_n, idx, ce)
15464 {
15465 if (TREE_CODE (ce->value) == TREE_VEC)
15466 {
15467 int i, len = TREE_VEC_LENGTH (ce->value);
15468 for (i = 0; i < len; ++i)
15469 CONSTRUCTOR_APPEND_ELT (n, 0,
15470 TREE_VEC_ELT (ce->value, i));
15471 }
15472 else
15473 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
15474 }
15475 }
15476
15477 r = build_constructor (init_list_type_node, n);
15478 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
15479
15480 if (TREE_HAS_CONSTRUCTOR (t))
15481 RETURN (finish_compound_literal (type, r, complain));
15482
15483 TREE_TYPE (r) = type;
15484 RETURN (r);
15485 }
15486
15487 case TYPEID_EXPR:
15488 {
15489 tree operand_0 = TREE_OPERAND (t, 0);
15490 if (TYPE_P (operand_0))
15491 {
15492 operand_0 = tsubst (operand_0, args, complain, in_decl);
15493 RETURN (get_typeid (operand_0, complain));
15494 }
15495 else
15496 {
15497 operand_0 = RECUR (operand_0);
15498 RETURN (build_typeid (operand_0, complain));
15499 }
15500 }
15501
15502 case VAR_DECL:
15503 if (!args)
15504 RETURN (t);
15505 else if (DECL_PACK_P (t))
15506 {
15507 /* We don't build decls for an instantiation of a
15508 variadic capture proxy, we instantiate the elements
15509 when needed. */
15510 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
15511 return RECUR (DECL_VALUE_EXPR (t));
15512 }
15513 /* Fall through */
15514
15515 case PARM_DECL:
15516 {
15517 tree r = tsubst_copy (t, args, complain, in_decl);
15518 /* ??? We're doing a subset of finish_id_expression here. */
15519 if (VAR_P (r)
15520 && !processing_template_decl
15521 && !cp_unevaluated_operand
15522 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
15523 && DECL_THREAD_LOCAL_P (r))
15524 {
15525 if (tree wrap = get_tls_wrapper_fn (r))
15526 /* Replace an evaluated use of the thread_local variable with
15527 a call to its wrapper. */
15528 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
15529 }
15530 else if (outer_automatic_var_p (r))
15531 r = process_outer_var_ref (r, complain);
15532
15533 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
15534 /* If the original type was a reference, we'll be wrapped in
15535 the appropriate INDIRECT_REF. */
15536 r = convert_from_reference (r);
15537 RETURN (r);
15538 }
15539
15540 case VA_ARG_EXPR:
15541 {
15542 tree op0 = RECUR (TREE_OPERAND (t, 0));
15543 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15544 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
15545 }
15546
15547 case OFFSETOF_EXPR:
15548 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0)),
15549 EXPR_LOCATION (t)));
15550
15551 case TRAIT_EXPR:
15552 {
15553 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
15554 complain, in_decl);
15555
15556 tree type2 = TRAIT_EXPR_TYPE2 (t);
15557 if (type2 && TREE_CODE (type2) == TREE_LIST)
15558 type2 = RECUR (type2);
15559 else if (type2)
15560 type2 = tsubst (type2, args, complain, in_decl);
15561
15562 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
15563 }
15564
15565 case STMT_EXPR:
15566 {
15567 tree old_stmt_expr = cur_stmt_expr;
15568 tree stmt_expr = begin_stmt_expr ();
15569
15570 cur_stmt_expr = stmt_expr;
15571 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
15572 integral_constant_expression_p);
15573 stmt_expr = finish_stmt_expr (stmt_expr, false);
15574 cur_stmt_expr = old_stmt_expr;
15575
15576 /* If the resulting list of expression statement is empty,
15577 fold it further into void_node. */
15578 if (empty_expr_stmt_p (stmt_expr))
15579 stmt_expr = void_node;
15580
15581 RETURN (stmt_expr);
15582 }
15583
15584 case LAMBDA_EXPR:
15585 {
15586 tree r = build_lambda_expr ();
15587
15588 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
15589 LAMBDA_EXPR_CLOSURE (r) = type;
15590 CLASSTYPE_LAMBDA_EXPR (type) = r;
15591
15592 LAMBDA_EXPR_LOCATION (r)
15593 = LAMBDA_EXPR_LOCATION (t);
15594 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
15595 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
15596 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
15597 LAMBDA_EXPR_DISCRIMINATOR (r)
15598 = (LAMBDA_EXPR_DISCRIMINATOR (t));
15599 /* For a function scope, we want to use tsubst so that we don't
15600 complain about referring to an auto function before its return
15601 type has been deduced. Otherwise, we want to use tsubst_copy so
15602 that we look up the existing field/parameter/variable rather
15603 than build a new one. */
15604 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
15605 if (scope && TREE_CODE (scope) == FUNCTION_DECL)
15606 scope = tsubst (scope, args, complain, in_decl);
15607 else if (scope && TREE_CODE (scope) == PARM_DECL)
15608 {
15609 /* Look up the parameter we want directly, as tsubst_copy
15610 doesn't do what we need. */
15611 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
15612 tree parm = FUNCTION_FIRST_USER_PARM (fn);
15613 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
15614 parm = DECL_CHAIN (parm);
15615 scope = parm;
15616 /* FIXME Work around the parm not having DECL_CONTEXT set. */
15617 if (DECL_CONTEXT (scope) == NULL_TREE)
15618 DECL_CONTEXT (scope) = fn;
15619 }
15620 else
15621 scope = RECUR (scope);
15622 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
15623 LAMBDA_EXPR_RETURN_TYPE (r)
15624 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
15625
15626 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
15627 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
15628
15629 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
15630 determine_visibility (TYPE_NAME (type));
15631 /* Now that we know visibility, instantiate the type so we have a
15632 declaration of the op() for later calls to lambda_function. */
15633 complete_type (type);
15634
15635 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
15636
15637 RETURN (build_lambda_object (r));
15638 }
15639
15640 case TARGET_EXPR:
15641 /* We can get here for a constant initializer of non-dependent type.
15642 FIXME stop folding in cp_parser_initializer_clause. */
15643 {
15644 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
15645 complain);
15646 RETURN (r);
15647 }
15648
15649 case TRANSACTION_EXPR:
15650 RETURN (tsubst_expr(t, args, complain, in_decl,
15651 integral_constant_expression_p));
15652
15653 case PAREN_EXPR:
15654 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
15655
15656 case VEC_PERM_EXPR:
15657 {
15658 tree op0 = RECUR (TREE_OPERAND (t, 0));
15659 tree op1 = RECUR (TREE_OPERAND (t, 1));
15660 tree op2 = RECUR (TREE_OPERAND (t, 2));
15661 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
15662 complain));
15663 }
15664
15665 default:
15666 /* Handle Objective-C++ constructs, if appropriate. */
15667 {
15668 tree subst
15669 = objcp_tsubst_copy_and_build (t, args, complain,
15670 in_decl, /*function_p=*/false);
15671 if (subst)
15672 RETURN (subst);
15673 }
15674 RETURN (tsubst_copy (t, args, complain, in_decl));
15675 }
15676
15677 #undef RECUR
15678 #undef RETURN
15679 out:
15680 input_location = loc;
15681 return retval;
15682 }
15683
15684 /* Verify that the instantiated ARGS are valid. For type arguments,
15685 make sure that the type's linkage is ok. For non-type arguments,
15686 make sure they are constants if they are integral or enumerations.
15687 Emit an error under control of COMPLAIN, and return TRUE on error. */
15688
15689 static bool
15690 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
15691 {
15692 if (dependent_template_arg_p (t))
15693 return false;
15694 if (ARGUMENT_PACK_P (t))
15695 {
15696 tree vec = ARGUMENT_PACK_ARGS (t);
15697 int len = TREE_VEC_LENGTH (vec);
15698 bool result = false;
15699 int i;
15700
15701 for (i = 0; i < len; ++i)
15702 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
15703 result = true;
15704 return result;
15705 }
15706 else if (TYPE_P (t))
15707 {
15708 /* [basic.link]: A name with no linkage (notably, the name
15709 of a class or enumeration declared in a local scope)
15710 shall not be used to declare an entity with linkage.
15711 This implies that names with no linkage cannot be used as
15712 template arguments
15713
15714 DR 757 relaxes this restriction for C++0x. */
15715 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
15716 : no_linkage_check (t, /*relaxed_p=*/false));
15717
15718 if (nt)
15719 {
15720 /* DR 488 makes use of a type with no linkage cause
15721 type deduction to fail. */
15722 if (complain & tf_error)
15723 {
15724 if (TYPE_ANONYMOUS_P (nt))
15725 error ("%qT is/uses anonymous type", t);
15726 else
15727 error ("template argument for %qD uses local type %qT",
15728 tmpl, t);
15729 }
15730 return true;
15731 }
15732 /* In order to avoid all sorts of complications, we do not
15733 allow variably-modified types as template arguments. */
15734 else if (variably_modified_type_p (t, NULL_TREE))
15735 {
15736 if (complain & tf_error)
15737 error ("%qT is a variably modified type", t);
15738 return true;
15739 }
15740 }
15741 /* Class template and alias template arguments should be OK. */
15742 else if (DECL_TYPE_TEMPLATE_P (t))
15743 ;
15744 /* A non-type argument of integral or enumerated type must be a
15745 constant. */
15746 else if (TREE_TYPE (t)
15747 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
15748 && !REFERENCE_REF_P (t)
15749 && !TREE_CONSTANT (t))
15750 {
15751 if (complain & tf_error)
15752 error ("integral expression %qE is not constant", t);
15753 return true;
15754 }
15755 return false;
15756 }
15757
15758 static bool
15759 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
15760 {
15761 int ix, len = DECL_NTPARMS (tmpl);
15762 bool result = false;
15763
15764 for (ix = 0; ix != len; ix++)
15765 {
15766 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
15767 result = true;
15768 }
15769 if (result && (complain & tf_error))
15770 error (" trying to instantiate %qD", tmpl);
15771 return result;
15772 }
15773
15774 /* We're out of SFINAE context now, so generate diagnostics for the access
15775 errors we saw earlier when instantiating D from TMPL and ARGS. */
15776
15777 static void
15778 recheck_decl_substitution (tree d, tree tmpl, tree args)
15779 {
15780 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
15781 tree type = TREE_TYPE (pattern);
15782 location_t loc = input_location;
15783
15784 push_access_scope (d);
15785 push_deferring_access_checks (dk_no_deferred);
15786 input_location = DECL_SOURCE_LOCATION (pattern);
15787 tsubst (type, args, tf_warning_or_error, d);
15788 input_location = loc;
15789 pop_deferring_access_checks ();
15790 pop_access_scope (d);
15791 }
15792
15793 /* Instantiate the indicated variable, function, or alias template TMPL with
15794 the template arguments in TARG_PTR. */
15795
15796 static tree
15797 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
15798 {
15799 tree targ_ptr = orig_args;
15800 tree fndecl;
15801 tree gen_tmpl;
15802 tree spec;
15803 bool access_ok = true;
15804
15805 if (tmpl == error_mark_node)
15806 return error_mark_node;
15807
15808 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
15809
15810 /* If this function is a clone, handle it specially. */
15811 if (DECL_CLONED_FUNCTION_P (tmpl))
15812 {
15813 tree spec;
15814 tree clone;
15815
15816 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
15817 DECL_CLONED_FUNCTION. */
15818 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
15819 targ_ptr, complain);
15820 if (spec == error_mark_node)
15821 return error_mark_node;
15822
15823 /* Look for the clone. */
15824 FOR_EACH_CLONE (clone, spec)
15825 if (DECL_NAME (clone) == DECL_NAME (tmpl))
15826 return clone;
15827 /* We should always have found the clone by now. */
15828 gcc_unreachable ();
15829 return NULL_TREE;
15830 }
15831
15832 if (targ_ptr == error_mark_node)
15833 return error_mark_node;
15834
15835 /* Check to see if we already have this specialization. */
15836 gen_tmpl = most_general_template (tmpl);
15837 if (tmpl != gen_tmpl)
15838 /* The TMPL is a partial instantiation. To get a full set of
15839 arguments we must add the arguments used to perform the
15840 partial instantiation. */
15841 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
15842 targ_ptr);
15843
15844 /* It would be nice to avoid hashing here and then again in tsubst_decl,
15845 but it doesn't seem to be on the hot path. */
15846 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
15847
15848 gcc_assert (tmpl == gen_tmpl
15849 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
15850 == spec)
15851 || fndecl == NULL_TREE);
15852
15853 if (spec != NULL_TREE)
15854 {
15855 if (FNDECL_HAS_ACCESS_ERRORS (spec))
15856 {
15857 if (complain & tf_error)
15858 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
15859 return error_mark_node;
15860 }
15861 return spec;
15862 }
15863
15864 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
15865 complain))
15866 return error_mark_node;
15867
15868 /* We are building a FUNCTION_DECL, during which the access of its
15869 parameters and return types have to be checked. However this
15870 FUNCTION_DECL which is the desired context for access checking
15871 is not built yet. We solve this chicken-and-egg problem by
15872 deferring all checks until we have the FUNCTION_DECL. */
15873 push_deferring_access_checks (dk_deferred);
15874
15875 /* Instantiation of the function happens in the context of the function
15876 template, not the context of the overload resolution we're doing. */
15877 push_to_top_level ();
15878 /* If there are dependent arguments, e.g. because we're doing partial
15879 ordering, make sure processing_template_decl stays set. */
15880 if (uses_template_parms (targ_ptr))
15881 ++processing_template_decl;
15882 if (DECL_CLASS_SCOPE_P (gen_tmpl))
15883 {
15884 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
15885 complain, gen_tmpl, true);
15886 push_nested_class (ctx);
15887 }
15888
15889 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
15890
15891 if (VAR_P (pattern))
15892 {
15893 /* We need to determine if we're using a partial or explicit
15894 specialization now, because the type of the variable could be
15895 different. */
15896 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
15897 tree elt = most_specialized_partial_spec (tid, complain);
15898 if (elt == error_mark_node)
15899 pattern = error_mark_node;
15900 else if (elt)
15901 {
15902 tmpl = TREE_VALUE (elt);
15903 pattern = DECL_TEMPLATE_RESULT (tmpl);
15904 targ_ptr = TREE_PURPOSE (elt);
15905 }
15906 }
15907
15908 /* Substitute template parameters to obtain the specialization. */
15909 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
15910 if (DECL_CLASS_SCOPE_P (gen_tmpl))
15911 pop_nested_class ();
15912 pop_from_top_level ();
15913
15914 if (fndecl == error_mark_node)
15915 {
15916 pop_deferring_access_checks ();
15917 return error_mark_node;
15918 }
15919
15920 /* The DECL_TI_TEMPLATE should always be the immediate parent
15921 template, not the most general template. */
15922 DECL_TI_TEMPLATE (fndecl) = tmpl;
15923
15924 /* Now we know the specialization, compute access previously
15925 deferred. */
15926 push_access_scope (fndecl);
15927 if (!perform_deferred_access_checks (complain))
15928 access_ok = false;
15929 pop_access_scope (fndecl);
15930 pop_deferring_access_checks ();
15931
15932 /* If we've just instantiated the main entry point for a function,
15933 instantiate all the alternate entry points as well. We do this
15934 by cloning the instantiation of the main entry point, not by
15935 instantiating the template clones. */
15936 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
15937 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
15938
15939 if (!access_ok)
15940 {
15941 if (!(complain & tf_error))
15942 {
15943 /* Remember to reinstantiate when we're out of SFINAE so the user
15944 can see the errors. */
15945 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
15946 }
15947 return error_mark_node;
15948 }
15949 return fndecl;
15950 }
15951
15952 /* Wrapper for instantiate_template_1. */
15953
15954 tree
15955 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
15956 {
15957 tree ret;
15958 timevar_push (TV_TEMPLATE_INST);
15959 ret = instantiate_template_1 (tmpl, orig_args, complain);
15960 timevar_pop (TV_TEMPLATE_INST);
15961 return ret;
15962 }
15963
15964 /* Instantiate the alias template TMPL with ARGS. Also push a template
15965 instantiation level, which instantiate_template doesn't do because
15966 functions and variables have sufficient context established by the
15967 callers. */
15968
15969 static tree
15970 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
15971 {
15972 struct pending_template *old_last_pend = last_pending_template;
15973 struct tinst_level *old_error_tinst = last_error_tinst_level;
15974 if (tmpl == error_mark_node || args == error_mark_node)
15975 return error_mark_node;
15976 tree tinst = build_tree_list (tmpl, args);
15977 if (!push_tinst_level (tinst))
15978 {
15979 ggc_free (tinst);
15980 return error_mark_node;
15981 }
15982
15983 args =
15984 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
15985 args, tmpl, complain,
15986 /*require_all_args=*/true,
15987 /*use_default_args=*/true);
15988
15989 tree r = instantiate_template (tmpl, args, complain);
15990 pop_tinst_level ();
15991 /* We can't free this if a pending_template entry or last_error_tinst_level
15992 is pointing at it. */
15993 if (last_pending_template == old_last_pend
15994 && last_error_tinst_level == old_error_tinst)
15995 ggc_free (tinst);
15996
15997 return r;
15998 }
15999
16000 /* PARM is a template parameter pack for FN. Returns true iff
16001 PARM is used in a deducible way in the argument list of FN. */
16002
16003 static bool
16004 pack_deducible_p (tree parm, tree fn)
16005 {
16006 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
16007 for (; t; t = TREE_CHAIN (t))
16008 {
16009 tree type = TREE_VALUE (t);
16010 tree packs;
16011 if (!PACK_EXPANSION_P (type))
16012 continue;
16013 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
16014 packs; packs = TREE_CHAIN (packs))
16015 if (template_args_equal (TREE_VALUE (packs), parm))
16016 {
16017 /* The template parameter pack is used in a function parameter
16018 pack. If this is the end of the parameter list, the
16019 template parameter pack is deducible. */
16020 if (TREE_CHAIN (t) == void_list_node)
16021 return true;
16022 else
16023 /* Otherwise, not. Well, it could be deduced from
16024 a non-pack parameter, but doing so would end up with
16025 a deduction mismatch, so don't bother. */
16026 return false;
16027 }
16028 }
16029 /* The template parameter pack isn't used in any function parameter
16030 packs, but it might be used deeper, e.g. tuple<Args...>. */
16031 return true;
16032 }
16033
16034 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
16035 NARGS elements of the arguments that are being used when calling
16036 it. TARGS is a vector into which the deduced template arguments
16037 are placed.
16038
16039 Returns either a FUNCTION_DECL for the matching specialization of FN or
16040 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
16041 true, diagnostics will be printed to explain why it failed.
16042
16043 If FN is a conversion operator, or we are trying to produce a specific
16044 specialization, RETURN_TYPE is the return type desired.
16045
16046 The EXPLICIT_TARGS are explicit template arguments provided via a
16047 template-id.
16048
16049 The parameter STRICT is one of:
16050
16051 DEDUCE_CALL:
16052 We are deducing arguments for a function call, as in
16053 [temp.deduct.call].
16054
16055 DEDUCE_CONV:
16056 We are deducing arguments for a conversion function, as in
16057 [temp.deduct.conv].
16058
16059 DEDUCE_EXACT:
16060 We are deducing arguments when doing an explicit instantiation
16061 as in [temp.explicit], when determining an explicit specialization
16062 as in [temp.expl.spec], or when taking the address of a function
16063 template, as in [temp.deduct.funcaddr]. */
16064
16065 tree
16066 fn_type_unification (tree fn,
16067 tree explicit_targs,
16068 tree targs,
16069 const tree *args,
16070 unsigned int nargs,
16071 tree return_type,
16072 unification_kind_t strict,
16073 int flags,
16074 bool explain_p,
16075 bool decltype_p)
16076 {
16077 tree parms;
16078 tree fntype;
16079 tree decl = NULL_TREE;
16080 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
16081 bool ok;
16082 static int deduction_depth;
16083 struct pending_template *old_last_pend = last_pending_template;
16084 struct tinst_level *old_error_tinst = last_error_tinst_level;
16085 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
16086 tree tinst;
16087 tree r = error_mark_node;
16088
16089 if (decltype_p)
16090 complain |= tf_decltype;
16091
16092 /* In C++0x, it's possible to have a function template whose type depends
16093 on itself recursively. This is most obvious with decltype, but can also
16094 occur with enumeration scope (c++/48969). So we need to catch infinite
16095 recursion and reject the substitution at deduction time; this function
16096 will return error_mark_node for any repeated substitution.
16097
16098 This also catches excessive recursion such as when f<N> depends on
16099 f<N-1> across all integers, and returns error_mark_node for all the
16100 substitutions back up to the initial one.
16101
16102 This is, of course, not reentrant. */
16103 if (excessive_deduction_depth)
16104 return error_mark_node;
16105 tinst = build_tree_list (fn, NULL_TREE);
16106 ++deduction_depth;
16107
16108 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
16109
16110 fntype = TREE_TYPE (fn);
16111 if (explicit_targs)
16112 {
16113 /* [temp.deduct]
16114
16115 The specified template arguments must match the template
16116 parameters in kind (i.e., type, nontype, template), and there
16117 must not be more arguments than there are parameters;
16118 otherwise type deduction fails.
16119
16120 Nontype arguments must match the types of the corresponding
16121 nontype template parameters, or must be convertible to the
16122 types of the corresponding nontype parameters as specified in
16123 _temp.arg.nontype_, otherwise type deduction fails.
16124
16125 All references in the function type of the function template
16126 to the corresponding template parameters are replaced by the
16127 specified template argument values. If a substitution in a
16128 template parameter or in the function type of the function
16129 template results in an invalid type, type deduction fails. */
16130 int i, len = TREE_VEC_LENGTH (tparms);
16131 location_t loc = input_location;
16132 bool incomplete = false;
16133
16134 /* Adjust any explicit template arguments before entering the
16135 substitution context. */
16136 explicit_targs
16137 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
16138 complain,
16139 /*require_all_args=*/false,
16140 /*use_default_args=*/false));
16141 if (explicit_targs == error_mark_node)
16142 goto fail;
16143
16144 /* Substitute the explicit args into the function type. This is
16145 necessary so that, for instance, explicitly declared function
16146 arguments can match null pointed constants. If we were given
16147 an incomplete set of explicit args, we must not do semantic
16148 processing during substitution as we could create partial
16149 instantiations. */
16150 for (i = 0; i < len; i++)
16151 {
16152 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
16153 bool parameter_pack = false;
16154 tree targ = TREE_VEC_ELT (explicit_targs, i);
16155
16156 /* Dig out the actual parm. */
16157 if (TREE_CODE (parm) == TYPE_DECL
16158 || TREE_CODE (parm) == TEMPLATE_DECL)
16159 {
16160 parm = TREE_TYPE (parm);
16161 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
16162 }
16163 else if (TREE_CODE (parm) == PARM_DECL)
16164 {
16165 parm = DECL_INITIAL (parm);
16166 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
16167 }
16168
16169 if (!parameter_pack && targ == NULL_TREE)
16170 /* No explicit argument for this template parameter. */
16171 incomplete = true;
16172
16173 if (parameter_pack && pack_deducible_p (parm, fn))
16174 {
16175 /* Mark the argument pack as "incomplete". We could
16176 still deduce more arguments during unification.
16177 We remove this mark in type_unification_real. */
16178 if (targ)
16179 {
16180 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
16181 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
16182 = ARGUMENT_PACK_ARGS (targ);
16183 }
16184
16185 /* We have some incomplete argument packs. */
16186 incomplete = true;
16187 }
16188 }
16189
16190 TREE_VALUE (tinst) = explicit_targs;
16191 if (!push_tinst_level (tinst))
16192 {
16193 excessive_deduction_depth = true;
16194 goto fail;
16195 }
16196 processing_template_decl += incomplete;
16197 input_location = DECL_SOURCE_LOCATION (fn);
16198 /* Ignore any access checks; we'll see them again in
16199 instantiate_template and they might have the wrong
16200 access path at this point. */
16201 push_deferring_access_checks (dk_deferred);
16202 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
16203 complain | tf_partial, NULL_TREE);
16204 pop_deferring_access_checks ();
16205 input_location = loc;
16206 processing_template_decl -= incomplete;
16207 pop_tinst_level ();
16208
16209 if (fntype == error_mark_node)
16210 goto fail;
16211
16212 /* Place the explicitly specified arguments in TARGS. */
16213 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
16214 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
16215 }
16216
16217 /* Never do unification on the 'this' parameter. */
16218 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
16219
16220 if (return_type)
16221 {
16222 tree *new_args;
16223
16224 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
16225 new_args = XALLOCAVEC (tree, nargs + 1);
16226 new_args[0] = return_type;
16227 memcpy (new_args + 1, args, nargs * sizeof (tree));
16228 args = new_args;
16229 ++nargs;
16230 }
16231
16232 /* We allow incomplete unification without an error message here
16233 because the standard doesn't seem to explicitly prohibit it. Our
16234 callers must be ready to deal with unification failures in any
16235 event. */
16236
16237 TREE_VALUE (tinst) = targs;
16238 /* If we aren't explaining yet, push tinst context so we can see where
16239 any errors (e.g. from class instantiations triggered by instantiation
16240 of default template arguments) come from. If we are explaining, this
16241 context is redundant. */
16242 if (!explain_p && !push_tinst_level (tinst))
16243 {
16244 excessive_deduction_depth = true;
16245 goto fail;
16246 }
16247
16248 /* type_unification_real will pass back any access checks from default
16249 template argument substitution. */
16250 vec<deferred_access_check, va_gc> *checks;
16251 checks = NULL;
16252
16253 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
16254 targs, parms, args, nargs, /*subr=*/0,
16255 strict, flags, &checks, explain_p);
16256 if (!explain_p)
16257 pop_tinst_level ();
16258 if (!ok)
16259 goto fail;
16260
16261 /* Now that we have bindings for all of the template arguments,
16262 ensure that the arguments deduced for the template template
16263 parameters have compatible template parameter lists. We cannot
16264 check this property before we have deduced all template
16265 arguments, because the template parameter types of a template
16266 template parameter might depend on prior template parameters
16267 deduced after the template template parameter. The following
16268 ill-formed example illustrates this issue:
16269
16270 template<typename T, template<T> class C> void f(C<5>, T);
16271
16272 template<int N> struct X {};
16273
16274 void g() {
16275 f(X<5>(), 5l); // error: template argument deduction fails
16276 }
16277
16278 The template parameter list of 'C' depends on the template type
16279 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
16280 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
16281 time that we deduce 'C'. */
16282 if (!template_template_parm_bindings_ok_p
16283 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
16284 {
16285 unify_inconsistent_template_template_parameters (explain_p);
16286 goto fail;
16287 }
16288
16289 /* All is well so far. Now, check:
16290
16291 [temp.deduct]
16292
16293 When all template arguments have been deduced, all uses of
16294 template parameters in nondeduced contexts are replaced with
16295 the corresponding deduced argument values. If the
16296 substitution results in an invalid type, as described above,
16297 type deduction fails. */
16298 TREE_VALUE (tinst) = targs;
16299 if (!push_tinst_level (tinst))
16300 {
16301 excessive_deduction_depth = true;
16302 goto fail;
16303 }
16304
16305 /* Also collect access checks from the instantiation. */
16306 reopen_deferring_access_checks (checks);
16307
16308 decl = instantiate_template (fn, targs, complain);
16309
16310 checks = get_deferred_access_checks ();
16311 pop_deferring_access_checks ();
16312
16313 pop_tinst_level ();
16314
16315 if (decl == error_mark_node)
16316 goto fail;
16317
16318 /* Now perform any access checks encountered during substitution. */
16319 push_access_scope (decl);
16320 ok = perform_access_checks (checks, complain);
16321 pop_access_scope (decl);
16322 if (!ok)
16323 goto fail;
16324
16325 /* If we're looking for an exact match, check that what we got
16326 is indeed an exact match. It might not be if some template
16327 parameters are used in non-deduced contexts. But don't check
16328 for an exact match if we have dependent template arguments;
16329 in that case we're doing partial ordering, and we already know
16330 that we have two candidates that will provide the actual type. */
16331 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
16332 {
16333 tree substed = TREE_TYPE (decl);
16334 unsigned int i;
16335
16336 tree sarg
16337 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
16338 if (return_type)
16339 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
16340 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
16341 if (!same_type_p (args[i], TREE_VALUE (sarg)))
16342 {
16343 unify_type_mismatch (explain_p, args[i],
16344 TREE_VALUE (sarg));
16345 goto fail;
16346 }
16347 }
16348
16349 r = decl;
16350
16351 fail:
16352 --deduction_depth;
16353 if (excessive_deduction_depth)
16354 {
16355 if (deduction_depth == 0)
16356 /* Reset once we're all the way out. */
16357 excessive_deduction_depth = false;
16358 }
16359
16360 /* We can't free this if a pending_template entry or last_error_tinst_level
16361 is pointing at it. */
16362 if (last_pending_template == old_last_pend
16363 && last_error_tinst_level == old_error_tinst)
16364 ggc_free (tinst);
16365
16366 return r;
16367 }
16368
16369 /* Adjust types before performing type deduction, as described in
16370 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
16371 sections are symmetric. PARM is the type of a function parameter
16372 or the return type of the conversion function. ARG is the type of
16373 the argument passed to the call, or the type of the value
16374 initialized with the result of the conversion function.
16375 ARG_EXPR is the original argument expression, which may be null. */
16376
16377 static int
16378 maybe_adjust_types_for_deduction (unification_kind_t strict,
16379 tree* parm,
16380 tree* arg,
16381 tree arg_expr)
16382 {
16383 int result = 0;
16384
16385 switch (strict)
16386 {
16387 case DEDUCE_CALL:
16388 break;
16389
16390 case DEDUCE_CONV:
16391 {
16392 /* Swap PARM and ARG throughout the remainder of this
16393 function; the handling is precisely symmetric since PARM
16394 will initialize ARG rather than vice versa. */
16395 tree* temp = parm;
16396 parm = arg;
16397 arg = temp;
16398 break;
16399 }
16400
16401 case DEDUCE_EXACT:
16402 /* Core issue #873: Do the DR606 thing (see below) for these cases,
16403 too, but here handle it by stripping the reference from PARM
16404 rather than by adding it to ARG. */
16405 if (TREE_CODE (*parm) == REFERENCE_TYPE
16406 && TYPE_REF_IS_RVALUE (*parm)
16407 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
16408 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
16409 && TREE_CODE (*arg) == REFERENCE_TYPE
16410 && !TYPE_REF_IS_RVALUE (*arg))
16411 *parm = TREE_TYPE (*parm);
16412 /* Nothing else to do in this case. */
16413 return 0;
16414
16415 default:
16416 gcc_unreachable ();
16417 }
16418
16419 if (TREE_CODE (*parm) != REFERENCE_TYPE)
16420 {
16421 /* [temp.deduct.call]
16422
16423 If P is not a reference type:
16424
16425 --If A is an array type, the pointer type produced by the
16426 array-to-pointer standard conversion (_conv.array_) is
16427 used in place of A for type deduction; otherwise,
16428
16429 --If A is a function type, the pointer type produced by
16430 the function-to-pointer standard conversion
16431 (_conv.func_) is used in place of A for type deduction;
16432 otherwise,
16433
16434 --If A is a cv-qualified type, the top level
16435 cv-qualifiers of A's type are ignored for type
16436 deduction. */
16437 if (TREE_CODE (*arg) == ARRAY_TYPE)
16438 *arg = build_pointer_type (TREE_TYPE (*arg));
16439 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
16440 *arg = build_pointer_type (*arg);
16441 else
16442 *arg = TYPE_MAIN_VARIANT (*arg);
16443 }
16444
16445 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
16446 of the form T&&, where T is a template parameter, and the argument
16447 is an lvalue, T is deduced as A& */
16448 if (TREE_CODE (*parm) == REFERENCE_TYPE
16449 && TYPE_REF_IS_RVALUE (*parm)
16450 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
16451 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
16452 && (arg_expr ? real_lvalue_p (arg_expr)
16453 /* try_one_overload doesn't provide an arg_expr, but
16454 functions are always lvalues. */
16455 : TREE_CODE (*arg) == FUNCTION_TYPE))
16456 *arg = build_reference_type (*arg);
16457
16458 /* [temp.deduct.call]
16459
16460 If P is a cv-qualified type, the top level cv-qualifiers
16461 of P's type are ignored for type deduction. If P is a
16462 reference type, the type referred to by P is used for
16463 type deduction. */
16464 *parm = TYPE_MAIN_VARIANT (*parm);
16465 if (TREE_CODE (*parm) == REFERENCE_TYPE)
16466 {
16467 *parm = TREE_TYPE (*parm);
16468 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
16469 }
16470
16471 /* DR 322. For conversion deduction, remove a reference type on parm
16472 too (which has been swapped into ARG). */
16473 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
16474 *arg = TREE_TYPE (*arg);
16475
16476 return result;
16477 }
16478
16479 /* Subroutine of unify_one_argument. PARM is a function parameter of a
16480 template which does contain any deducible template parameters; check if
16481 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
16482 unify_one_argument. */
16483
16484 static int
16485 check_non_deducible_conversion (tree parm, tree arg, int strict,
16486 int flags, bool explain_p)
16487 {
16488 tree type;
16489
16490 if (!TYPE_P (arg))
16491 type = TREE_TYPE (arg);
16492 else
16493 type = arg;
16494
16495 if (same_type_p (parm, type))
16496 return unify_success (explain_p);
16497
16498 if (strict == DEDUCE_CONV)
16499 {
16500 if (can_convert_arg (type, parm, NULL_TREE, flags,
16501 explain_p ? tf_warning_or_error : tf_none))
16502 return unify_success (explain_p);
16503 }
16504 else if (strict != DEDUCE_EXACT)
16505 {
16506 if (can_convert_arg (parm, type,
16507 TYPE_P (arg) ? NULL_TREE : arg,
16508 flags, explain_p ? tf_warning_or_error : tf_none))
16509 return unify_success (explain_p);
16510 }
16511
16512 if (strict == DEDUCE_EXACT)
16513 return unify_type_mismatch (explain_p, parm, arg);
16514 else
16515 return unify_arg_conversion (explain_p, parm, type, arg);
16516 }
16517
16518 static bool uses_deducible_template_parms (tree type);
16519
16520 /* Returns true iff the expression EXPR is one from which a template
16521 argument can be deduced. In other words, if it's an undecorated
16522 use of a template non-type parameter. */
16523
16524 static bool
16525 deducible_expression (tree expr)
16526 {
16527 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
16528 }
16529
16530 /* Returns true iff the array domain DOMAIN uses a template parameter in a
16531 deducible way; that is, if it has a max value of <PARM> - 1. */
16532
16533 static bool
16534 deducible_array_bound (tree domain)
16535 {
16536 if (domain == NULL_TREE)
16537 return false;
16538
16539 tree max = TYPE_MAX_VALUE (domain);
16540 if (TREE_CODE (max) != MINUS_EXPR)
16541 return false;
16542
16543 return deducible_expression (TREE_OPERAND (max, 0));
16544 }
16545
16546 /* Returns true iff the template arguments ARGS use a template parameter
16547 in a deducible way. */
16548
16549 static bool
16550 deducible_template_args (tree args)
16551 {
16552 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
16553 {
16554 bool deducible;
16555 tree elt = TREE_VEC_ELT (args, i);
16556 if (ARGUMENT_PACK_P (elt))
16557 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
16558 else
16559 {
16560 if (PACK_EXPANSION_P (elt))
16561 elt = PACK_EXPANSION_PATTERN (elt);
16562 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
16563 deducible = true;
16564 else if (TYPE_P (elt))
16565 deducible = uses_deducible_template_parms (elt);
16566 else
16567 deducible = deducible_expression (elt);
16568 }
16569 if (deducible)
16570 return true;
16571 }
16572 return false;
16573 }
16574
16575 /* Returns true iff TYPE contains any deducible references to template
16576 parameters, as per 14.8.2.5. */
16577
16578 static bool
16579 uses_deducible_template_parms (tree type)
16580 {
16581 if (PACK_EXPANSION_P (type))
16582 type = PACK_EXPANSION_PATTERN (type);
16583
16584 /* T
16585 cv-list T
16586 TT<T>
16587 TT<i>
16588 TT<> */
16589 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
16590 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
16591 return true;
16592
16593 /* T*
16594 T&
16595 T&& */
16596 if (POINTER_TYPE_P (type))
16597 return uses_deducible_template_parms (TREE_TYPE (type));
16598
16599 /* T[integer-constant ]
16600 type [i] */
16601 if (TREE_CODE (type) == ARRAY_TYPE)
16602 return (uses_deducible_template_parms (TREE_TYPE (type))
16603 || deducible_array_bound (TYPE_DOMAIN (type)));
16604
16605 /* T type ::*
16606 type T::*
16607 T T::*
16608 T (type ::*)()
16609 type (T::*)()
16610 type (type ::*)(T)
16611 type (T::*)(T)
16612 T (type ::*)(T)
16613 T (T::*)()
16614 T (T::*)(T) */
16615 if (TYPE_PTRMEM_P (type))
16616 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
16617 || (uses_deducible_template_parms
16618 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
16619
16620 /* template-name <T> (where template-name refers to a class template)
16621 template-name <i> (where template-name refers to a class template) */
16622 if (CLASS_TYPE_P (type)
16623 && CLASSTYPE_TEMPLATE_INFO (type)
16624 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
16625 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
16626 (CLASSTYPE_TI_ARGS (type)));
16627
16628 /* type (T)
16629 T()
16630 T(T) */
16631 if (TREE_CODE (type) == FUNCTION_TYPE
16632 || TREE_CODE (type) == METHOD_TYPE)
16633 {
16634 if (uses_deducible_template_parms (TREE_TYPE (type)))
16635 return true;
16636 tree parm = TYPE_ARG_TYPES (type);
16637 if (TREE_CODE (type) == METHOD_TYPE)
16638 parm = TREE_CHAIN (parm);
16639 for (; parm; parm = TREE_CHAIN (parm))
16640 if (uses_deducible_template_parms (TREE_VALUE (parm)))
16641 return true;
16642 }
16643
16644 return false;
16645 }
16646
16647 /* Subroutine of type_unification_real and unify_pack_expansion to
16648 handle unification of a single P/A pair. Parameters are as
16649 for those functions. */
16650
16651 static int
16652 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
16653 int subr, unification_kind_t strict, int flags,
16654 bool explain_p)
16655 {
16656 tree arg_expr = NULL_TREE;
16657 int arg_strict;
16658
16659 if (arg == error_mark_node || parm == error_mark_node)
16660 return unify_invalid (explain_p);
16661 if (arg == unknown_type_node)
16662 /* We can't deduce anything from this, but we might get all the
16663 template args from other function args. */
16664 return unify_success (explain_p);
16665
16666 /* Implicit conversions (Clause 4) will be performed on a function
16667 argument to convert it to the type of the corresponding function
16668 parameter if the parameter type contains no template-parameters that
16669 participate in template argument deduction. */
16670 if (TYPE_P (parm) && !uses_template_parms (parm))
16671 /* For function parameters that contain no template-parameters at all,
16672 we have historically checked for convertibility in order to shortcut
16673 consideration of this candidate. */
16674 return check_non_deducible_conversion (parm, arg, strict, flags,
16675 explain_p);
16676 else if (strict == DEDUCE_CALL
16677 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
16678 /* For function parameters with only non-deducible template parameters,
16679 just return. */
16680 return unify_success (explain_p);
16681
16682 switch (strict)
16683 {
16684 case DEDUCE_CALL:
16685 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
16686 | UNIFY_ALLOW_MORE_CV_QUAL
16687 | UNIFY_ALLOW_DERIVED);
16688 break;
16689
16690 case DEDUCE_CONV:
16691 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
16692 break;
16693
16694 case DEDUCE_EXACT:
16695 arg_strict = UNIFY_ALLOW_NONE;
16696 break;
16697
16698 default:
16699 gcc_unreachable ();
16700 }
16701
16702 /* We only do these transformations if this is the top-level
16703 parameter_type_list in a call or declaration matching; in other
16704 situations (nested function declarators, template argument lists) we
16705 won't be comparing a type to an expression, and we don't do any type
16706 adjustments. */
16707 if (!subr)
16708 {
16709 if (!TYPE_P (arg))
16710 {
16711 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
16712 if (type_unknown_p (arg))
16713 {
16714 /* [temp.deduct.type] A template-argument can be
16715 deduced from a pointer to function or pointer
16716 to member function argument if the set of
16717 overloaded functions does not contain function
16718 templates and at most one of a set of
16719 overloaded functions provides a unique
16720 match. */
16721
16722 if (resolve_overloaded_unification
16723 (tparms, targs, parm, arg, strict,
16724 arg_strict, explain_p))
16725 return unify_success (explain_p);
16726 return unify_overload_resolution_failure (explain_p, arg);
16727 }
16728
16729 arg_expr = arg;
16730 arg = unlowered_expr_type (arg);
16731 if (arg == error_mark_node)
16732 return unify_invalid (explain_p);
16733 }
16734
16735 arg_strict |=
16736 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
16737 }
16738 else
16739 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
16740 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
16741 return unify_template_argument_mismatch (explain_p, parm, arg);
16742
16743 /* For deduction from an init-list we need the actual list. */
16744 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
16745 arg = arg_expr;
16746 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
16747 }
16748
16749 /* Most parms like fn_type_unification.
16750
16751 If SUBR is 1, we're being called recursively (to unify the
16752 arguments of a function or method parameter of a function
16753 template).
16754
16755 CHECKS is a pointer to a vector of access checks encountered while
16756 substituting default template arguments. */
16757
16758 static int
16759 type_unification_real (tree tparms,
16760 tree targs,
16761 tree xparms,
16762 const tree *xargs,
16763 unsigned int xnargs,
16764 int subr,
16765 unification_kind_t strict,
16766 int flags,
16767 vec<deferred_access_check, va_gc> **checks,
16768 bool explain_p)
16769 {
16770 tree parm, arg;
16771 int i;
16772 int ntparms = TREE_VEC_LENGTH (tparms);
16773 int saw_undeduced = 0;
16774 tree parms;
16775 const tree *args;
16776 unsigned int nargs;
16777 unsigned int ia;
16778
16779 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
16780 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
16781 gcc_assert (ntparms > 0);
16782
16783 /* Reset the number of non-defaulted template arguments contained
16784 in TARGS. */
16785 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
16786
16787 again:
16788 parms = xparms;
16789 args = xargs;
16790 nargs = xnargs;
16791
16792 ia = 0;
16793 while (parms && parms != void_list_node
16794 && ia < nargs)
16795 {
16796 parm = TREE_VALUE (parms);
16797
16798 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
16799 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
16800 /* For a function parameter pack that occurs at the end of the
16801 parameter-declaration-list, the type A of each remaining
16802 argument of the call is compared with the type P of the
16803 declarator-id of the function parameter pack. */
16804 break;
16805
16806 parms = TREE_CHAIN (parms);
16807
16808 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
16809 /* For a function parameter pack that does not occur at the
16810 end of the parameter-declaration-list, the type of the
16811 parameter pack is a non-deduced context. */
16812 continue;
16813
16814 arg = args[ia];
16815 ++ia;
16816
16817 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
16818 flags, explain_p))
16819 return 1;
16820 }
16821
16822 if (parms
16823 && parms != void_list_node
16824 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
16825 {
16826 /* Unify the remaining arguments with the pack expansion type. */
16827 tree argvec;
16828 tree parmvec = make_tree_vec (1);
16829
16830 /* Allocate a TREE_VEC and copy in all of the arguments */
16831 argvec = make_tree_vec (nargs - ia);
16832 for (i = 0; ia < nargs; ++ia, ++i)
16833 TREE_VEC_ELT (argvec, i) = args[ia];
16834
16835 /* Copy the parameter into parmvec. */
16836 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
16837 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
16838 /*subr=*/subr, explain_p))
16839 return 1;
16840
16841 /* Advance to the end of the list of parameters. */
16842 parms = TREE_CHAIN (parms);
16843 }
16844
16845 /* Fail if we've reached the end of the parm list, and more args
16846 are present, and the parm list isn't variadic. */
16847 if (ia < nargs && parms == void_list_node)
16848 return unify_too_many_arguments (explain_p, nargs, ia);
16849 /* Fail if parms are left and they don't have default values and
16850 they aren't all deduced as empty packs (c++/57397). This is
16851 consistent with sufficient_parms_p. */
16852 if (parms && parms != void_list_node
16853 && TREE_PURPOSE (parms) == NULL_TREE)
16854 {
16855 unsigned int count = nargs;
16856 tree p = parms;
16857 bool type_pack_p;
16858 do
16859 {
16860 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
16861 if (!type_pack_p)
16862 count++;
16863 p = TREE_CHAIN (p);
16864 }
16865 while (p && p != void_list_node);
16866 if (count != nargs)
16867 return unify_too_few_arguments (explain_p, ia, count,
16868 type_pack_p);
16869 }
16870
16871 if (!subr)
16872 {
16873 tsubst_flags_t complain = (explain_p
16874 ? tf_warning_or_error
16875 : tf_none);
16876
16877 for (i = 0; i < ntparms; i++)
16878 {
16879 tree targ = TREE_VEC_ELT (targs, i);
16880 tree tparm = TREE_VEC_ELT (tparms, i);
16881
16882 /* Clear the "incomplete" flags on all argument packs now so that
16883 substituting them into later default arguments works. */
16884 if (targ && ARGUMENT_PACK_P (targ))
16885 {
16886 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
16887 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
16888 }
16889
16890 if (targ || tparm == error_mark_node)
16891 continue;
16892 tparm = TREE_VALUE (tparm);
16893
16894 /* If this is an undeduced nontype parameter that depends on
16895 a type parameter, try another pass; its type may have been
16896 deduced from a later argument than the one from which
16897 this parameter can be deduced. */
16898 if (TREE_CODE (tparm) == PARM_DECL
16899 && uses_template_parms (TREE_TYPE (tparm))
16900 && !saw_undeduced++)
16901 goto again;
16902
16903 /* Core issue #226 (C++0x) [temp.deduct]:
16904
16905 If a template argument has not been deduced, its
16906 default template argument, if any, is used.
16907
16908 When we are in C++98 mode, TREE_PURPOSE will either
16909 be NULL_TREE or ERROR_MARK_NODE, so we do not need
16910 to explicitly check cxx_dialect here. */
16911 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
16912 {
16913 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
16914 tree arg = TREE_PURPOSE (TREE_VEC_ELT (tparms, i));
16915 reopen_deferring_access_checks (*checks);
16916 location_t save_loc = input_location;
16917 if (DECL_P (parm))
16918 input_location = DECL_SOURCE_LOCATION (parm);
16919 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
16920 arg = convert_template_argument (parm, arg, targs, complain,
16921 i, NULL_TREE);
16922 input_location = save_loc;
16923 *checks = get_deferred_access_checks ();
16924 pop_deferring_access_checks ();
16925 if (arg == error_mark_node)
16926 return 1;
16927 else
16928 {
16929 TREE_VEC_ELT (targs, i) = arg;
16930 /* The position of the first default template argument,
16931 is also the number of non-defaulted arguments in TARGS.
16932 Record that. */
16933 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
16934 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
16935 continue;
16936 }
16937 }
16938
16939 /* If the type parameter is a parameter pack, then it will
16940 be deduced to an empty parameter pack. */
16941 if (template_parameter_pack_p (tparm))
16942 {
16943 tree arg;
16944
16945 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
16946 {
16947 arg = make_node (NONTYPE_ARGUMENT_PACK);
16948 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
16949 TREE_CONSTANT (arg) = 1;
16950 }
16951 else
16952 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
16953
16954 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
16955
16956 TREE_VEC_ELT (targs, i) = arg;
16957 continue;
16958 }
16959
16960 return unify_parameter_deduction_failure (explain_p, tparm);
16961 }
16962 }
16963 #ifdef ENABLE_CHECKING
16964 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
16965 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
16966 #endif
16967
16968 return unify_success (explain_p);
16969 }
16970
16971 /* Subroutine of type_unification_real. Args are like the variables
16972 at the call site. ARG is an overloaded function (or template-id);
16973 we try deducing template args from each of the overloads, and if
16974 only one succeeds, we go with that. Modifies TARGS and returns
16975 true on success. */
16976
16977 static bool
16978 resolve_overloaded_unification (tree tparms,
16979 tree targs,
16980 tree parm,
16981 tree arg,
16982 unification_kind_t strict,
16983 int sub_strict,
16984 bool explain_p)
16985 {
16986 tree tempargs = copy_node (targs);
16987 int good = 0;
16988 tree goodfn = NULL_TREE;
16989 bool addr_p;
16990
16991 if (TREE_CODE (arg) == ADDR_EXPR)
16992 {
16993 arg = TREE_OPERAND (arg, 0);
16994 addr_p = true;
16995 }
16996 else
16997 addr_p = false;
16998
16999 if (TREE_CODE (arg) == COMPONENT_REF)
17000 /* Handle `&x' where `x' is some static or non-static member
17001 function name. */
17002 arg = TREE_OPERAND (arg, 1);
17003
17004 if (TREE_CODE (arg) == OFFSET_REF)
17005 arg = TREE_OPERAND (arg, 1);
17006
17007 /* Strip baselink information. */
17008 if (BASELINK_P (arg))
17009 arg = BASELINK_FUNCTIONS (arg);
17010
17011 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
17012 {
17013 /* If we got some explicit template args, we need to plug them into
17014 the affected templates before we try to unify, in case the
17015 explicit args will completely resolve the templates in question. */
17016
17017 int ok = 0;
17018 tree expl_subargs = TREE_OPERAND (arg, 1);
17019 arg = TREE_OPERAND (arg, 0);
17020
17021 for (; arg; arg = OVL_NEXT (arg))
17022 {
17023 tree fn = OVL_CURRENT (arg);
17024 tree subargs, elem;
17025
17026 if (TREE_CODE (fn) != TEMPLATE_DECL)
17027 continue;
17028
17029 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17030 expl_subargs, NULL_TREE, tf_none,
17031 /*require_all_args=*/true,
17032 /*use_default_args=*/true);
17033 if (subargs != error_mark_node
17034 && !any_dependent_template_arguments_p (subargs))
17035 {
17036 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
17037 if (try_one_overload (tparms, targs, tempargs, parm,
17038 elem, strict, sub_strict, addr_p, explain_p)
17039 && (!goodfn || !same_type_p (goodfn, elem)))
17040 {
17041 goodfn = elem;
17042 ++good;
17043 }
17044 }
17045 else if (subargs)
17046 ++ok;
17047 }
17048 /* If no templates (or more than one) are fully resolved by the
17049 explicit arguments, this template-id is a non-deduced context; it
17050 could still be OK if we deduce all template arguments for the
17051 enclosing call through other arguments. */
17052 if (good != 1)
17053 good = ok;
17054 }
17055 else if (TREE_CODE (arg) != OVERLOAD
17056 && TREE_CODE (arg) != FUNCTION_DECL)
17057 /* If ARG is, for example, "(0, &f)" then its type will be unknown
17058 -- but the deduction does not succeed because the expression is
17059 not just the function on its own. */
17060 return false;
17061 else
17062 for (; arg; arg = OVL_NEXT (arg))
17063 if (try_one_overload (tparms, targs, tempargs, parm,
17064 TREE_TYPE (OVL_CURRENT (arg)),
17065 strict, sub_strict, addr_p, explain_p)
17066 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
17067 {
17068 goodfn = OVL_CURRENT (arg);
17069 ++good;
17070 }
17071
17072 /* [temp.deduct.type] A template-argument can be deduced from a pointer
17073 to function or pointer to member function argument if the set of
17074 overloaded functions does not contain function templates and at most
17075 one of a set of overloaded functions provides a unique match.
17076
17077 So if we found multiple possibilities, we return success but don't
17078 deduce anything. */
17079
17080 if (good == 1)
17081 {
17082 int i = TREE_VEC_LENGTH (targs);
17083 for (; i--; )
17084 if (TREE_VEC_ELT (tempargs, i))
17085 {
17086 tree old = TREE_VEC_ELT (targs, i);
17087 tree new_ = TREE_VEC_ELT (tempargs, i);
17088 if (new_ && old && ARGUMENT_PACK_P (old)
17089 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
17090 /* Don't forget explicit template arguments in a pack. */
17091 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
17092 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
17093 TREE_VEC_ELT (targs, i) = new_;
17094 }
17095 }
17096 if (good)
17097 return true;
17098
17099 return false;
17100 }
17101
17102 /* Core DR 115: In contexts where deduction is done and fails, or in
17103 contexts where deduction is not done, if a template argument list is
17104 specified and it, along with any default template arguments, identifies
17105 a single function template specialization, then the template-id is an
17106 lvalue for the function template specialization. */
17107
17108 tree
17109 resolve_nondeduced_context (tree orig_expr)
17110 {
17111 tree expr, offset, baselink;
17112 bool addr;
17113
17114 if (!type_unknown_p (orig_expr))
17115 return orig_expr;
17116
17117 expr = orig_expr;
17118 addr = false;
17119 offset = NULL_TREE;
17120 baselink = NULL_TREE;
17121
17122 if (TREE_CODE (expr) == ADDR_EXPR)
17123 {
17124 expr = TREE_OPERAND (expr, 0);
17125 addr = true;
17126 }
17127 if (TREE_CODE (expr) == OFFSET_REF)
17128 {
17129 offset = expr;
17130 expr = TREE_OPERAND (expr, 1);
17131 }
17132 if (BASELINK_P (expr))
17133 {
17134 baselink = expr;
17135 expr = BASELINK_FUNCTIONS (expr);
17136 }
17137
17138 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
17139 {
17140 int good = 0;
17141 tree goodfn = NULL_TREE;
17142
17143 /* If we got some explicit template args, we need to plug them into
17144 the affected templates before we try to unify, in case the
17145 explicit args will completely resolve the templates in question. */
17146
17147 tree expl_subargs = TREE_OPERAND (expr, 1);
17148 tree arg = TREE_OPERAND (expr, 0);
17149 tree badfn = NULL_TREE;
17150 tree badargs = NULL_TREE;
17151
17152 for (; arg; arg = OVL_NEXT (arg))
17153 {
17154 tree fn = OVL_CURRENT (arg);
17155 tree subargs, elem;
17156
17157 if (TREE_CODE (fn) != TEMPLATE_DECL)
17158 continue;
17159
17160 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17161 expl_subargs, NULL_TREE, tf_none,
17162 /*require_all_args=*/true,
17163 /*use_default_args=*/true);
17164 if (subargs != error_mark_node
17165 && !any_dependent_template_arguments_p (subargs))
17166 {
17167 elem = instantiate_template (fn, subargs, tf_none);
17168 if (elem == error_mark_node)
17169 {
17170 badfn = fn;
17171 badargs = subargs;
17172 }
17173 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
17174 {
17175 goodfn = elem;
17176 ++good;
17177 }
17178 }
17179 }
17180 if (good == 1)
17181 {
17182 mark_used (goodfn);
17183 expr = goodfn;
17184 if (baselink)
17185 expr = build_baselink (BASELINK_BINFO (baselink),
17186 BASELINK_ACCESS_BINFO (baselink),
17187 expr, BASELINK_OPTYPE (baselink));
17188 if (offset)
17189 {
17190 tree base
17191 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
17192 expr = build_offset_ref (base, expr, addr, tf_warning_or_error);
17193 }
17194 if (addr)
17195 expr = cp_build_addr_expr (expr, tf_warning_or_error);
17196 return expr;
17197 }
17198 else if (good == 0 && badargs)
17199 /* There were no good options and at least one bad one, so let the
17200 user know what the problem is. */
17201 instantiate_template (badfn, badargs, tf_warning_or_error);
17202 }
17203 return orig_expr;
17204 }
17205
17206 /* Subroutine of resolve_overloaded_unification; does deduction for a single
17207 overload. Fills TARGS with any deduced arguments, or error_mark_node if
17208 different overloads deduce different arguments for a given parm.
17209 ADDR_P is true if the expression for which deduction is being
17210 performed was of the form "& fn" rather than simply "fn".
17211
17212 Returns 1 on success. */
17213
17214 static int
17215 try_one_overload (tree tparms,
17216 tree orig_targs,
17217 tree targs,
17218 tree parm,
17219 tree arg,
17220 unification_kind_t strict,
17221 int sub_strict,
17222 bool addr_p,
17223 bool explain_p)
17224 {
17225 int nargs;
17226 tree tempargs;
17227 int i;
17228
17229 if (arg == error_mark_node)
17230 return 0;
17231
17232 /* [temp.deduct.type] A template-argument can be deduced from a pointer
17233 to function or pointer to member function argument if the set of
17234 overloaded functions does not contain function templates and at most
17235 one of a set of overloaded functions provides a unique match.
17236
17237 So if this is a template, just return success. */
17238
17239 if (uses_template_parms (arg))
17240 return 1;
17241
17242 if (TREE_CODE (arg) == METHOD_TYPE)
17243 arg = build_ptrmemfunc_type (build_pointer_type (arg));
17244 else if (addr_p)
17245 arg = build_pointer_type (arg);
17246
17247 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
17248
17249 /* We don't copy orig_targs for this because if we have already deduced
17250 some template args from previous args, unify would complain when we
17251 try to deduce a template parameter for the same argument, even though
17252 there isn't really a conflict. */
17253 nargs = TREE_VEC_LENGTH (targs);
17254 tempargs = make_tree_vec (nargs);
17255
17256 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
17257 return 0;
17258
17259 /* First make sure we didn't deduce anything that conflicts with
17260 explicitly specified args. */
17261 for (i = nargs; i--; )
17262 {
17263 tree elt = TREE_VEC_ELT (tempargs, i);
17264 tree oldelt = TREE_VEC_ELT (orig_targs, i);
17265
17266 if (!elt)
17267 /*NOP*/;
17268 else if (uses_template_parms (elt))
17269 /* Since we're unifying against ourselves, we will fill in
17270 template args used in the function parm list with our own
17271 template parms. Discard them. */
17272 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
17273 else if (oldelt && !template_args_equal (oldelt, elt))
17274 return 0;
17275 }
17276
17277 for (i = nargs; i--; )
17278 {
17279 tree elt = TREE_VEC_ELT (tempargs, i);
17280
17281 if (elt)
17282 TREE_VEC_ELT (targs, i) = elt;
17283 }
17284
17285 return 1;
17286 }
17287
17288 /* PARM is a template class (perhaps with unbound template
17289 parameters). ARG is a fully instantiated type. If ARG can be
17290 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
17291 TARGS are as for unify. */
17292
17293 static tree
17294 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
17295 bool explain_p)
17296 {
17297 tree copy_of_targs;
17298
17299 if (!CLASSTYPE_TEMPLATE_INFO (arg)
17300 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
17301 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
17302 return NULL_TREE;
17303
17304 /* We need to make a new template argument vector for the call to
17305 unify. If we used TARGS, we'd clutter it up with the result of
17306 the attempted unification, even if this class didn't work out.
17307 We also don't want to commit ourselves to all the unifications
17308 we've already done, since unification is supposed to be done on
17309 an argument-by-argument basis. In other words, consider the
17310 following pathological case:
17311
17312 template <int I, int J, int K>
17313 struct S {};
17314
17315 template <int I, int J>
17316 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
17317
17318 template <int I, int J, int K>
17319 void f(S<I, J, K>, S<I, I, I>);
17320
17321 void g() {
17322 S<0, 0, 0> s0;
17323 S<0, 1, 2> s2;
17324
17325 f(s0, s2);
17326 }
17327
17328 Now, by the time we consider the unification involving `s2', we
17329 already know that we must have `f<0, 0, 0>'. But, even though
17330 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
17331 because there are two ways to unify base classes of S<0, 1, 2>
17332 with S<I, I, I>. If we kept the already deduced knowledge, we
17333 would reject the possibility I=1. */
17334 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
17335
17336 /* If unification failed, we're done. */
17337 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
17338 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
17339 return NULL_TREE;
17340
17341 return arg;
17342 }
17343
17344 /* Given a template type PARM and a class type ARG, find the unique
17345 base type in ARG that is an instance of PARM. We do not examine
17346 ARG itself; only its base-classes. If there is not exactly one
17347 appropriate base class, return NULL_TREE. PARM may be the type of
17348 a partial specialization, as well as a plain template type. Used
17349 by unify. */
17350
17351 static enum template_base_result
17352 get_template_base (tree tparms, tree targs, tree parm, tree arg,
17353 bool explain_p, tree *result)
17354 {
17355 tree rval = NULL_TREE;
17356 tree binfo;
17357
17358 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
17359
17360 binfo = TYPE_BINFO (complete_type (arg));
17361 if (!binfo)
17362 {
17363 /* The type could not be completed. */
17364 *result = NULL_TREE;
17365 return tbr_incomplete_type;
17366 }
17367
17368 /* Walk in inheritance graph order. The search order is not
17369 important, and this avoids multiple walks of virtual bases. */
17370 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
17371 {
17372 tree r = try_class_unification (tparms, targs, parm,
17373 BINFO_TYPE (binfo), explain_p);
17374
17375 if (r)
17376 {
17377 /* If there is more than one satisfactory baseclass, then:
17378
17379 [temp.deduct.call]
17380
17381 If they yield more than one possible deduced A, the type
17382 deduction fails.
17383
17384 applies. */
17385 if (rval && !same_type_p (r, rval))
17386 {
17387 *result = NULL_TREE;
17388 return tbr_ambiguous_baseclass;
17389 }
17390
17391 rval = r;
17392 }
17393 }
17394
17395 *result = rval;
17396 return tbr_success;
17397 }
17398
17399 /* Returns the level of DECL, which declares a template parameter. */
17400
17401 static int
17402 template_decl_level (tree decl)
17403 {
17404 switch (TREE_CODE (decl))
17405 {
17406 case TYPE_DECL:
17407 case TEMPLATE_DECL:
17408 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
17409
17410 case PARM_DECL:
17411 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
17412
17413 default:
17414 gcc_unreachable ();
17415 }
17416 return 0;
17417 }
17418
17419 /* Decide whether ARG can be unified with PARM, considering only the
17420 cv-qualifiers of each type, given STRICT as documented for unify.
17421 Returns nonzero iff the unification is OK on that basis. */
17422
17423 static int
17424 check_cv_quals_for_unify (int strict, tree arg, tree parm)
17425 {
17426 int arg_quals = cp_type_quals (arg);
17427 int parm_quals = cp_type_quals (parm);
17428
17429 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17430 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
17431 {
17432 /* Although a CVR qualifier is ignored when being applied to a
17433 substituted template parameter ([8.3.2]/1 for example), that
17434 does not allow us to unify "const T" with "int&" because both
17435 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
17436 It is ok when we're allowing additional CV qualifiers
17437 at the outer level [14.8.2.1]/3,1st bullet. */
17438 if ((TREE_CODE (arg) == REFERENCE_TYPE
17439 || TREE_CODE (arg) == FUNCTION_TYPE
17440 || TREE_CODE (arg) == METHOD_TYPE)
17441 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
17442 return 0;
17443
17444 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
17445 && (parm_quals & TYPE_QUAL_RESTRICT))
17446 return 0;
17447 }
17448
17449 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
17450 && (arg_quals & parm_quals) != parm_quals)
17451 return 0;
17452
17453 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
17454 && (parm_quals & arg_quals) != arg_quals)
17455 return 0;
17456
17457 return 1;
17458 }
17459
17460 /* Determines the LEVEL and INDEX for the template parameter PARM. */
17461 void
17462 template_parm_level_and_index (tree parm, int* level, int* index)
17463 {
17464 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17465 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
17466 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
17467 {
17468 *index = TEMPLATE_TYPE_IDX (parm);
17469 *level = TEMPLATE_TYPE_LEVEL (parm);
17470 }
17471 else
17472 {
17473 *index = TEMPLATE_PARM_IDX (parm);
17474 *level = TEMPLATE_PARM_LEVEL (parm);
17475 }
17476 }
17477
17478 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
17479 do { \
17480 if (unify (TP, TA, P, A, S, EP)) \
17481 return 1; \
17482 } while (0);
17483
17484 /* Unifies the remaining arguments in PACKED_ARGS with the pack
17485 expansion at the end of PACKED_PARMS. Returns 0 if the type
17486 deduction succeeds, 1 otherwise. STRICT is the same as in
17487 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
17488 call argument list. We'll need to adjust the arguments to make them
17489 types. SUBR tells us if this is from a recursive call to
17490 type_unification_real, or for comparing two template argument
17491 lists. */
17492
17493 static int
17494 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
17495 tree packed_args, unification_kind_t strict,
17496 bool subr, bool explain_p)
17497 {
17498 tree parm
17499 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
17500 tree pattern = PACK_EXPANSION_PATTERN (parm);
17501 tree pack, packs = NULL_TREE;
17502 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
17503
17504 packed_args = expand_template_argument_pack (packed_args);
17505
17506 int len = TREE_VEC_LENGTH (packed_args);
17507
17508 /* Determine the parameter packs we will be deducing from the
17509 pattern, and record their current deductions. */
17510 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
17511 pack; pack = TREE_CHAIN (pack))
17512 {
17513 tree parm_pack = TREE_VALUE (pack);
17514 int idx, level;
17515
17516 /* Determine the index and level of this parameter pack. */
17517 template_parm_level_and_index (parm_pack, &level, &idx);
17518
17519 /* Keep track of the parameter packs and their corresponding
17520 argument packs. */
17521 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
17522 TREE_TYPE (packs) = make_tree_vec (len - start);
17523 }
17524
17525 /* Loop through all of the arguments that have not yet been
17526 unified and unify each with the pattern. */
17527 for (i = start; i < len; i++)
17528 {
17529 tree parm;
17530 bool any_explicit = false;
17531 tree arg = TREE_VEC_ELT (packed_args, i);
17532
17533 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
17534 or the element of its argument pack at the current index if
17535 this argument was explicitly specified. */
17536 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17537 {
17538 int idx, level;
17539 tree arg, pargs;
17540 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17541
17542 arg = NULL_TREE;
17543 if (TREE_VALUE (pack)
17544 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
17545 && (i - start < TREE_VEC_LENGTH (pargs)))
17546 {
17547 any_explicit = true;
17548 arg = TREE_VEC_ELT (pargs, i - start);
17549 }
17550 TMPL_ARG (targs, level, idx) = arg;
17551 }
17552
17553 /* If we had explicit template arguments, substitute them into the
17554 pattern before deduction. */
17555 if (any_explicit)
17556 {
17557 /* Some arguments might still be unspecified or dependent. */
17558 bool dependent;
17559 ++processing_template_decl;
17560 dependent = any_dependent_template_arguments_p (targs);
17561 if (!dependent)
17562 --processing_template_decl;
17563 parm = tsubst (pattern, targs,
17564 explain_p ? tf_warning_or_error : tf_none,
17565 NULL_TREE);
17566 if (dependent)
17567 --processing_template_decl;
17568 if (parm == error_mark_node)
17569 return 1;
17570 }
17571 else
17572 parm = pattern;
17573
17574 /* Unify the pattern with the current argument. */
17575 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
17576 LOOKUP_IMPLICIT, explain_p))
17577 return 1;
17578
17579 /* For each parameter pack, collect the deduced value. */
17580 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17581 {
17582 int idx, level;
17583 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17584
17585 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
17586 TMPL_ARG (targs, level, idx);
17587 }
17588 }
17589
17590 /* Verify that the results of unification with the parameter packs
17591 produce results consistent with what we've seen before, and make
17592 the deduced argument packs available. */
17593 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17594 {
17595 tree old_pack = TREE_VALUE (pack);
17596 tree new_args = TREE_TYPE (pack);
17597 int i, len = TREE_VEC_LENGTH (new_args);
17598 int idx, level;
17599 bool nondeduced_p = false;
17600
17601 /* By default keep the original deduced argument pack.
17602 If necessary, more specific code is going to update the
17603 resulting deduced argument later down in this function. */
17604 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17605 TMPL_ARG (targs, level, idx) = old_pack;
17606
17607 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
17608 actually deduce anything. */
17609 for (i = 0; i < len && !nondeduced_p; ++i)
17610 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
17611 nondeduced_p = true;
17612 if (nondeduced_p)
17613 continue;
17614
17615 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
17616 {
17617 /* If we had fewer function args than explicit template args,
17618 just use the explicits. */
17619 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
17620 int explicit_len = TREE_VEC_LENGTH (explicit_args);
17621 if (len < explicit_len)
17622 new_args = explicit_args;
17623 }
17624
17625 if (!old_pack)
17626 {
17627 tree result;
17628 /* Build the deduced *_ARGUMENT_PACK. */
17629 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
17630 {
17631 result = make_node (NONTYPE_ARGUMENT_PACK);
17632 TREE_TYPE (result) =
17633 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
17634 TREE_CONSTANT (result) = 1;
17635 }
17636 else
17637 result = cxx_make_type (TYPE_ARGUMENT_PACK);
17638
17639 SET_ARGUMENT_PACK_ARGS (result, new_args);
17640
17641 /* Note the deduced argument packs for this parameter
17642 pack. */
17643 TMPL_ARG (targs, level, idx) = result;
17644 }
17645 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
17646 && (ARGUMENT_PACK_ARGS (old_pack)
17647 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
17648 {
17649 /* We only had the explicitly-provided arguments before, but
17650 now we have a complete set of arguments. */
17651 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
17652
17653 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
17654 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
17655 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
17656 }
17657 else
17658 {
17659 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
17660 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
17661
17662 if (!comp_template_args_with_info (old_args, new_args,
17663 &bad_old_arg, &bad_new_arg))
17664 /* Inconsistent unification of this parameter pack. */
17665 return unify_parameter_pack_inconsistent (explain_p,
17666 bad_old_arg,
17667 bad_new_arg);
17668 }
17669 }
17670
17671 return unify_success (explain_p);
17672 }
17673
17674 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
17675 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
17676 parameters and return value are as for unify. */
17677
17678 static int
17679 unify_array_domain (tree tparms, tree targs,
17680 tree parm_dom, tree arg_dom,
17681 bool explain_p)
17682 {
17683 tree parm_max;
17684 tree arg_max;
17685 bool parm_cst;
17686 bool arg_cst;
17687
17688 /* Our representation of array types uses "N - 1" as the
17689 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
17690 not an integer constant. We cannot unify arbitrarily
17691 complex expressions, so we eliminate the MINUS_EXPRs
17692 here. */
17693 parm_max = TYPE_MAX_VALUE (parm_dom);
17694 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
17695 if (!parm_cst)
17696 {
17697 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
17698 parm_max = TREE_OPERAND (parm_max, 0);
17699 }
17700 arg_max = TYPE_MAX_VALUE (arg_dom);
17701 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
17702 if (!arg_cst)
17703 {
17704 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
17705 trying to unify the type of a variable with the type
17706 of a template parameter. For example:
17707
17708 template <unsigned int N>
17709 void f (char (&) [N]);
17710 int g();
17711 void h(int i) {
17712 char a[g(i)];
17713 f(a);
17714 }
17715
17716 Here, the type of the ARG will be "int [g(i)]", and
17717 may be a SAVE_EXPR, etc. */
17718 if (TREE_CODE (arg_max) != MINUS_EXPR)
17719 return unify_vla_arg (explain_p, arg_dom);
17720 arg_max = TREE_OPERAND (arg_max, 0);
17721 }
17722
17723 /* If only one of the bounds used a MINUS_EXPR, compensate
17724 by adding one to the other bound. */
17725 if (parm_cst && !arg_cst)
17726 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
17727 integer_type_node,
17728 parm_max,
17729 integer_one_node);
17730 else if (arg_cst && !parm_cst)
17731 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
17732 integer_type_node,
17733 arg_max,
17734 integer_one_node);
17735
17736 return unify (tparms, targs, parm_max, arg_max,
17737 UNIFY_ALLOW_INTEGER, explain_p);
17738 }
17739
17740 /* Deduce the value of template parameters. TPARMS is the (innermost)
17741 set of template parameters to a template. TARGS is the bindings
17742 for those template parameters, as determined thus far; TARGS may
17743 include template arguments for outer levels of template parameters
17744 as well. PARM is a parameter to a template function, or a
17745 subcomponent of that parameter; ARG is the corresponding argument.
17746 This function attempts to match PARM with ARG in a manner
17747 consistent with the existing assignments in TARGS. If more values
17748 are deduced, then TARGS is updated.
17749
17750 Returns 0 if the type deduction succeeds, 1 otherwise. The
17751 parameter STRICT is a bitwise or of the following flags:
17752
17753 UNIFY_ALLOW_NONE:
17754 Require an exact match between PARM and ARG.
17755 UNIFY_ALLOW_MORE_CV_QUAL:
17756 Allow the deduced ARG to be more cv-qualified (by qualification
17757 conversion) than ARG.
17758 UNIFY_ALLOW_LESS_CV_QUAL:
17759 Allow the deduced ARG to be less cv-qualified than ARG.
17760 UNIFY_ALLOW_DERIVED:
17761 Allow the deduced ARG to be a template base class of ARG,
17762 or a pointer to a template base class of the type pointed to by
17763 ARG.
17764 UNIFY_ALLOW_INTEGER:
17765 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
17766 case for more information.
17767 UNIFY_ALLOW_OUTER_LEVEL:
17768 This is the outermost level of a deduction. Used to determine validity
17769 of qualification conversions. A valid qualification conversion must
17770 have const qualified pointers leading up to the inner type which
17771 requires additional CV quals, except at the outer level, where const
17772 is not required [conv.qual]. It would be normal to set this flag in
17773 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
17774 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
17775 This is the outermost level of a deduction, and PARM can be more CV
17776 qualified at this point.
17777 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
17778 This is the outermost level of a deduction, and PARM can be less CV
17779 qualified at this point. */
17780
17781 static int
17782 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
17783 bool explain_p)
17784 {
17785 int idx;
17786 tree targ;
17787 tree tparm;
17788 int strict_in = strict;
17789
17790 /* I don't think this will do the right thing with respect to types.
17791 But the only case I've seen it in so far has been array bounds, where
17792 signedness is the only information lost, and I think that will be
17793 okay. */
17794 while (TREE_CODE (parm) == NOP_EXPR)
17795 parm = TREE_OPERAND (parm, 0);
17796
17797 if (arg == error_mark_node)
17798 return unify_invalid (explain_p);
17799 if (arg == unknown_type_node
17800 || arg == init_list_type_node)
17801 /* We can't deduce anything from this, but we might get all the
17802 template args from other function args. */
17803 return unify_success (explain_p);
17804
17805 /* If PARM uses template parameters, then we can't bail out here,
17806 even if ARG == PARM, since we won't record unifications for the
17807 template parameters. We might need them if we're trying to
17808 figure out which of two things is more specialized. */
17809 if (arg == parm && !uses_template_parms (parm))
17810 return unify_success (explain_p);
17811
17812 /* Handle init lists early, so the rest of the function can assume
17813 we're dealing with a type. */
17814 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
17815 {
17816 tree elt, elttype;
17817 unsigned i;
17818 tree orig_parm = parm;
17819
17820 /* Replace T with std::initializer_list<T> for deduction. */
17821 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17822 && flag_deduce_init_list)
17823 parm = listify (parm);
17824
17825 if (!is_std_init_list (parm)
17826 && TREE_CODE (parm) != ARRAY_TYPE)
17827 /* We can only deduce from an initializer list argument if the
17828 parameter is std::initializer_list or an array; otherwise this
17829 is a non-deduced context. */
17830 return unify_success (explain_p);
17831
17832 if (TREE_CODE (parm) == ARRAY_TYPE)
17833 elttype = TREE_TYPE (parm);
17834 else
17835 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
17836
17837 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
17838 {
17839 int elt_strict = strict;
17840
17841 if (elt == error_mark_node)
17842 return unify_invalid (explain_p);
17843
17844 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
17845 {
17846 tree type = TREE_TYPE (elt);
17847 /* It should only be possible to get here for a call. */
17848 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
17849 elt_strict |= maybe_adjust_types_for_deduction
17850 (DEDUCE_CALL, &elttype, &type, elt);
17851 elt = type;
17852 }
17853
17854 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
17855 explain_p);
17856 }
17857
17858 if (TREE_CODE (parm) == ARRAY_TYPE
17859 && deducible_array_bound (TYPE_DOMAIN (parm)))
17860 {
17861 /* Also deduce from the length of the initializer list. */
17862 tree max = size_int (CONSTRUCTOR_NELTS (arg));
17863 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
17864 if (idx == error_mark_node)
17865 return unify_invalid (explain_p);
17866 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
17867 idx, explain_p);
17868 }
17869
17870 /* If the std::initializer_list<T> deduction worked, replace the
17871 deduced A with std::initializer_list<A>. */
17872 if (orig_parm != parm)
17873 {
17874 idx = TEMPLATE_TYPE_IDX (orig_parm);
17875 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
17876 targ = listify (targ);
17877 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
17878 }
17879 return unify_success (explain_p);
17880 }
17881
17882 /* Immediately reject some pairs that won't unify because of
17883 cv-qualification mismatches. */
17884 if (TREE_CODE (arg) == TREE_CODE (parm)
17885 && TYPE_P (arg)
17886 /* It is the elements of the array which hold the cv quals of an array
17887 type, and the elements might be template type parms. We'll check
17888 when we recurse. */
17889 && TREE_CODE (arg) != ARRAY_TYPE
17890 /* We check the cv-qualifiers when unifying with template type
17891 parameters below. We want to allow ARG `const T' to unify with
17892 PARM `T' for example, when computing which of two templates
17893 is more specialized, for example. */
17894 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
17895 && !check_cv_quals_for_unify (strict_in, arg, parm))
17896 return unify_cv_qual_mismatch (explain_p, parm, arg);
17897
17898 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
17899 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
17900 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
17901 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
17902 strict &= ~UNIFY_ALLOW_DERIVED;
17903 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
17904 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
17905
17906 switch (TREE_CODE (parm))
17907 {
17908 case TYPENAME_TYPE:
17909 case SCOPE_REF:
17910 case UNBOUND_CLASS_TEMPLATE:
17911 /* In a type which contains a nested-name-specifier, template
17912 argument values cannot be deduced for template parameters used
17913 within the nested-name-specifier. */
17914 return unify_success (explain_p);
17915
17916 case TEMPLATE_TYPE_PARM:
17917 case TEMPLATE_TEMPLATE_PARM:
17918 case BOUND_TEMPLATE_TEMPLATE_PARM:
17919 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
17920 if (error_operand_p (tparm))
17921 return unify_invalid (explain_p);
17922
17923 if (TEMPLATE_TYPE_LEVEL (parm)
17924 != template_decl_level (tparm))
17925 /* The PARM is not one we're trying to unify. Just check
17926 to see if it matches ARG. */
17927 {
17928 if (TREE_CODE (arg) == TREE_CODE (parm)
17929 && (is_auto (parm) ? is_auto (arg)
17930 : same_type_p (parm, arg)))
17931 return unify_success (explain_p);
17932 else
17933 return unify_type_mismatch (explain_p, parm, arg);
17934 }
17935 idx = TEMPLATE_TYPE_IDX (parm);
17936 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
17937 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
17938 if (error_operand_p (tparm))
17939 return unify_invalid (explain_p);
17940
17941 /* Check for mixed types and values. */
17942 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17943 && TREE_CODE (tparm) != TYPE_DECL)
17944 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
17945 && TREE_CODE (tparm) != TEMPLATE_DECL))
17946 gcc_unreachable ();
17947
17948 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
17949 {
17950 /* ARG must be constructed from a template class or a template
17951 template parameter. */
17952 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
17953 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
17954 return unify_template_deduction_failure (explain_p, parm, arg);
17955 {
17956 tree parmvec = TYPE_TI_ARGS (parm);
17957 /* An alias template name is never deduced. */
17958 if (TYPE_ALIAS_P (arg))
17959 arg = strip_typedefs (arg);
17960 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
17961 tree full_argvec = add_to_template_args (targs, argvec);
17962 tree parm_parms
17963 = DECL_INNERMOST_TEMPLATE_PARMS
17964 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
17965 int i, len;
17966 int parm_variadic_p = 0;
17967
17968 /* The resolution to DR150 makes clear that default
17969 arguments for an N-argument may not be used to bind T
17970 to a template template parameter with fewer than N
17971 parameters. It is not safe to permit the binding of
17972 default arguments as an extension, as that may change
17973 the meaning of a conforming program. Consider:
17974
17975 struct Dense { static const unsigned int dim = 1; };
17976
17977 template <template <typename> class View,
17978 typename Block>
17979 void operator+(float, View<Block> const&);
17980
17981 template <typename Block,
17982 unsigned int Dim = Block::dim>
17983 struct Lvalue_proxy { operator float() const; };
17984
17985 void
17986 test_1d (void) {
17987 Lvalue_proxy<Dense> p;
17988 float b;
17989 b + p;
17990 }
17991
17992 Here, if Lvalue_proxy is permitted to bind to View, then
17993 the global operator+ will be used; if they are not, the
17994 Lvalue_proxy will be converted to float. */
17995 if (coerce_template_parms (parm_parms,
17996 full_argvec,
17997 TYPE_TI_TEMPLATE (parm),
17998 (explain_p
17999 ? tf_warning_or_error
18000 : tf_none),
18001 /*require_all_args=*/true,
18002 /*use_default_args=*/false)
18003 == error_mark_node)
18004 return 1;
18005
18006 /* Deduce arguments T, i from TT<T> or TT<i>.
18007 We check each element of PARMVEC and ARGVEC individually
18008 rather than the whole TREE_VEC since they can have
18009 different number of elements. */
18010
18011 parmvec = expand_template_argument_pack (parmvec);
18012 argvec = expand_template_argument_pack (argvec);
18013
18014 len = TREE_VEC_LENGTH (parmvec);
18015
18016 /* Check if the parameters end in a pack, making them
18017 variadic. */
18018 if (len > 0
18019 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
18020 parm_variadic_p = 1;
18021
18022 for (i = 0; i < len - parm_variadic_p; ++i)
18023 /* If the template argument list of P contains a pack
18024 expansion that is not the last template argument, the
18025 entire template argument list is a non-deduced
18026 context. */
18027 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
18028 return unify_success (explain_p);
18029
18030 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
18031 return unify_too_few_arguments (explain_p,
18032 TREE_VEC_LENGTH (argvec), len);
18033
18034 for (i = 0; i < len - parm_variadic_p; ++i)
18035 {
18036 RECUR_AND_CHECK_FAILURE (tparms, targs,
18037 TREE_VEC_ELT (parmvec, i),
18038 TREE_VEC_ELT (argvec, i),
18039 UNIFY_ALLOW_NONE, explain_p);
18040 }
18041
18042 if (parm_variadic_p
18043 && unify_pack_expansion (tparms, targs,
18044 parmvec, argvec,
18045 DEDUCE_EXACT,
18046 /*subr=*/true, explain_p))
18047 return 1;
18048 }
18049 arg = TYPE_TI_TEMPLATE (arg);
18050
18051 /* Fall through to deduce template name. */
18052 }
18053
18054 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
18055 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
18056 {
18057 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
18058
18059 /* Simple cases: Value already set, does match or doesn't. */
18060 if (targ != NULL_TREE && template_args_equal (targ, arg))
18061 return unify_success (explain_p);
18062 else if (targ)
18063 return unify_inconsistency (explain_p, parm, targ, arg);
18064 }
18065 else
18066 {
18067 /* If PARM is `const T' and ARG is only `int', we don't have
18068 a match unless we are allowing additional qualification.
18069 If ARG is `const int' and PARM is just `T' that's OK;
18070 that binds `const int' to `T'. */
18071 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
18072 arg, parm))
18073 return unify_cv_qual_mismatch (explain_p, parm, arg);
18074
18075 /* Consider the case where ARG is `const volatile int' and
18076 PARM is `const T'. Then, T should be `volatile int'. */
18077 arg = cp_build_qualified_type_real
18078 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
18079 if (arg == error_mark_node)
18080 return unify_invalid (explain_p);
18081
18082 /* Simple cases: Value already set, does match or doesn't. */
18083 if (targ != NULL_TREE && same_type_p (targ, arg))
18084 return unify_success (explain_p);
18085 else if (targ)
18086 return unify_inconsistency (explain_p, parm, targ, arg);
18087
18088 /* Make sure that ARG is not a variable-sized array. (Note
18089 that were talking about variable-sized arrays (like
18090 `int[n]'), rather than arrays of unknown size (like
18091 `int[]').) We'll get very confused by such a type since
18092 the bound of the array is not constant, and therefore
18093 not mangleable. Besides, such types are not allowed in
18094 ISO C++, so we can do as we please here. We do allow
18095 them for 'auto' deduction, since that isn't ABI-exposed. */
18096 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
18097 return unify_vla_arg (explain_p, arg);
18098
18099 /* Strip typedefs as in convert_template_argument. */
18100 arg = canonicalize_type_argument (arg, tf_none);
18101 }
18102
18103 /* If ARG is a parameter pack or an expansion, we cannot unify
18104 against it unless PARM is also a parameter pack. */
18105 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
18106 && !template_parameter_pack_p (parm))
18107 return unify_parameter_pack_mismatch (explain_p, parm, arg);
18108
18109 /* If the argument deduction results is a METHOD_TYPE,
18110 then there is a problem.
18111 METHOD_TYPE doesn't map to any real C++ type the result of
18112 the deduction can not be of that type. */
18113 if (TREE_CODE (arg) == METHOD_TYPE)
18114 return unify_method_type_error (explain_p, arg);
18115
18116 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
18117 return unify_success (explain_p);
18118
18119 case TEMPLATE_PARM_INDEX:
18120 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
18121 if (error_operand_p (tparm))
18122 return unify_invalid (explain_p);
18123
18124 if (TEMPLATE_PARM_LEVEL (parm)
18125 != template_decl_level (tparm))
18126 {
18127 /* The PARM is not one we're trying to unify. Just check
18128 to see if it matches ARG. */
18129 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
18130 && cp_tree_equal (parm, arg));
18131 if (result)
18132 unify_expression_unequal (explain_p, parm, arg);
18133 return result;
18134 }
18135
18136 idx = TEMPLATE_PARM_IDX (parm);
18137 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
18138
18139 if (targ)
18140 {
18141 int x = !cp_tree_equal (targ, arg);
18142 if (x)
18143 unify_inconsistency (explain_p, parm, targ, arg);
18144 return x;
18145 }
18146
18147 /* [temp.deduct.type] If, in the declaration of a function template
18148 with a non-type template-parameter, the non-type
18149 template-parameter is used in an expression in the function
18150 parameter-list and, if the corresponding template-argument is
18151 deduced, the template-argument type shall match the type of the
18152 template-parameter exactly, except that a template-argument
18153 deduced from an array bound may be of any integral type.
18154 The non-type parameter might use already deduced type parameters. */
18155 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
18156 if (!TREE_TYPE (arg))
18157 /* Template-parameter dependent expression. Just accept it for now.
18158 It will later be processed in convert_template_argument. */
18159 ;
18160 else if (same_type_p (TREE_TYPE (arg), tparm))
18161 /* OK */;
18162 else if ((strict & UNIFY_ALLOW_INTEGER)
18163 && CP_INTEGRAL_TYPE_P (tparm))
18164 /* Convert the ARG to the type of PARM; the deduced non-type
18165 template argument must exactly match the types of the
18166 corresponding parameter. */
18167 arg = fold (build_nop (tparm, arg));
18168 else if (uses_template_parms (tparm))
18169 /* We haven't deduced the type of this parameter yet. Try again
18170 later. */
18171 return unify_success (explain_p);
18172 else
18173 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
18174
18175 /* If ARG is a parameter pack or an expansion, we cannot unify
18176 against it unless PARM is also a parameter pack. */
18177 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
18178 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
18179 return unify_parameter_pack_mismatch (explain_p, parm, arg);
18180
18181 arg = strip_typedefs_expr (arg);
18182 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
18183 return unify_success (explain_p);
18184
18185 case PTRMEM_CST:
18186 {
18187 /* A pointer-to-member constant can be unified only with
18188 another constant. */
18189 if (TREE_CODE (arg) != PTRMEM_CST)
18190 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
18191
18192 /* Just unify the class member. It would be useless (and possibly
18193 wrong, depending on the strict flags) to unify also
18194 PTRMEM_CST_CLASS, because we want to be sure that both parm and
18195 arg refer to the same variable, even if through different
18196 classes. For instance:
18197
18198 struct A { int x; };
18199 struct B : A { };
18200
18201 Unification of &A::x and &B::x must succeed. */
18202 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
18203 PTRMEM_CST_MEMBER (arg), strict, explain_p);
18204 }
18205
18206 case POINTER_TYPE:
18207 {
18208 if (!TYPE_PTR_P (arg))
18209 return unify_type_mismatch (explain_p, parm, arg);
18210
18211 /* [temp.deduct.call]
18212
18213 A can be another pointer or pointer to member type that can
18214 be converted to the deduced A via a qualification
18215 conversion (_conv.qual_).
18216
18217 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
18218 This will allow for additional cv-qualification of the
18219 pointed-to types if appropriate. */
18220
18221 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
18222 /* The derived-to-base conversion only persists through one
18223 level of pointers. */
18224 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
18225
18226 return unify (tparms, targs, TREE_TYPE (parm),
18227 TREE_TYPE (arg), strict, explain_p);
18228 }
18229
18230 case REFERENCE_TYPE:
18231 if (TREE_CODE (arg) != REFERENCE_TYPE)
18232 return unify_type_mismatch (explain_p, parm, arg);
18233 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18234 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
18235
18236 case ARRAY_TYPE:
18237 if (TREE_CODE (arg) != ARRAY_TYPE)
18238 return unify_type_mismatch (explain_p, parm, arg);
18239 if ((TYPE_DOMAIN (parm) == NULL_TREE)
18240 != (TYPE_DOMAIN (arg) == NULL_TREE))
18241 return unify_type_mismatch (explain_p, parm, arg);
18242 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18243 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
18244 if (TYPE_DOMAIN (parm) != NULL_TREE)
18245 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
18246 TYPE_DOMAIN (arg), explain_p);
18247 return unify_success (explain_p);
18248
18249 case REAL_TYPE:
18250 case COMPLEX_TYPE:
18251 case VECTOR_TYPE:
18252 case INTEGER_TYPE:
18253 case BOOLEAN_TYPE:
18254 case ENUMERAL_TYPE:
18255 case VOID_TYPE:
18256 case NULLPTR_TYPE:
18257 if (TREE_CODE (arg) != TREE_CODE (parm))
18258 return unify_type_mismatch (explain_p, parm, arg);
18259
18260 /* We have already checked cv-qualification at the top of the
18261 function. */
18262 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
18263 return unify_type_mismatch (explain_p, parm, arg);
18264
18265 /* As far as unification is concerned, this wins. Later checks
18266 will invalidate it if necessary. */
18267 return unify_success (explain_p);
18268
18269 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
18270 /* Type INTEGER_CST can come from ordinary constant template args. */
18271 case INTEGER_CST:
18272 while (TREE_CODE (arg) == NOP_EXPR)
18273 arg = TREE_OPERAND (arg, 0);
18274
18275 if (TREE_CODE (arg) != INTEGER_CST)
18276 return unify_template_argument_mismatch (explain_p, parm, arg);
18277 return (tree_int_cst_equal (parm, arg)
18278 ? unify_success (explain_p)
18279 : unify_template_argument_mismatch (explain_p, parm, arg));
18280
18281 case TREE_VEC:
18282 {
18283 int i, len, argslen;
18284 int parm_variadic_p = 0;
18285
18286 if (TREE_CODE (arg) != TREE_VEC)
18287 return unify_template_argument_mismatch (explain_p, parm, arg);
18288
18289 len = TREE_VEC_LENGTH (parm);
18290 argslen = TREE_VEC_LENGTH (arg);
18291
18292 /* Check for pack expansions in the parameters. */
18293 for (i = 0; i < len; ++i)
18294 {
18295 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
18296 {
18297 if (i == len - 1)
18298 /* We can unify against something with a trailing
18299 parameter pack. */
18300 parm_variadic_p = 1;
18301 else
18302 /* [temp.deduct.type]/9: If the template argument list of
18303 P contains a pack expansion that is not the last
18304 template argument, the entire template argument list
18305 is a non-deduced context. */
18306 return unify_success (explain_p);
18307 }
18308 }
18309
18310 /* If we don't have enough arguments to satisfy the parameters
18311 (not counting the pack expression at the end), or we have
18312 too many arguments for a parameter list that doesn't end in
18313 a pack expression, we can't unify. */
18314 if (parm_variadic_p
18315 ? argslen < len - parm_variadic_p
18316 : argslen != len)
18317 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
18318
18319 /* Unify all of the parameters that precede the (optional)
18320 pack expression. */
18321 for (i = 0; i < len - parm_variadic_p; ++i)
18322 {
18323 RECUR_AND_CHECK_FAILURE (tparms, targs,
18324 TREE_VEC_ELT (parm, i),
18325 TREE_VEC_ELT (arg, i),
18326 UNIFY_ALLOW_NONE, explain_p);
18327 }
18328 if (parm_variadic_p)
18329 return unify_pack_expansion (tparms, targs, parm, arg,
18330 DEDUCE_EXACT,
18331 /*subr=*/true, explain_p);
18332 return unify_success (explain_p);
18333 }
18334
18335 case RECORD_TYPE:
18336 case UNION_TYPE:
18337 if (TREE_CODE (arg) != TREE_CODE (parm))
18338 return unify_type_mismatch (explain_p, parm, arg);
18339
18340 if (TYPE_PTRMEMFUNC_P (parm))
18341 {
18342 if (!TYPE_PTRMEMFUNC_P (arg))
18343 return unify_type_mismatch (explain_p, parm, arg);
18344
18345 return unify (tparms, targs,
18346 TYPE_PTRMEMFUNC_FN_TYPE (parm),
18347 TYPE_PTRMEMFUNC_FN_TYPE (arg),
18348 strict, explain_p);
18349 }
18350 else if (TYPE_PTRMEMFUNC_P (arg))
18351 return unify_type_mismatch (explain_p, parm, arg);
18352
18353 if (CLASSTYPE_TEMPLATE_INFO (parm))
18354 {
18355 tree t = NULL_TREE;
18356
18357 if (strict_in & UNIFY_ALLOW_DERIVED)
18358 {
18359 /* First, we try to unify the PARM and ARG directly. */
18360 t = try_class_unification (tparms, targs,
18361 parm, arg, explain_p);
18362
18363 if (!t)
18364 {
18365 /* Fallback to the special case allowed in
18366 [temp.deduct.call]:
18367
18368 If P is a class, and P has the form
18369 template-id, then A can be a derived class of
18370 the deduced A. Likewise, if P is a pointer to
18371 a class of the form template-id, A can be a
18372 pointer to a derived class pointed to by the
18373 deduced A. */
18374 enum template_base_result r;
18375 r = get_template_base (tparms, targs, parm, arg,
18376 explain_p, &t);
18377
18378 if (!t)
18379 return unify_no_common_base (explain_p, r, parm, arg);
18380 }
18381 }
18382 else if (CLASSTYPE_TEMPLATE_INFO (arg)
18383 && (CLASSTYPE_TI_TEMPLATE (parm)
18384 == CLASSTYPE_TI_TEMPLATE (arg)))
18385 /* Perhaps PARM is something like S<U> and ARG is S<int>.
18386 Then, we should unify `int' and `U'. */
18387 t = arg;
18388 else
18389 /* There's no chance of unification succeeding. */
18390 return unify_type_mismatch (explain_p, parm, arg);
18391
18392 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
18393 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
18394 }
18395 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
18396 return unify_type_mismatch (explain_p, parm, arg);
18397 return unify_success (explain_p);
18398
18399 case METHOD_TYPE:
18400 case FUNCTION_TYPE:
18401 {
18402 unsigned int nargs;
18403 tree *args;
18404 tree a;
18405 unsigned int i;
18406
18407 if (TREE_CODE (arg) != TREE_CODE (parm))
18408 return unify_type_mismatch (explain_p, parm, arg);
18409
18410 /* CV qualifications for methods can never be deduced, they must
18411 match exactly. We need to check them explicitly here,
18412 because type_unification_real treats them as any other
18413 cv-qualified parameter. */
18414 if (TREE_CODE (parm) == METHOD_TYPE
18415 && (!check_cv_quals_for_unify
18416 (UNIFY_ALLOW_NONE,
18417 class_of_this_parm (arg),
18418 class_of_this_parm (parm))))
18419 return unify_cv_qual_mismatch (explain_p, parm, arg);
18420
18421 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
18422 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
18423
18424 nargs = list_length (TYPE_ARG_TYPES (arg));
18425 args = XALLOCAVEC (tree, nargs);
18426 for (a = TYPE_ARG_TYPES (arg), i = 0;
18427 a != NULL_TREE && a != void_list_node;
18428 a = TREE_CHAIN (a), ++i)
18429 args[i] = TREE_VALUE (a);
18430 nargs = i;
18431
18432 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
18433 args, nargs, 1, DEDUCE_EXACT,
18434 LOOKUP_NORMAL, NULL, explain_p);
18435 }
18436
18437 case OFFSET_TYPE:
18438 /* Unify a pointer to member with a pointer to member function, which
18439 deduces the type of the member as a function type. */
18440 if (TYPE_PTRMEMFUNC_P (arg))
18441 {
18442 /* Check top-level cv qualifiers */
18443 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
18444 return unify_cv_qual_mismatch (explain_p, parm, arg);
18445
18446 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
18447 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
18448 UNIFY_ALLOW_NONE, explain_p);
18449
18450 /* Determine the type of the function we are unifying against. */
18451 tree fntype = static_fn_type (arg);
18452
18453 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
18454 }
18455
18456 if (TREE_CODE (arg) != OFFSET_TYPE)
18457 return unify_type_mismatch (explain_p, parm, arg);
18458 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
18459 TYPE_OFFSET_BASETYPE (arg),
18460 UNIFY_ALLOW_NONE, explain_p);
18461 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18462 strict, explain_p);
18463
18464 case CONST_DECL:
18465 if (DECL_TEMPLATE_PARM_P (parm))
18466 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
18467 if (arg != scalar_constant_value (parm))
18468 return unify_template_argument_mismatch (explain_p, parm, arg);
18469 return unify_success (explain_p);
18470
18471 case FIELD_DECL:
18472 case TEMPLATE_DECL:
18473 /* Matched cases are handled by the ARG == PARM test above. */
18474 return unify_template_argument_mismatch (explain_p, parm, arg);
18475
18476 case VAR_DECL:
18477 /* A non-type template parameter that is a variable should be a
18478 an integral constant, in which case, it whould have been
18479 folded into its (constant) value. So we should not be getting
18480 a variable here. */
18481 gcc_unreachable ();
18482
18483 case TYPE_ARGUMENT_PACK:
18484 case NONTYPE_ARGUMENT_PACK:
18485 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
18486 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
18487
18488 case TYPEOF_TYPE:
18489 case DECLTYPE_TYPE:
18490 case UNDERLYING_TYPE:
18491 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
18492 or UNDERLYING_TYPE nodes. */
18493 return unify_success (explain_p);
18494
18495 case ERROR_MARK:
18496 /* Unification fails if we hit an error node. */
18497 return unify_invalid (explain_p);
18498
18499 case INDIRECT_REF:
18500 if (REFERENCE_REF_P (parm))
18501 {
18502 if (REFERENCE_REF_P (arg))
18503 arg = TREE_OPERAND (arg, 0);
18504 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
18505 strict, explain_p);
18506 }
18507 /* FALLTHRU */
18508
18509 default:
18510 /* An unresolved overload is a nondeduced context. */
18511 if (is_overloaded_fn (parm) || type_unknown_p (parm))
18512 return unify_success (explain_p);
18513 gcc_assert (EXPR_P (parm));
18514
18515 /* We must be looking at an expression. This can happen with
18516 something like:
18517
18518 template <int I>
18519 void foo(S<I>, S<I + 2>);
18520
18521 This is a "nondeduced context":
18522
18523 [deduct.type]
18524
18525 The nondeduced contexts are:
18526
18527 --A type that is a template-id in which one or more of
18528 the template-arguments is an expression that references
18529 a template-parameter.
18530
18531 In these cases, we assume deduction succeeded, but don't
18532 actually infer any unifications. */
18533
18534 if (!uses_template_parms (parm)
18535 && !template_args_equal (parm, arg))
18536 return unify_expression_unequal (explain_p, parm, arg);
18537 else
18538 return unify_success (explain_p);
18539 }
18540 }
18541 #undef RECUR_AND_CHECK_FAILURE
18542 \f
18543 /* Note that DECL can be defined in this translation unit, if
18544 required. */
18545
18546 static void
18547 mark_definable (tree decl)
18548 {
18549 tree clone;
18550 DECL_NOT_REALLY_EXTERN (decl) = 1;
18551 FOR_EACH_CLONE (clone, decl)
18552 DECL_NOT_REALLY_EXTERN (clone) = 1;
18553 }
18554
18555 /* Called if RESULT is explicitly instantiated, or is a member of an
18556 explicitly instantiated class. */
18557
18558 void
18559 mark_decl_instantiated (tree result, int extern_p)
18560 {
18561 SET_DECL_EXPLICIT_INSTANTIATION (result);
18562
18563 /* If this entity has already been written out, it's too late to
18564 make any modifications. */
18565 if (TREE_ASM_WRITTEN (result))
18566 return;
18567
18568 /* For anonymous namespace we don't need to do anything. */
18569 if (decl_anon_ns_mem_p (result))
18570 {
18571 gcc_assert (!TREE_PUBLIC (result));
18572 return;
18573 }
18574
18575 if (TREE_CODE (result) != FUNCTION_DECL)
18576 /* The TREE_PUBLIC flag for function declarations will have been
18577 set correctly by tsubst. */
18578 TREE_PUBLIC (result) = 1;
18579
18580 /* This might have been set by an earlier implicit instantiation. */
18581 DECL_COMDAT (result) = 0;
18582
18583 if (extern_p)
18584 DECL_NOT_REALLY_EXTERN (result) = 0;
18585 else
18586 {
18587 mark_definable (result);
18588 mark_needed (result);
18589 /* Always make artificials weak. */
18590 if (DECL_ARTIFICIAL (result) && flag_weak)
18591 comdat_linkage (result);
18592 /* For WIN32 we also want to put explicit instantiations in
18593 linkonce sections. */
18594 else if (TREE_PUBLIC (result))
18595 maybe_make_one_only (result);
18596 }
18597
18598 /* If EXTERN_P, then this function will not be emitted -- unless
18599 followed by an explicit instantiation, at which point its linkage
18600 will be adjusted. If !EXTERN_P, then this function will be
18601 emitted here. In neither circumstance do we want
18602 import_export_decl to adjust the linkage. */
18603 DECL_INTERFACE_KNOWN (result) = 1;
18604 }
18605
18606 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
18607 important template arguments. If any are missing, we check whether
18608 they're important by using error_mark_node for substituting into any
18609 args that were used for partial ordering (the ones between ARGS and END)
18610 and seeing if it bubbles up. */
18611
18612 static bool
18613 check_undeduced_parms (tree targs, tree args, tree end)
18614 {
18615 bool found = false;
18616 int i;
18617 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
18618 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
18619 {
18620 found = true;
18621 TREE_VEC_ELT (targs, i) = error_mark_node;
18622 }
18623 if (found)
18624 {
18625 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
18626 if (substed == error_mark_node)
18627 return true;
18628 }
18629 return false;
18630 }
18631
18632 /* Given two function templates PAT1 and PAT2, return:
18633
18634 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
18635 -1 if PAT2 is more specialized than PAT1.
18636 0 if neither is more specialized.
18637
18638 LEN indicates the number of parameters we should consider
18639 (defaulted parameters should not be considered).
18640
18641 The 1998 std underspecified function template partial ordering, and
18642 DR214 addresses the issue. We take pairs of arguments, one from
18643 each of the templates, and deduce them against each other. One of
18644 the templates will be more specialized if all the *other*
18645 template's arguments deduce against its arguments and at least one
18646 of its arguments *does* *not* deduce against the other template's
18647 corresponding argument. Deduction is done as for class templates.
18648 The arguments used in deduction have reference and top level cv
18649 qualifiers removed. Iff both arguments were originally reference
18650 types *and* deduction succeeds in both directions, an lvalue reference
18651 wins against an rvalue reference and otherwise the template
18652 with the more cv-qualified argument wins for that pairing (if
18653 neither is more cv-qualified, they both are equal). Unlike regular
18654 deduction, after all the arguments have been deduced in this way,
18655 we do *not* verify the deduced template argument values can be
18656 substituted into non-deduced contexts.
18657
18658 The logic can be a bit confusing here, because we look at deduce1 and
18659 targs1 to see if pat2 is at least as specialized, and vice versa; if we
18660 can find template arguments for pat1 to make arg1 look like arg2, that
18661 means that arg2 is at least as specialized as arg1. */
18662
18663 int
18664 more_specialized_fn (tree pat1, tree pat2, int len)
18665 {
18666 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
18667 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
18668 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
18669 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
18670 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
18671 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
18672 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
18673 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
18674 tree origs1, origs2;
18675 bool lose1 = false;
18676 bool lose2 = false;
18677
18678 /* Remove the this parameter from non-static member functions. If
18679 one is a non-static member function and the other is not a static
18680 member function, remove the first parameter from that function
18681 also. This situation occurs for operator functions where we
18682 locate both a member function (with this pointer) and non-member
18683 operator (with explicit first operand). */
18684 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
18685 {
18686 len--; /* LEN is the number of significant arguments for DECL1 */
18687 args1 = TREE_CHAIN (args1);
18688 if (!DECL_STATIC_FUNCTION_P (decl2))
18689 args2 = TREE_CHAIN (args2);
18690 }
18691 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
18692 {
18693 args2 = TREE_CHAIN (args2);
18694 if (!DECL_STATIC_FUNCTION_P (decl1))
18695 {
18696 len--;
18697 args1 = TREE_CHAIN (args1);
18698 }
18699 }
18700
18701 /* If only one is a conversion operator, they are unordered. */
18702 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
18703 return 0;
18704
18705 /* Consider the return type for a conversion function */
18706 if (DECL_CONV_FN_P (decl1))
18707 {
18708 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
18709 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
18710 len++;
18711 }
18712
18713 processing_template_decl++;
18714
18715 origs1 = args1;
18716 origs2 = args2;
18717
18718 while (len--
18719 /* Stop when an ellipsis is seen. */
18720 && args1 != NULL_TREE && args2 != NULL_TREE)
18721 {
18722 tree arg1 = TREE_VALUE (args1);
18723 tree arg2 = TREE_VALUE (args2);
18724 int deduce1, deduce2;
18725 int quals1 = -1;
18726 int quals2 = -1;
18727 int ref1 = 0;
18728 int ref2 = 0;
18729
18730 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
18731 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18732 {
18733 /* When both arguments are pack expansions, we need only
18734 unify the patterns themselves. */
18735 arg1 = PACK_EXPANSION_PATTERN (arg1);
18736 arg2 = PACK_EXPANSION_PATTERN (arg2);
18737
18738 /* This is the last comparison we need to do. */
18739 len = 0;
18740 }
18741
18742 if (TREE_CODE (arg1) == REFERENCE_TYPE)
18743 {
18744 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
18745 arg1 = TREE_TYPE (arg1);
18746 quals1 = cp_type_quals (arg1);
18747 }
18748
18749 if (TREE_CODE (arg2) == REFERENCE_TYPE)
18750 {
18751 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
18752 arg2 = TREE_TYPE (arg2);
18753 quals2 = cp_type_quals (arg2);
18754 }
18755
18756 arg1 = TYPE_MAIN_VARIANT (arg1);
18757 arg2 = TYPE_MAIN_VARIANT (arg2);
18758
18759 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
18760 {
18761 int i, len2 = list_length (args2);
18762 tree parmvec = make_tree_vec (1);
18763 tree argvec = make_tree_vec (len2);
18764 tree ta = args2;
18765
18766 /* Setup the parameter vector, which contains only ARG1. */
18767 TREE_VEC_ELT (parmvec, 0) = arg1;
18768
18769 /* Setup the argument vector, which contains the remaining
18770 arguments. */
18771 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
18772 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
18773
18774 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
18775 argvec, DEDUCE_EXACT,
18776 /*subr=*/true, /*explain_p=*/false)
18777 == 0);
18778
18779 /* We cannot deduce in the other direction, because ARG1 is
18780 a pack expansion but ARG2 is not. */
18781 deduce2 = 0;
18782 }
18783 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18784 {
18785 int i, len1 = list_length (args1);
18786 tree parmvec = make_tree_vec (1);
18787 tree argvec = make_tree_vec (len1);
18788 tree ta = args1;
18789
18790 /* Setup the parameter vector, which contains only ARG1. */
18791 TREE_VEC_ELT (parmvec, 0) = arg2;
18792
18793 /* Setup the argument vector, which contains the remaining
18794 arguments. */
18795 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
18796 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
18797
18798 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
18799 argvec, DEDUCE_EXACT,
18800 /*subr=*/true, /*explain_p=*/false)
18801 == 0);
18802
18803 /* We cannot deduce in the other direction, because ARG2 is
18804 a pack expansion but ARG1 is not.*/
18805 deduce1 = 0;
18806 }
18807
18808 else
18809 {
18810 /* The normal case, where neither argument is a pack
18811 expansion. */
18812 deduce1 = (unify (tparms1, targs1, arg1, arg2,
18813 UNIFY_ALLOW_NONE, /*explain_p=*/false)
18814 == 0);
18815 deduce2 = (unify (tparms2, targs2, arg2, arg1,
18816 UNIFY_ALLOW_NONE, /*explain_p=*/false)
18817 == 0);
18818 }
18819
18820 /* If we couldn't deduce arguments for tparms1 to make arg1 match
18821 arg2, then arg2 is not as specialized as arg1. */
18822 if (!deduce1)
18823 lose2 = true;
18824 if (!deduce2)
18825 lose1 = true;
18826
18827 /* "If, for a given type, deduction succeeds in both directions
18828 (i.e., the types are identical after the transformations above)
18829 and both P and A were reference types (before being replaced with
18830 the type referred to above):
18831 - if the type from the argument template was an lvalue reference and
18832 the type from the parameter template was not, the argument type is
18833 considered to be more specialized than the other; otherwise,
18834 - if the type from the argument template is more cv-qualified
18835 than the type from the parameter template (as described above),
18836 the argument type is considered to be more specialized than the other;
18837 otherwise,
18838 - neither type is more specialized than the other." */
18839
18840 if (deduce1 && deduce2)
18841 {
18842 if (ref1 && ref2 && ref1 != ref2)
18843 {
18844 if (ref1 > ref2)
18845 lose1 = true;
18846 else
18847 lose2 = true;
18848 }
18849 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
18850 {
18851 if ((quals1 & quals2) == quals2)
18852 lose2 = true;
18853 if ((quals1 & quals2) == quals1)
18854 lose1 = true;
18855 }
18856 }
18857
18858 if (lose1 && lose2)
18859 /* We've failed to deduce something in either direction.
18860 These must be unordered. */
18861 break;
18862
18863 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
18864 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18865 /* We have already processed all of the arguments in our
18866 handing of the pack expansion type. */
18867 len = 0;
18868
18869 args1 = TREE_CHAIN (args1);
18870 args2 = TREE_CHAIN (args2);
18871 }
18872
18873 /* "In most cases, all template parameters must have values in order for
18874 deduction to succeed, but for partial ordering purposes a template
18875 parameter may remain without a value provided it is not used in the
18876 types being used for partial ordering."
18877
18878 Thus, if we are missing any of the targs1 we need to substitute into
18879 origs1, then pat2 is not as specialized as pat1. This can happen when
18880 there is a nondeduced context. */
18881 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
18882 lose2 = true;
18883 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
18884 lose1 = true;
18885
18886 processing_template_decl--;
18887
18888 /* All things being equal, if the next argument is a pack expansion
18889 for one function but not for the other, prefer the
18890 non-variadic function. FIXME this is bogus; see c++/41958. */
18891 if (lose1 == lose2
18892 && args1 && TREE_VALUE (args1)
18893 && args2 && TREE_VALUE (args2))
18894 {
18895 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
18896 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
18897 }
18898
18899 if (lose1 == lose2)
18900 return 0;
18901 else if (!lose1)
18902 return 1;
18903 else
18904 return -1;
18905 }
18906
18907 /* Determine which of two partial specializations of TMPL is more
18908 specialized.
18909
18910 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
18911 to the first partial specialization. The TREE_PURPOSE is the
18912 innermost set of template parameters for the partial
18913 specialization. PAT2 is similar, but for the second template.
18914
18915 Return 1 if the first partial specialization is more specialized;
18916 -1 if the second is more specialized; 0 if neither is more
18917 specialized.
18918
18919 See [temp.class.order] for information about determining which of
18920 two templates is more specialized. */
18921
18922 static int
18923 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
18924 {
18925 tree targs;
18926 int winner = 0;
18927 bool any_deductions = false;
18928
18929 tree tmpl1 = TREE_VALUE (pat1);
18930 tree tmpl2 = TREE_VALUE (pat2);
18931 tree parms1 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl1);
18932 tree parms2 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl2);
18933 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
18934 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
18935
18936 /* Just like what happens for functions, if we are ordering between
18937 different template specializations, we may encounter dependent
18938 types in the arguments, and we need our dependency check functions
18939 to behave correctly. */
18940 ++processing_template_decl;
18941 targs = get_partial_spec_bindings (tmpl, parms1, specargs1, specargs2);
18942 if (targs)
18943 {
18944 --winner;
18945 any_deductions = true;
18946 }
18947
18948 targs = get_partial_spec_bindings (tmpl, parms2, specargs2, specargs1);
18949 if (targs)
18950 {
18951 ++winner;
18952 any_deductions = true;
18953 }
18954 --processing_template_decl;
18955
18956 /* In the case of a tie where at least one of the templates
18957 has a parameter pack at the end, the template with the most
18958 non-packed parameters wins. */
18959 if (winner == 0
18960 && any_deductions
18961 && (template_args_variadic_p (TREE_PURPOSE (pat1))
18962 || template_args_variadic_p (TREE_PURPOSE (pat2))))
18963 {
18964 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
18965 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
18966 int len1 = TREE_VEC_LENGTH (args1);
18967 int len2 = TREE_VEC_LENGTH (args2);
18968
18969 /* We don't count the pack expansion at the end. */
18970 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
18971 --len1;
18972 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
18973 --len2;
18974
18975 if (len1 > len2)
18976 return 1;
18977 else if (len1 < len2)
18978 return -1;
18979 }
18980
18981 return winner;
18982 }
18983
18984 /* Return the template arguments that will produce the function signature
18985 DECL from the function template FN, with the explicit template
18986 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
18987 also match. Return NULL_TREE if no satisfactory arguments could be
18988 found. */
18989
18990 static tree
18991 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
18992 {
18993 int ntparms = DECL_NTPARMS (fn);
18994 tree targs = make_tree_vec (ntparms);
18995 tree decl_type = TREE_TYPE (decl);
18996 tree decl_arg_types;
18997 tree *args;
18998 unsigned int nargs, ix;
18999 tree arg;
19000
19001 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
19002
19003 /* Never do unification on the 'this' parameter. */
19004 decl_arg_types = skip_artificial_parms_for (decl,
19005 TYPE_ARG_TYPES (decl_type));
19006
19007 nargs = list_length (decl_arg_types);
19008 args = XALLOCAVEC (tree, nargs);
19009 for (arg = decl_arg_types, ix = 0;
19010 arg != NULL_TREE && arg != void_list_node;
19011 arg = TREE_CHAIN (arg), ++ix)
19012 args[ix] = TREE_VALUE (arg);
19013
19014 if (fn_type_unification (fn, explicit_args, targs,
19015 args, ix,
19016 (check_rettype || DECL_CONV_FN_P (fn)
19017 ? TREE_TYPE (decl_type) : NULL_TREE),
19018 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
19019 /*decltype*/false)
19020 == error_mark_node)
19021 return NULL_TREE;
19022
19023 return targs;
19024 }
19025
19026 /* Return the innermost template arguments that, when applied to a partial
19027 specialization of TMPL whose innermost template parameters are
19028 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
19029 ARGS.
19030
19031 For example, suppose we have:
19032
19033 template <class T, class U> struct S {};
19034 template <class T> struct S<T*, int> {};
19035
19036 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
19037 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
19038 int}. The resulting vector will be {double}, indicating that `T'
19039 is bound to `double'. */
19040
19041 static tree
19042 get_partial_spec_bindings (tree tmpl, tree tparms, tree spec_args, tree args)
19043 {
19044 int i, ntparms = TREE_VEC_LENGTH (tparms);
19045 tree deduced_args;
19046 tree innermost_deduced_args;
19047
19048 innermost_deduced_args = make_tree_vec (ntparms);
19049 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
19050 {
19051 deduced_args = copy_node (args);
19052 SET_TMPL_ARGS_LEVEL (deduced_args,
19053 TMPL_ARGS_DEPTH (deduced_args),
19054 innermost_deduced_args);
19055 }
19056 else
19057 deduced_args = innermost_deduced_args;
19058
19059 if (unify (tparms, deduced_args,
19060 INNERMOST_TEMPLATE_ARGS (spec_args),
19061 INNERMOST_TEMPLATE_ARGS (args),
19062 UNIFY_ALLOW_NONE, /*explain_p=*/false))
19063 return NULL_TREE;
19064
19065 for (i = 0; i < ntparms; ++i)
19066 if (! TREE_VEC_ELT (innermost_deduced_args, i))
19067 return NULL_TREE;
19068
19069 /* Verify that nondeduced template arguments agree with the type
19070 obtained from argument deduction.
19071
19072 For example:
19073
19074 struct A { typedef int X; };
19075 template <class T, class U> struct C {};
19076 template <class T> struct C<T, typename T::X> {};
19077
19078 Then with the instantiation `C<A, int>', we can deduce that
19079 `T' is `A' but unify () does not check whether `typename T::X'
19080 is `int'. */
19081 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
19082 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
19083 spec_args, tmpl,
19084 tf_none, false, false);
19085 if (spec_args == error_mark_node
19086 /* We only need to check the innermost arguments; the other
19087 arguments will always agree. */
19088 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
19089 INNERMOST_TEMPLATE_ARGS (args)))
19090 return NULL_TREE;
19091
19092 /* Now that we have bindings for all of the template arguments,
19093 ensure that the arguments deduced for the template template
19094 parameters have compatible template parameter lists. See the use
19095 of template_template_parm_bindings_ok_p in fn_type_unification
19096 for more information. */
19097 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
19098 return NULL_TREE;
19099
19100 return deduced_args;
19101 }
19102
19103 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
19104 Return the TREE_LIST node with the most specialized template, if
19105 any. If there is no most specialized template, the error_mark_node
19106 is returned.
19107
19108 Note that this function does not look at, or modify, the
19109 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
19110 returned is one of the elements of INSTANTIATIONS, callers may
19111 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
19112 and retrieve it from the value returned. */
19113
19114 tree
19115 most_specialized_instantiation (tree templates)
19116 {
19117 tree fn, champ;
19118
19119 ++processing_template_decl;
19120
19121 champ = templates;
19122 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
19123 {
19124 int fate = 0;
19125
19126 if (get_bindings (TREE_VALUE (champ),
19127 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
19128 NULL_TREE, /*check_ret=*/true))
19129 fate--;
19130
19131 if (get_bindings (TREE_VALUE (fn),
19132 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
19133 NULL_TREE, /*check_ret=*/true))
19134 fate++;
19135
19136 if (fate == -1)
19137 champ = fn;
19138 else if (!fate)
19139 {
19140 /* Equally specialized, move to next function. If there
19141 is no next function, nothing's most specialized. */
19142 fn = TREE_CHAIN (fn);
19143 champ = fn;
19144 if (!fn)
19145 break;
19146 }
19147 }
19148
19149 if (champ)
19150 /* Now verify that champ is better than everything earlier in the
19151 instantiation list. */
19152 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn))
19153 if (get_bindings (TREE_VALUE (champ),
19154 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
19155 NULL_TREE, /*check_ret=*/true)
19156 || !get_bindings (TREE_VALUE (fn),
19157 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
19158 NULL_TREE, /*check_ret=*/true))
19159 {
19160 champ = NULL_TREE;
19161 break;
19162 }
19163
19164 processing_template_decl--;
19165
19166 if (!champ)
19167 return error_mark_node;
19168
19169 return champ;
19170 }
19171
19172 /* If DECL is a specialization of some template, return the most
19173 general such template. Otherwise, returns NULL_TREE.
19174
19175 For example, given:
19176
19177 template <class T> struct S { template <class U> void f(U); };
19178
19179 if TMPL is `template <class U> void S<int>::f(U)' this will return
19180 the full template. This function will not trace past partial
19181 specializations, however. For example, given in addition:
19182
19183 template <class T> struct S<T*> { template <class U> void f(U); };
19184
19185 if TMPL is `template <class U> void S<int*>::f(U)' this will return
19186 `template <class T> template <class U> S<T*>::f(U)'. */
19187
19188 tree
19189 most_general_template (tree decl)
19190 {
19191 if (TREE_CODE (decl) != TEMPLATE_DECL)
19192 {
19193 if (tree tinfo = get_template_info (decl))
19194 decl = TI_TEMPLATE (tinfo);
19195 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
19196 template friend, or a FIELD_DECL for a capture pack. */
19197 if (TREE_CODE (decl) != TEMPLATE_DECL)
19198 return NULL_TREE;
19199 }
19200
19201 /* Look for more and more general templates. */
19202 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
19203 {
19204 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
19205 (See cp-tree.h for details.) */
19206 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
19207 break;
19208
19209 if (CLASS_TYPE_P (TREE_TYPE (decl))
19210 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
19211 break;
19212
19213 /* Stop if we run into an explicitly specialized class template. */
19214 if (!DECL_NAMESPACE_SCOPE_P (decl)
19215 && DECL_CONTEXT (decl)
19216 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
19217 break;
19218
19219 decl = DECL_TI_TEMPLATE (decl);
19220 }
19221
19222 return decl;
19223 }
19224
19225 /* Return the most specialized of the template partial specializations
19226 which can produce TARGET, a specialization of some class or variable
19227 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
19228 a TEMPLATE_DECL node corresponding to the partial specialization, while
19229 the TREE_PURPOSE is the set of template arguments that must be
19230 substituted into the template pattern in order to generate TARGET.
19231
19232 If the choice of partial specialization is ambiguous, a diagnostic
19233 is issued, and the error_mark_node is returned. If there are no
19234 partial specializations matching TARGET, then NULL_TREE is
19235 returned, indicating that the primary template should be used. */
19236
19237 static tree
19238 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
19239 {
19240 tree list = NULL_TREE;
19241 tree t;
19242 tree champ;
19243 int fate;
19244 bool ambiguous_p;
19245 tree outer_args = NULL_TREE;
19246 tree tmpl, args;
19247
19248 if (TYPE_P (target))
19249 {
19250 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
19251 tmpl = TI_TEMPLATE (tinfo);
19252 args = TI_ARGS (tinfo);
19253 }
19254 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
19255 {
19256 tmpl = TREE_OPERAND (target, 0);
19257 args = TREE_OPERAND (target, 1);
19258 }
19259 else if (VAR_P (target))
19260 {
19261 tree tinfo = DECL_TEMPLATE_INFO (target);
19262 tmpl = TI_TEMPLATE (tinfo);
19263 args = TI_ARGS (tinfo);
19264 }
19265 else
19266 gcc_unreachable ();
19267
19268 tree main_tmpl = most_general_template (tmpl);
19269
19270 /* For determining which partial specialization to use, only the
19271 innermost args are interesting. */
19272 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
19273 {
19274 outer_args = strip_innermost_template_args (args, 1);
19275 args = INNERMOST_TEMPLATE_ARGS (args);
19276 }
19277
19278 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
19279 {
19280 tree partial_spec_args;
19281 tree spec_args;
19282 tree spec_tmpl = TREE_VALUE (t);
19283
19284 partial_spec_args = TREE_PURPOSE (t);
19285
19286 ++processing_template_decl;
19287
19288 if (outer_args)
19289 {
19290 /* Discard the outer levels of args, and then substitute in the
19291 template args from the enclosing class. */
19292 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
19293 partial_spec_args = tsubst_template_args
19294 (partial_spec_args, outer_args, tf_none, NULL_TREE);
19295
19296 /* And the same for the partial specialization TEMPLATE_DECL. */
19297 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
19298 }
19299
19300 partial_spec_args =
19301 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
19302 partial_spec_args,
19303 tmpl, tf_none,
19304 /*require_all_args=*/true,
19305 /*use_default_args=*/true);
19306
19307 --processing_template_decl;
19308
19309 if (partial_spec_args == error_mark_node)
19310 return error_mark_node;
19311 if (spec_tmpl == error_mark_node)
19312 return error_mark_node;
19313
19314 tree parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
19315 spec_args = get_partial_spec_bindings (tmpl, parms,
19316 partial_spec_args,
19317 args);
19318 if (spec_args)
19319 {
19320 if (outer_args)
19321 spec_args = add_to_template_args (outer_args, spec_args);
19322 list = tree_cons (spec_args, TREE_VALUE (t), list);
19323 TREE_TYPE (list) = TREE_TYPE (t);
19324 }
19325 }
19326
19327 if (! list)
19328 return NULL_TREE;
19329
19330 ambiguous_p = false;
19331 t = list;
19332 champ = t;
19333 t = TREE_CHAIN (t);
19334 for (; t; t = TREE_CHAIN (t))
19335 {
19336 fate = more_specialized_partial_spec (tmpl, champ, t);
19337 if (fate == 1)
19338 ;
19339 else
19340 {
19341 if (fate == 0)
19342 {
19343 t = TREE_CHAIN (t);
19344 if (! t)
19345 {
19346 ambiguous_p = true;
19347 break;
19348 }
19349 }
19350 champ = t;
19351 }
19352 }
19353
19354 if (!ambiguous_p)
19355 for (t = list; t && t != champ; t = TREE_CHAIN (t))
19356 {
19357 fate = more_specialized_partial_spec (tmpl, champ, t);
19358 if (fate != 1)
19359 {
19360 ambiguous_p = true;
19361 break;
19362 }
19363 }
19364
19365 if (ambiguous_p)
19366 {
19367 const char *str;
19368 char *spaces = NULL;
19369 if (!(complain & tf_error))
19370 return error_mark_node;
19371 if (TYPE_P (target))
19372 error ("ambiguous template instantiation for %q#T", target);
19373 else
19374 error ("ambiguous template instantiation for %q#D", target);
19375 str = ngettext ("candidate is:", "candidates are:", list_length (list));
19376 for (t = list; t; t = TREE_CHAIN (t))
19377 {
19378 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
19379 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
19380 "%s %#S", spaces ? spaces : str, subst);
19381 spaces = spaces ? spaces : get_spaces (str);
19382 }
19383 free (spaces);
19384 return error_mark_node;
19385 }
19386
19387 return champ;
19388 }
19389
19390 /* Explicitly instantiate DECL. */
19391
19392 void
19393 do_decl_instantiation (tree decl, tree storage)
19394 {
19395 tree result = NULL_TREE;
19396 int extern_p = 0;
19397
19398 if (!decl || decl == error_mark_node)
19399 /* An error occurred, for which grokdeclarator has already issued
19400 an appropriate message. */
19401 return;
19402 else if (! DECL_LANG_SPECIFIC (decl))
19403 {
19404 error ("explicit instantiation of non-template %q#D", decl);
19405 return;
19406 }
19407
19408 bool var_templ = (DECL_TEMPLATE_INFO (decl)
19409 && variable_template_p (DECL_TI_TEMPLATE (decl)));
19410
19411 if (VAR_P (decl) && !var_templ)
19412 {
19413 /* There is an asymmetry here in the way VAR_DECLs and
19414 FUNCTION_DECLs are handled by grokdeclarator. In the case of
19415 the latter, the DECL we get back will be marked as a
19416 template instantiation, and the appropriate
19417 DECL_TEMPLATE_INFO will be set up. This does not happen for
19418 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
19419 should handle VAR_DECLs as it currently handles
19420 FUNCTION_DECLs. */
19421 if (!DECL_CLASS_SCOPE_P (decl))
19422 {
19423 error ("%qD is not a static data member of a class template", decl);
19424 return;
19425 }
19426 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
19427 if (!result || !VAR_P (result))
19428 {
19429 error ("no matching template for %qD found", decl);
19430 return;
19431 }
19432 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
19433 {
19434 error ("type %qT for explicit instantiation %qD does not match "
19435 "declared type %qT", TREE_TYPE (result), decl,
19436 TREE_TYPE (decl));
19437 return;
19438 }
19439 }
19440 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
19441 {
19442 error ("explicit instantiation of %q#D", decl);
19443 return;
19444 }
19445 else
19446 result = decl;
19447
19448 /* Check for various error cases. Note that if the explicit
19449 instantiation is valid the RESULT will currently be marked as an
19450 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
19451 until we get here. */
19452
19453 if (DECL_TEMPLATE_SPECIALIZATION (result))
19454 {
19455 /* DR 259 [temp.spec].
19456
19457 Both an explicit instantiation and a declaration of an explicit
19458 specialization shall not appear in a program unless the explicit
19459 instantiation follows a declaration of the explicit specialization.
19460
19461 For a given set of template parameters, if an explicit
19462 instantiation of a template appears after a declaration of an
19463 explicit specialization for that template, the explicit
19464 instantiation has no effect. */
19465 return;
19466 }
19467 else if (DECL_EXPLICIT_INSTANTIATION (result))
19468 {
19469 /* [temp.spec]
19470
19471 No program shall explicitly instantiate any template more
19472 than once.
19473
19474 We check DECL_NOT_REALLY_EXTERN so as not to complain when
19475 the first instantiation was `extern' and the second is not,
19476 and EXTERN_P for the opposite case. */
19477 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
19478 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
19479 /* If an "extern" explicit instantiation follows an ordinary
19480 explicit instantiation, the template is instantiated. */
19481 if (extern_p)
19482 return;
19483 }
19484 else if (!DECL_IMPLICIT_INSTANTIATION (result))
19485 {
19486 error ("no matching template for %qD found", result);
19487 return;
19488 }
19489 else if (!DECL_TEMPLATE_INFO (result))
19490 {
19491 permerror (input_location, "explicit instantiation of non-template %q#D", result);
19492 return;
19493 }
19494
19495 if (storage == NULL_TREE)
19496 ;
19497 else if (storage == ridpointers[(int) RID_EXTERN])
19498 {
19499 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
19500 pedwarn (input_location, OPT_Wpedantic,
19501 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
19502 "instantiations");
19503 extern_p = 1;
19504 }
19505 else
19506 error ("storage class %qD applied to template instantiation", storage);
19507
19508 check_explicit_instantiation_namespace (result);
19509 mark_decl_instantiated (result, extern_p);
19510 if (! extern_p)
19511 instantiate_decl (result, /*defer_ok=*/1,
19512 /*expl_inst_class_mem_p=*/false);
19513 }
19514
19515 static void
19516 mark_class_instantiated (tree t, int extern_p)
19517 {
19518 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
19519 SET_CLASSTYPE_INTERFACE_KNOWN (t);
19520 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
19521 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
19522 if (! extern_p)
19523 {
19524 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
19525 rest_of_type_compilation (t, 1);
19526 }
19527 }
19528
19529 /* Called from do_type_instantiation through binding_table_foreach to
19530 do recursive instantiation for the type bound in ENTRY. */
19531 static void
19532 bt_instantiate_type_proc (binding_entry entry, void *data)
19533 {
19534 tree storage = *(tree *) data;
19535
19536 if (MAYBE_CLASS_TYPE_P (entry->type)
19537 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
19538 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
19539 }
19540
19541 /* Called from do_type_instantiation to instantiate a member
19542 (a member function or a static member variable) of an
19543 explicitly instantiated class template. */
19544 static void
19545 instantiate_class_member (tree decl, int extern_p)
19546 {
19547 mark_decl_instantiated (decl, extern_p);
19548 if (! extern_p)
19549 instantiate_decl (decl, /*defer_ok=*/1,
19550 /*expl_inst_class_mem_p=*/true);
19551 }
19552
19553 /* Perform an explicit instantiation of template class T. STORAGE, if
19554 non-null, is the RID for extern, inline or static. COMPLAIN is
19555 nonzero if this is called from the parser, zero if called recursively,
19556 since the standard is unclear (as detailed below). */
19557
19558 void
19559 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
19560 {
19561 int extern_p = 0;
19562 int nomem_p = 0;
19563 int static_p = 0;
19564 int previous_instantiation_extern_p = 0;
19565
19566 if (TREE_CODE (t) == TYPE_DECL)
19567 t = TREE_TYPE (t);
19568
19569 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
19570 {
19571 tree tmpl =
19572 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
19573 if (tmpl)
19574 error ("explicit instantiation of non-class template %qD", tmpl);
19575 else
19576 error ("explicit instantiation of non-template type %qT", t);
19577 return;
19578 }
19579
19580 complete_type (t);
19581
19582 if (!COMPLETE_TYPE_P (t))
19583 {
19584 if (complain & tf_error)
19585 error ("explicit instantiation of %q#T before definition of template",
19586 t);
19587 return;
19588 }
19589
19590 if (storage != NULL_TREE)
19591 {
19592 if (!in_system_header_at (input_location))
19593 {
19594 if (storage == ridpointers[(int) RID_EXTERN])
19595 {
19596 if (cxx_dialect == cxx98)
19597 pedwarn (input_location, OPT_Wpedantic,
19598 "ISO C++ 1998 forbids the use of %<extern%> on "
19599 "explicit instantiations");
19600 }
19601 else
19602 pedwarn (input_location, OPT_Wpedantic,
19603 "ISO C++ forbids the use of %qE"
19604 " on explicit instantiations", storage);
19605 }
19606
19607 if (storage == ridpointers[(int) RID_INLINE])
19608 nomem_p = 1;
19609 else if (storage == ridpointers[(int) RID_EXTERN])
19610 extern_p = 1;
19611 else if (storage == ridpointers[(int) RID_STATIC])
19612 static_p = 1;
19613 else
19614 {
19615 error ("storage class %qD applied to template instantiation",
19616 storage);
19617 extern_p = 0;
19618 }
19619 }
19620
19621 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
19622 {
19623 /* DR 259 [temp.spec].
19624
19625 Both an explicit instantiation and a declaration of an explicit
19626 specialization shall not appear in a program unless the explicit
19627 instantiation follows a declaration of the explicit specialization.
19628
19629 For a given set of template parameters, if an explicit
19630 instantiation of a template appears after a declaration of an
19631 explicit specialization for that template, the explicit
19632 instantiation has no effect. */
19633 return;
19634 }
19635 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
19636 {
19637 /* [temp.spec]
19638
19639 No program shall explicitly instantiate any template more
19640 than once.
19641
19642 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
19643 instantiation was `extern'. If EXTERN_P then the second is.
19644 These cases are OK. */
19645 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
19646
19647 if (!previous_instantiation_extern_p && !extern_p
19648 && (complain & tf_error))
19649 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
19650
19651 /* If we've already instantiated the template, just return now. */
19652 if (!CLASSTYPE_INTERFACE_ONLY (t))
19653 return;
19654 }
19655
19656 check_explicit_instantiation_namespace (TYPE_NAME (t));
19657 mark_class_instantiated (t, extern_p);
19658
19659 if (nomem_p)
19660 return;
19661
19662 {
19663 tree tmp;
19664
19665 /* In contrast to implicit instantiation, where only the
19666 declarations, and not the definitions, of members are
19667 instantiated, we have here:
19668
19669 [temp.explicit]
19670
19671 The explicit instantiation of a class template specialization
19672 implies the instantiation of all of its members not
19673 previously explicitly specialized in the translation unit
19674 containing the explicit instantiation.
19675
19676 Of course, we can't instantiate member template classes, since
19677 we don't have any arguments for them. Note that the standard
19678 is unclear on whether the instantiation of the members are
19679 *explicit* instantiations or not. However, the most natural
19680 interpretation is that it should be an explicit instantiation. */
19681
19682 if (! static_p)
19683 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
19684 if (TREE_CODE (tmp) == FUNCTION_DECL
19685 && DECL_TEMPLATE_INSTANTIATION (tmp))
19686 instantiate_class_member (tmp, extern_p);
19687
19688 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
19689 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
19690 instantiate_class_member (tmp, extern_p);
19691
19692 if (CLASSTYPE_NESTED_UTDS (t))
19693 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
19694 bt_instantiate_type_proc, &storage);
19695 }
19696 }
19697
19698 /* Given a function DECL, which is a specialization of TMPL, modify
19699 DECL to be a re-instantiation of TMPL with the same template
19700 arguments. TMPL should be the template into which tsubst'ing
19701 should occur for DECL, not the most general template.
19702
19703 One reason for doing this is a scenario like this:
19704
19705 template <class T>
19706 void f(const T&, int i);
19707
19708 void g() { f(3, 7); }
19709
19710 template <class T>
19711 void f(const T& t, const int i) { }
19712
19713 Note that when the template is first instantiated, with
19714 instantiate_template, the resulting DECL will have no name for the
19715 first parameter, and the wrong type for the second. So, when we go
19716 to instantiate the DECL, we regenerate it. */
19717
19718 static void
19719 regenerate_decl_from_template (tree decl, tree tmpl)
19720 {
19721 /* The arguments used to instantiate DECL, from the most general
19722 template. */
19723 tree args;
19724 tree code_pattern;
19725
19726 args = DECL_TI_ARGS (decl);
19727 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
19728
19729 /* Make sure that we can see identifiers, and compute access
19730 correctly. */
19731 push_access_scope (decl);
19732
19733 if (TREE_CODE (decl) == FUNCTION_DECL)
19734 {
19735 tree decl_parm;
19736 tree pattern_parm;
19737 tree specs;
19738 int args_depth;
19739 int parms_depth;
19740
19741 args_depth = TMPL_ARGS_DEPTH (args);
19742 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
19743 if (args_depth > parms_depth)
19744 args = get_innermost_template_args (args, parms_depth);
19745
19746 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
19747 args, tf_error, NULL_TREE,
19748 /*defer_ok*/false);
19749 if (specs && specs != error_mark_node)
19750 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
19751 specs);
19752
19753 /* Merge parameter declarations. */
19754 decl_parm = skip_artificial_parms_for (decl,
19755 DECL_ARGUMENTS (decl));
19756 pattern_parm
19757 = skip_artificial_parms_for (code_pattern,
19758 DECL_ARGUMENTS (code_pattern));
19759 while (decl_parm && !DECL_PACK_P (pattern_parm))
19760 {
19761 tree parm_type;
19762 tree attributes;
19763
19764 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
19765 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
19766 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
19767 NULL_TREE);
19768 parm_type = type_decays_to (parm_type);
19769 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
19770 TREE_TYPE (decl_parm) = parm_type;
19771 attributes = DECL_ATTRIBUTES (pattern_parm);
19772 if (DECL_ATTRIBUTES (decl_parm) != attributes)
19773 {
19774 DECL_ATTRIBUTES (decl_parm) = attributes;
19775 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
19776 }
19777 decl_parm = DECL_CHAIN (decl_parm);
19778 pattern_parm = DECL_CHAIN (pattern_parm);
19779 }
19780 /* Merge any parameters that match with the function parameter
19781 pack. */
19782 if (pattern_parm && DECL_PACK_P (pattern_parm))
19783 {
19784 int i, len;
19785 tree expanded_types;
19786 /* Expand the TYPE_PACK_EXPANSION that provides the types for
19787 the parameters in this function parameter pack. */
19788 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
19789 args, tf_error, NULL_TREE);
19790 len = TREE_VEC_LENGTH (expanded_types);
19791 for (i = 0; i < len; i++)
19792 {
19793 tree parm_type;
19794 tree attributes;
19795
19796 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
19797 /* Rename the parameter to include the index. */
19798 DECL_NAME (decl_parm) =
19799 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
19800 parm_type = TREE_VEC_ELT (expanded_types, i);
19801 parm_type = type_decays_to (parm_type);
19802 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
19803 TREE_TYPE (decl_parm) = parm_type;
19804 attributes = DECL_ATTRIBUTES (pattern_parm);
19805 if (DECL_ATTRIBUTES (decl_parm) != attributes)
19806 {
19807 DECL_ATTRIBUTES (decl_parm) = attributes;
19808 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
19809 }
19810 decl_parm = DECL_CHAIN (decl_parm);
19811 }
19812 }
19813 /* Merge additional specifiers from the CODE_PATTERN. */
19814 if (DECL_DECLARED_INLINE_P (code_pattern)
19815 && !DECL_DECLARED_INLINE_P (decl))
19816 DECL_DECLARED_INLINE_P (decl) = 1;
19817 }
19818 else if (VAR_P (decl))
19819 {
19820 DECL_INITIAL (decl) =
19821 tsubst_expr (DECL_INITIAL (code_pattern), args,
19822 tf_error, DECL_TI_TEMPLATE (decl),
19823 /*integral_constant_expression_p=*/false);
19824 if (VAR_HAD_UNKNOWN_BOUND (decl))
19825 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
19826 tf_error, DECL_TI_TEMPLATE (decl));
19827 }
19828 else
19829 gcc_unreachable ();
19830
19831 pop_access_scope (decl);
19832 }
19833
19834 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
19835 substituted to get DECL. */
19836
19837 tree
19838 template_for_substitution (tree decl)
19839 {
19840 tree tmpl = DECL_TI_TEMPLATE (decl);
19841
19842 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
19843 for the instantiation. This is not always the most general
19844 template. Consider, for example:
19845
19846 template <class T>
19847 struct S { template <class U> void f();
19848 template <> void f<int>(); };
19849
19850 and an instantiation of S<double>::f<int>. We want TD to be the
19851 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
19852 while (/* An instantiation cannot have a definition, so we need a
19853 more general template. */
19854 DECL_TEMPLATE_INSTANTIATION (tmpl)
19855 /* We must also deal with friend templates. Given:
19856
19857 template <class T> struct S {
19858 template <class U> friend void f() {};
19859 };
19860
19861 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
19862 so far as the language is concerned, but that's still
19863 where we get the pattern for the instantiation from. On
19864 other hand, if the definition comes outside the class, say:
19865
19866 template <class T> struct S {
19867 template <class U> friend void f();
19868 };
19869 template <class U> friend void f() {}
19870
19871 we don't need to look any further. That's what the check for
19872 DECL_INITIAL is for. */
19873 || (TREE_CODE (decl) == FUNCTION_DECL
19874 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
19875 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
19876 {
19877 /* The present template, TD, should not be a definition. If it
19878 were a definition, we should be using it! Note that we
19879 cannot restructure the loop to just keep going until we find
19880 a template with a definition, since that might go too far if
19881 a specialization was declared, but not defined. */
19882
19883 /* Fetch the more general template. */
19884 tmpl = DECL_TI_TEMPLATE (tmpl);
19885 }
19886
19887 return tmpl;
19888 }
19889
19890 /* Returns true if we need to instantiate this template instance even if we
19891 know we aren't going to emit it.. */
19892
19893 bool
19894 always_instantiate_p (tree decl)
19895 {
19896 /* We always instantiate inline functions so that we can inline them. An
19897 explicit instantiation declaration prohibits implicit instantiation of
19898 non-inline functions. With high levels of optimization, we would
19899 normally inline non-inline functions -- but we're not allowed to do
19900 that for "extern template" functions. Therefore, we check
19901 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
19902 return ((TREE_CODE (decl) == FUNCTION_DECL
19903 && (DECL_DECLARED_INLINE_P (decl)
19904 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
19905 /* And we need to instantiate static data members so that
19906 their initializers are available in integral constant
19907 expressions. */
19908 || (VAR_P (decl)
19909 && decl_maybe_constant_var_p (decl)));
19910 }
19911
19912 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
19913 instantiate it now, modifying TREE_TYPE (fn). */
19914
19915 void
19916 maybe_instantiate_noexcept (tree fn)
19917 {
19918 tree fntype, spec, noex, clone;
19919
19920 /* Don't instantiate a noexcept-specification from template context. */
19921 if (processing_template_decl)
19922 return;
19923
19924 if (DECL_CLONED_FUNCTION_P (fn))
19925 fn = DECL_CLONED_FUNCTION (fn);
19926 fntype = TREE_TYPE (fn);
19927 spec = TYPE_RAISES_EXCEPTIONS (fntype);
19928
19929 if (!spec || !TREE_PURPOSE (spec))
19930 return;
19931
19932 noex = TREE_PURPOSE (spec);
19933
19934 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
19935 {
19936 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
19937 spec = get_defaulted_eh_spec (fn);
19938 else if (push_tinst_level (fn))
19939 {
19940 push_access_scope (fn);
19941 push_deferring_access_checks (dk_no_deferred);
19942 input_location = DECL_SOURCE_LOCATION (fn);
19943 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
19944 DEFERRED_NOEXCEPT_ARGS (noex),
19945 tf_warning_or_error, fn,
19946 /*function_p=*/false,
19947 /*integral_constant_expression_p=*/true);
19948 pop_deferring_access_checks ();
19949 pop_access_scope (fn);
19950 pop_tinst_level ();
19951 spec = build_noexcept_spec (noex, tf_warning_or_error);
19952 if (spec == error_mark_node)
19953 spec = noexcept_false_spec;
19954 }
19955 else
19956 spec = noexcept_false_spec;
19957
19958 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
19959 }
19960
19961 FOR_EACH_CLONE (clone, fn)
19962 {
19963 if (TREE_TYPE (clone) == fntype)
19964 TREE_TYPE (clone) = TREE_TYPE (fn);
19965 else
19966 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
19967 }
19968 }
19969
19970 /* Produce the definition of D, a _DECL generated from a template. If
19971 DEFER_OK is nonzero, then we don't have to actually do the
19972 instantiation now; we just have to do it sometime. Normally it is
19973 an error if this is an explicit instantiation but D is undefined.
19974 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
19975 explicitly instantiated class template. */
19976
19977 tree
19978 instantiate_decl (tree d, int defer_ok,
19979 bool expl_inst_class_mem_p)
19980 {
19981 tree tmpl = DECL_TI_TEMPLATE (d);
19982 tree gen_args;
19983 tree args;
19984 tree td;
19985 tree code_pattern;
19986 tree spec;
19987 tree gen_tmpl;
19988 bool pattern_defined;
19989 location_t saved_loc = input_location;
19990 int saved_unevaluated_operand = cp_unevaluated_operand;
19991 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
19992 bool external_p;
19993 bool deleted_p;
19994 tree fn_context;
19995 bool nested;
19996
19997 /* This function should only be used to instantiate templates for
19998 functions and static member variables. */
19999 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
20000
20001 /* Variables are never deferred; if instantiation is required, they
20002 are instantiated right away. That allows for better code in the
20003 case that an expression refers to the value of the variable --
20004 if the variable has a constant value the referring expression can
20005 take advantage of that fact. */
20006 if (VAR_P (d)
20007 || DECL_DECLARED_CONSTEXPR_P (d))
20008 defer_ok = 0;
20009
20010 /* Don't instantiate cloned functions. Instead, instantiate the
20011 functions they cloned. */
20012 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
20013 d = DECL_CLONED_FUNCTION (d);
20014
20015 if (DECL_TEMPLATE_INSTANTIATED (d)
20016 || (TREE_CODE (d) == FUNCTION_DECL
20017 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
20018 || DECL_TEMPLATE_SPECIALIZATION (d))
20019 /* D has already been instantiated or explicitly specialized, so
20020 there's nothing for us to do here.
20021
20022 It might seem reasonable to check whether or not D is an explicit
20023 instantiation, and, if so, stop here. But when an explicit
20024 instantiation is deferred until the end of the compilation,
20025 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
20026 the instantiation. */
20027 return d;
20028
20029 /* Check to see whether we know that this template will be
20030 instantiated in some other file, as with "extern template"
20031 extension. */
20032 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
20033
20034 /* In general, we do not instantiate such templates. */
20035 if (external_p && !always_instantiate_p (d))
20036 return d;
20037
20038 gen_tmpl = most_general_template (tmpl);
20039 gen_args = DECL_TI_ARGS (d);
20040
20041 if (tmpl != gen_tmpl)
20042 /* We should already have the extra args. */
20043 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
20044 == TMPL_ARGS_DEPTH (gen_args));
20045 /* And what's in the hash table should match D. */
20046 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
20047 || spec == NULL_TREE);
20048
20049 /* This needs to happen before any tsubsting. */
20050 if (! push_tinst_level (d))
20051 return d;
20052
20053 timevar_push (TV_TEMPLATE_INST);
20054
20055 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
20056 for the instantiation. */
20057 td = template_for_substitution (d);
20058 code_pattern = DECL_TEMPLATE_RESULT (td);
20059
20060 /* We should never be trying to instantiate a member of a class
20061 template or partial specialization. */
20062 gcc_assert (d != code_pattern);
20063
20064 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
20065 || DECL_TEMPLATE_SPECIALIZATION (td))
20066 /* In the case of a friend template whose definition is provided
20067 outside the class, we may have too many arguments. Drop the
20068 ones we don't need. The same is true for specializations. */
20069 args = get_innermost_template_args
20070 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
20071 else
20072 args = gen_args;
20073
20074 if (TREE_CODE (d) == FUNCTION_DECL)
20075 {
20076 deleted_p = DECL_DELETED_FN (code_pattern);
20077 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
20078 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
20079 || deleted_p);
20080 }
20081 else
20082 {
20083 deleted_p = false;
20084 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
20085 }
20086
20087 /* We may be in the middle of deferred access check. Disable it now. */
20088 push_deferring_access_checks (dk_no_deferred);
20089
20090 /* Unless an explicit instantiation directive has already determined
20091 the linkage of D, remember that a definition is available for
20092 this entity. */
20093 if (pattern_defined
20094 && !DECL_INTERFACE_KNOWN (d)
20095 && !DECL_NOT_REALLY_EXTERN (d))
20096 mark_definable (d);
20097
20098 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
20099 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
20100 input_location = DECL_SOURCE_LOCATION (d);
20101
20102 /* If D is a member of an explicitly instantiated class template,
20103 and no definition is available, treat it like an implicit
20104 instantiation. */
20105 if (!pattern_defined && expl_inst_class_mem_p
20106 && DECL_EXPLICIT_INSTANTIATION (d))
20107 {
20108 /* Leave linkage flags alone on instantiations with anonymous
20109 visibility. */
20110 if (TREE_PUBLIC (d))
20111 {
20112 DECL_NOT_REALLY_EXTERN (d) = 0;
20113 DECL_INTERFACE_KNOWN (d) = 0;
20114 }
20115 SET_DECL_IMPLICIT_INSTANTIATION (d);
20116 }
20117
20118 /* Defer all other templates, unless we have been explicitly
20119 forbidden from doing so. */
20120 if (/* If there is no definition, we cannot instantiate the
20121 template. */
20122 ! pattern_defined
20123 /* If it's OK to postpone instantiation, do so. */
20124 || defer_ok
20125 /* If this is a static data member that will be defined
20126 elsewhere, we don't want to instantiate the entire data
20127 member, but we do want to instantiate the initializer so that
20128 we can substitute that elsewhere. */
20129 || (external_p && VAR_P (d))
20130 /* Handle here a deleted function too, avoid generating
20131 its body (c++/61080). */
20132 || deleted_p)
20133 {
20134 /* The definition of the static data member is now required so
20135 we must substitute the initializer. */
20136 if (VAR_P (d)
20137 && !DECL_INITIAL (d)
20138 && DECL_INITIAL (code_pattern))
20139 {
20140 tree ns;
20141 tree init;
20142 bool const_init = false;
20143 bool enter_context = DECL_CLASS_SCOPE_P (d);
20144
20145 ns = decl_namespace_context (d);
20146 push_nested_namespace (ns);
20147 if (enter_context)
20148 push_nested_class (DECL_CONTEXT (d));
20149 init = tsubst_expr (DECL_INITIAL (code_pattern),
20150 args,
20151 tf_warning_or_error, NULL_TREE,
20152 /*integral_constant_expression_p=*/false);
20153 /* If instantiating the initializer involved instantiating this
20154 again, don't call cp_finish_decl twice. */
20155 if (!DECL_INITIAL (d))
20156 {
20157 /* Make sure the initializer is still constant, in case of
20158 circular dependency (template/instantiate6.C). */
20159 const_init
20160 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
20161 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
20162 /*asmspec_tree=*/NULL_TREE,
20163 LOOKUP_ONLYCONVERTING);
20164 }
20165 if (enter_context)
20166 pop_nested_class ();
20167 pop_nested_namespace (ns);
20168 }
20169
20170 /* We restore the source position here because it's used by
20171 add_pending_template. */
20172 input_location = saved_loc;
20173
20174 if (at_eof && !pattern_defined
20175 && DECL_EXPLICIT_INSTANTIATION (d)
20176 && DECL_NOT_REALLY_EXTERN (d))
20177 /* [temp.explicit]
20178
20179 The definition of a non-exported function template, a
20180 non-exported member function template, or a non-exported
20181 member function or static data member of a class template
20182 shall be present in every translation unit in which it is
20183 explicitly instantiated. */
20184 permerror (input_location, "explicit instantiation of %qD "
20185 "but no definition available", d);
20186
20187 /* If we're in unevaluated context, we just wanted to get the
20188 constant value; this isn't an odr use, so don't queue
20189 a full instantiation. */
20190 if (cp_unevaluated_operand != 0)
20191 goto out;
20192 /* ??? Historically, we have instantiated inline functions, even
20193 when marked as "extern template". */
20194 if (!(external_p && VAR_P (d)))
20195 add_pending_template (d);
20196 goto out;
20197 }
20198 /* Tell the repository that D is available in this translation unit
20199 -- and see if it is supposed to be instantiated here. */
20200 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
20201 {
20202 /* In a PCH file, despite the fact that the repository hasn't
20203 requested instantiation in the PCH it is still possible that
20204 an instantiation will be required in a file that includes the
20205 PCH. */
20206 if (pch_file)
20207 add_pending_template (d);
20208 /* Instantiate inline functions so that the inliner can do its
20209 job, even though we'll not be emitting a copy of this
20210 function. */
20211 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
20212 goto out;
20213 }
20214
20215 fn_context = decl_function_context (d);
20216 nested = (current_function_decl != NULL_TREE);
20217 if (!fn_context)
20218 push_to_top_level ();
20219 else
20220 {
20221 if (nested)
20222 push_function_context ();
20223 cp_unevaluated_operand = 0;
20224 c_inhibit_evaluation_warnings = 0;
20225 }
20226
20227 /* Mark D as instantiated so that recursive calls to
20228 instantiate_decl do not try to instantiate it again. */
20229 DECL_TEMPLATE_INSTANTIATED (d) = 1;
20230
20231 /* Regenerate the declaration in case the template has been modified
20232 by a subsequent redeclaration. */
20233 regenerate_decl_from_template (d, td);
20234
20235 /* We already set the file and line above. Reset them now in case
20236 they changed as a result of calling regenerate_decl_from_template. */
20237 input_location = DECL_SOURCE_LOCATION (d);
20238
20239 if (VAR_P (d))
20240 {
20241 tree init;
20242 bool const_init = false;
20243
20244 /* Clear out DECL_RTL; whatever was there before may not be right
20245 since we've reset the type of the declaration. */
20246 SET_DECL_RTL (d, NULL);
20247 DECL_IN_AGGR_P (d) = 0;
20248
20249 /* The initializer is placed in DECL_INITIAL by
20250 regenerate_decl_from_template so we don't need to
20251 push/pop_access_scope again here. Pull it out so that
20252 cp_finish_decl can process it. */
20253 init = DECL_INITIAL (d);
20254 DECL_INITIAL (d) = NULL_TREE;
20255 DECL_INITIALIZED_P (d) = 0;
20256
20257 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
20258 initializer. That function will defer actual emission until
20259 we have a chance to determine linkage. */
20260 DECL_EXTERNAL (d) = 0;
20261
20262 /* Enter the scope of D so that access-checking works correctly. */
20263 bool enter_context = DECL_CLASS_SCOPE_P (d);
20264 if (enter_context)
20265 push_nested_class (DECL_CONTEXT (d));
20266
20267 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
20268 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
20269
20270 if (enter_context)
20271 pop_nested_class ();
20272
20273 if (variable_template_p (td))
20274 note_variable_template_instantiation (d);
20275 }
20276 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
20277 synthesize_method (d);
20278 else if (TREE_CODE (d) == FUNCTION_DECL)
20279 {
20280 hash_map<tree, tree> *saved_local_specializations;
20281 tree subst_decl;
20282 tree tmpl_parm;
20283 tree spec_parm;
20284 tree block = NULL_TREE;
20285
20286 /* Save away the current list, in case we are instantiating one
20287 template from within the body of another. */
20288 saved_local_specializations = local_specializations;
20289
20290 /* Set up the list of local specializations. */
20291 local_specializations = new hash_map<tree, tree>;
20292
20293 /* Set up context. */
20294 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
20295 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
20296 block = push_stmt_list ();
20297 else
20298 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
20299
20300 /* Some typedefs referenced from within the template code need to be
20301 access checked at template instantiation time, i.e now. These
20302 types were added to the template at parsing time. Let's get those
20303 and perform the access checks then. */
20304 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
20305 gen_args);
20306
20307 /* Create substitution entries for the parameters. */
20308 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
20309 tmpl_parm = DECL_ARGUMENTS (subst_decl);
20310 spec_parm = DECL_ARGUMENTS (d);
20311 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
20312 {
20313 register_local_specialization (spec_parm, tmpl_parm);
20314 spec_parm = skip_artificial_parms_for (d, spec_parm);
20315 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
20316 }
20317 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
20318 {
20319 if (!DECL_PACK_P (tmpl_parm))
20320 {
20321 register_local_specialization (spec_parm, tmpl_parm);
20322 spec_parm = DECL_CHAIN (spec_parm);
20323 }
20324 else
20325 {
20326 /* Register the (value) argument pack as a specialization of
20327 TMPL_PARM, then move on. */
20328 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
20329 register_local_specialization (argpack, tmpl_parm);
20330 }
20331 }
20332 gcc_assert (!spec_parm);
20333
20334 /* Substitute into the body of the function. */
20335 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
20336 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
20337 tf_warning_or_error, tmpl);
20338 else
20339 {
20340 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
20341 tf_warning_or_error, tmpl,
20342 /*integral_constant_expression_p=*/false);
20343
20344 /* Set the current input_location to the end of the function
20345 so that finish_function knows where we are. */
20346 input_location
20347 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
20348
20349 /* Remember if we saw an infinite loop in the template. */
20350 current_function_infinite_loop
20351 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
20352 }
20353
20354 /* We don't need the local specializations any more. */
20355 delete local_specializations;
20356 local_specializations = saved_local_specializations;
20357
20358 /* Finish the function. */
20359 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
20360 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
20361 DECL_SAVED_TREE (d) = pop_stmt_list (block);
20362 else
20363 {
20364 d = finish_function (0);
20365 expand_or_defer_fn (d);
20366 }
20367
20368 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
20369 cp_check_omp_declare_reduction (d);
20370 }
20371
20372 /* We're not deferring instantiation any more. */
20373 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
20374
20375 if (!fn_context)
20376 pop_from_top_level ();
20377 else if (nested)
20378 pop_function_context ();
20379
20380 out:
20381 input_location = saved_loc;
20382 cp_unevaluated_operand = saved_unevaluated_operand;
20383 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
20384 pop_deferring_access_checks ();
20385 pop_tinst_level ();
20386
20387 timevar_pop (TV_TEMPLATE_INST);
20388
20389 return d;
20390 }
20391
20392 /* Run through the list of templates that we wish we could
20393 instantiate, and instantiate any we can. RETRIES is the
20394 number of times we retry pending template instantiation. */
20395
20396 void
20397 instantiate_pending_templates (int retries)
20398 {
20399 int reconsider;
20400 location_t saved_loc = input_location;
20401
20402 /* Instantiating templates may trigger vtable generation. This in turn
20403 may require further template instantiations. We place a limit here
20404 to avoid infinite loop. */
20405 if (pending_templates && retries >= max_tinst_depth)
20406 {
20407 tree decl = pending_templates->tinst->decl;
20408
20409 fatal_error ("template instantiation depth exceeds maximum of %d"
20410 " instantiating %q+D, possibly from virtual table generation"
20411 " (use -ftemplate-depth= to increase the maximum)",
20412 max_tinst_depth, decl);
20413 if (TREE_CODE (decl) == FUNCTION_DECL)
20414 /* Pretend that we defined it. */
20415 DECL_INITIAL (decl) = error_mark_node;
20416 return;
20417 }
20418
20419 do
20420 {
20421 struct pending_template **t = &pending_templates;
20422 struct pending_template *last = NULL;
20423 reconsider = 0;
20424 while (*t)
20425 {
20426 tree instantiation = reopen_tinst_level ((*t)->tinst);
20427 bool complete = false;
20428
20429 if (TYPE_P (instantiation))
20430 {
20431 tree fn;
20432
20433 if (!COMPLETE_TYPE_P (instantiation))
20434 {
20435 instantiate_class_template (instantiation);
20436 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
20437 for (fn = TYPE_METHODS (instantiation);
20438 fn;
20439 fn = TREE_CHAIN (fn))
20440 if (! DECL_ARTIFICIAL (fn))
20441 instantiate_decl (fn,
20442 /*defer_ok=*/0,
20443 /*expl_inst_class_mem_p=*/false);
20444 if (COMPLETE_TYPE_P (instantiation))
20445 reconsider = 1;
20446 }
20447
20448 complete = COMPLETE_TYPE_P (instantiation);
20449 }
20450 else
20451 {
20452 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
20453 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
20454 {
20455 instantiation
20456 = instantiate_decl (instantiation,
20457 /*defer_ok=*/0,
20458 /*expl_inst_class_mem_p=*/false);
20459 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
20460 reconsider = 1;
20461 }
20462
20463 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
20464 || DECL_TEMPLATE_INSTANTIATED (instantiation));
20465 }
20466
20467 if (complete)
20468 /* If INSTANTIATION has been instantiated, then we don't
20469 need to consider it again in the future. */
20470 *t = (*t)->next;
20471 else
20472 {
20473 last = *t;
20474 t = &(*t)->next;
20475 }
20476 tinst_depth = 0;
20477 current_tinst_level = NULL;
20478 }
20479 last_pending_template = last;
20480 }
20481 while (reconsider);
20482
20483 input_location = saved_loc;
20484 }
20485
20486 /* Substitute ARGVEC into T, which is a list of initializers for
20487 either base class or a non-static data member. The TREE_PURPOSEs
20488 are DECLs, and the TREE_VALUEs are the initializer values. Used by
20489 instantiate_decl. */
20490
20491 static tree
20492 tsubst_initializer_list (tree t, tree argvec)
20493 {
20494 tree inits = NULL_TREE;
20495
20496 for (; t; t = TREE_CHAIN (t))
20497 {
20498 tree decl;
20499 tree init;
20500 tree expanded_bases = NULL_TREE;
20501 tree expanded_arguments = NULL_TREE;
20502 int i, len = 1;
20503
20504 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
20505 {
20506 tree expr;
20507 tree arg;
20508
20509 /* Expand the base class expansion type into separate base
20510 classes. */
20511 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
20512 tf_warning_or_error,
20513 NULL_TREE);
20514 if (expanded_bases == error_mark_node)
20515 continue;
20516
20517 /* We'll be building separate TREE_LISTs of arguments for
20518 each base. */
20519 len = TREE_VEC_LENGTH (expanded_bases);
20520 expanded_arguments = make_tree_vec (len);
20521 for (i = 0; i < len; i++)
20522 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
20523
20524 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
20525 expand each argument in the TREE_VALUE of t. */
20526 expr = make_node (EXPR_PACK_EXPANSION);
20527 PACK_EXPANSION_LOCAL_P (expr) = true;
20528 PACK_EXPANSION_PARAMETER_PACKS (expr) =
20529 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
20530
20531 if (TREE_VALUE (t) == void_type_node)
20532 /* VOID_TYPE_NODE is used to indicate
20533 value-initialization. */
20534 {
20535 for (i = 0; i < len; i++)
20536 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
20537 }
20538 else
20539 {
20540 /* Substitute parameter packs into each argument in the
20541 TREE_LIST. */
20542 in_base_initializer = 1;
20543 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
20544 {
20545 tree expanded_exprs;
20546
20547 /* Expand the argument. */
20548 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
20549 expanded_exprs
20550 = tsubst_pack_expansion (expr, argvec,
20551 tf_warning_or_error,
20552 NULL_TREE);
20553 if (expanded_exprs == error_mark_node)
20554 continue;
20555
20556 /* Prepend each of the expanded expressions to the
20557 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
20558 for (i = 0; i < len; i++)
20559 {
20560 TREE_VEC_ELT (expanded_arguments, i) =
20561 tree_cons (NULL_TREE,
20562 TREE_VEC_ELT (expanded_exprs, i),
20563 TREE_VEC_ELT (expanded_arguments, i));
20564 }
20565 }
20566 in_base_initializer = 0;
20567
20568 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
20569 since we built them backwards. */
20570 for (i = 0; i < len; i++)
20571 {
20572 TREE_VEC_ELT (expanded_arguments, i) =
20573 nreverse (TREE_VEC_ELT (expanded_arguments, i));
20574 }
20575 }
20576 }
20577
20578 for (i = 0; i < len; ++i)
20579 {
20580 if (expanded_bases)
20581 {
20582 decl = TREE_VEC_ELT (expanded_bases, i);
20583 decl = expand_member_init (decl);
20584 init = TREE_VEC_ELT (expanded_arguments, i);
20585 }
20586 else
20587 {
20588 tree tmp;
20589 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
20590 tf_warning_or_error, NULL_TREE);
20591
20592 decl = expand_member_init (decl);
20593 if (decl && !DECL_P (decl))
20594 in_base_initializer = 1;
20595
20596 init = TREE_VALUE (t);
20597 tmp = init;
20598 if (init != void_type_node)
20599 init = tsubst_expr (init, argvec,
20600 tf_warning_or_error, NULL_TREE,
20601 /*integral_constant_expression_p=*/false);
20602 if (init == NULL_TREE && tmp != NULL_TREE)
20603 /* If we had an initializer but it instantiated to nothing,
20604 value-initialize the object. This will only occur when
20605 the initializer was a pack expansion where the parameter
20606 packs used in that expansion were of length zero. */
20607 init = void_type_node;
20608 in_base_initializer = 0;
20609 }
20610
20611 if (decl)
20612 {
20613 init = build_tree_list (decl, init);
20614 TREE_CHAIN (init) = inits;
20615 inits = init;
20616 }
20617 }
20618 }
20619 return inits;
20620 }
20621
20622 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
20623
20624 static void
20625 set_current_access_from_decl (tree decl)
20626 {
20627 if (TREE_PRIVATE (decl))
20628 current_access_specifier = access_private_node;
20629 else if (TREE_PROTECTED (decl))
20630 current_access_specifier = access_protected_node;
20631 else
20632 current_access_specifier = access_public_node;
20633 }
20634
20635 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
20636 is the instantiation (which should have been created with
20637 start_enum) and ARGS are the template arguments to use. */
20638
20639 static void
20640 tsubst_enum (tree tag, tree newtag, tree args)
20641 {
20642 tree e;
20643
20644 if (SCOPED_ENUM_P (newtag))
20645 begin_scope (sk_scoped_enum, newtag);
20646
20647 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
20648 {
20649 tree value;
20650 tree decl;
20651
20652 decl = TREE_VALUE (e);
20653 /* Note that in a template enum, the TREE_VALUE is the
20654 CONST_DECL, not the corresponding INTEGER_CST. */
20655 value = tsubst_expr (DECL_INITIAL (decl),
20656 args, tf_warning_or_error, NULL_TREE,
20657 /*integral_constant_expression_p=*/true);
20658
20659 /* Give this enumeration constant the correct access. */
20660 set_current_access_from_decl (decl);
20661
20662 /* Actually build the enumerator itself. */
20663 build_enumerator
20664 (DECL_NAME (decl), value, newtag, DECL_SOURCE_LOCATION (decl));
20665 }
20666
20667 if (SCOPED_ENUM_P (newtag))
20668 finish_scope ();
20669
20670 finish_enum_value_list (newtag);
20671 finish_enum (newtag);
20672
20673 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
20674 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
20675 }
20676
20677 /* DECL is a FUNCTION_DECL that is a template specialization. Return
20678 its type -- but without substituting the innermost set of template
20679 arguments. So, innermost set of template parameters will appear in
20680 the type. */
20681
20682 tree
20683 get_mostly_instantiated_function_type (tree decl)
20684 {
20685 tree fn_type;
20686 tree tmpl;
20687 tree targs;
20688 tree tparms;
20689 int parm_depth;
20690
20691 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
20692 targs = DECL_TI_ARGS (decl);
20693 tparms = DECL_TEMPLATE_PARMS (tmpl);
20694 parm_depth = TMPL_PARMS_DEPTH (tparms);
20695
20696 /* There should be as many levels of arguments as there are levels
20697 of parameters. */
20698 gcc_assert (parm_depth == TMPL_ARGS_DEPTH (targs));
20699
20700 fn_type = TREE_TYPE (tmpl);
20701
20702 if (parm_depth == 1)
20703 /* No substitution is necessary. */
20704 ;
20705 else
20706 {
20707 int i;
20708 tree partial_args;
20709
20710 /* Replace the innermost level of the TARGS with NULL_TREEs to
20711 let tsubst know not to substitute for those parameters. */
20712 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
20713 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
20714 SET_TMPL_ARGS_LEVEL (partial_args, i,
20715 TMPL_ARGS_LEVEL (targs, i));
20716 SET_TMPL_ARGS_LEVEL (partial_args,
20717 TMPL_ARGS_DEPTH (targs),
20718 make_tree_vec (DECL_NTPARMS (tmpl)));
20719
20720 /* Make sure that we can see identifiers, and compute access
20721 correctly. */
20722 push_access_scope (decl);
20723
20724 ++processing_template_decl;
20725 /* Now, do the (partial) substitution to figure out the
20726 appropriate function type. */
20727 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
20728 --processing_template_decl;
20729
20730 /* Substitute into the template parameters to obtain the real
20731 innermost set of parameters. This step is important if the
20732 innermost set of template parameters contains value
20733 parameters whose types depend on outer template parameters. */
20734 TREE_VEC_LENGTH (partial_args)--;
20735 tparms = tsubst_template_parms (tparms, partial_args, tf_error);
20736
20737 pop_access_scope (decl);
20738 }
20739
20740 return fn_type;
20741 }
20742
20743 /* Return truthvalue if we're processing a template different from
20744 the last one involved in diagnostics. */
20745 bool
20746 problematic_instantiation_changed (void)
20747 {
20748 return current_tinst_level != last_error_tinst_level;
20749 }
20750
20751 /* Remember current template involved in diagnostics. */
20752 void
20753 record_last_problematic_instantiation (void)
20754 {
20755 last_error_tinst_level = current_tinst_level;
20756 }
20757
20758 struct tinst_level *
20759 current_instantiation (void)
20760 {
20761 return current_tinst_level;
20762 }
20763
20764 /* [temp.param] Check that template non-type parm TYPE is of an allowable
20765 type. Return zero for ok, nonzero for disallowed. Issue error and
20766 warning messages under control of COMPLAIN. */
20767
20768 static int
20769 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
20770 {
20771 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
20772 return 0;
20773 else if (POINTER_TYPE_P (type))
20774 return 0;
20775 else if (TYPE_PTRMEM_P (type))
20776 return 0;
20777 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
20778 return 0;
20779 else if (TREE_CODE (type) == TYPENAME_TYPE)
20780 return 0;
20781 else if (TREE_CODE (type) == DECLTYPE_TYPE)
20782 return 0;
20783 else if (TREE_CODE (type) == NULLPTR_TYPE)
20784 return 0;
20785
20786 if (complain & tf_error)
20787 {
20788 if (type == error_mark_node)
20789 inform (input_location, "invalid template non-type parameter");
20790 else
20791 error ("%q#T is not a valid type for a template non-type parameter",
20792 type);
20793 }
20794 return 1;
20795 }
20796
20797 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
20798 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
20799
20800 static bool
20801 dependent_type_p_r (tree type)
20802 {
20803 tree scope;
20804
20805 /* [temp.dep.type]
20806
20807 A type is dependent if it is:
20808
20809 -- a template parameter. Template template parameters are types
20810 for us (since TYPE_P holds true for them) so we handle
20811 them here. */
20812 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
20813 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
20814 return true;
20815 /* -- a qualified-id with a nested-name-specifier which contains a
20816 class-name that names a dependent type or whose unqualified-id
20817 names a dependent type. */
20818 if (TREE_CODE (type) == TYPENAME_TYPE)
20819 return true;
20820 /* -- a cv-qualified type where the cv-unqualified type is
20821 dependent.
20822 No code is necessary for this bullet; the code below handles
20823 cv-qualified types, and we don't want to strip aliases with
20824 TYPE_MAIN_VARIANT because of DR 1558. */
20825 /* -- a compound type constructed from any dependent type. */
20826 if (TYPE_PTRMEM_P (type))
20827 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
20828 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
20829 (type)));
20830 else if (TYPE_PTR_P (type)
20831 || TREE_CODE (type) == REFERENCE_TYPE)
20832 return dependent_type_p (TREE_TYPE (type));
20833 else if (TREE_CODE (type) == FUNCTION_TYPE
20834 || TREE_CODE (type) == METHOD_TYPE)
20835 {
20836 tree arg_type;
20837
20838 if (dependent_type_p (TREE_TYPE (type)))
20839 return true;
20840 for (arg_type = TYPE_ARG_TYPES (type);
20841 arg_type;
20842 arg_type = TREE_CHAIN (arg_type))
20843 if (dependent_type_p (TREE_VALUE (arg_type)))
20844 return true;
20845 return false;
20846 }
20847 /* -- an array type constructed from any dependent type or whose
20848 size is specified by a constant expression that is
20849 value-dependent.
20850
20851 We checked for type- and value-dependence of the bounds in
20852 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
20853 if (TREE_CODE (type) == ARRAY_TYPE)
20854 {
20855 if (TYPE_DOMAIN (type)
20856 && dependent_type_p (TYPE_DOMAIN (type)))
20857 return true;
20858 return dependent_type_p (TREE_TYPE (type));
20859 }
20860
20861 /* -- a template-id in which either the template name is a template
20862 parameter ... */
20863 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
20864 return true;
20865 /* ... or any of the template arguments is a dependent type or
20866 an expression that is type-dependent or value-dependent. */
20867 else if (TYPE_TEMPLATE_INFO (type)
20868 && (any_dependent_template_arguments_p
20869 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (type)))))
20870 return true;
20871
20872 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
20873 dependent; if the argument of the `typeof' expression is not
20874 type-dependent, then it should already been have resolved. */
20875 if (TREE_CODE (type) == TYPEOF_TYPE
20876 || TREE_CODE (type) == DECLTYPE_TYPE
20877 || TREE_CODE (type) == UNDERLYING_TYPE)
20878 return true;
20879
20880 /* A template argument pack is dependent if any of its packed
20881 arguments are. */
20882 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
20883 {
20884 tree args = ARGUMENT_PACK_ARGS (type);
20885 int i, len = TREE_VEC_LENGTH (args);
20886 for (i = 0; i < len; ++i)
20887 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
20888 return true;
20889 }
20890
20891 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
20892 be template parameters. */
20893 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
20894 return true;
20895
20896 /* The standard does not specifically mention types that are local
20897 to template functions or local classes, but they should be
20898 considered dependent too. For example:
20899
20900 template <int I> void f() {
20901 enum E { a = I };
20902 S<sizeof (E)> s;
20903 }
20904
20905 The size of `E' cannot be known until the value of `I' has been
20906 determined. Therefore, `E' must be considered dependent. */
20907 scope = TYPE_CONTEXT (type);
20908 if (scope && TYPE_P (scope))
20909 return dependent_type_p (scope);
20910 /* Don't use type_dependent_expression_p here, as it can lead
20911 to infinite recursion trying to determine whether a lambda
20912 nested in a lambda is dependent (c++/47687). */
20913 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
20914 && DECL_LANG_SPECIFIC (scope)
20915 && DECL_TEMPLATE_INFO (scope)
20916 && (any_dependent_template_arguments_p
20917 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
20918 return true;
20919
20920 /* Other types are non-dependent. */
20921 return false;
20922 }
20923
20924 /* Returns TRUE if TYPE is dependent, in the sense of
20925 [temp.dep.type]. Note that a NULL type is considered dependent. */
20926
20927 bool
20928 dependent_type_p (tree type)
20929 {
20930 /* If there are no template parameters in scope, then there can't be
20931 any dependent types. */
20932 if (!processing_template_decl)
20933 {
20934 /* If we are not processing a template, then nobody should be
20935 providing us with a dependent type. */
20936 gcc_assert (type);
20937 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
20938 return false;
20939 }
20940
20941 /* If the type is NULL, we have not computed a type for the entity
20942 in question; in that case, the type is dependent. */
20943 if (!type)
20944 return true;
20945
20946 /* Erroneous types can be considered non-dependent. */
20947 if (type == error_mark_node)
20948 return false;
20949
20950 /* If we have not already computed the appropriate value for TYPE,
20951 do so now. */
20952 if (!TYPE_DEPENDENT_P_VALID (type))
20953 {
20954 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
20955 TYPE_DEPENDENT_P_VALID (type) = 1;
20956 }
20957
20958 return TYPE_DEPENDENT_P (type);
20959 }
20960
20961 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
20962 lookup. In other words, a dependent type that is not the current
20963 instantiation. */
20964
20965 bool
20966 dependent_scope_p (tree scope)
20967 {
20968 return (scope && TYPE_P (scope) && dependent_type_p (scope)
20969 && !currently_open_class (scope));
20970 }
20971
20972 /* T is a SCOPE_REF; return whether we need to consider it
20973 instantiation-dependent so that we can check access at instantiation
20974 time even though we know which member it resolves to. */
20975
20976 static bool
20977 instantiation_dependent_scope_ref_p (tree t)
20978 {
20979 if (DECL_P (TREE_OPERAND (t, 1))
20980 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
20981 && accessible_in_template_p (TREE_OPERAND (t, 0),
20982 TREE_OPERAND (t, 1)))
20983 return false;
20984 else
20985 return true;
20986 }
20987
20988 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
20989 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
20990 expression. */
20991
20992 /* Note that this predicate is not appropriate for general expressions;
20993 only constant expressions (that satisfy potential_constant_expression)
20994 can be tested for value dependence. */
20995
20996 bool
20997 value_dependent_expression_p (tree expression)
20998 {
20999 if (!processing_template_decl)
21000 return false;
21001
21002 /* A name declared with a dependent type. */
21003 if (DECL_P (expression) && type_dependent_expression_p (expression))
21004 return true;
21005
21006 switch (TREE_CODE (expression))
21007 {
21008 case IDENTIFIER_NODE:
21009 /* A name that has not been looked up -- must be dependent. */
21010 return true;
21011
21012 case TEMPLATE_PARM_INDEX:
21013 /* A non-type template parm. */
21014 return true;
21015
21016 case CONST_DECL:
21017 /* A non-type template parm. */
21018 if (DECL_TEMPLATE_PARM_P (expression))
21019 return true;
21020 return value_dependent_expression_p (DECL_INITIAL (expression));
21021
21022 case VAR_DECL:
21023 /* A constant with literal type and is initialized
21024 with an expression that is value-dependent.
21025
21026 Note that a non-dependent parenthesized initializer will have
21027 already been replaced with its constant value, so if we see
21028 a TREE_LIST it must be dependent. */
21029 if (DECL_INITIAL (expression)
21030 && decl_constant_var_p (expression)
21031 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
21032 /* cp_finish_decl doesn't fold reference initializers. */
21033 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
21034 || value_dependent_expression_p (DECL_INITIAL (expression))))
21035 return true;
21036 return false;
21037
21038 case DYNAMIC_CAST_EXPR:
21039 case STATIC_CAST_EXPR:
21040 case CONST_CAST_EXPR:
21041 case REINTERPRET_CAST_EXPR:
21042 case CAST_EXPR:
21043 /* These expressions are value-dependent if the type to which
21044 the cast occurs is dependent or the expression being casted
21045 is value-dependent. */
21046 {
21047 tree type = TREE_TYPE (expression);
21048
21049 if (dependent_type_p (type))
21050 return true;
21051
21052 /* A functional cast has a list of operands. */
21053 expression = TREE_OPERAND (expression, 0);
21054 if (!expression)
21055 {
21056 /* If there are no operands, it must be an expression such
21057 as "int()". This should not happen for aggregate types
21058 because it would form non-constant expressions. */
21059 gcc_assert (cxx_dialect >= cxx11
21060 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
21061
21062 return false;
21063 }
21064
21065 if (TREE_CODE (expression) == TREE_LIST)
21066 return any_value_dependent_elements_p (expression);
21067
21068 return value_dependent_expression_p (expression);
21069 }
21070
21071 case SIZEOF_EXPR:
21072 if (SIZEOF_EXPR_TYPE_P (expression))
21073 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
21074 /* FALLTHRU */
21075 case ALIGNOF_EXPR:
21076 case TYPEID_EXPR:
21077 /* A `sizeof' expression is value-dependent if the operand is
21078 type-dependent or is a pack expansion. */
21079 expression = TREE_OPERAND (expression, 0);
21080 if (PACK_EXPANSION_P (expression))
21081 return true;
21082 else if (TYPE_P (expression))
21083 return dependent_type_p (expression);
21084 return instantiation_dependent_expression_p (expression);
21085
21086 case AT_ENCODE_EXPR:
21087 /* An 'encode' expression is value-dependent if the operand is
21088 type-dependent. */
21089 expression = TREE_OPERAND (expression, 0);
21090 return dependent_type_p (expression);
21091
21092 case NOEXCEPT_EXPR:
21093 expression = TREE_OPERAND (expression, 0);
21094 return instantiation_dependent_expression_p (expression);
21095
21096 case SCOPE_REF:
21097 /* All instantiation-dependent expressions should also be considered
21098 value-dependent. */
21099 return instantiation_dependent_scope_ref_p (expression);
21100
21101 case COMPONENT_REF:
21102 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
21103 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
21104
21105 case NONTYPE_ARGUMENT_PACK:
21106 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
21107 is value-dependent. */
21108 {
21109 tree values = ARGUMENT_PACK_ARGS (expression);
21110 int i, len = TREE_VEC_LENGTH (values);
21111
21112 for (i = 0; i < len; ++i)
21113 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
21114 return true;
21115
21116 return false;
21117 }
21118
21119 case TRAIT_EXPR:
21120 {
21121 tree type2 = TRAIT_EXPR_TYPE2 (expression);
21122 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
21123 || (type2 ? dependent_type_p (type2) : false));
21124 }
21125
21126 case MODOP_EXPR:
21127 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
21128 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
21129
21130 case ARRAY_REF:
21131 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
21132 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
21133
21134 case ADDR_EXPR:
21135 {
21136 tree op = TREE_OPERAND (expression, 0);
21137 return (value_dependent_expression_p (op)
21138 || has_value_dependent_address (op));
21139 }
21140
21141 case CALL_EXPR:
21142 {
21143 tree fn = get_callee_fndecl (expression);
21144 int i, nargs;
21145 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
21146 return true;
21147 nargs = call_expr_nargs (expression);
21148 for (i = 0; i < nargs; ++i)
21149 {
21150 tree op = CALL_EXPR_ARG (expression, i);
21151 /* In a call to a constexpr member function, look through the
21152 implicit ADDR_EXPR on the object argument so that it doesn't
21153 cause the call to be considered value-dependent. We also
21154 look through it in potential_constant_expression. */
21155 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
21156 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
21157 && TREE_CODE (op) == ADDR_EXPR)
21158 op = TREE_OPERAND (op, 0);
21159 if (value_dependent_expression_p (op))
21160 return true;
21161 }
21162 return false;
21163 }
21164
21165 case TEMPLATE_ID_EXPR:
21166 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
21167 type-dependent. */
21168 return type_dependent_expression_p (expression);
21169
21170 case CONSTRUCTOR:
21171 {
21172 unsigned ix;
21173 tree val;
21174 if (dependent_type_p (TREE_TYPE (expression)))
21175 return true;
21176 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
21177 if (value_dependent_expression_p (val))
21178 return true;
21179 return false;
21180 }
21181
21182 case STMT_EXPR:
21183 /* Treat a GNU statement expression as dependent to avoid crashing
21184 under instantiate_non_dependent_expr; it can't be constant. */
21185 return true;
21186
21187 default:
21188 /* A constant expression is value-dependent if any subexpression is
21189 value-dependent. */
21190 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
21191 {
21192 case tcc_reference:
21193 case tcc_unary:
21194 case tcc_comparison:
21195 case tcc_binary:
21196 case tcc_expression:
21197 case tcc_vl_exp:
21198 {
21199 int i, len = cp_tree_operand_length (expression);
21200
21201 for (i = 0; i < len; i++)
21202 {
21203 tree t = TREE_OPERAND (expression, i);
21204
21205 /* In some cases, some of the operands may be missing.l
21206 (For example, in the case of PREDECREMENT_EXPR, the
21207 amount to increment by may be missing.) That doesn't
21208 make the expression dependent. */
21209 if (t && value_dependent_expression_p (t))
21210 return true;
21211 }
21212 }
21213 break;
21214 default:
21215 break;
21216 }
21217 break;
21218 }
21219
21220 /* The expression is not value-dependent. */
21221 return false;
21222 }
21223
21224 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
21225 [temp.dep.expr]. Note that an expression with no type is
21226 considered dependent. Other parts of the compiler arrange for an
21227 expression with type-dependent subexpressions to have no type, so
21228 this function doesn't have to be fully recursive. */
21229
21230 bool
21231 type_dependent_expression_p (tree expression)
21232 {
21233 if (!processing_template_decl)
21234 return false;
21235
21236 if (expression == NULL_TREE || expression == error_mark_node)
21237 return false;
21238
21239 /* An unresolved name is always dependent. */
21240 if (identifier_p (expression) || TREE_CODE (expression) == USING_DECL)
21241 return true;
21242
21243 /* Some expression forms are never type-dependent. */
21244 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
21245 || TREE_CODE (expression) == SIZEOF_EXPR
21246 || TREE_CODE (expression) == ALIGNOF_EXPR
21247 || TREE_CODE (expression) == AT_ENCODE_EXPR
21248 || TREE_CODE (expression) == NOEXCEPT_EXPR
21249 || TREE_CODE (expression) == TRAIT_EXPR
21250 || TREE_CODE (expression) == TYPEID_EXPR
21251 || TREE_CODE (expression) == DELETE_EXPR
21252 || TREE_CODE (expression) == VEC_DELETE_EXPR
21253 || TREE_CODE (expression) == THROW_EXPR)
21254 return false;
21255
21256 /* The types of these expressions depends only on the type to which
21257 the cast occurs. */
21258 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
21259 || TREE_CODE (expression) == STATIC_CAST_EXPR
21260 || TREE_CODE (expression) == CONST_CAST_EXPR
21261 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
21262 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
21263 || TREE_CODE (expression) == CAST_EXPR)
21264 return dependent_type_p (TREE_TYPE (expression));
21265
21266 /* The types of these expressions depends only on the type created
21267 by the expression. */
21268 if (TREE_CODE (expression) == NEW_EXPR
21269 || TREE_CODE (expression) == VEC_NEW_EXPR)
21270 {
21271 /* For NEW_EXPR tree nodes created inside a template, either
21272 the object type itself or a TREE_LIST may appear as the
21273 operand 1. */
21274 tree type = TREE_OPERAND (expression, 1);
21275 if (TREE_CODE (type) == TREE_LIST)
21276 /* This is an array type. We need to check array dimensions
21277 as well. */
21278 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
21279 || value_dependent_expression_p
21280 (TREE_OPERAND (TREE_VALUE (type), 1));
21281 else
21282 return dependent_type_p (type);
21283 }
21284
21285 if (TREE_CODE (expression) == SCOPE_REF)
21286 {
21287 tree scope = TREE_OPERAND (expression, 0);
21288 tree name = TREE_OPERAND (expression, 1);
21289
21290 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
21291 contains an identifier associated by name lookup with one or more
21292 declarations declared with a dependent type, or...a
21293 nested-name-specifier or qualified-id that names a member of an
21294 unknown specialization. */
21295 return (type_dependent_expression_p (name)
21296 || dependent_scope_p (scope));
21297 }
21298
21299 if (TREE_CODE (expression) == FUNCTION_DECL
21300 && DECL_LANG_SPECIFIC (expression)
21301 && DECL_TEMPLATE_INFO (expression)
21302 && (any_dependent_template_arguments_p
21303 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
21304 return true;
21305
21306 if (TREE_CODE (expression) == TEMPLATE_DECL
21307 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
21308 return false;
21309
21310 if (TREE_CODE (expression) == STMT_EXPR)
21311 expression = stmt_expr_value_expr (expression);
21312
21313 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
21314 {
21315 tree elt;
21316 unsigned i;
21317
21318 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
21319 {
21320 if (type_dependent_expression_p (elt))
21321 return true;
21322 }
21323 return false;
21324 }
21325
21326 /* A static data member of the current instantiation with incomplete
21327 array type is type-dependent, as the definition and specializations
21328 can have different bounds. */
21329 if (VAR_P (expression)
21330 && DECL_CLASS_SCOPE_P (expression)
21331 && dependent_type_p (DECL_CONTEXT (expression))
21332 && VAR_HAD_UNKNOWN_BOUND (expression))
21333 return true;
21334
21335 /* An array of unknown bound depending on a variadic parameter, eg:
21336
21337 template<typename... Args>
21338 void foo (Args... args)
21339 {
21340 int arr[] = { args... };
21341 }
21342
21343 template<int... vals>
21344 void bar ()
21345 {
21346 int arr[] = { vals... };
21347 }
21348
21349 If the array has no length and has an initializer, it must be that
21350 we couldn't determine its length in cp_complete_array_type because
21351 it is dependent. */
21352 if (VAR_P (expression)
21353 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
21354 && !TYPE_DOMAIN (TREE_TYPE (expression))
21355 && DECL_INITIAL (expression))
21356 return true;
21357
21358 if (TREE_TYPE (expression) == unknown_type_node)
21359 {
21360 if (TREE_CODE (expression) == ADDR_EXPR)
21361 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
21362 if (TREE_CODE (expression) == COMPONENT_REF
21363 || TREE_CODE (expression) == OFFSET_REF)
21364 {
21365 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
21366 return true;
21367 expression = TREE_OPERAND (expression, 1);
21368 if (identifier_p (expression))
21369 return false;
21370 }
21371 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
21372 if (TREE_CODE (expression) == SCOPE_REF)
21373 return false;
21374
21375 /* Always dependent, on the number of arguments if nothing else. */
21376 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
21377 return true;
21378
21379 if (BASELINK_P (expression))
21380 {
21381 if (BASELINK_OPTYPE (expression)
21382 && dependent_type_p (BASELINK_OPTYPE (expression)))
21383 return true;
21384 expression = BASELINK_FUNCTIONS (expression);
21385 }
21386
21387 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
21388 {
21389 if (any_dependent_template_arguments_p
21390 (TREE_OPERAND (expression, 1)))
21391 return true;
21392 expression = TREE_OPERAND (expression, 0);
21393 }
21394 gcc_assert (TREE_CODE (expression) == OVERLOAD
21395 || TREE_CODE (expression) == FUNCTION_DECL);
21396
21397 while (expression)
21398 {
21399 if (type_dependent_expression_p (OVL_CURRENT (expression)))
21400 return true;
21401 expression = OVL_NEXT (expression);
21402 }
21403 return false;
21404 }
21405
21406 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
21407
21408 return (dependent_type_p (TREE_TYPE (expression)));
21409 }
21410
21411 /* walk_tree callback function for instantiation_dependent_expression_p,
21412 below. Returns non-zero if a dependent subexpression is found. */
21413
21414 static tree
21415 instantiation_dependent_r (tree *tp, int *walk_subtrees,
21416 void * /*data*/)
21417 {
21418 if (TYPE_P (*tp))
21419 {
21420 /* We don't have to worry about decltype currently because decltype
21421 of an instantiation-dependent expr is a dependent type. This
21422 might change depending on the resolution of DR 1172. */
21423 *walk_subtrees = false;
21424 return NULL_TREE;
21425 }
21426 enum tree_code code = TREE_CODE (*tp);
21427 switch (code)
21428 {
21429 /* Don't treat an argument list as dependent just because it has no
21430 TREE_TYPE. */
21431 case TREE_LIST:
21432 case TREE_VEC:
21433 return NULL_TREE;
21434
21435 case VAR_DECL:
21436 case CONST_DECL:
21437 /* A constant with a dependent initializer is dependent. */
21438 if (value_dependent_expression_p (*tp))
21439 return *tp;
21440 break;
21441
21442 case TEMPLATE_PARM_INDEX:
21443 return *tp;
21444
21445 /* Handle expressions with type operands. */
21446 case SIZEOF_EXPR:
21447 case ALIGNOF_EXPR:
21448 case TYPEID_EXPR:
21449 case AT_ENCODE_EXPR:
21450 {
21451 tree op = TREE_OPERAND (*tp, 0);
21452 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
21453 op = TREE_TYPE (op);
21454 if (TYPE_P (op))
21455 {
21456 if (dependent_type_p (op))
21457 return *tp;
21458 else
21459 {
21460 *walk_subtrees = false;
21461 return NULL_TREE;
21462 }
21463 }
21464 break;
21465 }
21466
21467 case TRAIT_EXPR:
21468 if (dependent_type_p (TRAIT_EXPR_TYPE1 (*tp))
21469 || (TRAIT_EXPR_TYPE2 (*tp)
21470 && dependent_type_p (TRAIT_EXPR_TYPE2 (*tp))))
21471 return *tp;
21472 *walk_subtrees = false;
21473 return NULL_TREE;
21474
21475 case COMPONENT_REF:
21476 if (identifier_p (TREE_OPERAND (*tp, 1)))
21477 /* In a template, finish_class_member_access_expr creates a
21478 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
21479 type-dependent, so that we can check access control at
21480 instantiation time (PR 42277). See also Core issue 1273. */
21481 return *tp;
21482 break;
21483
21484 case SCOPE_REF:
21485 if (instantiation_dependent_scope_ref_p (*tp))
21486 return *tp;
21487 else
21488 break;
21489
21490 /* Treat statement-expressions as dependent. */
21491 case BIND_EXPR:
21492 return *tp;
21493
21494 default:
21495 break;
21496 }
21497
21498 if (type_dependent_expression_p (*tp))
21499 return *tp;
21500 else
21501 return NULL_TREE;
21502 }
21503
21504 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
21505 sense defined by the ABI:
21506
21507 "An expression is instantiation-dependent if it is type-dependent
21508 or value-dependent, or it has a subexpression that is type-dependent
21509 or value-dependent." */
21510
21511 bool
21512 instantiation_dependent_expression_p (tree expression)
21513 {
21514 tree result;
21515
21516 if (!processing_template_decl)
21517 return false;
21518
21519 if (expression == error_mark_node)
21520 return false;
21521
21522 result = cp_walk_tree_without_duplicates (&expression,
21523 instantiation_dependent_r, NULL);
21524 return result != NULL_TREE;
21525 }
21526
21527 /* Like type_dependent_expression_p, but it also works while not processing
21528 a template definition, i.e. during substitution or mangling. */
21529
21530 bool
21531 type_dependent_expression_p_push (tree expr)
21532 {
21533 bool b;
21534 ++processing_template_decl;
21535 b = type_dependent_expression_p (expr);
21536 --processing_template_decl;
21537 return b;
21538 }
21539
21540 /* Returns TRUE if ARGS contains a type-dependent expression. */
21541
21542 bool
21543 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
21544 {
21545 unsigned int i;
21546 tree arg;
21547
21548 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
21549 {
21550 if (type_dependent_expression_p (arg))
21551 return true;
21552 }
21553 return false;
21554 }
21555
21556 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
21557 expressions) contains any type-dependent expressions. */
21558
21559 bool
21560 any_type_dependent_elements_p (const_tree list)
21561 {
21562 for (; list; list = TREE_CHAIN (list))
21563 if (type_dependent_expression_p (TREE_VALUE (list)))
21564 return true;
21565
21566 return false;
21567 }
21568
21569 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
21570 expressions) contains any value-dependent expressions. */
21571
21572 bool
21573 any_value_dependent_elements_p (const_tree list)
21574 {
21575 for (; list; list = TREE_CHAIN (list))
21576 if (value_dependent_expression_p (TREE_VALUE (list)))
21577 return true;
21578
21579 return false;
21580 }
21581
21582 /* Returns TRUE if the ARG (a template argument) is dependent. */
21583
21584 bool
21585 dependent_template_arg_p (tree arg)
21586 {
21587 if (!processing_template_decl)
21588 return false;
21589
21590 /* Assume a template argument that was wrongly written by the user
21591 is dependent. This is consistent with what
21592 any_dependent_template_arguments_p [that calls this function]
21593 does. */
21594 if (!arg || arg == error_mark_node)
21595 return true;
21596
21597 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
21598 arg = ARGUMENT_PACK_SELECT_ARG (arg);
21599
21600 if (TREE_CODE (arg) == TEMPLATE_DECL
21601 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
21602 return dependent_template_p (arg);
21603 else if (ARGUMENT_PACK_P (arg))
21604 {
21605 tree args = ARGUMENT_PACK_ARGS (arg);
21606 int i, len = TREE_VEC_LENGTH (args);
21607 for (i = 0; i < len; ++i)
21608 {
21609 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
21610 return true;
21611 }
21612
21613 return false;
21614 }
21615 else if (TYPE_P (arg))
21616 return dependent_type_p (arg);
21617 else
21618 return (type_dependent_expression_p (arg)
21619 || value_dependent_expression_p (arg));
21620 }
21621
21622 /* Returns true if ARGS (a collection of template arguments) contains
21623 any types that require structural equality testing. */
21624
21625 bool
21626 any_template_arguments_need_structural_equality_p (tree args)
21627 {
21628 int i;
21629 int j;
21630
21631 if (!args)
21632 return false;
21633 if (args == error_mark_node)
21634 return true;
21635
21636 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
21637 {
21638 tree level = TMPL_ARGS_LEVEL (args, i + 1);
21639 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
21640 {
21641 tree arg = TREE_VEC_ELT (level, j);
21642 tree packed_args = NULL_TREE;
21643 int k, len = 1;
21644
21645 if (ARGUMENT_PACK_P (arg))
21646 {
21647 /* Look inside the argument pack. */
21648 packed_args = ARGUMENT_PACK_ARGS (arg);
21649 len = TREE_VEC_LENGTH (packed_args);
21650 }
21651
21652 for (k = 0; k < len; ++k)
21653 {
21654 if (packed_args)
21655 arg = TREE_VEC_ELT (packed_args, k);
21656
21657 if (error_operand_p (arg))
21658 return true;
21659 else if (TREE_CODE (arg) == TEMPLATE_DECL)
21660 continue;
21661 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
21662 return true;
21663 else if (!TYPE_P (arg) && TREE_TYPE (arg)
21664 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
21665 return true;
21666 }
21667 }
21668 }
21669
21670 return false;
21671 }
21672
21673 /* Returns true if ARGS (a collection of template arguments) contains
21674 any dependent arguments. */
21675
21676 bool
21677 any_dependent_template_arguments_p (const_tree args)
21678 {
21679 int i;
21680 int j;
21681
21682 if (!args)
21683 return false;
21684 if (args == error_mark_node)
21685 return true;
21686
21687 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
21688 {
21689 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
21690 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
21691 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
21692 return true;
21693 }
21694
21695 return false;
21696 }
21697
21698 /* Returns TRUE if the template TMPL is dependent. */
21699
21700 bool
21701 dependent_template_p (tree tmpl)
21702 {
21703 if (TREE_CODE (tmpl) == OVERLOAD)
21704 {
21705 while (tmpl)
21706 {
21707 if (dependent_template_p (OVL_CURRENT (tmpl)))
21708 return true;
21709 tmpl = OVL_NEXT (tmpl);
21710 }
21711 return false;
21712 }
21713
21714 /* Template template parameters are dependent. */
21715 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
21716 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
21717 return true;
21718 /* So are names that have not been looked up. */
21719 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
21720 return true;
21721 /* So are member templates of dependent classes. */
21722 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
21723 return dependent_type_p (DECL_CONTEXT (tmpl));
21724 return false;
21725 }
21726
21727 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
21728
21729 bool
21730 dependent_template_id_p (tree tmpl, tree args)
21731 {
21732 return (dependent_template_p (tmpl)
21733 || any_dependent_template_arguments_p (args));
21734 }
21735
21736 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
21737 is dependent. */
21738
21739 bool
21740 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
21741 {
21742 int i;
21743
21744 if (!processing_template_decl)
21745 return false;
21746
21747 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
21748 {
21749 tree decl = TREE_VEC_ELT (declv, i);
21750 tree init = TREE_VEC_ELT (initv, i);
21751 tree cond = TREE_VEC_ELT (condv, i);
21752 tree incr = TREE_VEC_ELT (incrv, i);
21753
21754 if (type_dependent_expression_p (decl))
21755 return true;
21756
21757 if (init && type_dependent_expression_p (init))
21758 return true;
21759
21760 if (type_dependent_expression_p (cond))
21761 return true;
21762
21763 if (COMPARISON_CLASS_P (cond)
21764 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
21765 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
21766 return true;
21767
21768 if (TREE_CODE (incr) == MODOP_EXPR)
21769 {
21770 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
21771 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
21772 return true;
21773 }
21774 else if (type_dependent_expression_p (incr))
21775 return true;
21776 else if (TREE_CODE (incr) == MODIFY_EXPR)
21777 {
21778 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
21779 return true;
21780 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
21781 {
21782 tree t = TREE_OPERAND (incr, 1);
21783 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
21784 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
21785 return true;
21786 }
21787 }
21788 }
21789
21790 return false;
21791 }
21792
21793 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
21794 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
21795 no such TYPE can be found. Note that this function peers inside
21796 uninstantiated templates and therefore should be used only in
21797 extremely limited situations. ONLY_CURRENT_P restricts this
21798 peering to the currently open classes hierarchy (which is required
21799 when comparing types). */
21800
21801 tree
21802 resolve_typename_type (tree type, bool only_current_p)
21803 {
21804 tree scope;
21805 tree name;
21806 tree decl;
21807 int quals;
21808 tree pushed_scope;
21809 tree result;
21810
21811 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
21812
21813 scope = TYPE_CONTEXT (type);
21814 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
21815 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
21816 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
21817 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
21818 identifier of the TYPENAME_TYPE anymore.
21819 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
21820 TYPENAME_TYPE instead, we avoid messing up with a possible
21821 typedef variant case. */
21822 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
21823
21824 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
21825 it first before we can figure out what NAME refers to. */
21826 if (TREE_CODE (scope) == TYPENAME_TYPE)
21827 {
21828 if (TYPENAME_IS_RESOLVING_P (scope))
21829 /* Given a class template A with a dependent base with nested type C,
21830 typedef typename A::C::C C will land us here, as trying to resolve
21831 the initial A::C leads to the local C typedef, which leads back to
21832 A::C::C. So we break the recursion now. */
21833 return type;
21834 else
21835 scope = resolve_typename_type (scope, only_current_p);
21836 }
21837 /* If we don't know what SCOPE refers to, then we cannot resolve the
21838 TYPENAME_TYPE. */
21839 if (TREE_CODE (scope) == TYPENAME_TYPE)
21840 return type;
21841 /* If the SCOPE is a template type parameter, we have no way of
21842 resolving the name. */
21843 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
21844 return type;
21845 /* If the SCOPE is not the current instantiation, there's no reason
21846 to look inside it. */
21847 if (only_current_p && !currently_open_class (scope))
21848 return type;
21849 /* If this is a typedef, we don't want to look inside (c++/11987). */
21850 if (typedef_variant_p (type))
21851 return type;
21852 /* If SCOPE isn't the template itself, it will not have a valid
21853 TYPE_FIELDS list. */
21854 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
21855 /* scope is either the template itself or a compatible instantiation
21856 like X<T>, so look up the name in the original template. */
21857 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
21858 else
21859 /* scope is a partial instantiation, so we can't do the lookup or we
21860 will lose the template arguments. */
21861 return type;
21862 /* Enter the SCOPE so that name lookup will be resolved as if we
21863 were in the class definition. In particular, SCOPE will no
21864 longer be considered a dependent type. */
21865 pushed_scope = push_scope (scope);
21866 /* Look up the declaration. */
21867 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
21868 tf_warning_or_error);
21869
21870 result = NULL_TREE;
21871
21872 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
21873 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
21874 if (!decl)
21875 /*nop*/;
21876 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
21877 && TREE_CODE (decl) == TYPE_DECL)
21878 {
21879 result = TREE_TYPE (decl);
21880 if (result == error_mark_node)
21881 result = NULL_TREE;
21882 }
21883 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
21884 && DECL_CLASS_TEMPLATE_P (decl))
21885 {
21886 tree tmpl;
21887 tree args;
21888 /* Obtain the template and the arguments. */
21889 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
21890 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
21891 /* Instantiate the template. */
21892 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
21893 /*entering_scope=*/0,
21894 tf_error | tf_user);
21895 if (result == error_mark_node)
21896 result = NULL_TREE;
21897 }
21898
21899 /* Leave the SCOPE. */
21900 if (pushed_scope)
21901 pop_scope (pushed_scope);
21902
21903 /* If we failed to resolve it, return the original typename. */
21904 if (!result)
21905 return type;
21906
21907 /* If lookup found a typename type, resolve that too. */
21908 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
21909 {
21910 /* Ill-formed programs can cause infinite recursion here, so we
21911 must catch that. */
21912 TYPENAME_IS_RESOLVING_P (type) = 1;
21913 result = resolve_typename_type (result, only_current_p);
21914 TYPENAME_IS_RESOLVING_P (type) = 0;
21915 }
21916
21917 /* Qualify the resulting type. */
21918 quals = cp_type_quals (type);
21919 if (quals)
21920 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
21921
21922 return result;
21923 }
21924
21925 /* EXPR is an expression which is not type-dependent. Return a proxy
21926 for EXPR that can be used to compute the types of larger
21927 expressions containing EXPR. */
21928
21929 tree
21930 build_non_dependent_expr (tree expr)
21931 {
21932 tree inner_expr;
21933
21934 #ifdef ENABLE_CHECKING
21935 /* Try to get a constant value for all non-dependent expressions in
21936 order to expose bugs in *_dependent_expression_p and constexpr. */
21937 if (cxx_dialect >= cxx11)
21938 fold_non_dependent_expr (expr);
21939 #endif
21940
21941 /* Preserve OVERLOADs; the functions must be available to resolve
21942 types. */
21943 inner_expr = expr;
21944 if (TREE_CODE (inner_expr) == STMT_EXPR)
21945 inner_expr = stmt_expr_value_expr (inner_expr);
21946 if (TREE_CODE (inner_expr) == ADDR_EXPR)
21947 inner_expr = TREE_OPERAND (inner_expr, 0);
21948 if (TREE_CODE (inner_expr) == COMPONENT_REF)
21949 inner_expr = TREE_OPERAND (inner_expr, 1);
21950 if (is_overloaded_fn (inner_expr)
21951 || TREE_CODE (inner_expr) == OFFSET_REF)
21952 return expr;
21953 /* There is no need to return a proxy for a variable. */
21954 if (VAR_P (expr))
21955 return expr;
21956 /* Preserve string constants; conversions from string constants to
21957 "char *" are allowed, even though normally a "const char *"
21958 cannot be used to initialize a "char *". */
21959 if (TREE_CODE (expr) == STRING_CST)
21960 return expr;
21961 /* Preserve void and arithmetic constants, as an optimization -- there is no
21962 reason to create a new node. */
21963 if (TREE_CODE (expr) == VOID_CST
21964 || TREE_CODE (expr) == INTEGER_CST
21965 || TREE_CODE (expr) == REAL_CST)
21966 return expr;
21967 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
21968 There is at least one place where we want to know that a
21969 particular expression is a throw-expression: when checking a ?:
21970 expression, there are special rules if the second or third
21971 argument is a throw-expression. */
21972 if (TREE_CODE (expr) == THROW_EXPR)
21973 return expr;
21974
21975 /* Don't wrap an initializer list, we need to be able to look inside. */
21976 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
21977 return expr;
21978
21979 /* Don't wrap a dummy object, we need to be able to test for it. */
21980 if (is_dummy_object (expr))
21981 return expr;
21982
21983 if (TREE_CODE (expr) == COND_EXPR)
21984 return build3 (COND_EXPR,
21985 TREE_TYPE (expr),
21986 TREE_OPERAND (expr, 0),
21987 (TREE_OPERAND (expr, 1)
21988 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
21989 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
21990 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
21991 if (TREE_CODE (expr) == COMPOUND_EXPR
21992 && !COMPOUND_EXPR_OVERLOADED (expr))
21993 return build2 (COMPOUND_EXPR,
21994 TREE_TYPE (expr),
21995 TREE_OPERAND (expr, 0),
21996 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
21997
21998 /* If the type is unknown, it can't really be non-dependent */
21999 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
22000
22001 /* Otherwise, build a NON_DEPENDENT_EXPR. */
22002 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
22003 }
22004
22005 /* ARGS is a vector of expressions as arguments to a function call.
22006 Replace the arguments with equivalent non-dependent expressions.
22007 This modifies ARGS in place. */
22008
22009 void
22010 make_args_non_dependent (vec<tree, va_gc> *args)
22011 {
22012 unsigned int ix;
22013 tree arg;
22014
22015 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
22016 {
22017 tree newarg = build_non_dependent_expr (arg);
22018 if (newarg != arg)
22019 (*args)[ix] = newarg;
22020 }
22021 }
22022
22023 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
22024 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
22025 parms. */
22026
22027 static tree
22028 make_auto_1 (tree name)
22029 {
22030 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
22031 TYPE_NAME (au) = build_decl (input_location,
22032 TYPE_DECL, name, au);
22033 TYPE_STUB_DECL (au) = TYPE_NAME (au);
22034 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
22035 (0, processing_template_decl + 1, processing_template_decl + 1,
22036 TYPE_NAME (au), NULL_TREE);
22037 TYPE_CANONICAL (au) = canonical_type_parameter (au);
22038 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
22039 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
22040
22041 return au;
22042 }
22043
22044 tree
22045 make_decltype_auto (void)
22046 {
22047 return make_auto_1 (get_identifier ("decltype(auto)"));
22048 }
22049
22050 tree
22051 make_auto (void)
22052 {
22053 return make_auto_1 (get_identifier ("auto"));
22054 }
22055
22056 /* Given type ARG, return std::initializer_list<ARG>. */
22057
22058 static tree
22059 listify (tree arg)
22060 {
22061 tree std_init_list = namespace_binding
22062 (get_identifier ("initializer_list"), std_node);
22063 tree argvec;
22064 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
22065 {
22066 error ("deducing from brace-enclosed initializer list requires "
22067 "#include <initializer_list>");
22068 return error_mark_node;
22069 }
22070 argvec = make_tree_vec (1);
22071 TREE_VEC_ELT (argvec, 0) = arg;
22072 return lookup_template_class (std_init_list, argvec, NULL_TREE,
22073 NULL_TREE, 0, tf_warning_or_error);
22074 }
22075
22076 /* Replace auto in TYPE with std::initializer_list<auto>. */
22077
22078 static tree
22079 listify_autos (tree type, tree auto_node)
22080 {
22081 tree init_auto = listify (auto_node);
22082 tree argvec = make_tree_vec (1);
22083 TREE_VEC_ELT (argvec, 0) = init_auto;
22084 if (processing_template_decl)
22085 argvec = add_to_template_args (current_template_args (), argvec);
22086 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
22087 }
22088
22089 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
22090 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
22091
22092 tree
22093 do_auto_deduction (tree type, tree init, tree auto_node)
22094 {
22095 tree targs;
22096
22097 if (init == error_mark_node)
22098 return error_mark_node;
22099
22100 if (type_dependent_expression_p (init))
22101 /* Defining a subset of type-dependent expressions that we can deduce
22102 from ahead of time isn't worth the trouble. */
22103 return type;
22104
22105 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
22106 with either a new invented type template parameter U or, if the
22107 initializer is a braced-init-list (8.5.4), with
22108 std::initializer_list<U>. */
22109 if (BRACE_ENCLOSED_INITIALIZER_P (init))
22110 {
22111 if (!DIRECT_LIST_INIT_P (init))
22112 type = listify_autos (type, auto_node);
22113 else if (CONSTRUCTOR_NELTS (init) == 1)
22114 init = CONSTRUCTOR_ELT (init, 0)->value;
22115 else
22116 {
22117 if (permerror (input_location, "direct-list-initialization of "
22118 "%<auto%> requires exactly one element"))
22119 inform (input_location,
22120 "for deduction to %<std::initializer_list%>, use copy-"
22121 "list-initialization (i.e. add %<=%> before the %<{%>)");
22122 type = listify_autos (type, auto_node);
22123 }
22124 }
22125
22126 init = resolve_nondeduced_context (init);
22127
22128 targs = make_tree_vec (1);
22129 if (AUTO_IS_DECLTYPE (auto_node))
22130 {
22131 bool id = (DECL_P (init) || (TREE_CODE (init) == COMPONENT_REF
22132 && !REF_PARENTHESIZED_P (init)));
22133 TREE_VEC_ELT (targs, 0)
22134 = finish_decltype_type (init, id, tf_warning_or_error);
22135 if (type != auto_node)
22136 {
22137 error ("%qT as type rather than plain %<decltype(auto)%>", type);
22138 return error_mark_node;
22139 }
22140 }
22141 else
22142 {
22143 tree parms = build_tree_list (NULL_TREE, type);
22144 tree tparms = make_tree_vec (1);
22145 int val;
22146
22147 TREE_VEC_ELT (tparms, 0)
22148 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
22149 val = type_unification_real (tparms, targs, parms, &init, 1, 0,
22150 DEDUCE_CALL, LOOKUP_NORMAL,
22151 NULL, /*explain_p=*/false);
22152 if (val > 0)
22153 {
22154 if (processing_template_decl)
22155 /* Try again at instantiation time. */
22156 return type;
22157 if (type && type != error_mark_node)
22158 /* If type is error_mark_node a diagnostic must have been
22159 emitted by now. Also, having a mention to '<type error>'
22160 in the diagnostic is not really useful to the user. */
22161 {
22162 if (cfun && auto_node == current_function_auto_return_pattern
22163 && LAMBDA_FUNCTION_P (current_function_decl))
22164 error ("unable to deduce lambda return type from %qE", init);
22165 else
22166 error ("unable to deduce %qT from %qE", type, init);
22167 }
22168 return error_mark_node;
22169 }
22170 }
22171
22172 /* If the list of declarators contains more than one declarator, the type
22173 of each declared variable is determined as described above. If the
22174 type deduced for the template parameter U is not the same in each
22175 deduction, the program is ill-formed. */
22176 if (TREE_TYPE (auto_node)
22177 && !same_type_p (TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0)))
22178 {
22179 if (cfun && auto_node == current_function_auto_return_pattern
22180 && LAMBDA_FUNCTION_P (current_function_decl))
22181 error ("inconsistent types %qT and %qT deduced for "
22182 "lambda return type", TREE_TYPE (auto_node),
22183 TREE_VEC_ELT (targs, 0));
22184 else
22185 error ("inconsistent deduction for %qT: %qT and then %qT",
22186 auto_node, TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0));
22187 return error_mark_node;
22188 }
22189 TREE_TYPE (auto_node) = TREE_VEC_ELT (targs, 0);
22190
22191 if (processing_template_decl)
22192 targs = add_to_template_args (current_template_args (), targs);
22193 return tsubst (type, targs, tf_warning_or_error, NULL_TREE);
22194 }
22195
22196 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
22197 result. */
22198
22199 tree
22200 splice_late_return_type (tree type, tree late_return_type)
22201 {
22202 tree argvec;
22203
22204 if (late_return_type == NULL_TREE)
22205 return type;
22206 argvec = make_tree_vec (1);
22207 TREE_VEC_ELT (argvec, 0) = late_return_type;
22208 if (processing_template_parmlist)
22209 /* For a late-specified return type in a template type-parameter, we
22210 need to add a dummy argument level for its parmlist. */
22211 argvec = add_to_template_args
22212 (make_tree_vec (processing_template_parmlist), argvec);
22213 if (current_template_parms)
22214 argvec = add_to_template_args (current_template_args (), argvec);
22215 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
22216 }
22217
22218 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
22219 'decltype(auto)'. */
22220
22221 bool
22222 is_auto (const_tree type)
22223 {
22224 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
22225 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
22226 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
22227 return true;
22228 else
22229 return false;
22230 }
22231
22232 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
22233 a use of `auto'. Returns NULL_TREE otherwise. */
22234
22235 tree
22236 type_uses_auto (tree type)
22237 {
22238 return find_type_usage (type, is_auto);
22239 }
22240
22241 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
22242 'decltype(auto)' or a concept. */
22243
22244 bool
22245 is_auto_or_concept (const_tree type)
22246 {
22247 return is_auto (type); // or concept
22248 }
22249
22250 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
22251 a concept identifier) iff TYPE contains a use of a generic type. Returns
22252 NULL_TREE otherwise. */
22253
22254 tree
22255 type_uses_auto_or_concept (tree type)
22256 {
22257 return find_type_usage (type, is_auto_or_concept);
22258 }
22259
22260
22261 /* For a given template T, return the vector of typedefs referenced
22262 in T for which access check is needed at T instantiation time.
22263 T is either a FUNCTION_DECL or a RECORD_TYPE.
22264 Those typedefs were added to T by the function
22265 append_type_to_template_for_access_check. */
22266
22267 vec<qualified_typedef_usage_t, va_gc> *
22268 get_types_needing_access_check (tree t)
22269 {
22270 tree ti;
22271 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
22272
22273 if (!t || t == error_mark_node)
22274 return NULL;
22275
22276 if (!(ti = get_template_info (t)))
22277 return NULL;
22278
22279 if (CLASS_TYPE_P (t)
22280 || TREE_CODE (t) == FUNCTION_DECL)
22281 {
22282 if (!TI_TEMPLATE (ti))
22283 return NULL;
22284
22285 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
22286 }
22287
22288 return result;
22289 }
22290
22291 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
22292 tied to T. That list of typedefs will be access checked at
22293 T instantiation time.
22294 T is either a FUNCTION_DECL or a RECORD_TYPE.
22295 TYPE_DECL is a TYPE_DECL node representing a typedef.
22296 SCOPE is the scope through which TYPE_DECL is accessed.
22297 LOCATION is the location of the usage point of TYPE_DECL.
22298
22299 This function is a subroutine of
22300 append_type_to_template_for_access_check. */
22301
22302 static void
22303 append_type_to_template_for_access_check_1 (tree t,
22304 tree type_decl,
22305 tree scope,
22306 location_t location)
22307 {
22308 qualified_typedef_usage_t typedef_usage;
22309 tree ti;
22310
22311 if (!t || t == error_mark_node)
22312 return;
22313
22314 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
22315 || CLASS_TYPE_P (t))
22316 && type_decl
22317 && TREE_CODE (type_decl) == TYPE_DECL
22318 && scope);
22319
22320 if (!(ti = get_template_info (t)))
22321 return;
22322
22323 gcc_assert (TI_TEMPLATE (ti));
22324
22325 typedef_usage.typedef_decl = type_decl;
22326 typedef_usage.context = scope;
22327 typedef_usage.locus = location;
22328
22329 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
22330 }
22331
22332 /* Append TYPE_DECL to the template TEMPL.
22333 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
22334 At TEMPL instanciation time, TYPE_DECL will be checked to see
22335 if it can be accessed through SCOPE.
22336 LOCATION is the location of the usage point of TYPE_DECL.
22337
22338 e.g. consider the following code snippet:
22339
22340 class C
22341 {
22342 typedef int myint;
22343 };
22344
22345 template<class U> struct S
22346 {
22347 C::myint mi; // <-- usage point of the typedef C::myint
22348 };
22349
22350 S<char> s;
22351
22352 At S<char> instantiation time, we need to check the access of C::myint
22353 In other words, we need to check the access of the myint typedef through
22354 the C scope. For that purpose, this function will add the myint typedef
22355 and the scope C through which its being accessed to a list of typedefs
22356 tied to the template S. That list will be walked at template instantiation
22357 time and access check performed on each typedefs it contains.
22358 Note that this particular code snippet should yield an error because
22359 myint is private to C. */
22360
22361 void
22362 append_type_to_template_for_access_check (tree templ,
22363 tree type_decl,
22364 tree scope,
22365 location_t location)
22366 {
22367 qualified_typedef_usage_t *iter;
22368 unsigned i;
22369
22370 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
22371
22372 /* Make sure we don't append the type to the template twice. */
22373 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
22374 if (iter->typedef_decl == type_decl && scope == iter->context)
22375 return;
22376
22377 append_type_to_template_for_access_check_1 (templ, type_decl,
22378 scope, location);
22379 }
22380
22381 /* Convert the generic type parameters in PARM that match the types given in the
22382 range [START_IDX, END_IDX) from the current_template_parms into generic type
22383 packs. */
22384
22385 tree
22386 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
22387 {
22388 tree current = current_template_parms;
22389 int depth = TMPL_PARMS_DEPTH (current);
22390 current = INNERMOST_TEMPLATE_PARMS (current);
22391 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
22392
22393 for (int i = 0; i < start_idx; ++i)
22394 TREE_VEC_ELT (replacement, i)
22395 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
22396
22397 for (int i = start_idx; i < end_idx; ++i)
22398 {
22399 /* Create a distinct parameter pack type from the current parm and add it
22400 to the replacement args to tsubst below into the generic function
22401 parameter. */
22402
22403 tree o = TREE_TYPE (TREE_VALUE
22404 (TREE_VEC_ELT (current, i)));
22405 tree t = copy_type (o);
22406 TEMPLATE_TYPE_PARM_INDEX (t)
22407 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
22408 o, 0, 0, tf_none);
22409 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
22410 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
22411 TYPE_MAIN_VARIANT (t) = t;
22412 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
22413 TYPE_CANONICAL (t) = canonical_type_parameter (t);
22414 TREE_VEC_ELT (replacement, i) = t;
22415 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
22416 }
22417
22418 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
22419 TREE_VEC_ELT (replacement, i)
22420 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
22421
22422 /* If there are more levels then build up the replacement with the outer
22423 template parms. */
22424 if (depth > 1)
22425 replacement = add_to_template_args (template_parms_to_args
22426 (TREE_CHAIN (current_template_parms)),
22427 replacement);
22428
22429 return tsubst (parm, replacement, tf_none, NULL_TREE);
22430 }
22431
22432
22433 /* Set up the hash tables for template instantiations. */
22434
22435 void
22436 init_template_processing (void)
22437 {
22438 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
22439 type_specializations = hash_table<spec_hasher>::create_ggc (37);
22440 }
22441
22442 /* Print stats about the template hash tables for -fstats. */
22443
22444 void
22445 print_template_statistics (void)
22446 {
22447 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
22448 "%f collisions\n", (long) decl_specializations->size (),
22449 (long) decl_specializations->elements (),
22450 decl_specializations->collisions ());
22451 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
22452 "%f collisions\n", (long) type_specializations->size (),
22453 (long) type_specializations->elements (),
22454 type_specializations->collisions ());
22455 }
22456
22457 #include "gt-cp-pt.h"