6b73d49ce29c3d69db6485a6c6064ca9e6a1c9c5
[gcc.git] / gcc / cp / pt.c
1 /* Handle parameterized types (templates) for GNU -*- C++ -*-.
2 Copyright (C) 1992-2015 Free Software Foundation, Inc.
3 Written by Ken Raeburn (raeburn@cygnus.com) while at Watchmaker Computing.
4 Rewritten by Jason Merrill (jason@cygnus.com).
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 /* Known bugs or deficiencies include:
23
24 all methods must be provided in header files; can't use a source
25 file that contains only the method templates and "just win". */
26
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "alias.h"
32 #include "symtab.h"
33 #include "tree.h"
34 #include "stringpool.h"
35 #include "varasm.h"
36 #include "attribs.h"
37 #include "stor-layout.h"
38 #include "intl.h"
39 #include "flags.h"
40 #include "cp-tree.h"
41 #include "c-family/c-common.h"
42 #include "c-family/c-objc.h"
43 #include "cp-objcp-common.h"
44 #include "tree-inline.h"
45 #include "decl.h"
46 #include "toplev.h"
47 #include "timevar.h"
48 #include "tree-iterator.h"
49 #include "type-utils.h"
50 #include "gimplify.h"
51
52 /* The type of functions taking a tree, and some additional data, and
53 returning an int. */
54 typedef int (*tree_fn_t) (tree, void*);
55
56 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
57 instantiations have been deferred, either because their definitions
58 were not yet available, or because we were putting off doing the work. */
59 struct GTY ((chain_next ("%h.next"))) pending_template {
60 struct pending_template *next;
61 struct tinst_level *tinst;
62 };
63
64 static GTY(()) struct pending_template *pending_templates;
65 static GTY(()) struct pending_template *last_pending_template;
66
67 int processing_template_parmlist;
68 static int template_header_count;
69
70 static GTY(()) tree saved_trees;
71 static vec<int> inline_parm_levels;
72
73 static GTY(()) struct tinst_level *current_tinst_level;
74
75 static GTY(()) tree saved_access_scope;
76
77 /* Live only within one (recursive) call to tsubst_expr. We use
78 this to pass the statement expression node from the STMT_EXPR
79 to the EXPR_STMT that is its result. */
80 static tree cur_stmt_expr;
81
82 /* True if we've recursed into fn_type_unification too many times. */
83 static bool excessive_deduction_depth;
84
85 struct GTY((for_user)) spec_entry
86 {
87 tree tmpl;
88 tree args;
89 tree spec;
90 };
91
92 struct spec_hasher : ggc_ptr_hash<spec_entry>
93 {
94 static hashval_t hash (spec_entry *);
95 static bool equal (spec_entry *, spec_entry *);
96 };
97
98 static GTY (()) hash_table<spec_hasher> *decl_specializations;
99
100 static GTY (()) hash_table<spec_hasher> *type_specializations;
101
102 /* Contains canonical template parameter types. The vector is indexed by
103 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
104 TREE_LIST, whose TREE_VALUEs contain the canonical template
105 parameters of various types and levels. */
106 static GTY(()) vec<tree, va_gc> *canonical_template_parms;
107
108 #define UNIFY_ALLOW_NONE 0
109 #define UNIFY_ALLOW_MORE_CV_QUAL 1
110 #define UNIFY_ALLOW_LESS_CV_QUAL 2
111 #define UNIFY_ALLOW_DERIVED 4
112 #define UNIFY_ALLOW_INTEGER 8
113 #define UNIFY_ALLOW_OUTER_LEVEL 16
114 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
115 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
116
117 enum template_base_result {
118 tbr_incomplete_type,
119 tbr_ambiguous_baseclass,
120 tbr_success
121 };
122
123 static void push_access_scope (tree);
124 static void pop_access_scope (tree);
125 static bool resolve_overloaded_unification (tree, tree, tree, tree,
126 unification_kind_t, int,
127 bool);
128 static int try_one_overload (tree, tree, tree, tree, tree,
129 unification_kind_t, int, bool, bool);
130 static int unify (tree, tree, tree, tree, int, bool);
131 static void add_pending_template (tree);
132 static tree reopen_tinst_level (struct tinst_level *);
133 static tree tsubst_initializer_list (tree, tree);
134 static tree get_partial_spec_bindings (tree, tree, tree, tree);
135 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
136 bool, bool);
137 static tree coerce_innermost_template_parms (tree, tree, tree, tsubst_flags_t,
138 bool, bool);
139 static void tsubst_enum (tree, tree, tree);
140 static tree add_to_template_args (tree, tree);
141 static tree add_outermost_template_args (tree, tree);
142 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
143 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
144 tree);
145 static int type_unification_real (tree, tree, tree, const tree *,
146 unsigned int, int, unification_kind_t, int,
147 vec<deferred_access_check, va_gc> **,
148 bool);
149 static void note_template_header (int);
150 static tree convert_nontype_argument_function (tree, tree, tsubst_flags_t);
151 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
152 static tree convert_template_argument (tree, tree, tree,
153 tsubst_flags_t, int, tree);
154 static int for_each_template_parm (tree, tree_fn_t, void*,
155 hash_set<tree> *, bool);
156 static tree expand_template_argument_pack (tree);
157 static tree build_template_parm_index (int, int, int, tree, tree);
158 static bool inline_needs_template_parms (tree, bool);
159 static void push_inline_template_parms_recursive (tree, int);
160 static tree retrieve_local_specialization (tree);
161 static void register_local_specialization (tree, tree);
162 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
163 static int mark_template_parm (tree, void *);
164 static int template_parm_this_level_p (tree, void *);
165 static tree tsubst_friend_function (tree, tree);
166 static tree tsubst_friend_class (tree, tree);
167 static int can_complete_type_without_circularity (tree);
168 static tree get_bindings (tree, tree, tree, bool);
169 static int template_decl_level (tree);
170 static int check_cv_quals_for_unify (int, tree, tree);
171 static void template_parm_level_and_index (tree, int*, int*);
172 static int unify_pack_expansion (tree, tree, tree,
173 tree, unification_kind_t, bool, bool);
174 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
175 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
176 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
177 static void regenerate_decl_from_template (tree, tree);
178 static tree most_specialized_partial_spec (tree, tsubst_flags_t);
179 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
180 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
181 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
182 static bool check_specialization_scope (void);
183 static tree process_partial_specialization (tree);
184 static void set_current_access_from_decl (tree);
185 static enum template_base_result get_template_base (tree, tree, tree, tree,
186 bool , tree *);
187 static tree try_class_unification (tree, tree, tree, tree, bool);
188 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
189 tree, tree);
190 static bool template_template_parm_bindings_ok_p (tree, tree);
191 static int template_args_equal (tree, tree);
192 static void tsubst_default_arguments (tree, tsubst_flags_t);
193 static tree for_each_template_parm_r (tree *, int *, void *);
194 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
195 static void copy_default_args_to_explicit_spec (tree);
196 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
197 static bool dependent_template_arg_p (tree);
198 static bool any_template_arguments_need_structural_equality_p (tree);
199 static bool dependent_type_p_r (tree);
200 static tree tsubst_expr (tree, tree, tsubst_flags_t, tree, bool);
201 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
202 static tree tsubst_pack_expansion (tree, tree, tsubst_flags_t, tree);
203 static tree tsubst_decl (tree, tree, tsubst_flags_t);
204 static void perform_typedefs_access_check (tree tmpl, tree targs);
205 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
206 location_t);
207 static tree listify (tree);
208 static tree listify_autos (tree, tree);
209 static tree template_parm_to_arg (tree t);
210 static tree current_template_args (void);
211 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
212 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
213 static bool complex_alias_template_p (const_tree tmpl);
214
215 /* Make the current scope suitable for access checking when we are
216 processing T. T can be FUNCTION_DECL for instantiated function
217 template, VAR_DECL for static member variable, or TYPE_DECL for
218 alias template (needed by instantiate_decl). */
219
220 static void
221 push_access_scope (tree t)
222 {
223 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
224 || TREE_CODE (t) == TYPE_DECL);
225
226 if (DECL_FRIEND_CONTEXT (t))
227 push_nested_class (DECL_FRIEND_CONTEXT (t));
228 else if (DECL_CLASS_SCOPE_P (t))
229 push_nested_class (DECL_CONTEXT (t));
230 else
231 push_to_top_level ();
232
233 if (TREE_CODE (t) == FUNCTION_DECL)
234 {
235 saved_access_scope = tree_cons
236 (NULL_TREE, current_function_decl, saved_access_scope);
237 current_function_decl = t;
238 }
239 }
240
241 /* Restore the scope set up by push_access_scope. T is the node we
242 are processing. */
243
244 static void
245 pop_access_scope (tree t)
246 {
247 if (TREE_CODE (t) == FUNCTION_DECL)
248 {
249 current_function_decl = TREE_VALUE (saved_access_scope);
250 saved_access_scope = TREE_CHAIN (saved_access_scope);
251 }
252
253 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
254 pop_nested_class ();
255 else
256 pop_from_top_level ();
257 }
258
259 /* Do any processing required when DECL (a member template
260 declaration) is finished. Returns the TEMPLATE_DECL corresponding
261 to DECL, unless it is a specialization, in which case the DECL
262 itself is returned. */
263
264 tree
265 finish_member_template_decl (tree decl)
266 {
267 if (decl == error_mark_node)
268 return error_mark_node;
269
270 gcc_assert (DECL_P (decl));
271
272 if (TREE_CODE (decl) == TYPE_DECL)
273 {
274 tree type;
275
276 type = TREE_TYPE (decl);
277 if (type == error_mark_node)
278 return error_mark_node;
279 if (MAYBE_CLASS_TYPE_P (type)
280 && CLASSTYPE_TEMPLATE_INFO (type)
281 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
282 {
283 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
284 check_member_template (tmpl);
285 return tmpl;
286 }
287 return NULL_TREE;
288 }
289 else if (TREE_CODE (decl) == FIELD_DECL)
290 error ("data member %qD cannot be a member template", decl);
291 else if (DECL_TEMPLATE_INFO (decl))
292 {
293 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
294 {
295 check_member_template (DECL_TI_TEMPLATE (decl));
296 return DECL_TI_TEMPLATE (decl);
297 }
298 else
299 return decl;
300 }
301 else
302 error ("invalid member template declaration %qD", decl);
303
304 return error_mark_node;
305 }
306
307 /* Create a template info node. */
308
309 tree
310 build_template_info (tree template_decl, tree template_args)
311 {
312 tree result = make_node (TEMPLATE_INFO);
313 TI_TEMPLATE (result) = template_decl;
314 TI_ARGS (result) = template_args;
315 return result;
316 }
317
318 /* Return the template info node corresponding to T, whatever T is. */
319
320 tree
321 get_template_info (const_tree t)
322 {
323 tree tinfo = NULL_TREE;
324
325 if (!t || t == error_mark_node)
326 return NULL;
327
328 if (TREE_CODE (t) == NAMESPACE_DECL)
329 return NULL;
330
331 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
332 tinfo = DECL_TEMPLATE_INFO (t);
333
334 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
335 t = TREE_TYPE (t);
336
337 if (OVERLOAD_TYPE_P (t))
338 tinfo = TYPE_TEMPLATE_INFO (t);
339 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
340 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
341
342 return tinfo;
343 }
344
345 /* Returns the template nesting level of the indicated class TYPE.
346
347 For example, in:
348 template <class T>
349 struct A
350 {
351 template <class U>
352 struct B {};
353 };
354
355 A<T>::B<U> has depth two, while A<T> has depth one.
356 Both A<T>::B<int> and A<int>::B<U> have depth one, if
357 they are instantiations, not specializations.
358
359 This function is guaranteed to return 0 if passed NULL_TREE so
360 that, for example, `template_class_depth (current_class_type)' is
361 always safe. */
362
363 int
364 template_class_depth (tree type)
365 {
366 int depth;
367
368 for (depth = 0;
369 type && TREE_CODE (type) != NAMESPACE_DECL;
370 type = (TREE_CODE (type) == FUNCTION_DECL)
371 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
372 {
373 tree tinfo = get_template_info (type);
374
375 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
376 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
377 ++depth;
378 }
379
380 return depth;
381 }
382
383 /* Subroutine of maybe_begin_member_template_processing.
384 Returns true if processing DECL needs us to push template parms. */
385
386 static bool
387 inline_needs_template_parms (tree decl, bool nsdmi)
388 {
389 if (!decl || (!nsdmi && ! DECL_TEMPLATE_INFO (decl)))
390 return false;
391
392 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
393 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
394 }
395
396 /* Subroutine of maybe_begin_member_template_processing.
397 Push the template parms in PARMS, starting from LEVELS steps into the
398 chain, and ending at the beginning, since template parms are listed
399 innermost first. */
400
401 static void
402 push_inline_template_parms_recursive (tree parmlist, int levels)
403 {
404 tree parms = TREE_VALUE (parmlist);
405 int i;
406
407 if (levels > 1)
408 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
409
410 ++processing_template_decl;
411 current_template_parms
412 = tree_cons (size_int (processing_template_decl),
413 parms, current_template_parms);
414 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
415
416 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
417 NULL);
418 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
419 {
420 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
421
422 if (error_operand_p (parm))
423 continue;
424
425 gcc_assert (DECL_P (parm));
426
427 switch (TREE_CODE (parm))
428 {
429 case TYPE_DECL:
430 case TEMPLATE_DECL:
431 pushdecl (parm);
432 break;
433
434 case PARM_DECL:
435 {
436 /* Make a CONST_DECL as is done in process_template_parm.
437 It is ugly that we recreate this here; the original
438 version built in process_template_parm is no longer
439 available. */
440 tree decl = build_decl (DECL_SOURCE_LOCATION (parm),
441 CONST_DECL, DECL_NAME (parm),
442 TREE_TYPE (parm));
443 DECL_ARTIFICIAL (decl) = 1;
444 TREE_CONSTANT (decl) = 1;
445 TREE_READONLY (decl) = 1;
446 DECL_INITIAL (decl) = DECL_INITIAL (parm);
447 SET_DECL_TEMPLATE_PARM_P (decl);
448 pushdecl (decl);
449 }
450 break;
451
452 default:
453 gcc_unreachable ();
454 }
455 }
456 }
457
458 /* Restore the template parameter context for a member template, a
459 friend template defined in a class definition, or a non-template
460 member of template class. */
461
462 void
463 maybe_begin_member_template_processing (tree decl)
464 {
465 tree parms;
466 int levels = 0;
467 bool nsdmi = TREE_CODE (decl) == FIELD_DECL;
468
469 if (nsdmi)
470 {
471 tree ctx = DECL_CONTEXT (decl);
472 decl = (CLASSTYPE_TEMPLATE_INFO (ctx)
473 /* Disregard full specializations (c++/60999). */
474 && uses_template_parms (ctx)
475 ? CLASSTYPE_TI_TEMPLATE (ctx) : NULL_TREE);
476 }
477
478 if (inline_needs_template_parms (decl, nsdmi))
479 {
480 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
481 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
482
483 if (DECL_TEMPLATE_SPECIALIZATION (decl))
484 {
485 --levels;
486 parms = TREE_CHAIN (parms);
487 }
488
489 push_inline_template_parms_recursive (parms, levels);
490 }
491
492 /* Remember how many levels of template parameters we pushed so that
493 we can pop them later. */
494 inline_parm_levels.safe_push (levels);
495 }
496
497 /* Undo the effects of maybe_begin_member_template_processing. */
498
499 void
500 maybe_end_member_template_processing (void)
501 {
502 int i;
503 int last;
504
505 if (inline_parm_levels.length () == 0)
506 return;
507
508 last = inline_parm_levels.pop ();
509 for (i = 0; i < last; ++i)
510 {
511 --processing_template_decl;
512 current_template_parms = TREE_CHAIN (current_template_parms);
513 poplevel (0, 0, 0);
514 }
515 }
516
517 /* Return a new template argument vector which contains all of ARGS,
518 but has as its innermost set of arguments the EXTRA_ARGS. */
519
520 static tree
521 add_to_template_args (tree args, tree extra_args)
522 {
523 tree new_args;
524 int extra_depth;
525 int i;
526 int j;
527
528 if (args == NULL_TREE || extra_args == error_mark_node)
529 return extra_args;
530
531 extra_depth = TMPL_ARGS_DEPTH (extra_args);
532 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
533
534 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
535 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
536
537 for (j = 1; j <= extra_depth; ++j, ++i)
538 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
539
540 return new_args;
541 }
542
543 /* Like add_to_template_args, but only the outermost ARGS are added to
544 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
545 (EXTRA_ARGS) levels are added. This function is used to combine
546 the template arguments from a partial instantiation with the
547 template arguments used to attain the full instantiation from the
548 partial instantiation. */
549
550 static tree
551 add_outermost_template_args (tree args, tree extra_args)
552 {
553 tree new_args;
554
555 /* If there are more levels of EXTRA_ARGS than there are ARGS,
556 something very fishy is going on. */
557 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
558
559 /* If *all* the new arguments will be the EXTRA_ARGS, just return
560 them. */
561 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
562 return extra_args;
563
564 /* For the moment, we make ARGS look like it contains fewer levels. */
565 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
566
567 new_args = add_to_template_args (args, extra_args);
568
569 /* Now, we restore ARGS to its full dimensions. */
570 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
571
572 return new_args;
573 }
574
575 /* Return the N levels of innermost template arguments from the ARGS. */
576
577 tree
578 get_innermost_template_args (tree args, int n)
579 {
580 tree new_args;
581 int extra_levels;
582 int i;
583
584 gcc_assert (n >= 0);
585
586 /* If N is 1, just return the innermost set of template arguments. */
587 if (n == 1)
588 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
589
590 /* If we're not removing anything, just return the arguments we were
591 given. */
592 extra_levels = TMPL_ARGS_DEPTH (args) - n;
593 gcc_assert (extra_levels >= 0);
594 if (extra_levels == 0)
595 return args;
596
597 /* Make a new set of arguments, not containing the outer arguments. */
598 new_args = make_tree_vec (n);
599 for (i = 1; i <= n; ++i)
600 SET_TMPL_ARGS_LEVEL (new_args, i,
601 TMPL_ARGS_LEVEL (args, i + extra_levels));
602
603 return new_args;
604 }
605
606 /* The inverse of get_innermost_template_args: Return all but the innermost
607 EXTRA_LEVELS levels of template arguments from the ARGS. */
608
609 static tree
610 strip_innermost_template_args (tree args, int extra_levels)
611 {
612 tree new_args;
613 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
614 int i;
615
616 gcc_assert (n >= 0);
617
618 /* If N is 1, just return the outermost set of template arguments. */
619 if (n == 1)
620 return TMPL_ARGS_LEVEL (args, 1);
621
622 /* If we're not removing anything, just return the arguments we were
623 given. */
624 gcc_assert (extra_levels >= 0);
625 if (extra_levels == 0)
626 return args;
627
628 /* Make a new set of arguments, not containing the inner arguments. */
629 new_args = make_tree_vec (n);
630 for (i = 1; i <= n; ++i)
631 SET_TMPL_ARGS_LEVEL (new_args, i,
632 TMPL_ARGS_LEVEL (args, i));
633
634 return new_args;
635 }
636
637 /* We've got a template header coming up; push to a new level for storing
638 the parms. */
639
640 void
641 begin_template_parm_list (void)
642 {
643 /* We use a non-tag-transparent scope here, which causes pushtag to
644 put tags in this scope, rather than in the enclosing class or
645 namespace scope. This is the right thing, since we want
646 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
647 global template class, push_template_decl handles putting the
648 TEMPLATE_DECL into top-level scope. For a nested template class,
649 e.g.:
650
651 template <class T> struct S1 {
652 template <class T> struct S2 {};
653 };
654
655 pushtag contains special code to call pushdecl_with_scope on the
656 TEMPLATE_DECL for S2. */
657 begin_scope (sk_template_parms, NULL);
658 ++processing_template_decl;
659 ++processing_template_parmlist;
660 note_template_header (0);
661 }
662
663 /* This routine is called when a specialization is declared. If it is
664 invalid to declare a specialization here, an error is reported and
665 false is returned, otherwise this routine will return true. */
666
667 static bool
668 check_specialization_scope (void)
669 {
670 tree scope = current_scope ();
671
672 /* [temp.expl.spec]
673
674 An explicit specialization shall be declared in the namespace of
675 which the template is a member, or, for member templates, in the
676 namespace of which the enclosing class or enclosing class
677 template is a member. An explicit specialization of a member
678 function, member class or static data member of a class template
679 shall be declared in the namespace of which the class template
680 is a member. */
681 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
682 {
683 error ("explicit specialization in non-namespace scope %qD", scope);
684 return false;
685 }
686
687 /* [temp.expl.spec]
688
689 In an explicit specialization declaration for a member of a class
690 template or a member template that appears in namespace scope,
691 the member template and some of its enclosing class templates may
692 remain unspecialized, except that the declaration shall not
693 explicitly specialize a class member template if its enclosing
694 class templates are not explicitly specialized as well. */
695 if (current_template_parms)
696 {
697 error ("enclosing class templates are not explicitly specialized");
698 return false;
699 }
700
701 return true;
702 }
703
704 /* We've just seen template <>. */
705
706 bool
707 begin_specialization (void)
708 {
709 begin_scope (sk_template_spec, NULL);
710 note_template_header (1);
711 return check_specialization_scope ();
712 }
713
714 /* Called at then end of processing a declaration preceded by
715 template<>. */
716
717 void
718 end_specialization (void)
719 {
720 finish_scope ();
721 reset_specialization ();
722 }
723
724 /* Any template <>'s that we have seen thus far are not referring to a
725 function specialization. */
726
727 void
728 reset_specialization (void)
729 {
730 processing_specialization = 0;
731 template_header_count = 0;
732 }
733
734 /* We've just seen a template header. If SPECIALIZATION is nonzero,
735 it was of the form template <>. */
736
737 static void
738 note_template_header (int specialization)
739 {
740 processing_specialization = specialization;
741 template_header_count++;
742 }
743
744 /* We're beginning an explicit instantiation. */
745
746 void
747 begin_explicit_instantiation (void)
748 {
749 gcc_assert (!processing_explicit_instantiation);
750 processing_explicit_instantiation = true;
751 }
752
753
754 void
755 end_explicit_instantiation (void)
756 {
757 gcc_assert (processing_explicit_instantiation);
758 processing_explicit_instantiation = false;
759 }
760
761 /* An explicit specialization or partial specialization of TMPL is being
762 declared. Check that the namespace in which the specialization is
763 occurring is permissible. Returns false iff it is invalid to
764 specialize TMPL in the current namespace. */
765
766 static bool
767 check_specialization_namespace (tree tmpl)
768 {
769 tree tpl_ns = decl_namespace_context (tmpl);
770
771 /* [tmpl.expl.spec]
772
773 An explicit specialization shall be declared in the namespace of
774 which the template is a member, or, for member templates, in the
775 namespace of which the enclosing class or enclosing class
776 template is a member. An explicit specialization of a member
777 function, member class or static data member of a class template
778 shall be declared in the namespace of which the class template is
779 a member. */
780 if (current_scope() != DECL_CONTEXT (tmpl)
781 && !at_namespace_scope_p ())
782 {
783 error ("specialization of %qD must appear at namespace scope", tmpl);
784 return false;
785 }
786 if (is_associated_namespace (current_namespace, tpl_ns))
787 /* Same or super-using namespace. */
788 return true;
789 else
790 {
791 permerror (input_location, "specialization of %qD in different namespace", tmpl);
792 permerror (input_location, " from definition of %q+#D", tmpl);
793 return false;
794 }
795 }
796
797 /* SPEC is an explicit instantiation. Check that it is valid to
798 perform this explicit instantiation in the current namespace. */
799
800 static void
801 check_explicit_instantiation_namespace (tree spec)
802 {
803 tree ns;
804
805 /* DR 275: An explicit instantiation shall appear in an enclosing
806 namespace of its template. */
807 ns = decl_namespace_context (spec);
808 if (!is_ancestor (current_namespace, ns))
809 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
810 "(which does not enclose namespace %qD)",
811 spec, current_namespace, ns);
812 }
813
814 /* The TYPE is being declared. If it is a template type, that means it
815 is a partial specialization. Do appropriate error-checking. */
816
817 tree
818 maybe_process_partial_specialization (tree type)
819 {
820 tree context;
821
822 if (type == error_mark_node)
823 return error_mark_node;
824
825 /* A lambda that appears in specialization context is not itself a
826 specialization. */
827 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
828 return type;
829
830 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
831 {
832 error ("name of class shadows template template parameter %qD",
833 TYPE_NAME (type));
834 return error_mark_node;
835 }
836
837 context = TYPE_CONTEXT (type);
838
839 if (TYPE_ALIAS_P (type))
840 {
841 if (TYPE_TEMPLATE_INFO (type)
842 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
843 error ("specialization of alias template %qD",
844 TYPE_TI_TEMPLATE (type));
845 else
846 error ("explicit specialization of non-template %qT", type);
847 return error_mark_node;
848 }
849 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
850 {
851 /* This is for ordinary explicit specialization and partial
852 specialization of a template class such as:
853
854 template <> class C<int>;
855
856 or:
857
858 template <class T> class C<T*>;
859
860 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
861
862 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type)
863 && !COMPLETE_TYPE_P (type))
864 {
865 if (!check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (type))
866 && !at_namespace_scope_p ())
867 return error_mark_node;
868 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
869 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
870 if (processing_template_decl)
871 {
872 if (push_template_decl (TYPE_MAIN_DECL (type))
873 == error_mark_node)
874 return error_mark_node;
875 }
876 }
877 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
878 error ("specialization of %qT after instantiation", type);
879 else if (errorcount && !processing_specialization
880 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
881 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
882 /* Trying to define a specialization either without a template<> header
883 or in an inappropriate place. We've already given an error, so just
884 bail now so we don't actually define the specialization. */
885 return error_mark_node;
886 }
887 else if (CLASS_TYPE_P (type)
888 && !CLASSTYPE_USE_TEMPLATE (type)
889 && CLASSTYPE_TEMPLATE_INFO (type)
890 && context && CLASS_TYPE_P (context)
891 && CLASSTYPE_TEMPLATE_INFO (context))
892 {
893 /* This is for an explicit specialization of member class
894 template according to [temp.expl.spec/18]:
895
896 template <> template <class U> class C<int>::D;
897
898 The context `C<int>' must be an implicit instantiation.
899 Otherwise this is just a member class template declared
900 earlier like:
901
902 template <> class C<int> { template <class U> class D; };
903 template <> template <class U> class C<int>::D;
904
905 In the first case, `C<int>::D' is a specialization of `C<T>::D'
906 while in the second case, `C<int>::D' is a primary template
907 and `C<T>::D' may not exist. */
908
909 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
910 && !COMPLETE_TYPE_P (type))
911 {
912 tree t;
913 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
914
915 if (current_namespace
916 != decl_namespace_context (tmpl))
917 {
918 permerror (input_location, "specializing %q#T in different namespace", type);
919 permerror (input_location, " from definition of %q+#D", tmpl);
920 }
921
922 /* Check for invalid specialization after instantiation:
923
924 template <> template <> class C<int>::D<int>;
925 template <> template <class U> class C<int>::D; */
926
927 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
928 t; t = TREE_CHAIN (t))
929 {
930 tree inst = TREE_VALUE (t);
931 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst)
932 || !COMPLETE_OR_OPEN_TYPE_P (inst))
933 {
934 /* We already have a full specialization of this partial
935 instantiation, or a full specialization has been
936 looked up but not instantiated. Reassign it to the
937 new member specialization template. */
938 spec_entry elt;
939 spec_entry *entry;
940
941 elt.tmpl = most_general_template (tmpl);
942 elt.args = CLASSTYPE_TI_ARGS (inst);
943 elt.spec = inst;
944
945 type_specializations->remove_elt (&elt);
946
947 elt.tmpl = tmpl;
948 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
949
950 spec_entry **slot
951 = type_specializations->find_slot (&elt, INSERT);
952 entry = ggc_alloc<spec_entry> ();
953 *entry = elt;
954 *slot = entry;
955 }
956 else
957 /* But if we've had an implicit instantiation, that's a
958 problem ([temp.expl.spec]/6). */
959 error ("specialization %qT after instantiation %qT",
960 type, inst);
961 }
962
963 /* Mark TYPE as a specialization. And as a result, we only
964 have one level of template argument for the innermost
965 class template. */
966 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
967 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
968 CLASSTYPE_TI_ARGS (type)
969 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
970 }
971 }
972 else if (processing_specialization)
973 {
974 /* Someday C++0x may allow for enum template specialization. */
975 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
976 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
977 pedwarn (input_location, OPT_Wpedantic, "template specialization "
978 "of %qD not allowed by ISO C++", type);
979 else
980 {
981 error ("explicit specialization of non-template %qT", type);
982 return error_mark_node;
983 }
984 }
985
986 return type;
987 }
988
989 /* Returns nonzero if we can optimize the retrieval of specializations
990 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
991 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
992
993 static inline bool
994 optimize_specialization_lookup_p (tree tmpl)
995 {
996 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
997 && DECL_CLASS_SCOPE_P (tmpl)
998 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
999 parameter. */
1000 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
1001 /* The optimized lookup depends on the fact that the
1002 template arguments for the member function template apply
1003 purely to the containing class, which is not true if the
1004 containing class is an explicit or partial
1005 specialization. */
1006 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
1007 && !DECL_MEMBER_TEMPLATE_P (tmpl)
1008 && !DECL_CONV_FN_P (tmpl)
1009 /* It is possible to have a template that is not a member
1010 template and is not a member of a template class:
1011
1012 template <typename T>
1013 struct S { friend A::f(); };
1014
1015 Here, the friend function is a template, but the context does
1016 not have template information. The optimized lookup relies
1017 on having ARGS be the template arguments for both the class
1018 and the function template. */
1019 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
1020 }
1021
1022 /* Make sure ARGS doesn't use any inappropriate typedefs; we should have
1023 gone through coerce_template_parms by now. */
1024
1025 static void
1026 check_unstripped_args (tree args ATTRIBUTE_UNUSED)
1027 {
1028 #ifdef ENABLE_CHECKING
1029 ++processing_template_decl;
1030 if (!any_dependent_template_arguments_p (args))
1031 {
1032 tree inner = INNERMOST_TEMPLATE_ARGS (args);
1033 for (int i = 0; i < TREE_VEC_LENGTH (inner); ++i)
1034 {
1035 tree arg = TREE_VEC_ELT (inner, i);
1036 if (TREE_CODE (arg) == TEMPLATE_DECL)
1037 /* OK */;
1038 else if (TYPE_P (arg))
1039 gcc_assert (strip_typedefs (arg, NULL) == arg);
1040 else if (strip_typedefs (TREE_TYPE (arg), NULL) != TREE_TYPE (arg))
1041 /* Allow typedefs on the type of a non-type argument, since a
1042 parameter can have them. */;
1043 else
1044 gcc_assert (strip_typedefs_expr (arg, NULL) == arg);
1045 }
1046 }
1047 --processing_template_decl;
1048 #endif
1049 }
1050
1051 /* Retrieve the specialization (in the sense of [temp.spec] - a
1052 specialization is either an instantiation or an explicit
1053 specialization) of TMPL for the given template ARGS. If there is
1054 no such specialization, return NULL_TREE. The ARGS are a vector of
1055 arguments, or a vector of vectors of arguments, in the case of
1056 templates with more than one level of parameters.
1057
1058 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1059 then we search for a partial specialization matching ARGS. This
1060 parameter is ignored if TMPL is not a class template.
1061
1062 We can also look up a FIELD_DECL, if it is a lambda capture pack; the
1063 result is a NONTYPE_ARGUMENT_PACK. */
1064
1065 static tree
1066 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1067 {
1068 if (tmpl == NULL_TREE)
1069 return NULL_TREE;
1070
1071 if (args == error_mark_node)
1072 return NULL_TREE;
1073
1074 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL
1075 || TREE_CODE (tmpl) == FIELD_DECL);
1076
1077 /* There should be as many levels of arguments as there are
1078 levels of parameters. */
1079 gcc_assert (TMPL_ARGS_DEPTH (args)
1080 == (TREE_CODE (tmpl) == TEMPLATE_DECL
1081 ? TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl))
1082 : template_class_depth (DECL_CONTEXT (tmpl))));
1083
1084 check_unstripped_args (args);
1085
1086 if (optimize_specialization_lookup_p (tmpl))
1087 {
1088 tree class_template;
1089 tree class_specialization;
1090 vec<tree, va_gc> *methods;
1091 tree fns;
1092 int idx;
1093
1094 /* The template arguments actually apply to the containing
1095 class. Find the class specialization with those
1096 arguments. */
1097 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1098 class_specialization
1099 = retrieve_specialization (class_template, args, 0);
1100 if (!class_specialization)
1101 return NULL_TREE;
1102 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1103 for the specialization. */
1104 idx = class_method_index_for_fn (class_specialization, tmpl);
1105 if (idx == -1)
1106 return NULL_TREE;
1107 /* Iterate through the methods with the indicated name, looking
1108 for the one that has an instance of TMPL. */
1109 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1110 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1111 {
1112 tree fn = OVL_CURRENT (fns);
1113 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1114 /* using-declarations can add base methods to the method vec,
1115 and we don't want those here. */
1116 && DECL_CONTEXT (fn) == class_specialization)
1117 return fn;
1118 }
1119 return NULL_TREE;
1120 }
1121 else
1122 {
1123 spec_entry *found;
1124 spec_entry elt;
1125 hash_table<spec_hasher> *specializations;
1126
1127 elt.tmpl = tmpl;
1128 elt.args = args;
1129 elt.spec = NULL_TREE;
1130
1131 if (DECL_CLASS_TEMPLATE_P (tmpl))
1132 specializations = type_specializations;
1133 else
1134 specializations = decl_specializations;
1135
1136 if (hash == 0)
1137 hash = spec_hasher::hash (&elt);
1138 found = specializations->find_with_hash (&elt, hash);
1139 if (found)
1140 return found->spec;
1141 }
1142
1143 return NULL_TREE;
1144 }
1145
1146 /* Like retrieve_specialization, but for local declarations. */
1147
1148 static tree
1149 retrieve_local_specialization (tree tmpl)
1150 {
1151 if (local_specializations == NULL)
1152 return NULL_TREE;
1153
1154 tree *slot = local_specializations->get (tmpl);
1155 return slot ? *slot : NULL_TREE;
1156 }
1157
1158 /* Returns nonzero iff DECL is a specialization of TMPL. */
1159
1160 int
1161 is_specialization_of (tree decl, tree tmpl)
1162 {
1163 tree t;
1164
1165 if (TREE_CODE (decl) == FUNCTION_DECL)
1166 {
1167 for (t = decl;
1168 t != NULL_TREE;
1169 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1170 if (t == tmpl)
1171 return 1;
1172 }
1173 else
1174 {
1175 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1176
1177 for (t = TREE_TYPE (decl);
1178 t != NULL_TREE;
1179 t = CLASSTYPE_USE_TEMPLATE (t)
1180 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1181 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1182 return 1;
1183 }
1184
1185 return 0;
1186 }
1187
1188 /* Returns nonzero iff DECL is a specialization of friend declaration
1189 FRIEND_DECL according to [temp.friend]. */
1190
1191 bool
1192 is_specialization_of_friend (tree decl, tree friend_decl)
1193 {
1194 bool need_template = true;
1195 int template_depth;
1196
1197 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1198 || TREE_CODE (decl) == TYPE_DECL);
1199
1200 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1201 of a template class, we want to check if DECL is a specialization
1202 if this. */
1203 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1204 && DECL_TEMPLATE_INFO (friend_decl)
1205 && !DECL_USE_TEMPLATE (friend_decl))
1206 {
1207 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1208 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1209 need_template = false;
1210 }
1211 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1212 && !PRIMARY_TEMPLATE_P (friend_decl))
1213 need_template = false;
1214
1215 /* There is nothing to do if this is not a template friend. */
1216 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1217 return false;
1218
1219 if (is_specialization_of (decl, friend_decl))
1220 return true;
1221
1222 /* [temp.friend/6]
1223 A member of a class template may be declared to be a friend of a
1224 non-template class. In this case, the corresponding member of
1225 every specialization of the class template is a friend of the
1226 class granting friendship.
1227
1228 For example, given a template friend declaration
1229
1230 template <class T> friend void A<T>::f();
1231
1232 the member function below is considered a friend
1233
1234 template <> struct A<int> {
1235 void f();
1236 };
1237
1238 For this type of template friend, TEMPLATE_DEPTH below will be
1239 nonzero. To determine if DECL is a friend of FRIEND, we first
1240 check if the enclosing class is a specialization of another. */
1241
1242 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1243 if (template_depth
1244 && DECL_CLASS_SCOPE_P (decl)
1245 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1246 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1247 {
1248 /* Next, we check the members themselves. In order to handle
1249 a few tricky cases, such as when FRIEND_DECL's are
1250
1251 template <class T> friend void A<T>::g(T t);
1252 template <class T> template <T t> friend void A<T>::h();
1253
1254 and DECL's are
1255
1256 void A<int>::g(int);
1257 template <int> void A<int>::h();
1258
1259 we need to figure out ARGS, the template arguments from
1260 the context of DECL. This is required for template substitution
1261 of `T' in the function parameter of `g' and template parameter
1262 of `h' in the above examples. Here ARGS corresponds to `int'. */
1263
1264 tree context = DECL_CONTEXT (decl);
1265 tree args = NULL_TREE;
1266 int current_depth = 0;
1267
1268 while (current_depth < template_depth)
1269 {
1270 if (CLASSTYPE_TEMPLATE_INFO (context))
1271 {
1272 if (current_depth == 0)
1273 args = TYPE_TI_ARGS (context);
1274 else
1275 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1276 current_depth++;
1277 }
1278 context = TYPE_CONTEXT (context);
1279 }
1280
1281 if (TREE_CODE (decl) == FUNCTION_DECL)
1282 {
1283 bool is_template;
1284 tree friend_type;
1285 tree decl_type;
1286 tree friend_args_type;
1287 tree decl_args_type;
1288
1289 /* Make sure that both DECL and FRIEND_DECL are templates or
1290 non-templates. */
1291 is_template = DECL_TEMPLATE_INFO (decl)
1292 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1293 if (need_template ^ is_template)
1294 return false;
1295 else if (is_template)
1296 {
1297 /* If both are templates, check template parameter list. */
1298 tree friend_parms
1299 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1300 args, tf_none);
1301 if (!comp_template_parms
1302 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1303 friend_parms))
1304 return false;
1305
1306 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1307 }
1308 else
1309 decl_type = TREE_TYPE (decl);
1310
1311 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1312 tf_none, NULL_TREE);
1313 if (friend_type == error_mark_node)
1314 return false;
1315
1316 /* Check if return types match. */
1317 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1318 return false;
1319
1320 /* Check if function parameter types match, ignoring the
1321 `this' parameter. */
1322 friend_args_type = TYPE_ARG_TYPES (friend_type);
1323 decl_args_type = TYPE_ARG_TYPES (decl_type);
1324 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1325 friend_args_type = TREE_CHAIN (friend_args_type);
1326 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1327 decl_args_type = TREE_CHAIN (decl_args_type);
1328
1329 return compparms (decl_args_type, friend_args_type);
1330 }
1331 else
1332 {
1333 /* DECL is a TYPE_DECL */
1334 bool is_template;
1335 tree decl_type = TREE_TYPE (decl);
1336
1337 /* Make sure that both DECL and FRIEND_DECL are templates or
1338 non-templates. */
1339 is_template
1340 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1341 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1342
1343 if (need_template ^ is_template)
1344 return false;
1345 else if (is_template)
1346 {
1347 tree friend_parms;
1348 /* If both are templates, check the name of the two
1349 TEMPLATE_DECL's first because is_friend didn't. */
1350 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1351 != DECL_NAME (friend_decl))
1352 return false;
1353
1354 /* Now check template parameter list. */
1355 friend_parms
1356 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1357 args, tf_none);
1358 return comp_template_parms
1359 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1360 friend_parms);
1361 }
1362 else
1363 return (DECL_NAME (decl)
1364 == DECL_NAME (friend_decl));
1365 }
1366 }
1367 return false;
1368 }
1369
1370 /* Register the specialization SPEC as a specialization of TMPL with
1371 the indicated ARGS. IS_FRIEND indicates whether the specialization
1372 is actually just a friend declaration. Returns SPEC, or an
1373 equivalent prior declaration, if available.
1374
1375 We also store instantiations of field packs in the hash table, even
1376 though they are not themselves templates, to make lookup easier. */
1377
1378 static tree
1379 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1380 hashval_t hash)
1381 {
1382 tree fn;
1383 spec_entry **slot = NULL;
1384 spec_entry elt;
1385
1386 gcc_assert ((TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec))
1387 || (TREE_CODE (tmpl) == FIELD_DECL
1388 && TREE_CODE (spec) == NONTYPE_ARGUMENT_PACK));
1389
1390 if (TREE_CODE (spec) == FUNCTION_DECL
1391 && uses_template_parms (DECL_TI_ARGS (spec)))
1392 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1393 register it; we want the corresponding TEMPLATE_DECL instead.
1394 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1395 the more obvious `uses_template_parms (spec)' to avoid problems
1396 with default function arguments. In particular, given
1397 something like this:
1398
1399 template <class T> void f(T t1, T t = T())
1400
1401 the default argument expression is not substituted for in an
1402 instantiation unless and until it is actually needed. */
1403 return spec;
1404
1405 if (optimize_specialization_lookup_p (tmpl))
1406 /* We don't put these specializations in the hash table, but we might
1407 want to give an error about a mismatch. */
1408 fn = retrieve_specialization (tmpl, args, 0);
1409 else
1410 {
1411 elt.tmpl = tmpl;
1412 elt.args = args;
1413 elt.spec = spec;
1414
1415 if (hash == 0)
1416 hash = spec_hasher::hash (&elt);
1417
1418 slot =
1419 decl_specializations->find_slot_with_hash (&elt, hash, INSERT);
1420 if (*slot)
1421 fn = ((spec_entry *) *slot)->spec;
1422 else
1423 fn = NULL_TREE;
1424 }
1425
1426 /* We can sometimes try to re-register a specialization that we've
1427 already got. In particular, regenerate_decl_from_template calls
1428 duplicate_decls which will update the specialization list. But,
1429 we'll still get called again here anyhow. It's more convenient
1430 to simply allow this than to try to prevent it. */
1431 if (fn == spec)
1432 return spec;
1433 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1434 {
1435 if (DECL_TEMPLATE_INSTANTIATION (fn))
1436 {
1437 if (DECL_ODR_USED (fn)
1438 || DECL_EXPLICIT_INSTANTIATION (fn))
1439 {
1440 error ("specialization of %qD after instantiation",
1441 fn);
1442 return error_mark_node;
1443 }
1444 else
1445 {
1446 tree clone;
1447 /* This situation should occur only if the first
1448 specialization is an implicit instantiation, the
1449 second is an explicit specialization, and the
1450 implicit instantiation has not yet been used. That
1451 situation can occur if we have implicitly
1452 instantiated a member function and then specialized
1453 it later.
1454
1455 We can also wind up here if a friend declaration that
1456 looked like an instantiation turns out to be a
1457 specialization:
1458
1459 template <class T> void foo(T);
1460 class S { friend void foo<>(int) };
1461 template <> void foo(int);
1462
1463 We transform the existing DECL in place so that any
1464 pointers to it become pointers to the updated
1465 declaration.
1466
1467 If there was a definition for the template, but not
1468 for the specialization, we want this to look as if
1469 there were no definition, and vice versa. */
1470 DECL_INITIAL (fn) = NULL_TREE;
1471 duplicate_decls (spec, fn, is_friend);
1472 /* The call to duplicate_decls will have applied
1473 [temp.expl.spec]:
1474
1475 An explicit specialization of a function template
1476 is inline only if it is explicitly declared to be,
1477 and independently of whether its function template
1478 is.
1479
1480 to the primary function; now copy the inline bits to
1481 the various clones. */
1482 FOR_EACH_CLONE (clone, fn)
1483 {
1484 DECL_DECLARED_INLINE_P (clone)
1485 = DECL_DECLARED_INLINE_P (fn);
1486 DECL_SOURCE_LOCATION (clone)
1487 = DECL_SOURCE_LOCATION (fn);
1488 DECL_DELETED_FN (clone)
1489 = DECL_DELETED_FN (fn);
1490 }
1491 check_specialization_namespace (tmpl);
1492
1493 return fn;
1494 }
1495 }
1496 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1497 {
1498 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1499 /* Dup decl failed, but this is a new definition. Set the
1500 line number so any errors match this new
1501 definition. */
1502 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1503
1504 return fn;
1505 }
1506 }
1507 else if (fn)
1508 return duplicate_decls (spec, fn, is_friend);
1509
1510 /* A specialization must be declared in the same namespace as the
1511 template it is specializing. */
1512 if (DECL_P (spec) && DECL_TEMPLATE_SPECIALIZATION (spec)
1513 && !check_specialization_namespace (tmpl))
1514 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1515
1516 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1517 {
1518 spec_entry *entry = ggc_alloc<spec_entry> ();
1519 gcc_assert (tmpl && args && spec);
1520 *entry = elt;
1521 *slot = entry;
1522 if ((TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1523 && PRIMARY_TEMPLATE_P (tmpl)
1524 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1525 || variable_template_p (tmpl))
1526 /* If TMPL is a forward declaration of a template function, keep a list
1527 of all specializations in case we need to reassign them to a friend
1528 template later in tsubst_friend_function.
1529
1530 Also keep a list of all variable template instantiations so that
1531 process_partial_specialization can check whether a later partial
1532 specialization would have used it. */
1533 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1534 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1535 }
1536
1537 return spec;
1538 }
1539
1540 /* Returns true iff two spec_entry nodes are equivalent. Only compares the
1541 TMPL and ARGS members, ignores SPEC. */
1542
1543 int comparing_specializations;
1544
1545 bool
1546 spec_hasher::equal (spec_entry *e1, spec_entry *e2)
1547 {
1548 int equal;
1549
1550 ++comparing_specializations;
1551 equal = (e1->tmpl == e2->tmpl
1552 && comp_template_args (e1->args, e2->args));
1553 --comparing_specializations;
1554
1555 return equal;
1556 }
1557
1558 /* Returns a hash for a template TMPL and template arguments ARGS. */
1559
1560 static hashval_t
1561 hash_tmpl_and_args (tree tmpl, tree args)
1562 {
1563 hashval_t val = DECL_UID (tmpl);
1564 return iterative_hash_template_arg (args, val);
1565 }
1566
1567 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1568 ignoring SPEC. */
1569
1570 hashval_t
1571 spec_hasher::hash (spec_entry *e)
1572 {
1573 return hash_tmpl_and_args (e->tmpl, e->args);
1574 }
1575
1576 /* Recursively calculate a hash value for a template argument ARG, for use
1577 in the hash tables of template specializations. */
1578
1579 hashval_t
1580 iterative_hash_template_arg (tree arg, hashval_t val)
1581 {
1582 unsigned HOST_WIDE_INT i;
1583 enum tree_code code;
1584 char tclass;
1585
1586 if (arg == NULL_TREE)
1587 return iterative_hash_object (arg, val);
1588
1589 if (!TYPE_P (arg))
1590 STRIP_NOPS (arg);
1591
1592 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1593 /* We can get one of these when re-hashing a previous entry in the middle
1594 of substituting into a pack expansion. Just look through it. */
1595 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1596
1597 code = TREE_CODE (arg);
1598 tclass = TREE_CODE_CLASS (code);
1599
1600 val = iterative_hash_object (code, val);
1601
1602 switch (code)
1603 {
1604 case ERROR_MARK:
1605 return val;
1606
1607 case IDENTIFIER_NODE:
1608 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1609
1610 case TREE_VEC:
1611 {
1612 int i, len = TREE_VEC_LENGTH (arg);
1613 for (i = 0; i < len; ++i)
1614 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1615 return val;
1616 }
1617
1618 case TYPE_PACK_EXPANSION:
1619 case EXPR_PACK_EXPANSION:
1620 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1621 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1622
1623 case TYPE_ARGUMENT_PACK:
1624 case NONTYPE_ARGUMENT_PACK:
1625 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1626
1627 case TREE_LIST:
1628 for (; arg; arg = TREE_CHAIN (arg))
1629 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1630 return val;
1631
1632 case OVERLOAD:
1633 for (; arg; arg = OVL_NEXT (arg))
1634 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1635 return val;
1636
1637 case CONSTRUCTOR:
1638 {
1639 tree field, value;
1640 iterative_hash_template_arg (TREE_TYPE (arg), val);
1641 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1642 {
1643 val = iterative_hash_template_arg (field, val);
1644 val = iterative_hash_template_arg (value, val);
1645 }
1646 return val;
1647 }
1648
1649 case PARM_DECL:
1650 if (!DECL_ARTIFICIAL (arg))
1651 {
1652 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1653 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1654 }
1655 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1656
1657 case TARGET_EXPR:
1658 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1659
1660 case PTRMEM_CST:
1661 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1662 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1663
1664 case TEMPLATE_PARM_INDEX:
1665 val = iterative_hash_template_arg
1666 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1667 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1668 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1669
1670 case TRAIT_EXPR:
1671 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1672 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1673 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1674
1675 case BASELINK:
1676 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1677 val);
1678 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1679 val);
1680
1681 case MODOP_EXPR:
1682 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1683 code = TREE_CODE (TREE_OPERAND (arg, 1));
1684 val = iterative_hash_object (code, val);
1685 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1686
1687 case LAMBDA_EXPR:
1688 /* A lambda can't appear in a template arg, but don't crash on
1689 erroneous input. */
1690 gcc_assert (seen_error ());
1691 return val;
1692
1693 case CAST_EXPR:
1694 case IMPLICIT_CONV_EXPR:
1695 case STATIC_CAST_EXPR:
1696 case REINTERPRET_CAST_EXPR:
1697 case CONST_CAST_EXPR:
1698 case DYNAMIC_CAST_EXPR:
1699 case NEW_EXPR:
1700 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1701 /* Now hash operands as usual. */
1702 break;
1703
1704 default:
1705 break;
1706 }
1707
1708 switch (tclass)
1709 {
1710 case tcc_type:
1711 if (alias_template_specialization_p (arg))
1712 {
1713 // We want an alias specialization that survived strip_typedefs
1714 // to hash differently from its TYPE_CANONICAL, to avoid hash
1715 // collisions that compare as different in template_args_equal.
1716 // These could be dependent specializations that strip_typedefs
1717 // left alone, or untouched specializations because
1718 // coerce_template_parms returns the unconverted template
1719 // arguments if it sees incomplete argument packs.
1720 tree ti = TYPE_TEMPLATE_INFO (arg);
1721 return hash_tmpl_and_args (TI_TEMPLATE (ti), TI_ARGS (ti));
1722 }
1723 if (TYPE_CANONICAL (arg))
1724 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1725 val);
1726 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1727 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1728 /* Otherwise just compare the types during lookup. */
1729 return val;
1730
1731 case tcc_declaration:
1732 case tcc_constant:
1733 return iterative_hash_expr (arg, val);
1734
1735 default:
1736 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1737 {
1738 unsigned n = cp_tree_operand_length (arg);
1739 for (i = 0; i < n; ++i)
1740 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1741 return val;
1742 }
1743 }
1744 gcc_unreachable ();
1745 return 0;
1746 }
1747
1748 /* Unregister the specialization SPEC as a specialization of TMPL.
1749 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1750 if the SPEC was listed as a specialization of TMPL.
1751
1752 Note that SPEC has been ggc_freed, so we can't look inside it. */
1753
1754 bool
1755 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1756 {
1757 spec_entry *entry;
1758 spec_entry elt;
1759
1760 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1761 elt.args = TI_ARGS (tinfo);
1762 elt.spec = NULL_TREE;
1763
1764 entry = decl_specializations->find (&elt);
1765 if (entry != NULL)
1766 {
1767 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1768 gcc_assert (new_spec != NULL_TREE);
1769 entry->spec = new_spec;
1770 return 1;
1771 }
1772
1773 return 0;
1774 }
1775
1776 /* Like register_specialization, but for local declarations. We are
1777 registering SPEC, an instantiation of TMPL. */
1778
1779 static void
1780 register_local_specialization (tree spec, tree tmpl)
1781 {
1782 local_specializations->put (tmpl, spec);
1783 }
1784
1785 /* TYPE is a class type. Returns true if TYPE is an explicitly
1786 specialized class. */
1787
1788 bool
1789 explicit_class_specialization_p (tree type)
1790 {
1791 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1792 return false;
1793 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1794 }
1795
1796 /* Print the list of functions at FNS, going through all the overloads
1797 for each element of the list. Alternatively, FNS can not be a
1798 TREE_LIST, in which case it will be printed together with all the
1799 overloads.
1800
1801 MORE and *STR should respectively be FALSE and NULL when the function
1802 is called from the outside. They are used internally on recursive
1803 calls. print_candidates manages the two parameters and leaves NULL
1804 in *STR when it ends. */
1805
1806 static void
1807 print_candidates_1 (tree fns, bool more, const char **str)
1808 {
1809 tree fn, fn2;
1810 char *spaces = NULL;
1811
1812 for (fn = fns; fn; fn = OVL_NEXT (fn))
1813 if (TREE_CODE (fn) == TREE_LIST)
1814 {
1815 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1816 print_candidates_1 (TREE_VALUE (fn2),
1817 TREE_CHAIN (fn2) || more, str);
1818 }
1819 else
1820 {
1821 tree cand = OVL_CURRENT (fn);
1822 if (!*str)
1823 {
1824 /* Pick the prefix string. */
1825 if (!more && !OVL_NEXT (fns))
1826 {
1827 inform (DECL_SOURCE_LOCATION (cand),
1828 "candidate is: %#D", cand);
1829 continue;
1830 }
1831
1832 *str = _("candidates are:");
1833 spaces = get_spaces (*str);
1834 }
1835 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1836 *str = spaces ? spaces : *str;
1837 }
1838
1839 if (!more)
1840 {
1841 free (spaces);
1842 *str = NULL;
1843 }
1844 }
1845
1846 /* Print the list of candidate FNS in an error message. FNS can also
1847 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1848
1849 void
1850 print_candidates (tree fns)
1851 {
1852 const char *str = NULL;
1853 print_candidates_1 (fns, false, &str);
1854 gcc_assert (str == NULL);
1855 }
1856
1857 /* Returns the template (one of the functions given by TEMPLATE_ID)
1858 which can be specialized to match the indicated DECL with the
1859 explicit template args given in TEMPLATE_ID. The DECL may be
1860 NULL_TREE if none is available. In that case, the functions in
1861 TEMPLATE_ID are non-members.
1862
1863 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
1864 specialization of a member template.
1865
1866 The TEMPLATE_COUNT is the number of references to qualifying
1867 template classes that appeared in the name of the function. See
1868 check_explicit_specialization for a more accurate description.
1869
1870 TSK indicates what kind of template declaration (if any) is being
1871 declared. TSK_TEMPLATE indicates that the declaration given by
1872 DECL, though a FUNCTION_DECL, has template parameters, and is
1873 therefore a template function.
1874
1875 The template args (those explicitly specified and those deduced)
1876 are output in a newly created vector *TARGS_OUT.
1877
1878 If it is impossible to determine the result, an error message is
1879 issued. The error_mark_node is returned to indicate failure. */
1880
1881 static tree
1882 determine_specialization (tree template_id,
1883 tree decl,
1884 tree* targs_out,
1885 int need_member_template,
1886 int template_count,
1887 tmpl_spec_kind tsk)
1888 {
1889 tree fns;
1890 tree targs;
1891 tree explicit_targs;
1892 tree candidates = NULL_TREE;
1893 /* A TREE_LIST of templates of which DECL may be a specialization.
1894 The TREE_VALUE of each node is a TEMPLATE_DECL. The
1895 corresponding TREE_PURPOSE is the set of template arguments that,
1896 when used to instantiate the template, would produce a function
1897 with the signature of DECL. */
1898 tree templates = NULL_TREE;
1899 int header_count;
1900 cp_binding_level *b;
1901
1902 *targs_out = NULL_TREE;
1903
1904 if (template_id == error_mark_node || decl == error_mark_node)
1905 return error_mark_node;
1906
1907 /* We shouldn't be specializing a member template of an
1908 unspecialized class template; we already gave an error in
1909 check_specialization_scope, now avoid crashing. */
1910 if (template_count && DECL_CLASS_SCOPE_P (decl)
1911 && template_class_depth (DECL_CONTEXT (decl)) > 0)
1912 {
1913 gcc_assert (errorcount);
1914 return error_mark_node;
1915 }
1916
1917 fns = TREE_OPERAND (template_id, 0);
1918 explicit_targs = TREE_OPERAND (template_id, 1);
1919
1920 if (fns == error_mark_node)
1921 return error_mark_node;
1922
1923 /* Check for baselinks. */
1924 if (BASELINK_P (fns))
1925 fns = BASELINK_FUNCTIONS (fns);
1926
1927 if (TREE_CODE (decl) == FUNCTION_DECL && !is_overloaded_fn (fns))
1928 {
1929 error ("%qD is not a function template", fns);
1930 return error_mark_node;
1931 }
1932 else if (VAR_P (decl) && !variable_template_p (fns))
1933 {
1934 error ("%qD is not a variable template", fns);
1935 return error_mark_node;
1936 }
1937
1938 /* Count the number of template headers specified for this
1939 specialization. */
1940 header_count = 0;
1941 for (b = current_binding_level;
1942 b->kind == sk_template_parms;
1943 b = b->level_chain)
1944 ++header_count;
1945
1946 if (variable_template_p (fns))
1947 {
1948 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (fns));
1949 targs = coerce_template_parms (parms, explicit_targs, fns,
1950 tf_warning_or_error,
1951 /*req_all*/true, /*use_defarg*/true);
1952 templates = tree_cons (targs, fns, templates);
1953 }
1954 else for (; fns; fns = OVL_NEXT (fns))
1955 {
1956 tree fn = OVL_CURRENT (fns);
1957
1958 if (TREE_CODE (fn) == TEMPLATE_DECL)
1959 {
1960 tree decl_arg_types;
1961 tree fn_arg_types;
1962 tree insttype;
1963
1964 /* In case of explicit specialization, we need to check if
1965 the number of template headers appearing in the specialization
1966 is correct. This is usually done in check_explicit_specialization,
1967 but the check done there cannot be exhaustive when specializing
1968 member functions. Consider the following code:
1969
1970 template <> void A<int>::f(int);
1971 template <> template <> void A<int>::f(int);
1972
1973 Assuming that A<int> is not itself an explicit specialization
1974 already, the first line specializes "f" which is a non-template
1975 member function, whilst the second line specializes "f" which
1976 is a template member function. So both lines are syntactically
1977 correct, and check_explicit_specialization does not reject
1978 them.
1979
1980 Here, we can do better, as we are matching the specialization
1981 against the declarations. We count the number of template
1982 headers, and we check if they match TEMPLATE_COUNT + 1
1983 (TEMPLATE_COUNT is the number of qualifying template classes,
1984 plus there must be another header for the member template
1985 itself).
1986
1987 Notice that if header_count is zero, this is not a
1988 specialization but rather a template instantiation, so there
1989 is no check we can perform here. */
1990 if (header_count && header_count != template_count + 1)
1991 continue;
1992
1993 /* Check that the number of template arguments at the
1994 innermost level for DECL is the same as for FN. */
1995 if (current_binding_level->kind == sk_template_parms
1996 && !current_binding_level->explicit_spec_p
1997 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
1998 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
1999 (current_template_parms))))
2000 continue;
2001
2002 /* DECL might be a specialization of FN. */
2003 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2004 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
2005
2006 /* For a non-static member function, we need to make sure
2007 that the const qualification is the same. Since
2008 get_bindings does not try to merge the "this" parameter,
2009 we must do the comparison explicitly. */
2010 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2011 && !same_type_p (TREE_VALUE (fn_arg_types),
2012 TREE_VALUE (decl_arg_types)))
2013 continue;
2014
2015 /* Skip the "this" parameter and, for constructors of
2016 classes with virtual bases, the VTT parameter. A
2017 full specialization of a constructor will have a VTT
2018 parameter, but a template never will. */
2019 decl_arg_types
2020 = skip_artificial_parms_for (decl, decl_arg_types);
2021 fn_arg_types
2022 = skip_artificial_parms_for (fn, fn_arg_types);
2023
2024 /* Function templates cannot be specializations; there are
2025 no partial specializations of functions. Therefore, if
2026 the type of DECL does not match FN, there is no
2027 match. */
2028 if (tsk == tsk_template)
2029 {
2030 if (compparms (fn_arg_types, decl_arg_types))
2031 candidates = tree_cons (NULL_TREE, fn, candidates);
2032 continue;
2033 }
2034
2035 /* See whether this function might be a specialization of this
2036 template. Suppress access control because we might be trying
2037 to make this specialization a friend, and we have already done
2038 access control for the declaration of the specialization. */
2039 push_deferring_access_checks (dk_no_check);
2040 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
2041 pop_deferring_access_checks ();
2042
2043 if (!targs)
2044 /* We cannot deduce template arguments that when used to
2045 specialize TMPL will produce DECL. */
2046 continue;
2047
2048 /* Make sure that the deduced arguments actually work. */
2049 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
2050 if (insttype == error_mark_node)
2051 continue;
2052 fn_arg_types
2053 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
2054 if (!compparms (fn_arg_types, decl_arg_types))
2055 continue;
2056
2057 /* Save this template, and the arguments deduced. */
2058 templates = tree_cons (targs, fn, templates);
2059 }
2060 else if (need_member_template)
2061 /* FN is an ordinary member function, and we need a
2062 specialization of a member template. */
2063 ;
2064 else if (TREE_CODE (fn) != FUNCTION_DECL)
2065 /* We can get IDENTIFIER_NODEs here in certain erroneous
2066 cases. */
2067 ;
2068 else if (!DECL_FUNCTION_MEMBER_P (fn))
2069 /* This is just an ordinary non-member function. Nothing can
2070 be a specialization of that. */
2071 ;
2072 else if (DECL_ARTIFICIAL (fn))
2073 /* Cannot specialize functions that are created implicitly. */
2074 ;
2075 else
2076 {
2077 tree decl_arg_types;
2078
2079 /* This is an ordinary member function. However, since
2080 we're here, we can assume its enclosing class is a
2081 template class. For example,
2082
2083 template <typename T> struct S { void f(); };
2084 template <> void S<int>::f() {}
2085
2086 Here, S<int>::f is a non-template, but S<int> is a
2087 template class. If FN has the same type as DECL, we
2088 might be in business. */
2089
2090 if (!DECL_TEMPLATE_INFO (fn))
2091 /* Its enclosing class is an explicit specialization
2092 of a template class. This is not a candidate. */
2093 continue;
2094
2095 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2096 TREE_TYPE (TREE_TYPE (fn))))
2097 /* The return types differ. */
2098 continue;
2099
2100 /* Adjust the type of DECL in case FN is a static member. */
2101 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2102 if (DECL_STATIC_FUNCTION_P (fn)
2103 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2104 decl_arg_types = TREE_CHAIN (decl_arg_types);
2105
2106 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2107 decl_arg_types))
2108 /* They match! */
2109 candidates = tree_cons (NULL_TREE, fn, candidates);
2110 }
2111 }
2112
2113 if (templates && TREE_CHAIN (templates))
2114 {
2115 /* We have:
2116
2117 [temp.expl.spec]
2118
2119 It is possible for a specialization with a given function
2120 signature to be instantiated from more than one function
2121 template. In such cases, explicit specification of the
2122 template arguments must be used to uniquely identify the
2123 function template specialization being specialized.
2124
2125 Note that here, there's no suggestion that we're supposed to
2126 determine which of the candidate templates is most
2127 specialized. However, we, also have:
2128
2129 [temp.func.order]
2130
2131 Partial ordering of overloaded function template
2132 declarations is used in the following contexts to select
2133 the function template to which a function template
2134 specialization refers:
2135
2136 -- when an explicit specialization refers to a function
2137 template.
2138
2139 So, we do use the partial ordering rules, at least for now.
2140 This extension can only serve to make invalid programs valid,
2141 so it's safe. And, there is strong anecdotal evidence that
2142 the committee intended the partial ordering rules to apply;
2143 the EDG front end has that behavior, and John Spicer claims
2144 that the committee simply forgot to delete the wording in
2145 [temp.expl.spec]. */
2146 tree tmpl = most_specialized_instantiation (templates);
2147 if (tmpl != error_mark_node)
2148 {
2149 templates = tmpl;
2150 TREE_CHAIN (templates) = NULL_TREE;
2151 }
2152 }
2153
2154 if (templates == NULL_TREE && candidates == NULL_TREE)
2155 {
2156 error ("template-id %qD for %q+D does not match any template "
2157 "declaration", template_id, decl);
2158 if (header_count && header_count != template_count + 1)
2159 inform (input_location, "saw %d %<template<>%>, need %d for "
2160 "specializing a member function template",
2161 header_count, template_count + 1);
2162 return error_mark_node;
2163 }
2164 else if ((templates && TREE_CHAIN (templates))
2165 || (candidates && TREE_CHAIN (candidates))
2166 || (templates && candidates))
2167 {
2168 error ("ambiguous template specialization %qD for %q+D",
2169 template_id, decl);
2170 candidates = chainon (candidates, templates);
2171 print_candidates (candidates);
2172 return error_mark_node;
2173 }
2174
2175 /* We have one, and exactly one, match. */
2176 if (candidates)
2177 {
2178 tree fn = TREE_VALUE (candidates);
2179 *targs_out = copy_node (DECL_TI_ARGS (fn));
2180 /* DECL is a re-declaration or partial instantiation of a template
2181 function. */
2182 if (TREE_CODE (fn) == TEMPLATE_DECL)
2183 return fn;
2184 /* It was a specialization of an ordinary member function in a
2185 template class. */
2186 return DECL_TI_TEMPLATE (fn);
2187 }
2188
2189 /* It was a specialization of a template. */
2190 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2191 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2192 {
2193 *targs_out = copy_node (targs);
2194 SET_TMPL_ARGS_LEVEL (*targs_out,
2195 TMPL_ARGS_DEPTH (*targs_out),
2196 TREE_PURPOSE (templates));
2197 }
2198 else
2199 *targs_out = TREE_PURPOSE (templates);
2200 return TREE_VALUE (templates);
2201 }
2202
2203 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2204 but with the default argument values filled in from those in the
2205 TMPL_TYPES. */
2206
2207 static tree
2208 copy_default_args_to_explicit_spec_1 (tree spec_types,
2209 tree tmpl_types)
2210 {
2211 tree new_spec_types;
2212
2213 if (!spec_types)
2214 return NULL_TREE;
2215
2216 if (spec_types == void_list_node)
2217 return void_list_node;
2218
2219 /* Substitute into the rest of the list. */
2220 new_spec_types =
2221 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2222 TREE_CHAIN (tmpl_types));
2223
2224 /* Add the default argument for this parameter. */
2225 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2226 TREE_VALUE (spec_types),
2227 new_spec_types);
2228 }
2229
2230 /* DECL is an explicit specialization. Replicate default arguments
2231 from the template it specializes. (That way, code like:
2232
2233 template <class T> void f(T = 3);
2234 template <> void f(double);
2235 void g () { f (); }
2236
2237 works, as required.) An alternative approach would be to look up
2238 the correct default arguments at the call-site, but this approach
2239 is consistent with how implicit instantiations are handled. */
2240
2241 static void
2242 copy_default_args_to_explicit_spec (tree decl)
2243 {
2244 tree tmpl;
2245 tree spec_types;
2246 tree tmpl_types;
2247 tree new_spec_types;
2248 tree old_type;
2249 tree new_type;
2250 tree t;
2251 tree object_type = NULL_TREE;
2252 tree in_charge = NULL_TREE;
2253 tree vtt = NULL_TREE;
2254
2255 /* See if there's anything we need to do. */
2256 tmpl = DECL_TI_TEMPLATE (decl);
2257 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2258 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2259 if (TREE_PURPOSE (t))
2260 break;
2261 if (!t)
2262 return;
2263
2264 old_type = TREE_TYPE (decl);
2265 spec_types = TYPE_ARG_TYPES (old_type);
2266
2267 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2268 {
2269 /* Remove the this pointer, but remember the object's type for
2270 CV quals. */
2271 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2272 spec_types = TREE_CHAIN (spec_types);
2273 tmpl_types = TREE_CHAIN (tmpl_types);
2274
2275 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2276 {
2277 /* DECL may contain more parameters than TMPL due to the extra
2278 in-charge parameter in constructors and destructors. */
2279 in_charge = spec_types;
2280 spec_types = TREE_CHAIN (spec_types);
2281 }
2282 if (DECL_HAS_VTT_PARM_P (decl))
2283 {
2284 vtt = spec_types;
2285 spec_types = TREE_CHAIN (spec_types);
2286 }
2287 }
2288
2289 /* Compute the merged default arguments. */
2290 new_spec_types =
2291 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2292
2293 /* Compute the new FUNCTION_TYPE. */
2294 if (object_type)
2295 {
2296 if (vtt)
2297 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2298 TREE_VALUE (vtt),
2299 new_spec_types);
2300
2301 if (in_charge)
2302 /* Put the in-charge parameter back. */
2303 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2304 TREE_VALUE (in_charge),
2305 new_spec_types);
2306
2307 new_type = build_method_type_directly (object_type,
2308 TREE_TYPE (old_type),
2309 new_spec_types);
2310 }
2311 else
2312 new_type = build_function_type (TREE_TYPE (old_type),
2313 new_spec_types);
2314 new_type = cp_build_type_attribute_variant (new_type,
2315 TYPE_ATTRIBUTES (old_type));
2316 new_type = build_exception_variant (new_type,
2317 TYPE_RAISES_EXCEPTIONS (old_type));
2318
2319 if (TYPE_HAS_LATE_RETURN_TYPE (old_type))
2320 TYPE_HAS_LATE_RETURN_TYPE (new_type) = 1;
2321
2322 TREE_TYPE (decl) = new_type;
2323 }
2324
2325 /* Return the number of template headers we expect to see for a definition
2326 or specialization of CTYPE or one of its non-template members. */
2327
2328 int
2329 num_template_headers_for_class (tree ctype)
2330 {
2331 int num_templates = 0;
2332
2333 while (ctype && CLASS_TYPE_P (ctype))
2334 {
2335 /* You're supposed to have one `template <...>' for every
2336 template class, but you don't need one for a full
2337 specialization. For example:
2338
2339 template <class T> struct S{};
2340 template <> struct S<int> { void f(); };
2341 void S<int>::f () {}
2342
2343 is correct; there shouldn't be a `template <>' for the
2344 definition of `S<int>::f'. */
2345 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2346 /* If CTYPE does not have template information of any
2347 kind, then it is not a template, nor is it nested
2348 within a template. */
2349 break;
2350 if (explicit_class_specialization_p (ctype))
2351 break;
2352 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2353 ++num_templates;
2354
2355 ctype = TYPE_CONTEXT (ctype);
2356 }
2357
2358 return num_templates;
2359 }
2360
2361 /* Do a simple sanity check on the template headers that precede the
2362 variable declaration DECL. */
2363
2364 void
2365 check_template_variable (tree decl)
2366 {
2367 tree ctx = CP_DECL_CONTEXT (decl);
2368 int wanted = num_template_headers_for_class (ctx);
2369 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
2370 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2371 {
2372 if (cxx_dialect < cxx14)
2373 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2374 "variable templates only available with "
2375 "-std=c++14 or -std=gnu++14");
2376
2377 // Namespace-scope variable templates should have a template header.
2378 ++wanted;
2379 }
2380 if (template_header_count > wanted)
2381 {
2382 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2383 "too many template headers for %D (should be %d)",
2384 decl, wanted);
2385 if (warned && CLASS_TYPE_P (ctx)
2386 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2387 inform (DECL_SOURCE_LOCATION (decl),
2388 "members of an explicitly specialized class are defined "
2389 "without a template header");
2390 }
2391 }
2392
2393 /* Check to see if the function just declared, as indicated in
2394 DECLARATOR, and in DECL, is a specialization of a function
2395 template. We may also discover that the declaration is an explicit
2396 instantiation at this point.
2397
2398 Returns DECL, or an equivalent declaration that should be used
2399 instead if all goes well. Issues an error message if something is
2400 amiss. Returns error_mark_node if the error is not easily
2401 recoverable.
2402
2403 FLAGS is a bitmask consisting of the following flags:
2404
2405 2: The function has a definition.
2406 4: The function is a friend.
2407
2408 The TEMPLATE_COUNT is the number of references to qualifying
2409 template classes that appeared in the name of the function. For
2410 example, in
2411
2412 template <class T> struct S { void f(); };
2413 void S<int>::f();
2414
2415 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2416 classes are not counted in the TEMPLATE_COUNT, so that in
2417
2418 template <class T> struct S {};
2419 template <> struct S<int> { void f(); }
2420 template <> void S<int>::f();
2421
2422 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2423 invalid; there should be no template <>.)
2424
2425 If the function is a specialization, it is marked as such via
2426 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2427 is set up correctly, and it is added to the list of specializations
2428 for that template. */
2429
2430 tree
2431 check_explicit_specialization (tree declarator,
2432 tree decl,
2433 int template_count,
2434 int flags)
2435 {
2436 int have_def = flags & 2;
2437 int is_friend = flags & 4;
2438 int specialization = 0;
2439 int explicit_instantiation = 0;
2440 int member_specialization = 0;
2441 tree ctype = DECL_CLASS_CONTEXT (decl);
2442 tree dname = DECL_NAME (decl);
2443 tmpl_spec_kind tsk;
2444
2445 if (is_friend)
2446 {
2447 if (!processing_specialization)
2448 tsk = tsk_none;
2449 else
2450 tsk = tsk_excessive_parms;
2451 }
2452 else
2453 tsk = current_tmpl_spec_kind (template_count);
2454
2455 switch (tsk)
2456 {
2457 case tsk_none:
2458 if (processing_specialization && !VAR_P (decl))
2459 {
2460 specialization = 1;
2461 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2462 }
2463 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2464 {
2465 if (is_friend)
2466 /* This could be something like:
2467
2468 template <class T> void f(T);
2469 class S { friend void f<>(int); } */
2470 specialization = 1;
2471 else
2472 {
2473 /* This case handles bogus declarations like template <>
2474 template <class T> void f<int>(); */
2475
2476 error ("template-id %qD in declaration of primary template",
2477 declarator);
2478 return decl;
2479 }
2480 }
2481 break;
2482
2483 case tsk_invalid_member_spec:
2484 /* The error has already been reported in
2485 check_specialization_scope. */
2486 return error_mark_node;
2487
2488 case tsk_invalid_expl_inst:
2489 error ("template parameter list used in explicit instantiation");
2490
2491 /* Fall through. */
2492
2493 case tsk_expl_inst:
2494 if (have_def)
2495 error ("definition provided for explicit instantiation");
2496
2497 explicit_instantiation = 1;
2498 break;
2499
2500 case tsk_excessive_parms:
2501 case tsk_insufficient_parms:
2502 if (tsk == tsk_excessive_parms)
2503 error ("too many template parameter lists in declaration of %qD",
2504 decl);
2505 else if (template_header_count)
2506 error("too few template parameter lists in declaration of %qD", decl);
2507 else
2508 error("explicit specialization of %qD must be introduced by "
2509 "%<template <>%>", decl);
2510
2511 /* Fall through. */
2512 case tsk_expl_spec:
2513 if (VAR_P (decl) && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2514 /* In cases like template<> constexpr bool v = true;
2515 We'll give an error in check_template_variable. */
2516 break;
2517
2518 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2519 if (ctype)
2520 member_specialization = 1;
2521 else
2522 specialization = 1;
2523 break;
2524
2525 case tsk_template:
2526 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2527 {
2528 /* This case handles bogus declarations like template <>
2529 template <class T> void f<int>(); */
2530
2531 if (!uses_template_parms (declarator))
2532 error ("template-id %qD in declaration of primary template",
2533 declarator);
2534 else if (variable_template_p (TREE_OPERAND (declarator, 0)))
2535 {
2536 /* Partial specialization of variable template. */
2537 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2538 specialization = 1;
2539 goto ok;
2540 }
2541 else if (cxx_dialect < cxx14)
2542 error ("non-type partial specialization %qD "
2543 "is not allowed", declarator);
2544 else
2545 error ("non-class, non-variable partial specialization %qD "
2546 "is not allowed", declarator);
2547 return decl;
2548 ok:;
2549 }
2550
2551 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2552 /* This is a specialization of a member template, without
2553 specialization the containing class. Something like:
2554
2555 template <class T> struct S {
2556 template <class U> void f (U);
2557 };
2558 template <> template <class U> void S<int>::f(U) {}
2559
2560 That's a specialization -- but of the entire template. */
2561 specialization = 1;
2562 break;
2563
2564 default:
2565 gcc_unreachable ();
2566 }
2567
2568 if ((specialization || member_specialization)
2569 /* This doesn't apply to variable templates. */
2570 && (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE
2571 || TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE))
2572 {
2573 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2574 for (; t; t = TREE_CHAIN (t))
2575 if (TREE_PURPOSE (t))
2576 {
2577 permerror (input_location,
2578 "default argument specified in explicit specialization");
2579 break;
2580 }
2581 }
2582
2583 if (specialization || member_specialization || explicit_instantiation)
2584 {
2585 tree tmpl = NULL_TREE;
2586 tree targs = NULL_TREE;
2587 bool was_template_id = (TREE_CODE (declarator) == TEMPLATE_ID_EXPR);
2588
2589 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2590 if (!was_template_id)
2591 {
2592 tree fns;
2593
2594 gcc_assert (identifier_p (declarator));
2595 if (ctype)
2596 fns = dname;
2597 else
2598 {
2599 /* If there is no class context, the explicit instantiation
2600 must be at namespace scope. */
2601 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2602
2603 /* Find the namespace binding, using the declaration
2604 context. */
2605 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2606 false, true);
2607 if (fns == error_mark_node || !is_overloaded_fn (fns))
2608 {
2609 error ("%qD is not a template function", dname);
2610 fns = error_mark_node;
2611 }
2612 else
2613 {
2614 tree fn = OVL_CURRENT (fns);
2615 if (!is_associated_namespace (CP_DECL_CONTEXT (decl),
2616 CP_DECL_CONTEXT (fn)))
2617 error ("%qD is not declared in %qD",
2618 decl, current_namespace);
2619 }
2620 }
2621
2622 declarator = lookup_template_function (fns, NULL_TREE);
2623 }
2624
2625 if (declarator == error_mark_node)
2626 return error_mark_node;
2627
2628 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2629 {
2630 if (!explicit_instantiation)
2631 /* A specialization in class scope. This is invalid,
2632 but the error will already have been flagged by
2633 check_specialization_scope. */
2634 return error_mark_node;
2635 else
2636 {
2637 /* It's not valid to write an explicit instantiation in
2638 class scope, e.g.:
2639
2640 class C { template void f(); }
2641
2642 This case is caught by the parser. However, on
2643 something like:
2644
2645 template class C { void f(); };
2646
2647 (which is invalid) we can get here. The error will be
2648 issued later. */
2649 ;
2650 }
2651
2652 return decl;
2653 }
2654 else if (ctype != NULL_TREE
2655 && (identifier_p (TREE_OPERAND (declarator, 0))))
2656 {
2657 // We'll match variable templates in start_decl.
2658 if (VAR_P (decl))
2659 return decl;
2660
2661 /* Find the list of functions in ctype that have the same
2662 name as the declared function. */
2663 tree name = TREE_OPERAND (declarator, 0);
2664 tree fns = NULL_TREE;
2665 int idx;
2666
2667 if (constructor_name_p (name, ctype))
2668 {
2669 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2670
2671 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2672 : !CLASSTYPE_DESTRUCTORS (ctype))
2673 {
2674 /* From [temp.expl.spec]:
2675
2676 If such an explicit specialization for the member
2677 of a class template names an implicitly-declared
2678 special member function (clause _special_), the
2679 program is ill-formed.
2680
2681 Similar language is found in [temp.explicit]. */
2682 error ("specialization of implicitly-declared special member function");
2683 return error_mark_node;
2684 }
2685
2686 name = is_constructor ? ctor_identifier : dtor_identifier;
2687 }
2688
2689 if (!DECL_CONV_FN_P (decl))
2690 {
2691 idx = lookup_fnfields_1 (ctype, name);
2692 if (idx >= 0)
2693 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2694 }
2695 else
2696 {
2697 vec<tree, va_gc> *methods;
2698 tree ovl;
2699
2700 /* For a type-conversion operator, we cannot do a
2701 name-based lookup. We might be looking for `operator
2702 int' which will be a specialization of `operator T'.
2703 So, we find *all* the conversion operators, and then
2704 select from them. */
2705 fns = NULL_TREE;
2706
2707 methods = CLASSTYPE_METHOD_VEC (ctype);
2708 if (methods)
2709 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2710 methods->iterate (idx, &ovl);
2711 ++idx)
2712 {
2713 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2714 /* There are no more conversion functions. */
2715 break;
2716
2717 /* Glue all these conversion functions together
2718 with those we already have. */
2719 for (; ovl; ovl = OVL_NEXT (ovl))
2720 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2721 }
2722 }
2723
2724 if (fns == NULL_TREE)
2725 {
2726 error ("no member function %qD declared in %qT", name, ctype);
2727 return error_mark_node;
2728 }
2729 else
2730 TREE_OPERAND (declarator, 0) = fns;
2731 }
2732
2733 /* Figure out what exactly is being specialized at this point.
2734 Note that for an explicit instantiation, even one for a
2735 member function, we cannot tell apriori whether the
2736 instantiation is for a member template, or just a member
2737 function of a template class. Even if a member template is
2738 being instantiated, the member template arguments may be
2739 elided if they can be deduced from the rest of the
2740 declaration. */
2741 tmpl = determine_specialization (declarator, decl,
2742 &targs,
2743 member_specialization,
2744 template_count,
2745 tsk);
2746
2747 if (!tmpl || tmpl == error_mark_node)
2748 /* We couldn't figure out what this declaration was
2749 specializing. */
2750 return error_mark_node;
2751 else
2752 {
2753 tree gen_tmpl = most_general_template (tmpl);
2754
2755 if (explicit_instantiation)
2756 {
2757 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2758 is done by do_decl_instantiation later. */
2759
2760 int arg_depth = TMPL_ARGS_DEPTH (targs);
2761 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2762
2763 if (arg_depth > parm_depth)
2764 {
2765 /* If TMPL is not the most general template (for
2766 example, if TMPL is a friend template that is
2767 injected into namespace scope), then there will
2768 be too many levels of TARGS. Remove some of them
2769 here. */
2770 int i;
2771 tree new_targs;
2772
2773 new_targs = make_tree_vec (parm_depth);
2774 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2775 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2776 = TREE_VEC_ELT (targs, i);
2777 targs = new_targs;
2778 }
2779
2780 return instantiate_template (tmpl, targs, tf_error);
2781 }
2782
2783 /* If we thought that the DECL was a member function, but it
2784 turns out to be specializing a static member function,
2785 make DECL a static member function as well. */
2786 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
2787 && DECL_STATIC_FUNCTION_P (tmpl)
2788 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2789 revert_static_member_fn (decl);
2790
2791 /* If this is a specialization of a member template of a
2792 template class, we want to return the TEMPLATE_DECL, not
2793 the specialization of it. */
2794 if (tsk == tsk_template && !was_template_id)
2795 {
2796 tree result = DECL_TEMPLATE_RESULT (tmpl);
2797 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2798 DECL_INITIAL (result) = NULL_TREE;
2799 if (have_def)
2800 {
2801 tree parm;
2802 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
2803 DECL_SOURCE_LOCATION (result)
2804 = DECL_SOURCE_LOCATION (decl);
2805 /* We want to use the argument list specified in the
2806 definition, not in the original declaration. */
2807 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
2808 for (parm = DECL_ARGUMENTS (result); parm;
2809 parm = DECL_CHAIN (parm))
2810 DECL_CONTEXT (parm) = result;
2811 }
2812 return register_specialization (tmpl, gen_tmpl, targs,
2813 is_friend, 0);
2814 }
2815
2816 /* Set up the DECL_TEMPLATE_INFO for DECL. */
2817 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
2818
2819 if (was_template_id)
2820 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl)) = true;
2821
2822 /* Inherit default function arguments from the template
2823 DECL is specializing. */
2824 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
2825 copy_default_args_to_explicit_spec (decl);
2826
2827 /* This specialization has the same protection as the
2828 template it specializes. */
2829 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
2830 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
2831
2832 /* 7.1.1-1 [dcl.stc]
2833
2834 A storage-class-specifier shall not be specified in an
2835 explicit specialization...
2836
2837 The parser rejects these, so unless action is taken here,
2838 explicit function specializations will always appear with
2839 global linkage.
2840
2841 The action recommended by the C++ CWG in response to C++
2842 defect report 605 is to make the storage class and linkage
2843 of the explicit specialization match the templated function:
2844
2845 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
2846 */
2847 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
2848 {
2849 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
2850 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
2851
2852 /* This specialization has the same linkage and visibility as
2853 the function template it specializes. */
2854 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
2855 if (! TREE_PUBLIC (decl))
2856 {
2857 DECL_INTERFACE_KNOWN (decl) = 1;
2858 DECL_NOT_REALLY_EXTERN (decl) = 1;
2859 }
2860 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
2861 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
2862 {
2863 DECL_VISIBILITY_SPECIFIED (decl) = 1;
2864 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
2865 }
2866 }
2867
2868 /* If DECL is a friend declaration, declared using an
2869 unqualified name, the namespace associated with DECL may
2870 have been set incorrectly. For example, in:
2871
2872 template <typename T> void f(T);
2873 namespace N {
2874 struct S { friend void f<int>(int); }
2875 }
2876
2877 we will have set the DECL_CONTEXT for the friend
2878 declaration to N, rather than to the global namespace. */
2879 if (DECL_NAMESPACE_SCOPE_P (decl))
2880 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
2881
2882 if (is_friend && !have_def)
2883 /* This is not really a declaration of a specialization.
2884 It's just the name of an instantiation. But, it's not
2885 a request for an instantiation, either. */
2886 SET_DECL_IMPLICIT_INSTANTIATION (decl);
2887 else if (TREE_CODE (decl) == FUNCTION_DECL)
2888 /* A specialization is not necessarily COMDAT. */
2889 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
2890 && DECL_DECLARED_INLINE_P (decl));
2891 else if (VAR_P (decl))
2892 DECL_COMDAT (decl) = false;
2893
2894 /* Register this specialization so that we can find it
2895 again. */
2896 decl = register_specialization (decl, gen_tmpl, targs, is_friend, 0);
2897
2898 /* A 'structor should already have clones. */
2899 gcc_assert (decl == error_mark_node
2900 || variable_template_p (tmpl)
2901 || !(DECL_CONSTRUCTOR_P (decl)
2902 || DECL_DESTRUCTOR_P (decl))
2903 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
2904 }
2905 }
2906
2907 return decl;
2908 }
2909
2910 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
2911 parameters. These are represented in the same format used for
2912 DECL_TEMPLATE_PARMS. */
2913
2914 int
2915 comp_template_parms (const_tree parms1, const_tree parms2)
2916 {
2917 const_tree p1;
2918 const_tree p2;
2919
2920 if (parms1 == parms2)
2921 return 1;
2922
2923 for (p1 = parms1, p2 = parms2;
2924 p1 != NULL_TREE && p2 != NULL_TREE;
2925 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
2926 {
2927 tree t1 = TREE_VALUE (p1);
2928 tree t2 = TREE_VALUE (p2);
2929 int i;
2930
2931 gcc_assert (TREE_CODE (t1) == TREE_VEC);
2932 gcc_assert (TREE_CODE (t2) == TREE_VEC);
2933
2934 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2935 return 0;
2936
2937 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
2938 {
2939 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
2940 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
2941
2942 /* If either of the template parameters are invalid, assume
2943 they match for the sake of error recovery. */
2944 if (error_operand_p (parm1) || error_operand_p (parm2))
2945 return 1;
2946
2947 if (TREE_CODE (parm1) != TREE_CODE (parm2))
2948 return 0;
2949
2950 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
2951 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
2952 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
2953 continue;
2954 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
2955 return 0;
2956 }
2957 }
2958
2959 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
2960 /* One set of parameters has more parameters lists than the
2961 other. */
2962 return 0;
2963
2964 return 1;
2965 }
2966
2967 /* Determine whether PARM is a parameter pack. */
2968
2969 bool
2970 template_parameter_pack_p (const_tree parm)
2971 {
2972 /* Determine if we have a non-type template parameter pack. */
2973 if (TREE_CODE (parm) == PARM_DECL)
2974 return (DECL_TEMPLATE_PARM_P (parm)
2975 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
2976 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
2977 return TEMPLATE_PARM_PARAMETER_PACK (parm);
2978
2979 /* If this is a list of template parameters, we could get a
2980 TYPE_DECL or a TEMPLATE_DECL. */
2981 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
2982 parm = TREE_TYPE (parm);
2983
2984 /* Otherwise it must be a type template parameter. */
2985 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
2986 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
2987 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
2988 }
2989
2990 /* Determine if T is a function parameter pack. */
2991
2992 bool
2993 function_parameter_pack_p (const_tree t)
2994 {
2995 if (t && TREE_CODE (t) == PARM_DECL)
2996 return DECL_PACK_P (t);
2997 return false;
2998 }
2999
3000 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
3001 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
3002
3003 tree
3004 get_function_template_decl (const_tree primary_func_tmpl_inst)
3005 {
3006 if (! primary_func_tmpl_inst
3007 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
3008 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
3009 return NULL;
3010
3011 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
3012 }
3013
3014 /* Return true iff the function parameter PARAM_DECL was expanded
3015 from the function parameter pack PACK. */
3016
3017 bool
3018 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
3019 {
3020 if (DECL_ARTIFICIAL (param_decl)
3021 || !function_parameter_pack_p (pack))
3022 return false;
3023
3024 /* The parameter pack and its pack arguments have the same
3025 DECL_PARM_INDEX. */
3026 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
3027 }
3028
3029 /* Determine whether ARGS describes a variadic template args list,
3030 i.e., one that is terminated by a template argument pack. */
3031
3032 static bool
3033 template_args_variadic_p (tree args)
3034 {
3035 int nargs;
3036 tree last_parm;
3037
3038 if (args == NULL_TREE)
3039 return false;
3040
3041 args = INNERMOST_TEMPLATE_ARGS (args);
3042 nargs = TREE_VEC_LENGTH (args);
3043
3044 if (nargs == 0)
3045 return false;
3046
3047 last_parm = TREE_VEC_ELT (args, nargs - 1);
3048
3049 return ARGUMENT_PACK_P (last_parm);
3050 }
3051
3052 /* Generate a new name for the parameter pack name NAME (an
3053 IDENTIFIER_NODE) that incorporates its */
3054
3055 static tree
3056 make_ith_pack_parameter_name (tree name, int i)
3057 {
3058 /* Munge the name to include the parameter index. */
3059 #define NUMBUF_LEN 128
3060 char numbuf[NUMBUF_LEN];
3061 char* newname;
3062 int newname_len;
3063
3064 if (name == NULL_TREE)
3065 return name;
3066 snprintf (numbuf, NUMBUF_LEN, "%i", i);
3067 newname_len = IDENTIFIER_LENGTH (name)
3068 + strlen (numbuf) + 2;
3069 newname = (char*)alloca (newname_len);
3070 snprintf (newname, newname_len,
3071 "%s#%i", IDENTIFIER_POINTER (name), i);
3072 return get_identifier (newname);
3073 }
3074
3075 /* Return true if T is a primary function, class or alias template
3076 instantiation. */
3077
3078 bool
3079 primary_template_instantiation_p (const_tree t)
3080 {
3081 if (!t)
3082 return false;
3083
3084 if (TREE_CODE (t) == FUNCTION_DECL)
3085 return DECL_LANG_SPECIFIC (t)
3086 && DECL_TEMPLATE_INSTANTIATION (t)
3087 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
3088 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3089 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
3090 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
3091 else if (alias_template_specialization_p (t))
3092 return true;
3093 return false;
3094 }
3095
3096 /* Return true if PARM is a template template parameter. */
3097
3098 bool
3099 template_template_parameter_p (const_tree parm)
3100 {
3101 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
3102 }
3103
3104 /* Return true iff PARM is a DECL representing a type template
3105 parameter. */
3106
3107 bool
3108 template_type_parameter_p (const_tree parm)
3109 {
3110 return (parm
3111 && (TREE_CODE (parm) == TYPE_DECL
3112 || TREE_CODE (parm) == TEMPLATE_DECL)
3113 && DECL_TEMPLATE_PARM_P (parm));
3114 }
3115
3116 /* Return the template parameters of T if T is a
3117 primary template instantiation, NULL otherwise. */
3118
3119 tree
3120 get_primary_template_innermost_parameters (const_tree t)
3121 {
3122 tree parms = NULL, template_info = NULL;
3123
3124 if ((template_info = get_template_info (t))
3125 && primary_template_instantiation_p (t))
3126 parms = INNERMOST_TEMPLATE_PARMS
3127 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3128
3129 return parms;
3130 }
3131
3132 /* Return the template parameters of the LEVELth level from the full list
3133 of template parameters PARMS. */
3134
3135 tree
3136 get_template_parms_at_level (tree parms, int level)
3137 {
3138 tree p;
3139 if (!parms
3140 || TREE_CODE (parms) != TREE_LIST
3141 || level > TMPL_PARMS_DEPTH (parms))
3142 return NULL_TREE;
3143
3144 for (p = parms; p; p = TREE_CHAIN (p))
3145 if (TMPL_PARMS_DEPTH (p) == level)
3146 return p;
3147
3148 return NULL_TREE;
3149 }
3150
3151 /* Returns the template arguments of T if T is a template instantiation,
3152 NULL otherwise. */
3153
3154 tree
3155 get_template_innermost_arguments (const_tree t)
3156 {
3157 tree args = NULL, template_info = NULL;
3158
3159 if ((template_info = get_template_info (t))
3160 && TI_ARGS (template_info))
3161 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3162
3163 return args;
3164 }
3165
3166 /* Return the argument pack elements of T if T is a template argument pack,
3167 NULL otherwise. */
3168
3169 tree
3170 get_template_argument_pack_elems (const_tree t)
3171 {
3172 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3173 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3174 return NULL;
3175
3176 return ARGUMENT_PACK_ARGS (t);
3177 }
3178
3179 /* Structure used to track the progress of find_parameter_packs_r. */
3180 struct find_parameter_pack_data
3181 {
3182 /* TREE_LIST that will contain all of the parameter packs found by
3183 the traversal. */
3184 tree* parameter_packs;
3185
3186 /* Set of AST nodes that have been visited by the traversal. */
3187 hash_set<tree> *visited;
3188 };
3189
3190 /* Identifies all of the argument packs that occur in a template
3191 argument and appends them to the TREE_LIST inside DATA, which is a
3192 find_parameter_pack_data structure. This is a subroutine of
3193 make_pack_expansion and uses_parameter_packs. */
3194 static tree
3195 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3196 {
3197 tree t = *tp;
3198 struct find_parameter_pack_data* ppd =
3199 (struct find_parameter_pack_data*)data;
3200 bool parameter_pack_p = false;
3201
3202 /* Handle type aliases/typedefs. */
3203 if (TYPE_ALIAS_P (t))
3204 {
3205 if (TYPE_TEMPLATE_INFO (t))
3206 cp_walk_tree (&TYPE_TI_ARGS (t),
3207 &find_parameter_packs_r,
3208 ppd, ppd->visited);
3209 *walk_subtrees = 0;
3210 return NULL_TREE;
3211 }
3212
3213 /* Identify whether this is a parameter pack or not. */
3214 switch (TREE_CODE (t))
3215 {
3216 case TEMPLATE_PARM_INDEX:
3217 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3218 parameter_pack_p = true;
3219 break;
3220
3221 case TEMPLATE_TYPE_PARM:
3222 t = TYPE_MAIN_VARIANT (t);
3223 case TEMPLATE_TEMPLATE_PARM:
3224 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3225 parameter_pack_p = true;
3226 break;
3227
3228 case FIELD_DECL:
3229 case PARM_DECL:
3230 if (DECL_PACK_P (t))
3231 {
3232 /* We don't want to walk into the type of a PARM_DECL,
3233 because we don't want to see the type parameter pack. */
3234 *walk_subtrees = 0;
3235 parameter_pack_p = true;
3236 }
3237 break;
3238
3239 /* Look through a lambda capture proxy to the field pack. */
3240 case VAR_DECL:
3241 if (DECL_HAS_VALUE_EXPR_P (t))
3242 {
3243 tree v = DECL_VALUE_EXPR (t);
3244 cp_walk_tree (&v,
3245 &find_parameter_packs_r,
3246 ppd, ppd->visited);
3247 *walk_subtrees = 0;
3248 }
3249 break;
3250
3251 case BASES:
3252 parameter_pack_p = true;
3253 break;
3254 default:
3255 /* Not a parameter pack. */
3256 break;
3257 }
3258
3259 if (parameter_pack_p)
3260 {
3261 /* Add this parameter pack to the list. */
3262 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3263 }
3264
3265 if (TYPE_P (t))
3266 cp_walk_tree (&TYPE_CONTEXT (t),
3267 &find_parameter_packs_r, ppd, ppd->visited);
3268
3269 /* This switch statement will return immediately if we don't find a
3270 parameter pack. */
3271 switch (TREE_CODE (t))
3272 {
3273 case TEMPLATE_PARM_INDEX:
3274 return NULL_TREE;
3275
3276 case BOUND_TEMPLATE_TEMPLATE_PARM:
3277 /* Check the template itself. */
3278 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3279 &find_parameter_packs_r, ppd, ppd->visited);
3280 /* Check the template arguments. */
3281 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3282 ppd->visited);
3283 *walk_subtrees = 0;
3284 return NULL_TREE;
3285
3286 case TEMPLATE_TYPE_PARM:
3287 case TEMPLATE_TEMPLATE_PARM:
3288 return NULL_TREE;
3289
3290 case PARM_DECL:
3291 return NULL_TREE;
3292
3293 case RECORD_TYPE:
3294 if (TYPE_PTRMEMFUNC_P (t))
3295 return NULL_TREE;
3296 /* Fall through. */
3297
3298 case UNION_TYPE:
3299 case ENUMERAL_TYPE:
3300 if (TYPE_TEMPLATE_INFO (t))
3301 cp_walk_tree (&TYPE_TI_ARGS (t),
3302 &find_parameter_packs_r, ppd, ppd->visited);
3303
3304 *walk_subtrees = 0;
3305 return NULL_TREE;
3306
3307 case CONSTRUCTOR:
3308 case TEMPLATE_DECL:
3309 cp_walk_tree (&TREE_TYPE (t),
3310 &find_parameter_packs_r, ppd, ppd->visited);
3311 return NULL_TREE;
3312
3313 case TYPENAME_TYPE:
3314 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3315 ppd, ppd->visited);
3316 *walk_subtrees = 0;
3317 return NULL_TREE;
3318
3319 case TYPE_PACK_EXPANSION:
3320 case EXPR_PACK_EXPANSION:
3321 *walk_subtrees = 0;
3322 return NULL_TREE;
3323
3324 case INTEGER_TYPE:
3325 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3326 ppd, ppd->visited);
3327 *walk_subtrees = 0;
3328 return NULL_TREE;
3329
3330 case IDENTIFIER_NODE:
3331 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3332 ppd->visited);
3333 *walk_subtrees = 0;
3334 return NULL_TREE;
3335
3336 default:
3337 return NULL_TREE;
3338 }
3339
3340 return NULL_TREE;
3341 }
3342
3343 /* Determines if the expression or type T uses any parameter packs. */
3344 bool
3345 uses_parameter_packs (tree t)
3346 {
3347 tree parameter_packs = NULL_TREE;
3348 struct find_parameter_pack_data ppd;
3349 ppd.parameter_packs = &parameter_packs;
3350 ppd.visited = new hash_set<tree>;
3351 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3352 delete ppd.visited;
3353 return parameter_packs != NULL_TREE;
3354 }
3355
3356 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3357 representation a base-class initializer into a parameter pack
3358 expansion. If all goes well, the resulting node will be an
3359 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3360 respectively. */
3361 tree
3362 make_pack_expansion (tree arg)
3363 {
3364 tree result;
3365 tree parameter_packs = NULL_TREE;
3366 bool for_types = false;
3367 struct find_parameter_pack_data ppd;
3368
3369 if (!arg || arg == error_mark_node)
3370 return arg;
3371
3372 if (TREE_CODE (arg) == TREE_LIST && TREE_PURPOSE (arg))
3373 {
3374 /* A TREE_LIST with a non-null TREE_PURPOSE is for a base
3375 class initializer. In this case, the TREE_PURPOSE will be a
3376 _TYPE node (representing the base class expansion we're
3377 initializing) and the TREE_VALUE will be a TREE_LIST
3378 containing the initialization arguments.
3379
3380 The resulting expansion looks somewhat different from most
3381 expansions. Rather than returning just one _EXPANSION, we
3382 return a TREE_LIST whose TREE_PURPOSE is a
3383 TYPE_PACK_EXPANSION containing the bases that will be
3384 initialized. The TREE_VALUE will be identical to the
3385 original TREE_VALUE, which is a list of arguments that will
3386 be passed to each base. We do not introduce any new pack
3387 expansion nodes into the TREE_VALUE (although it is possible
3388 that some already exist), because the TREE_PURPOSE and
3389 TREE_VALUE all need to be expanded together with the same
3390 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3391 resulting TREE_PURPOSE will mention the parameter packs in
3392 both the bases and the arguments to the bases. */
3393 tree purpose;
3394 tree value;
3395 tree parameter_packs = NULL_TREE;
3396
3397 /* Determine which parameter packs will be used by the base
3398 class expansion. */
3399 ppd.visited = new hash_set<tree>;
3400 ppd.parameter_packs = &parameter_packs;
3401 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3402 &ppd, ppd.visited);
3403
3404 if (parameter_packs == NULL_TREE)
3405 {
3406 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3407 delete ppd.visited;
3408 return error_mark_node;
3409 }
3410
3411 if (TREE_VALUE (arg) != void_type_node)
3412 {
3413 /* Collect the sets of parameter packs used in each of the
3414 initialization arguments. */
3415 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3416 {
3417 /* Determine which parameter packs will be expanded in this
3418 argument. */
3419 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3420 &ppd, ppd.visited);
3421 }
3422 }
3423
3424 delete ppd.visited;
3425
3426 /* Create the pack expansion type for the base type. */
3427 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3428 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3429 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3430
3431 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3432 they will rarely be compared to anything. */
3433 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3434
3435 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3436 }
3437
3438 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3439 for_types = true;
3440
3441 /* Build the PACK_EXPANSION_* node. */
3442 result = for_types
3443 ? cxx_make_type (TYPE_PACK_EXPANSION)
3444 : make_node (EXPR_PACK_EXPANSION);
3445 SET_PACK_EXPANSION_PATTERN (result, arg);
3446 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3447 {
3448 /* Propagate type and const-expression information. */
3449 TREE_TYPE (result) = TREE_TYPE (arg);
3450 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3451 }
3452 else
3453 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3454 they will rarely be compared to anything. */
3455 SET_TYPE_STRUCTURAL_EQUALITY (result);
3456
3457 /* Determine which parameter packs will be expanded. */
3458 ppd.parameter_packs = &parameter_packs;
3459 ppd.visited = new hash_set<tree>;
3460 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3461 delete ppd.visited;
3462
3463 /* Make sure we found some parameter packs. */
3464 if (parameter_packs == NULL_TREE)
3465 {
3466 if (TYPE_P (arg))
3467 error ("expansion pattern %<%T%> contains no argument packs", arg);
3468 else
3469 error ("expansion pattern %<%E%> contains no argument packs", arg);
3470 return error_mark_node;
3471 }
3472 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3473
3474 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3475
3476 return result;
3477 }
3478
3479 /* Checks T for any "bare" parameter packs, which have not yet been
3480 expanded, and issues an error if any are found. This operation can
3481 only be done on full expressions or types (e.g., an expression
3482 statement, "if" condition, etc.), because we could have expressions like:
3483
3484 foo(f(g(h(args)))...)
3485
3486 where "args" is a parameter pack. check_for_bare_parameter_packs
3487 should not be called for the subexpressions args, h(args),
3488 g(h(args)), or f(g(h(args))), because we would produce erroneous
3489 error messages.
3490
3491 Returns TRUE and emits an error if there were bare parameter packs,
3492 returns FALSE otherwise. */
3493 bool
3494 check_for_bare_parameter_packs (tree t)
3495 {
3496 tree parameter_packs = NULL_TREE;
3497 struct find_parameter_pack_data ppd;
3498
3499 if (!processing_template_decl || !t || t == error_mark_node)
3500 return false;
3501
3502 if (TREE_CODE (t) == TYPE_DECL)
3503 t = TREE_TYPE (t);
3504
3505 ppd.parameter_packs = &parameter_packs;
3506 ppd.visited = new hash_set<tree>;
3507 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3508 delete ppd.visited;
3509
3510 if (parameter_packs)
3511 {
3512 error ("parameter packs not expanded with %<...%>:");
3513 while (parameter_packs)
3514 {
3515 tree pack = TREE_VALUE (parameter_packs);
3516 tree name = NULL_TREE;
3517
3518 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3519 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3520 name = TYPE_NAME (pack);
3521 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3522 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3523 else
3524 name = DECL_NAME (pack);
3525
3526 if (name)
3527 inform (input_location, " %qD", name);
3528 else
3529 inform (input_location, " <anonymous>");
3530
3531 parameter_packs = TREE_CHAIN (parameter_packs);
3532 }
3533
3534 return true;
3535 }
3536
3537 return false;
3538 }
3539
3540 /* Expand any parameter packs that occur in the template arguments in
3541 ARGS. */
3542 tree
3543 expand_template_argument_pack (tree args)
3544 {
3545 tree result_args = NULL_TREE;
3546 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3547 int num_result_args = -1;
3548 int non_default_args_count = -1;
3549
3550 /* First, determine if we need to expand anything, and the number of
3551 slots we'll need. */
3552 for (in_arg = 0; in_arg < nargs; ++in_arg)
3553 {
3554 tree arg = TREE_VEC_ELT (args, in_arg);
3555 if (arg == NULL_TREE)
3556 return args;
3557 if (ARGUMENT_PACK_P (arg))
3558 {
3559 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3560 if (num_result_args < 0)
3561 num_result_args = in_arg + num_packed;
3562 else
3563 num_result_args += num_packed;
3564 }
3565 else
3566 {
3567 if (num_result_args >= 0)
3568 num_result_args++;
3569 }
3570 }
3571
3572 /* If no expansion is necessary, we're done. */
3573 if (num_result_args < 0)
3574 return args;
3575
3576 /* Expand arguments. */
3577 result_args = make_tree_vec (num_result_args);
3578 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3579 non_default_args_count =
3580 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3581 for (in_arg = 0; in_arg < nargs; ++in_arg)
3582 {
3583 tree arg = TREE_VEC_ELT (args, in_arg);
3584 if (ARGUMENT_PACK_P (arg))
3585 {
3586 tree packed = ARGUMENT_PACK_ARGS (arg);
3587 int i, num_packed = TREE_VEC_LENGTH (packed);
3588 for (i = 0; i < num_packed; ++i, ++out_arg)
3589 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3590 if (non_default_args_count > 0)
3591 non_default_args_count += num_packed - 1;
3592 }
3593 else
3594 {
3595 TREE_VEC_ELT (result_args, out_arg) = arg;
3596 ++out_arg;
3597 }
3598 }
3599 if (non_default_args_count >= 0)
3600 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3601 return result_args;
3602 }
3603
3604 /* Checks if DECL shadows a template parameter.
3605
3606 [temp.local]: A template-parameter shall not be redeclared within its
3607 scope (including nested scopes).
3608
3609 Emits an error and returns TRUE if the DECL shadows a parameter,
3610 returns FALSE otherwise. */
3611
3612 bool
3613 check_template_shadow (tree decl)
3614 {
3615 tree olddecl;
3616
3617 /* If we're not in a template, we can't possibly shadow a template
3618 parameter. */
3619 if (!current_template_parms)
3620 return true;
3621
3622 /* Figure out what we're shadowing. */
3623 if (TREE_CODE (decl) == OVERLOAD)
3624 decl = OVL_CURRENT (decl);
3625 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3626
3627 /* If there's no previous binding for this name, we're not shadowing
3628 anything, let alone a template parameter. */
3629 if (!olddecl)
3630 return true;
3631
3632 /* If we're not shadowing a template parameter, we're done. Note
3633 that OLDDECL might be an OVERLOAD (or perhaps even an
3634 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3635 node. */
3636 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3637 return true;
3638
3639 /* We check for decl != olddecl to avoid bogus errors for using a
3640 name inside a class. We check TPFI to avoid duplicate errors for
3641 inline member templates. */
3642 if (decl == olddecl
3643 || (DECL_TEMPLATE_PARM_P (decl)
3644 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3645 return true;
3646
3647 /* Don't complain about the injected class name, as we've already
3648 complained about the class itself. */
3649 if (DECL_SELF_REFERENCE_P (decl))
3650 return false;
3651
3652 error ("declaration of %q+#D", decl);
3653 error (" shadows template parm %q+#D", olddecl);
3654 return false;
3655 }
3656
3657 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3658 ORIG_LEVEL, DECL, and TYPE. */
3659
3660 static tree
3661 build_template_parm_index (int index,
3662 int level,
3663 int orig_level,
3664 tree decl,
3665 tree type)
3666 {
3667 tree t = make_node (TEMPLATE_PARM_INDEX);
3668 TEMPLATE_PARM_IDX (t) = index;
3669 TEMPLATE_PARM_LEVEL (t) = level;
3670 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3671 TEMPLATE_PARM_DECL (t) = decl;
3672 TREE_TYPE (t) = type;
3673 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3674 TREE_READONLY (t) = TREE_READONLY (decl);
3675
3676 return t;
3677 }
3678
3679 /* Find the canonical type parameter for the given template type
3680 parameter. Returns the canonical type parameter, which may be TYPE
3681 if no such parameter existed. */
3682
3683 static tree
3684 canonical_type_parameter (tree type)
3685 {
3686 tree list;
3687 int idx = TEMPLATE_TYPE_IDX (type);
3688 if (!canonical_template_parms)
3689 vec_alloc (canonical_template_parms, idx+1);
3690
3691 while (canonical_template_parms->length () <= (unsigned)idx)
3692 vec_safe_push (canonical_template_parms, NULL_TREE);
3693
3694 list = (*canonical_template_parms)[idx];
3695 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3696 list = TREE_CHAIN (list);
3697
3698 if (list)
3699 return TREE_VALUE (list);
3700 else
3701 {
3702 (*canonical_template_parms)[idx]
3703 = tree_cons (NULL_TREE, type,
3704 (*canonical_template_parms)[idx]);
3705 return type;
3706 }
3707 }
3708
3709 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3710 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3711 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3712 new one is created. */
3713
3714 static tree
3715 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3716 tsubst_flags_t complain)
3717 {
3718 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3719 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3720 != TEMPLATE_PARM_LEVEL (index) - levels)
3721 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3722 {
3723 tree orig_decl = TEMPLATE_PARM_DECL (index);
3724 tree decl, t;
3725
3726 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3727 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3728 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3729 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3730 DECL_ARTIFICIAL (decl) = 1;
3731 SET_DECL_TEMPLATE_PARM_P (decl);
3732
3733 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3734 TEMPLATE_PARM_LEVEL (index) - levels,
3735 TEMPLATE_PARM_ORIG_LEVEL (index),
3736 decl, type);
3737 TEMPLATE_PARM_DESCENDANTS (index) = t;
3738 TEMPLATE_PARM_PARAMETER_PACK (t)
3739 = TEMPLATE_PARM_PARAMETER_PACK (index);
3740
3741 /* Template template parameters need this. */
3742 if (TREE_CODE (decl) == TEMPLATE_DECL)
3743 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3744 (DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index)),
3745 args, complain);
3746 }
3747
3748 return TEMPLATE_PARM_DESCENDANTS (index);
3749 }
3750
3751 /* Process information from new template parameter PARM and append it
3752 to the LIST being built. This new parameter is a non-type
3753 parameter iff IS_NON_TYPE is true. This new parameter is a
3754 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
3755 is in PARM_LOC. */
3756
3757 tree
3758 process_template_parm (tree list, location_t parm_loc, tree parm,
3759 bool is_non_type, bool is_parameter_pack)
3760 {
3761 tree decl = 0;
3762 tree defval;
3763 int idx = 0;
3764
3765 gcc_assert (TREE_CODE (parm) == TREE_LIST);
3766 defval = TREE_PURPOSE (parm);
3767
3768 if (list)
3769 {
3770 tree p = tree_last (list);
3771
3772 if (p && TREE_VALUE (p) != error_mark_node)
3773 {
3774 p = TREE_VALUE (p);
3775 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
3776 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
3777 else
3778 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
3779 }
3780
3781 ++idx;
3782 }
3783
3784 if (is_non_type)
3785 {
3786 parm = TREE_VALUE (parm);
3787
3788 SET_DECL_TEMPLATE_PARM_P (parm);
3789
3790 if (TREE_TYPE (parm) != error_mark_node)
3791 {
3792 /* [temp.param]
3793
3794 The top-level cv-qualifiers on the template-parameter are
3795 ignored when determining its type. */
3796 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
3797 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
3798 TREE_TYPE (parm) = error_mark_node;
3799 else if (uses_parameter_packs (TREE_TYPE (parm))
3800 && !is_parameter_pack
3801 /* If we're in a nested template parameter list, the template
3802 template parameter could be a parameter pack. */
3803 && processing_template_parmlist == 1)
3804 {
3805 /* This template parameter is not a parameter pack, but it
3806 should be. Complain about "bare" parameter packs. */
3807 check_for_bare_parameter_packs (TREE_TYPE (parm));
3808
3809 /* Recover by calling this a parameter pack. */
3810 is_parameter_pack = true;
3811 }
3812 }
3813
3814 /* A template parameter is not modifiable. */
3815 TREE_CONSTANT (parm) = 1;
3816 TREE_READONLY (parm) = 1;
3817 decl = build_decl (parm_loc,
3818 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
3819 TREE_CONSTANT (decl) = 1;
3820 TREE_READONLY (decl) = 1;
3821 DECL_INITIAL (parm) = DECL_INITIAL (decl)
3822 = build_template_parm_index (idx, processing_template_decl,
3823 processing_template_decl,
3824 decl, TREE_TYPE (parm));
3825
3826 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
3827 = is_parameter_pack;
3828 }
3829 else
3830 {
3831 tree t;
3832 parm = TREE_VALUE (TREE_VALUE (parm));
3833
3834 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
3835 {
3836 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
3837 /* This is for distinguishing between real templates and template
3838 template parameters */
3839 TREE_TYPE (parm) = t;
3840 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
3841 decl = parm;
3842 }
3843 else
3844 {
3845 t = cxx_make_type (TEMPLATE_TYPE_PARM);
3846 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
3847 decl = build_decl (parm_loc,
3848 TYPE_DECL, parm, t);
3849 }
3850
3851 TYPE_NAME (t) = decl;
3852 TYPE_STUB_DECL (t) = decl;
3853 parm = decl;
3854 TEMPLATE_TYPE_PARM_INDEX (t)
3855 = build_template_parm_index (idx, processing_template_decl,
3856 processing_template_decl,
3857 decl, TREE_TYPE (parm));
3858 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
3859 TYPE_CANONICAL (t) = canonical_type_parameter (t);
3860 }
3861 DECL_ARTIFICIAL (decl) = 1;
3862 SET_DECL_TEMPLATE_PARM_P (decl);
3863 pushdecl (decl);
3864 parm = build_tree_list (defval, parm);
3865 return chainon (list, parm);
3866 }
3867
3868 /* The end of a template parameter list has been reached. Process the
3869 tree list into a parameter vector, converting each parameter into a more
3870 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
3871 as PARM_DECLs. */
3872
3873 tree
3874 end_template_parm_list (tree parms)
3875 {
3876 int nparms;
3877 tree parm, next;
3878 tree saved_parmlist = make_tree_vec (list_length (parms));
3879
3880 current_template_parms
3881 = tree_cons (size_int (processing_template_decl),
3882 saved_parmlist, current_template_parms);
3883
3884 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
3885 {
3886 next = TREE_CHAIN (parm);
3887 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
3888 TREE_CHAIN (parm) = NULL_TREE;
3889 }
3890
3891 --processing_template_parmlist;
3892
3893 return saved_parmlist;
3894 }
3895
3896 /* end_template_decl is called after a template declaration is seen. */
3897
3898 void
3899 end_template_decl (void)
3900 {
3901 reset_specialization ();
3902
3903 if (! processing_template_decl)
3904 return;
3905
3906 /* This matches the pushlevel in begin_template_parm_list. */
3907 finish_scope ();
3908
3909 --processing_template_decl;
3910 current_template_parms = TREE_CHAIN (current_template_parms);
3911 }
3912
3913 /* Takes a TREE_LIST representing a template parameter and convert it
3914 into an argument suitable to be passed to the type substitution
3915 functions. Note that If the TREE_LIST contains an error_mark
3916 node, the returned argument is error_mark_node. */
3917
3918 static tree
3919 template_parm_to_arg (tree t)
3920 {
3921
3922 if (t == NULL_TREE
3923 || TREE_CODE (t) != TREE_LIST)
3924 return t;
3925
3926 if (error_operand_p (TREE_VALUE (t)))
3927 return error_mark_node;
3928
3929 t = TREE_VALUE (t);
3930
3931 if (TREE_CODE (t) == TYPE_DECL
3932 || TREE_CODE (t) == TEMPLATE_DECL)
3933 {
3934 t = TREE_TYPE (t);
3935
3936 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3937 {
3938 /* Turn this argument into a TYPE_ARGUMENT_PACK
3939 with a single element, which expands T. */
3940 tree vec = make_tree_vec (1);
3941 #ifdef ENABLE_CHECKING
3942 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3943 (vec, TREE_VEC_LENGTH (vec));
3944 #endif
3945 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3946
3947 t = cxx_make_type (TYPE_ARGUMENT_PACK);
3948 SET_ARGUMENT_PACK_ARGS (t, vec);
3949 }
3950 }
3951 else
3952 {
3953 t = DECL_INITIAL (t);
3954
3955 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3956 {
3957 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
3958 with a single element, which expands T. */
3959 tree vec = make_tree_vec (1);
3960 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
3961 #ifdef ENABLE_CHECKING
3962 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3963 (vec, TREE_VEC_LENGTH (vec));
3964 #endif
3965 t = convert_from_reference (t);
3966 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3967
3968 t = make_node (NONTYPE_ARGUMENT_PACK);
3969 SET_ARGUMENT_PACK_ARGS (t, vec);
3970 TREE_TYPE (t) = type;
3971 }
3972 else
3973 t = convert_from_reference (t);
3974 }
3975 return t;
3976 }
3977
3978 /* Given a set of template parameters, return them as a set of template
3979 arguments. The template parameters are represented as a TREE_VEC, in
3980 the form documented in cp-tree.h for template arguments. */
3981
3982 static tree
3983 template_parms_to_args (tree parms)
3984 {
3985 tree header;
3986 tree args = NULL_TREE;
3987 int length = TMPL_PARMS_DEPTH (parms);
3988 int l = length;
3989
3990 /* If there is only one level of template parameters, we do not
3991 create a TREE_VEC of TREE_VECs. Instead, we return a single
3992 TREE_VEC containing the arguments. */
3993 if (length > 1)
3994 args = make_tree_vec (length);
3995
3996 for (header = parms; header; header = TREE_CHAIN (header))
3997 {
3998 tree a = copy_node (TREE_VALUE (header));
3999 int i;
4000
4001 TREE_TYPE (a) = NULL_TREE;
4002 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
4003 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
4004
4005 #ifdef ENABLE_CHECKING
4006 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
4007 #endif
4008
4009 if (length > 1)
4010 TREE_VEC_ELT (args, --l) = a;
4011 else
4012 args = a;
4013 }
4014
4015 if (length > 1 && TREE_VEC_ELT (args, 0) == NULL_TREE)
4016 /* This can happen for template parms of a template template
4017 parameter, e.g:
4018
4019 template<template<class T, class U> class TT> struct S;
4020
4021 Consider the level of the parms of TT; T and U both have
4022 level 2; TT has no template parm of level 1. So in this case
4023 the first element of full_template_args is NULL_TREE. If we
4024 leave it like this TMPL_ARGS_DEPTH on args returns 1 instead
4025 of 2. This will make tsubst wrongly consider that T and U
4026 have level 1. Instead, let's create a dummy vector as the
4027 first element of full_template_args so that TMPL_ARGS_DEPTH
4028 returns the correct depth for args. */
4029 TREE_VEC_ELT (args, 0) = make_tree_vec (1);
4030 return args;
4031 }
4032
4033 /* Within the declaration of a template, return the currently active
4034 template parameters as an argument TREE_VEC. */
4035
4036 static tree
4037 current_template_args (void)
4038 {
4039 return template_parms_to_args (current_template_parms);
4040 }
4041
4042 /* Update the declared TYPE by doing any lookups which were thought to be
4043 dependent, but are not now that we know the SCOPE of the declarator. */
4044
4045 tree
4046 maybe_update_decl_type (tree orig_type, tree scope)
4047 {
4048 tree type = orig_type;
4049
4050 if (type == NULL_TREE)
4051 return type;
4052
4053 if (TREE_CODE (orig_type) == TYPE_DECL)
4054 type = TREE_TYPE (type);
4055
4056 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4057 && dependent_type_p (type)
4058 /* Don't bother building up the args in this case. */
4059 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4060 {
4061 /* tsubst in the args corresponding to the template parameters,
4062 including auto if present. Most things will be unchanged, but
4063 make_typename_type and tsubst_qualified_id will resolve
4064 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4065 tree args = current_template_args ();
4066 tree auto_node = type_uses_auto (type);
4067 tree pushed;
4068 if (auto_node)
4069 {
4070 tree auto_vec = make_tree_vec (1);
4071 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4072 args = add_to_template_args (args, auto_vec);
4073 }
4074 pushed = push_scope (scope);
4075 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4076 if (pushed)
4077 pop_scope (scope);
4078 }
4079
4080 if (type == error_mark_node)
4081 return orig_type;
4082
4083 if (TREE_CODE (orig_type) == TYPE_DECL)
4084 {
4085 if (same_type_p (type, TREE_TYPE (orig_type)))
4086 type = orig_type;
4087 else
4088 type = TYPE_NAME (type);
4089 }
4090 return type;
4091 }
4092
4093 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4094 template PARMS. If MEMBER_TEMPLATE_P is true, the new template is
4095 a member template. Used by push_template_decl below. */
4096
4097 static tree
4098 build_template_decl (tree decl, tree parms, bool member_template_p)
4099 {
4100 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4101 DECL_TEMPLATE_PARMS (tmpl) = parms;
4102 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4103 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4104 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4105
4106 return tmpl;
4107 }
4108
4109 struct template_parm_data
4110 {
4111 /* The level of the template parameters we are currently
4112 processing. */
4113 int level;
4114
4115 /* The index of the specialization argument we are currently
4116 processing. */
4117 int current_arg;
4118
4119 /* An array whose size is the number of template parameters. The
4120 elements are nonzero if the parameter has been used in any one
4121 of the arguments processed so far. */
4122 int* parms;
4123
4124 /* An array whose size is the number of template arguments. The
4125 elements are nonzero if the argument makes use of template
4126 parameters of this level. */
4127 int* arg_uses_template_parms;
4128 };
4129
4130 /* Subroutine of push_template_decl used to see if each template
4131 parameter in a partial specialization is used in the explicit
4132 argument list. If T is of the LEVEL given in DATA (which is
4133 treated as a template_parm_data*), then DATA->PARMS is marked
4134 appropriately. */
4135
4136 static int
4137 mark_template_parm (tree t, void* data)
4138 {
4139 int level;
4140 int idx;
4141 struct template_parm_data* tpd = (struct template_parm_data*) data;
4142
4143 template_parm_level_and_index (t, &level, &idx);
4144
4145 if (level == tpd->level)
4146 {
4147 tpd->parms[idx] = 1;
4148 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4149 }
4150
4151 /* Return zero so that for_each_template_parm will continue the
4152 traversal of the tree; we want to mark *every* template parm. */
4153 return 0;
4154 }
4155
4156 /* Process the partial specialization DECL. */
4157
4158 static tree
4159 process_partial_specialization (tree decl)
4160 {
4161 tree type = TREE_TYPE (decl);
4162 tree tinfo = get_template_info (decl);
4163 tree maintmpl = TI_TEMPLATE (tinfo);
4164 tree specargs = TI_ARGS (tinfo);
4165 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4166 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4167 tree inner_parms;
4168 tree inst;
4169 int nargs = TREE_VEC_LENGTH (inner_args);
4170 int ntparms;
4171 int i;
4172 bool did_error_intro = false;
4173 struct template_parm_data tpd;
4174 struct template_parm_data tpd2;
4175
4176 gcc_assert (current_template_parms);
4177
4178 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4179 ntparms = TREE_VEC_LENGTH (inner_parms);
4180
4181 /* We check that each of the template parameters given in the
4182 partial specialization is used in the argument list to the
4183 specialization. For example:
4184
4185 template <class T> struct S;
4186 template <class T> struct S<T*>;
4187
4188 The second declaration is OK because `T*' uses the template
4189 parameter T, whereas
4190
4191 template <class T> struct S<int>;
4192
4193 is no good. Even trickier is:
4194
4195 template <class T>
4196 struct S1
4197 {
4198 template <class U>
4199 struct S2;
4200 template <class U>
4201 struct S2<T>;
4202 };
4203
4204 The S2<T> declaration is actually invalid; it is a
4205 full-specialization. Of course,
4206
4207 template <class U>
4208 struct S2<T (*)(U)>;
4209
4210 or some such would have been OK. */
4211 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4212 tpd.parms = XALLOCAVEC (int, ntparms);
4213 memset (tpd.parms, 0, sizeof (int) * ntparms);
4214
4215 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4216 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4217 for (i = 0; i < nargs; ++i)
4218 {
4219 tpd.current_arg = i;
4220 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4221 &mark_template_parm,
4222 &tpd,
4223 NULL,
4224 /*include_nondeduced_p=*/false);
4225 }
4226 for (i = 0; i < ntparms; ++i)
4227 if (tpd.parms[i] == 0)
4228 {
4229 /* One of the template parms was not used in a deduced context in the
4230 specialization. */
4231 if (!did_error_intro)
4232 {
4233 error ("template parameters not deducible in "
4234 "partial specialization:");
4235 did_error_intro = true;
4236 }
4237
4238 inform (input_location, " %qD",
4239 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4240 }
4241
4242 if (did_error_intro)
4243 return error_mark_node;
4244
4245 /* [temp.class.spec]
4246
4247 The argument list of the specialization shall not be identical to
4248 the implicit argument list of the primary template. */
4249 tree main_args
4250 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl)));
4251 if (comp_template_args (inner_args, INNERMOST_TEMPLATE_ARGS (main_args)))
4252 error ("partial specialization %qD does not specialize "
4253 "any template arguments", decl);
4254
4255 /* A partial specialization that replaces multiple parameters of the
4256 primary template with a pack expansion is less specialized for those
4257 parameters. */
4258 if (nargs < DECL_NTPARMS (maintmpl))
4259 {
4260 error ("partial specialization is not more specialized than the "
4261 "primary template because it replaces multiple parameters "
4262 "with a pack expansion");
4263 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4264 return decl;
4265 }
4266
4267 /* [temp.class.spec]
4268
4269 A partially specialized non-type argument expression shall not
4270 involve template parameters of the partial specialization except
4271 when the argument expression is a simple identifier.
4272
4273 The type of a template parameter corresponding to a specialized
4274 non-type argument shall not be dependent on a parameter of the
4275 specialization.
4276
4277 Also, we verify that pack expansions only occur at the
4278 end of the argument list. */
4279 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4280 tpd2.parms = 0;
4281 for (i = 0; i < nargs; ++i)
4282 {
4283 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4284 tree arg = TREE_VEC_ELT (inner_args, i);
4285 tree packed_args = NULL_TREE;
4286 int j, len = 1;
4287
4288 if (ARGUMENT_PACK_P (arg))
4289 {
4290 /* Extract the arguments from the argument pack. We'll be
4291 iterating over these in the following loop. */
4292 packed_args = ARGUMENT_PACK_ARGS (arg);
4293 len = TREE_VEC_LENGTH (packed_args);
4294 }
4295
4296 for (j = 0; j < len; j++)
4297 {
4298 if (packed_args)
4299 /* Get the Jth argument in the parameter pack. */
4300 arg = TREE_VEC_ELT (packed_args, j);
4301
4302 if (PACK_EXPANSION_P (arg))
4303 {
4304 /* Pack expansions must come at the end of the
4305 argument list. */
4306 if ((packed_args && j < len - 1)
4307 || (!packed_args && i < nargs - 1))
4308 {
4309 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4310 error ("parameter pack argument %qE must be at the "
4311 "end of the template argument list", arg);
4312 else
4313 error ("parameter pack argument %qT must be at the "
4314 "end of the template argument list", arg);
4315 }
4316 }
4317
4318 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4319 /* We only care about the pattern. */
4320 arg = PACK_EXPANSION_PATTERN (arg);
4321
4322 if (/* These first two lines are the `non-type' bit. */
4323 !TYPE_P (arg)
4324 && TREE_CODE (arg) != TEMPLATE_DECL
4325 /* This next two lines are the `argument expression is not just a
4326 simple identifier' condition and also the `specialized
4327 non-type argument' bit. */
4328 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4329 && !(REFERENCE_REF_P (arg)
4330 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4331 {
4332 if ((!packed_args && tpd.arg_uses_template_parms[i])
4333 || (packed_args && uses_template_parms (arg)))
4334 error ("template argument %qE involves template parameter(s)",
4335 arg);
4336 else
4337 {
4338 /* Look at the corresponding template parameter,
4339 marking which template parameters its type depends
4340 upon. */
4341 tree type = TREE_TYPE (parm);
4342
4343 if (!tpd2.parms)
4344 {
4345 /* We haven't yet initialized TPD2. Do so now. */
4346 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4347 /* The number of parameters here is the number in the
4348 main template, which, as checked in the assertion
4349 above, is NARGS. */
4350 tpd2.parms = XALLOCAVEC (int, nargs);
4351 tpd2.level =
4352 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4353 }
4354
4355 /* Mark the template parameters. But this time, we're
4356 looking for the template parameters of the main
4357 template, not in the specialization. */
4358 tpd2.current_arg = i;
4359 tpd2.arg_uses_template_parms[i] = 0;
4360 memset (tpd2.parms, 0, sizeof (int) * nargs);
4361 for_each_template_parm (type,
4362 &mark_template_parm,
4363 &tpd2,
4364 NULL,
4365 /*include_nondeduced_p=*/false);
4366
4367 if (tpd2.arg_uses_template_parms [i])
4368 {
4369 /* The type depended on some template parameters.
4370 If they are fully specialized in the
4371 specialization, that's OK. */
4372 int j;
4373 int count = 0;
4374 for (j = 0; j < nargs; ++j)
4375 if (tpd2.parms[j] != 0
4376 && tpd.arg_uses_template_parms [j])
4377 ++count;
4378 if (count != 0)
4379 error_n (input_location, count,
4380 "type %qT of template argument %qE depends "
4381 "on a template parameter",
4382 "type %qT of template argument %qE depends "
4383 "on template parameters",
4384 type,
4385 arg);
4386 }
4387 }
4388 }
4389 }
4390 }
4391
4392 /* We should only get here once. */
4393 if (TREE_CODE (decl) == TYPE_DECL)
4394 gcc_assert (!COMPLETE_TYPE_P (type));
4395
4396 tree tmpl = build_template_decl (decl, current_template_parms,
4397 DECL_MEMBER_TEMPLATE_P (maintmpl));
4398 TREE_TYPE (tmpl) = type;
4399 DECL_TEMPLATE_RESULT (tmpl) = decl;
4400 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4401 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4402 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4403
4404 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4405 = tree_cons (specargs, tmpl,
4406 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4407 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4408
4409 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4410 inst = TREE_CHAIN (inst))
4411 {
4412 tree instance = TREE_VALUE (inst);
4413 if (TYPE_P (instance)
4414 ? (COMPLETE_TYPE_P (instance)
4415 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance))
4416 : DECL_TEMPLATE_INSTANTIATION (instance))
4417 {
4418 tree spec = most_specialized_partial_spec (instance, tf_none);
4419 if (spec && TREE_VALUE (spec) == tmpl)
4420 {
4421 tree inst_decl = (DECL_P (instance)
4422 ? instance : TYPE_NAME (instance));
4423 permerror (input_location,
4424 "partial specialization of %qD after instantiation "
4425 "of %qD", decl, inst_decl);
4426 }
4427 }
4428 }
4429
4430 return decl;
4431 }
4432
4433 /* PARM is a template parameter of some form; return the corresponding
4434 TEMPLATE_PARM_INDEX. */
4435
4436 static tree
4437 get_template_parm_index (tree parm)
4438 {
4439 if (TREE_CODE (parm) == PARM_DECL
4440 || TREE_CODE (parm) == CONST_DECL)
4441 parm = DECL_INITIAL (parm);
4442 else if (TREE_CODE (parm) == TYPE_DECL
4443 || TREE_CODE (parm) == TEMPLATE_DECL)
4444 parm = TREE_TYPE (parm);
4445 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4446 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM
4447 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4448 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4449 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4450 return parm;
4451 }
4452
4453 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4454 parameter packs used by the template parameter PARM. */
4455
4456 static void
4457 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4458 {
4459 /* A type parm can't refer to another parm. */
4460 if (TREE_CODE (parm) == TYPE_DECL)
4461 return;
4462 else if (TREE_CODE (parm) == PARM_DECL)
4463 {
4464 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4465 ppd, ppd->visited);
4466 return;
4467 }
4468
4469 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4470
4471 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4472 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4473 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4474 }
4475
4476 /* PARM is a template parameter pack. Return any parameter packs used in
4477 its type or the type of any of its template parameters. If there are
4478 any such packs, it will be instantiated into a fixed template parameter
4479 list by partial instantiation rather than be fully deduced. */
4480
4481 tree
4482 fixed_parameter_pack_p (tree parm)
4483 {
4484 /* This can only be true in a member template. */
4485 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4486 return NULL_TREE;
4487 /* This can only be true for a parameter pack. */
4488 if (!template_parameter_pack_p (parm))
4489 return NULL_TREE;
4490 /* A type parm can't refer to another parm. */
4491 if (TREE_CODE (parm) == TYPE_DECL)
4492 return NULL_TREE;
4493
4494 tree parameter_packs = NULL_TREE;
4495 struct find_parameter_pack_data ppd;
4496 ppd.parameter_packs = &parameter_packs;
4497 ppd.visited = new hash_set<tree>;
4498
4499 fixed_parameter_pack_p_1 (parm, &ppd);
4500
4501 delete ppd.visited;
4502 return parameter_packs;
4503 }
4504
4505 /* Check that a template declaration's use of default arguments and
4506 parameter packs is not invalid. Here, PARMS are the template
4507 parameters. IS_PRIMARY is true if DECL is the thing declared by
4508 a primary template. IS_PARTIAL is true if DECL is a partial
4509 specialization.
4510
4511 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4512 declaration (but not a definition); 1 indicates a declaration, 2
4513 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4514 emitted for extraneous default arguments.
4515
4516 Returns TRUE if there were no errors found, FALSE otherwise. */
4517
4518 bool
4519 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4520 bool is_partial, int is_friend_decl)
4521 {
4522 const char *msg;
4523 int last_level_to_check;
4524 tree parm_level;
4525 bool no_errors = true;
4526
4527 /* [temp.param]
4528
4529 A default template-argument shall not be specified in a
4530 function template declaration or a function template definition, nor
4531 in the template-parameter-list of the definition of a member of a
4532 class template. */
4533
4534 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
4535 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
4536 /* You can't have a function template declaration in a local
4537 scope, nor you can you define a member of a class template in a
4538 local scope. */
4539 return true;
4540
4541 if ((TREE_CODE (decl) == TYPE_DECL
4542 && TREE_TYPE (decl)
4543 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4544 || (TREE_CODE (decl) == FUNCTION_DECL
4545 && LAMBDA_FUNCTION_P (decl)))
4546 /* A lambda doesn't have an explicit declaration; don't complain
4547 about the parms of the enclosing class. */
4548 return true;
4549
4550 if (current_class_type
4551 && !TYPE_BEING_DEFINED (current_class_type)
4552 && DECL_LANG_SPECIFIC (decl)
4553 && DECL_DECLARES_FUNCTION_P (decl)
4554 /* If this is either a friend defined in the scope of the class
4555 or a member function. */
4556 && (DECL_FUNCTION_MEMBER_P (decl)
4557 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4558 : DECL_FRIEND_CONTEXT (decl)
4559 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4560 : false)
4561 /* And, if it was a member function, it really was defined in
4562 the scope of the class. */
4563 && (!DECL_FUNCTION_MEMBER_P (decl)
4564 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4565 /* We already checked these parameters when the template was
4566 declared, so there's no need to do it again now. This function
4567 was defined in class scope, but we're processing its body now
4568 that the class is complete. */
4569 return true;
4570
4571 /* Core issue 226 (C++0x only): the following only applies to class
4572 templates. */
4573 if (is_primary
4574 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4575 {
4576 /* [temp.param]
4577
4578 If a template-parameter has a default template-argument, all
4579 subsequent template-parameters shall have a default
4580 template-argument supplied. */
4581 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4582 {
4583 tree inner_parms = TREE_VALUE (parm_level);
4584 int ntparms = TREE_VEC_LENGTH (inner_parms);
4585 int seen_def_arg_p = 0;
4586 int i;
4587
4588 for (i = 0; i < ntparms; ++i)
4589 {
4590 tree parm = TREE_VEC_ELT (inner_parms, i);
4591
4592 if (parm == error_mark_node)
4593 continue;
4594
4595 if (TREE_PURPOSE (parm))
4596 seen_def_arg_p = 1;
4597 else if (seen_def_arg_p
4598 && !template_parameter_pack_p (TREE_VALUE (parm)))
4599 {
4600 error ("no default argument for %qD", TREE_VALUE (parm));
4601 /* For better subsequent error-recovery, we indicate that
4602 there should have been a default argument. */
4603 TREE_PURPOSE (parm) = error_mark_node;
4604 no_errors = false;
4605 }
4606 else if (!is_partial
4607 && !is_friend_decl
4608 /* Don't complain about an enclosing partial
4609 specialization. */
4610 && parm_level == parms
4611 && TREE_CODE (decl) == TYPE_DECL
4612 && i < ntparms - 1
4613 && template_parameter_pack_p (TREE_VALUE (parm))
4614 /* A fixed parameter pack will be partially
4615 instantiated into a fixed length list. */
4616 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
4617 {
4618 /* A primary class template can only have one
4619 parameter pack, at the end of the template
4620 parameter list. */
4621
4622 error ("parameter pack %q+D must be at the end of the"
4623 " template parameter list", TREE_VALUE (parm));
4624
4625 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4626 = error_mark_node;
4627 no_errors = false;
4628 }
4629 }
4630 }
4631 }
4632
4633 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4634 || is_partial
4635 || !is_primary
4636 || is_friend_decl)
4637 /* For an ordinary class template, default template arguments are
4638 allowed at the innermost level, e.g.:
4639 template <class T = int>
4640 struct S {};
4641 but, in a partial specialization, they're not allowed even
4642 there, as we have in [temp.class.spec]:
4643
4644 The template parameter list of a specialization shall not
4645 contain default template argument values.
4646
4647 So, for a partial specialization, or for a function template
4648 (in C++98/C++03), we look at all of them. */
4649 ;
4650 else
4651 /* But, for a primary class template that is not a partial
4652 specialization we look at all template parameters except the
4653 innermost ones. */
4654 parms = TREE_CHAIN (parms);
4655
4656 /* Figure out what error message to issue. */
4657 if (is_friend_decl == 2)
4658 msg = G_("default template arguments may not be used in function template "
4659 "friend re-declaration");
4660 else if (is_friend_decl)
4661 msg = G_("default template arguments may not be used in function template "
4662 "friend declarations");
4663 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4664 msg = G_("default template arguments may not be used in function templates "
4665 "without -std=c++11 or -std=gnu++11");
4666 else if (is_partial)
4667 msg = G_("default template arguments may not be used in "
4668 "partial specializations");
4669 else
4670 msg = G_("default argument for template parameter for class enclosing %qD");
4671
4672 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4673 /* If we're inside a class definition, there's no need to
4674 examine the parameters to the class itself. On the one
4675 hand, they will be checked when the class is defined, and,
4676 on the other, default arguments are valid in things like:
4677 template <class T = double>
4678 struct S { template <class U> void f(U); };
4679 Here the default argument for `S' has no bearing on the
4680 declaration of `f'. */
4681 last_level_to_check = template_class_depth (current_class_type) + 1;
4682 else
4683 /* Check everything. */
4684 last_level_to_check = 0;
4685
4686 for (parm_level = parms;
4687 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4688 parm_level = TREE_CHAIN (parm_level))
4689 {
4690 tree inner_parms = TREE_VALUE (parm_level);
4691 int i;
4692 int ntparms;
4693
4694 ntparms = TREE_VEC_LENGTH (inner_parms);
4695 for (i = 0; i < ntparms; ++i)
4696 {
4697 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4698 continue;
4699
4700 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4701 {
4702 if (msg)
4703 {
4704 no_errors = false;
4705 if (is_friend_decl == 2)
4706 return no_errors;
4707
4708 error (msg, decl);
4709 msg = 0;
4710 }
4711
4712 /* Clear out the default argument so that we are not
4713 confused later. */
4714 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
4715 }
4716 }
4717
4718 /* At this point, if we're still interested in issuing messages,
4719 they must apply to classes surrounding the object declared. */
4720 if (msg)
4721 msg = G_("default argument for template parameter for class "
4722 "enclosing %qD");
4723 }
4724
4725 return no_errors;
4726 }
4727
4728 /* Worker for push_template_decl_real, called via
4729 for_each_template_parm. DATA is really an int, indicating the
4730 level of the parameters we are interested in. If T is a template
4731 parameter of that level, return nonzero. */
4732
4733 static int
4734 template_parm_this_level_p (tree t, void* data)
4735 {
4736 int this_level = *(int *)data;
4737 int level;
4738
4739 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
4740 level = TEMPLATE_PARM_LEVEL (t);
4741 else
4742 level = TEMPLATE_TYPE_LEVEL (t);
4743 return level == this_level;
4744 }
4745
4746 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
4747 parameters given by current_template_args, or reuses a
4748 previously existing one, if appropriate. Returns the DECL, or an
4749 equivalent one, if it is replaced via a call to duplicate_decls.
4750
4751 If IS_FRIEND is true, DECL is a friend declaration. */
4752
4753 tree
4754 push_template_decl_real (tree decl, bool is_friend)
4755 {
4756 tree tmpl;
4757 tree args;
4758 tree info;
4759 tree ctx;
4760 bool is_primary;
4761 bool is_partial;
4762 int new_template_p = 0;
4763 /* True if the template is a member template, in the sense of
4764 [temp.mem]. */
4765 bool member_template_p = false;
4766
4767 if (decl == error_mark_node || !current_template_parms)
4768 return error_mark_node;
4769
4770 /* See if this is a partial specialization. */
4771 is_partial = ((DECL_IMPLICIT_TYPEDEF_P (decl)
4772 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
4773 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
4774 || (VAR_P (decl)
4775 && DECL_LANG_SPECIFIC (decl)
4776 && DECL_TEMPLATE_SPECIALIZATION (decl)
4777 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl))));
4778
4779 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
4780 is_friend = true;
4781
4782 if (is_friend)
4783 /* For a friend, we want the context of the friend function, not
4784 the type of which it is a friend. */
4785 ctx = CP_DECL_CONTEXT (decl);
4786 else if (CP_DECL_CONTEXT (decl)
4787 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
4788 /* In the case of a virtual function, we want the class in which
4789 it is defined. */
4790 ctx = CP_DECL_CONTEXT (decl);
4791 else
4792 /* Otherwise, if we're currently defining some class, the DECL
4793 is assumed to be a member of the class. */
4794 ctx = current_scope ();
4795
4796 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
4797 ctx = NULL_TREE;
4798
4799 if (!DECL_CONTEXT (decl))
4800 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
4801
4802 /* See if this is a primary template. */
4803 if (is_friend && ctx
4804 && uses_template_parms_level (ctx, processing_template_decl))
4805 /* A friend template that specifies a class context, i.e.
4806 template <typename T> friend void A<T>::f();
4807 is not primary. */
4808 is_primary = false;
4809 else if (TREE_CODE (decl) == TYPE_DECL
4810 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4811 is_primary = false;
4812 else
4813 is_primary = template_parm_scope_p ();
4814
4815 if (is_primary)
4816 {
4817 if (DECL_CLASS_SCOPE_P (decl))
4818 member_template_p = true;
4819 if (TREE_CODE (decl) == TYPE_DECL
4820 && anon_aggrname_p (DECL_NAME (decl)))
4821 {
4822 error ("template class without a name");
4823 return error_mark_node;
4824 }
4825 else if (TREE_CODE (decl) == FUNCTION_DECL)
4826 {
4827 if (member_template_p)
4828 {
4829 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
4830 error ("member template %qD may not have virt-specifiers", decl);
4831 }
4832 if (DECL_DESTRUCTOR_P (decl))
4833 {
4834 /* [temp.mem]
4835
4836 A destructor shall not be a member template. */
4837 error ("destructor %qD declared as member template", decl);
4838 return error_mark_node;
4839 }
4840 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
4841 && (!prototype_p (TREE_TYPE (decl))
4842 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
4843 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
4844 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
4845 == void_list_node)))
4846 {
4847 /* [basic.stc.dynamic.allocation]
4848
4849 An allocation function can be a function
4850 template. ... Template allocation functions shall
4851 have two or more parameters. */
4852 error ("invalid template declaration of %qD", decl);
4853 return error_mark_node;
4854 }
4855 }
4856 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4857 && CLASS_TYPE_P (TREE_TYPE (decl)))
4858 /* OK */;
4859 else if (TREE_CODE (decl) == TYPE_DECL
4860 && TYPE_DECL_ALIAS_P (decl))
4861 /* alias-declaration */
4862 gcc_assert (!DECL_ARTIFICIAL (decl));
4863 else if (VAR_P (decl))
4864 /* C++14 variable template. */;
4865 else
4866 {
4867 error ("template declaration of %q#D", decl);
4868 return error_mark_node;
4869 }
4870 }
4871
4872 /* Check to see that the rules regarding the use of default
4873 arguments are not being violated. */
4874 check_default_tmpl_args (decl, current_template_parms,
4875 is_primary, is_partial, /*is_friend_decl=*/0);
4876
4877 /* Ensure that there are no parameter packs in the type of this
4878 declaration that have not been expanded. */
4879 if (TREE_CODE (decl) == FUNCTION_DECL)
4880 {
4881 /* Check each of the arguments individually to see if there are
4882 any bare parameter packs. */
4883 tree type = TREE_TYPE (decl);
4884 tree arg = DECL_ARGUMENTS (decl);
4885 tree argtype = TYPE_ARG_TYPES (type);
4886
4887 while (arg && argtype)
4888 {
4889 if (!DECL_PACK_P (arg)
4890 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
4891 {
4892 /* This is a PARM_DECL that contains unexpanded parameter
4893 packs. We have already complained about this in the
4894 check_for_bare_parameter_packs call, so just replace
4895 these types with ERROR_MARK_NODE. */
4896 TREE_TYPE (arg) = error_mark_node;
4897 TREE_VALUE (argtype) = error_mark_node;
4898 }
4899
4900 arg = DECL_CHAIN (arg);
4901 argtype = TREE_CHAIN (argtype);
4902 }
4903
4904 /* Check for bare parameter packs in the return type and the
4905 exception specifiers. */
4906 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
4907 /* Errors were already issued, set return type to int
4908 as the frontend doesn't expect error_mark_node as
4909 the return type. */
4910 TREE_TYPE (type) = integer_type_node;
4911 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
4912 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
4913 }
4914 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
4915 && TYPE_DECL_ALIAS_P (decl))
4916 ? DECL_ORIGINAL_TYPE (decl)
4917 : TREE_TYPE (decl)))
4918 {
4919 TREE_TYPE (decl) = error_mark_node;
4920 return error_mark_node;
4921 }
4922
4923 if (is_partial)
4924 return process_partial_specialization (decl);
4925
4926 args = current_template_args ();
4927
4928 if (!ctx
4929 || TREE_CODE (ctx) == FUNCTION_DECL
4930 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
4931 || (TREE_CODE (decl) == TYPE_DECL
4932 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4933 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
4934 {
4935 if (DECL_LANG_SPECIFIC (decl)
4936 && DECL_TEMPLATE_INFO (decl)
4937 && DECL_TI_TEMPLATE (decl))
4938 tmpl = DECL_TI_TEMPLATE (decl);
4939 /* If DECL is a TYPE_DECL for a class-template, then there won't
4940 be DECL_LANG_SPECIFIC. The information equivalent to
4941 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
4942 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4943 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
4944 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
4945 {
4946 /* Since a template declaration already existed for this
4947 class-type, we must be redeclaring it here. Make sure
4948 that the redeclaration is valid. */
4949 redeclare_class_template (TREE_TYPE (decl),
4950 current_template_parms);
4951 /* We don't need to create a new TEMPLATE_DECL; just use the
4952 one we already had. */
4953 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
4954 }
4955 else
4956 {
4957 tmpl = build_template_decl (decl, current_template_parms,
4958 member_template_p);
4959 new_template_p = 1;
4960
4961 if (DECL_LANG_SPECIFIC (decl)
4962 && DECL_TEMPLATE_SPECIALIZATION (decl))
4963 {
4964 /* A specialization of a member template of a template
4965 class. */
4966 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4967 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
4968 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
4969 }
4970 }
4971 }
4972 else
4973 {
4974 tree a, t, current, parms;
4975 int i;
4976 tree tinfo = get_template_info (decl);
4977
4978 if (!tinfo)
4979 {
4980 error ("template definition of non-template %q#D", decl);
4981 return error_mark_node;
4982 }
4983
4984 tmpl = TI_TEMPLATE (tinfo);
4985
4986 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
4987 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
4988 && DECL_TEMPLATE_SPECIALIZATION (decl)
4989 && DECL_MEMBER_TEMPLATE_P (tmpl))
4990 {
4991 tree new_tmpl;
4992
4993 /* The declaration is a specialization of a member
4994 template, declared outside the class. Therefore, the
4995 innermost template arguments will be NULL, so we
4996 replace them with the arguments determined by the
4997 earlier call to check_explicit_specialization. */
4998 args = DECL_TI_ARGS (decl);
4999
5000 new_tmpl
5001 = build_template_decl (decl, current_template_parms,
5002 member_template_p);
5003 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
5004 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
5005 DECL_TI_TEMPLATE (decl) = new_tmpl;
5006 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
5007 DECL_TEMPLATE_INFO (new_tmpl)
5008 = build_template_info (tmpl, args);
5009
5010 register_specialization (new_tmpl,
5011 most_general_template (tmpl),
5012 args,
5013 is_friend, 0);
5014 return decl;
5015 }
5016
5017 /* Make sure the template headers we got make sense. */
5018
5019 parms = DECL_TEMPLATE_PARMS (tmpl);
5020 i = TMPL_PARMS_DEPTH (parms);
5021 if (TMPL_ARGS_DEPTH (args) != i)
5022 {
5023 error ("expected %d levels of template parms for %q#D, got %d",
5024 i, decl, TMPL_ARGS_DEPTH (args));
5025 DECL_INTERFACE_KNOWN (decl) = 1;
5026 return error_mark_node;
5027 }
5028 else
5029 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
5030 {
5031 a = TMPL_ARGS_LEVEL (args, i);
5032 t = INNERMOST_TEMPLATE_PARMS (parms);
5033
5034 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
5035 {
5036 if (current == decl)
5037 error ("got %d template parameters for %q#D",
5038 TREE_VEC_LENGTH (a), decl);
5039 else
5040 error ("got %d template parameters for %q#T",
5041 TREE_VEC_LENGTH (a), current);
5042 error (" but %d required", TREE_VEC_LENGTH (t));
5043 /* Avoid crash in import_export_decl. */
5044 DECL_INTERFACE_KNOWN (decl) = 1;
5045 return error_mark_node;
5046 }
5047
5048 if (current == decl)
5049 current = ctx;
5050 else if (current == NULL_TREE)
5051 /* Can happen in erroneous input. */
5052 break;
5053 else
5054 current = get_containing_scope (current);
5055 }
5056
5057 /* Check that the parms are used in the appropriate qualifying scopes
5058 in the declarator. */
5059 if (!comp_template_args
5060 (TI_ARGS (tinfo),
5061 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5062 {
5063 error ("\
5064 template arguments to %qD do not match original template %qD",
5065 decl, DECL_TEMPLATE_RESULT (tmpl));
5066 if (!uses_template_parms (TI_ARGS (tinfo)))
5067 inform (input_location, "use template<> for an explicit specialization");
5068 /* Avoid crash in import_export_decl. */
5069 DECL_INTERFACE_KNOWN (decl) = 1;
5070 return error_mark_node;
5071 }
5072 }
5073
5074 DECL_TEMPLATE_RESULT (tmpl) = decl;
5075 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5076
5077 /* Push template declarations for global functions and types. Note
5078 that we do not try to push a global template friend declared in a
5079 template class; such a thing may well depend on the template
5080 parameters of the class. */
5081 if (new_template_p && !ctx
5082 && !(is_friend && template_class_depth (current_class_type) > 0))
5083 {
5084 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5085 if (tmpl == error_mark_node)
5086 return error_mark_node;
5087
5088 /* Hide template friend classes that haven't been declared yet. */
5089 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5090 {
5091 DECL_ANTICIPATED (tmpl) = 1;
5092 DECL_FRIEND_P (tmpl) = 1;
5093 }
5094 }
5095
5096 if (is_primary)
5097 {
5098 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5099 int i;
5100
5101 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5102 if (DECL_CONV_FN_P (tmpl))
5103 {
5104 int depth = TMPL_PARMS_DEPTH (parms);
5105
5106 /* It is a conversion operator. See if the type converted to
5107 depends on innermost template operands. */
5108
5109 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5110 depth))
5111 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5112 }
5113
5114 /* Give template template parms a DECL_CONTEXT of the template
5115 for which they are a parameter. */
5116 parms = INNERMOST_TEMPLATE_PARMS (parms);
5117 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5118 {
5119 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5120 if (TREE_CODE (parm) == TEMPLATE_DECL)
5121 DECL_CONTEXT (parm) = tmpl;
5122 }
5123
5124 if (TREE_CODE (decl) == TYPE_DECL
5125 && TYPE_DECL_ALIAS_P (decl)
5126 && complex_alias_template_p (tmpl))
5127 TEMPLATE_DECL_COMPLEX_ALIAS_P (tmpl) = true;
5128 }
5129
5130 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5131 back to its most general template. If TMPL is a specialization,
5132 ARGS may only have the innermost set of arguments. Add the missing
5133 argument levels if necessary. */
5134 if (DECL_TEMPLATE_INFO (tmpl))
5135 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5136
5137 info = build_template_info (tmpl, args);
5138
5139 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5140 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5141 else
5142 {
5143 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5144 retrofit_lang_decl (decl);
5145 if (DECL_LANG_SPECIFIC (decl))
5146 DECL_TEMPLATE_INFO (decl) = info;
5147 }
5148
5149 if (flag_implicit_templates
5150 && !is_friend
5151 && TREE_PUBLIC (decl)
5152 && VAR_OR_FUNCTION_DECL_P (decl))
5153 /* Set DECL_COMDAT on template instantiations; if we force
5154 them to be emitted by explicit instantiation or -frepo,
5155 mark_needed will tell cgraph to do the right thing. */
5156 DECL_COMDAT (decl) = true;
5157
5158 return DECL_TEMPLATE_RESULT (tmpl);
5159 }
5160
5161 tree
5162 push_template_decl (tree decl)
5163 {
5164 return push_template_decl_real (decl, false);
5165 }
5166
5167 /* FN is an inheriting constructor that inherits from the constructor
5168 template INHERITED; turn FN into a constructor template with a matching
5169 template header. */
5170
5171 tree
5172 add_inherited_template_parms (tree fn, tree inherited)
5173 {
5174 tree inner_parms
5175 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5176 inner_parms = copy_node (inner_parms);
5177 tree parms
5178 = tree_cons (size_int (processing_template_decl + 1),
5179 inner_parms, current_template_parms);
5180 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5181 tree args = template_parms_to_args (parms);
5182 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5183 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5184 DECL_TEMPLATE_RESULT (tmpl) = fn;
5185 DECL_ARTIFICIAL (tmpl) = true;
5186 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5187 return tmpl;
5188 }
5189
5190 /* Called when a class template TYPE is redeclared with the indicated
5191 template PARMS, e.g.:
5192
5193 template <class T> struct S;
5194 template <class T> struct S {}; */
5195
5196 bool
5197 redeclare_class_template (tree type, tree parms)
5198 {
5199 tree tmpl;
5200 tree tmpl_parms;
5201 int i;
5202
5203 if (!TYPE_TEMPLATE_INFO (type))
5204 {
5205 error ("%qT is not a template type", type);
5206 return false;
5207 }
5208
5209 tmpl = TYPE_TI_TEMPLATE (type);
5210 if (!PRIMARY_TEMPLATE_P (tmpl))
5211 /* The type is nested in some template class. Nothing to worry
5212 about here; there are no new template parameters for the nested
5213 type. */
5214 return true;
5215
5216 if (!parms)
5217 {
5218 error ("template specifiers not specified in declaration of %qD",
5219 tmpl);
5220 return false;
5221 }
5222
5223 parms = INNERMOST_TEMPLATE_PARMS (parms);
5224 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5225
5226 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5227 {
5228 error_n (input_location, TREE_VEC_LENGTH (parms),
5229 "redeclared with %d template parameter",
5230 "redeclared with %d template parameters",
5231 TREE_VEC_LENGTH (parms));
5232 inform_n (input_location, TREE_VEC_LENGTH (tmpl_parms),
5233 "previous declaration %q+D used %d template parameter",
5234 "previous declaration %q+D used %d template parameters",
5235 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5236 return false;
5237 }
5238
5239 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5240 {
5241 tree tmpl_parm;
5242 tree parm;
5243 tree tmpl_default;
5244 tree parm_default;
5245
5246 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5247 || TREE_VEC_ELT (parms, i) == error_mark_node)
5248 continue;
5249
5250 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5251 if (error_operand_p (tmpl_parm))
5252 return false;
5253
5254 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5255 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5256 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5257
5258 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5259 TEMPLATE_DECL. */
5260 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5261 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5262 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5263 || (TREE_CODE (tmpl_parm) != PARM_DECL
5264 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5265 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5266 || (TREE_CODE (tmpl_parm) == PARM_DECL
5267 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5268 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5269 {
5270 error ("template parameter %q+#D", tmpl_parm);
5271 error ("redeclared here as %q#D", parm);
5272 return false;
5273 }
5274
5275 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5276 {
5277 /* We have in [temp.param]:
5278
5279 A template-parameter may not be given default arguments
5280 by two different declarations in the same scope. */
5281 error_at (input_location, "redefinition of default argument for %q#D", parm);
5282 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5283 "original definition appeared here");
5284 return false;
5285 }
5286
5287 if (parm_default != NULL_TREE)
5288 /* Update the previous template parameters (which are the ones
5289 that will really count) with the new default value. */
5290 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5291 else if (tmpl_default != NULL_TREE)
5292 /* Update the new parameters, too; they'll be used as the
5293 parameters for any members. */
5294 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5295 }
5296
5297 return true;
5298 }
5299
5300 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5301 to be used when the caller has already checked
5302 (processing_template_decl
5303 && !instantiation_dependent_expression_p (expr)
5304 && potential_constant_expression (expr))
5305 and cleared processing_template_decl. */
5306
5307 tree
5308 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
5309 {
5310 return tsubst_copy_and_build (expr,
5311 /*args=*/NULL_TREE,
5312 complain,
5313 /*in_decl=*/NULL_TREE,
5314 /*function_p=*/false,
5315 /*integral_constant_expression_p=*/true);
5316 }
5317
5318 /* Simplify EXPR if it is a non-dependent expression. Returns the
5319 (possibly simplified) expression. */
5320
5321 tree
5322 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5323 {
5324 if (expr == NULL_TREE)
5325 return NULL_TREE;
5326
5327 /* If we're in a template, but EXPR isn't value dependent, simplify
5328 it. We're supposed to treat:
5329
5330 template <typename T> void f(T[1 + 1]);
5331 template <typename T> void f(T[2]);
5332
5333 as two declarations of the same function, for example. */
5334 if (processing_template_decl
5335 && !instantiation_dependent_expression_p (expr)
5336 && potential_constant_expression (expr))
5337 {
5338 processing_template_decl_sentinel s;
5339 expr = instantiate_non_dependent_expr_internal (expr, complain);
5340 }
5341 return expr;
5342 }
5343
5344 tree
5345 instantiate_non_dependent_expr (tree expr)
5346 {
5347 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
5348 }
5349
5350 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5351 template declaration, or a TYPE_DECL for an alias declaration. */
5352
5353 bool
5354 alias_type_or_template_p (tree t)
5355 {
5356 if (t == NULL_TREE)
5357 return false;
5358 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5359 || (TYPE_P (t)
5360 && TYPE_NAME (t)
5361 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5362 || DECL_ALIAS_TEMPLATE_P (t));
5363 }
5364
5365 /* Return TRUE iff T is a specialization of an alias template. */
5366
5367 bool
5368 alias_template_specialization_p (const_tree t)
5369 {
5370 /* It's an alias template specialization if it's an alias and its
5371 TYPE_NAME is a specialization of a primary template. */
5372 if (TYPE_ALIAS_P (t))
5373 {
5374 tree name = TYPE_NAME (t);
5375 if (DECL_LANG_SPECIFIC (name))
5376 if (tree ti = DECL_TEMPLATE_INFO (name))
5377 {
5378 tree tmpl = TI_TEMPLATE (ti);
5379 return PRIMARY_TEMPLATE_P (tmpl);
5380 }
5381 }
5382 return false;
5383 }
5384
5385 /* An alias template is complex from a SFINAE perspective if a template-id
5386 using that alias can be ill-formed when the expansion is not, as with
5387 the void_t template. We determine this by checking whether the
5388 expansion for the alias template uses all its template parameters. */
5389
5390 struct uses_all_template_parms_data
5391 {
5392 int level;
5393 bool *seen;
5394 };
5395
5396 static int
5397 uses_all_template_parms_r (tree t, void *data_)
5398 {
5399 struct uses_all_template_parms_data &data
5400 = *(struct uses_all_template_parms_data*)data_;
5401 tree idx = get_template_parm_index (t);
5402
5403 if (TEMPLATE_PARM_LEVEL (idx) == data.level)
5404 data.seen[TEMPLATE_PARM_IDX (idx)] = true;
5405 return 0;
5406 }
5407
5408 static bool
5409 complex_alias_template_p (const_tree tmpl)
5410 {
5411 struct uses_all_template_parms_data data;
5412 tree pat = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5413 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5414 data.level = TMPL_PARMS_DEPTH (parms);
5415 int len = TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS (parms));
5416 data.seen = XALLOCAVEC (bool, len);
5417 for (int i = 0; i < len; ++i)
5418 data.seen[i] = false;
5419
5420 for_each_template_parm (pat, uses_all_template_parms_r, &data, NULL, true);
5421 for (int i = 0; i < len; ++i)
5422 if (!data.seen[i])
5423 return true;
5424 return false;
5425 }
5426
5427 /* Return TRUE iff T is a specialization of a complex alias template with
5428 dependent template-arguments. */
5429
5430 bool
5431 dependent_alias_template_spec_p (const_tree t)
5432 {
5433 return (alias_template_specialization_p (t)
5434 && TEMPLATE_DECL_COMPLEX_ALIAS_P (DECL_TI_TEMPLATE (TYPE_NAME (t)))
5435 && (any_dependent_template_arguments_p
5436 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (t)))));
5437 }
5438
5439 /* Return the number of innermost template parameters in TMPL. */
5440
5441 static int
5442 num_innermost_template_parms (tree tmpl)
5443 {
5444 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5445 return TREE_VEC_LENGTH (parms);
5446 }
5447
5448 /* Return either TMPL or another template that it is equivalent to under DR
5449 1286: An alias that just changes the name of a template is equivalent to
5450 the other template. */
5451
5452 static tree
5453 get_underlying_template (tree tmpl)
5454 {
5455 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5456 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5457 {
5458 tree result = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5459 if (TYPE_TEMPLATE_INFO (result))
5460 {
5461 tree sub = TYPE_TI_TEMPLATE (result);
5462 if (PRIMARY_TEMPLATE_P (sub)
5463 && (num_innermost_template_parms (tmpl)
5464 == num_innermost_template_parms (sub)))
5465 {
5466 tree alias_args = INNERMOST_TEMPLATE_ARGS
5467 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5468 if (!comp_template_args (TYPE_TI_ARGS (result), alias_args))
5469 break;
5470 /* The alias type is equivalent to the pattern of the
5471 underlying template, so strip the alias. */
5472 tmpl = sub;
5473 continue;
5474 }
5475 }
5476 break;
5477 }
5478 return tmpl;
5479 }
5480
5481 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5482 must be a function or a pointer-to-function type, as specified
5483 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5484 and check that the resulting function has external linkage. */
5485
5486 static tree
5487 convert_nontype_argument_function (tree type, tree expr,
5488 tsubst_flags_t complain)
5489 {
5490 tree fns = expr;
5491 tree fn, fn_no_ptr;
5492 linkage_kind linkage;
5493
5494 fn = instantiate_type (type, fns, tf_none);
5495 if (fn == error_mark_node)
5496 return error_mark_node;
5497
5498 fn_no_ptr = fn;
5499 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5500 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5501 if (BASELINK_P (fn_no_ptr))
5502 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5503
5504 /* [temp.arg.nontype]/1
5505
5506 A template-argument for a non-type, non-template template-parameter
5507 shall be one of:
5508 [...]
5509 -- the address of an object or function with external [C++11: or
5510 internal] linkage. */
5511
5512 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5513 {
5514 if (complain & tf_error)
5515 {
5516 error ("%qE is not a valid template argument for type %qT",
5517 expr, type);
5518 if (TYPE_PTR_P (type))
5519 error ("it must be the address of a function with "
5520 "external linkage");
5521 else
5522 error ("it must be the name of a function with "
5523 "external linkage");
5524 }
5525 return NULL_TREE;
5526 }
5527
5528 linkage = decl_linkage (fn_no_ptr);
5529 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
5530 {
5531 if (complain & tf_error)
5532 {
5533 if (cxx_dialect >= cxx11)
5534 error ("%qE is not a valid template argument for type %qT "
5535 "because %qD has no linkage",
5536 expr, type, fn_no_ptr);
5537 else
5538 error ("%qE is not a valid template argument for type %qT "
5539 "because %qD does not have external linkage",
5540 expr, type, fn_no_ptr);
5541 }
5542 return NULL_TREE;
5543 }
5544
5545 return fn;
5546 }
5547
5548 /* Subroutine of convert_nontype_argument.
5549 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5550 Emit an error otherwise. */
5551
5552 static bool
5553 check_valid_ptrmem_cst_expr (tree type, tree expr,
5554 tsubst_flags_t complain)
5555 {
5556 STRIP_NOPS (expr);
5557 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5558 return true;
5559 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
5560 return true;
5561 if (processing_template_decl
5562 && TREE_CODE (expr) == ADDR_EXPR
5563 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
5564 return true;
5565 if (complain & tf_error)
5566 {
5567 error ("%qE is not a valid template argument for type %qT",
5568 expr, type);
5569 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5570 }
5571 return false;
5572 }
5573
5574 /* Returns TRUE iff the address of OP is value-dependent.
5575
5576 14.6.2.4 [temp.dep.temp]:
5577 A non-integral non-type template-argument is dependent if its type is
5578 dependent or it has either of the following forms
5579 qualified-id
5580 & qualified-id
5581 and contains a nested-name-specifier which specifies a class-name that
5582 names a dependent type.
5583
5584 We generalize this to just say that the address of a member of a
5585 dependent class is value-dependent; the above doesn't cover the
5586 address of a static data member named with an unqualified-id. */
5587
5588 static bool
5589 has_value_dependent_address (tree op)
5590 {
5591 /* We could use get_inner_reference here, but there's no need;
5592 this is only relevant for template non-type arguments, which
5593 can only be expressed as &id-expression. */
5594 if (DECL_P (op))
5595 {
5596 tree ctx = CP_DECL_CONTEXT (op);
5597 if (TYPE_P (ctx) && dependent_type_p (ctx))
5598 return true;
5599 }
5600
5601 return false;
5602 }
5603
5604 /* The next set of functions are used for providing helpful explanatory
5605 diagnostics for failed overload resolution. Their messages should be
5606 indented by two spaces for consistency with the messages in
5607 call.c */
5608
5609 static int
5610 unify_success (bool /*explain_p*/)
5611 {
5612 return 0;
5613 }
5614
5615 static int
5616 unify_parameter_deduction_failure (bool explain_p, tree parm)
5617 {
5618 if (explain_p)
5619 inform (input_location,
5620 " couldn't deduce template parameter %qD", parm);
5621 return 1;
5622 }
5623
5624 static int
5625 unify_invalid (bool /*explain_p*/)
5626 {
5627 return 1;
5628 }
5629
5630 static int
5631 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5632 {
5633 if (explain_p)
5634 inform (input_location,
5635 " types %qT and %qT have incompatible cv-qualifiers",
5636 parm, arg);
5637 return 1;
5638 }
5639
5640 static int
5641 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5642 {
5643 if (explain_p)
5644 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5645 return 1;
5646 }
5647
5648 static int
5649 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
5650 {
5651 if (explain_p)
5652 inform (input_location,
5653 " template parameter %qD is not a parameter pack, but "
5654 "argument %qD is",
5655 parm, arg);
5656 return 1;
5657 }
5658
5659 static int
5660 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
5661 {
5662 if (explain_p)
5663 inform (input_location,
5664 " template argument %qE does not match "
5665 "pointer-to-member constant %qE",
5666 arg, parm);
5667 return 1;
5668 }
5669
5670 static int
5671 unify_expression_unequal (bool explain_p, tree parm, tree arg)
5672 {
5673 if (explain_p)
5674 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
5675 return 1;
5676 }
5677
5678 static int
5679 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
5680 {
5681 if (explain_p)
5682 inform (input_location,
5683 " inconsistent parameter pack deduction with %qT and %qT",
5684 old_arg, new_arg);
5685 return 1;
5686 }
5687
5688 static int
5689 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
5690 {
5691 if (explain_p)
5692 {
5693 if (TYPE_P (parm))
5694 inform (input_location,
5695 " deduced conflicting types for parameter %qT (%qT and %qT)",
5696 parm, first, second);
5697 else
5698 inform (input_location,
5699 " deduced conflicting values for non-type parameter "
5700 "%qE (%qE and %qE)", parm, first, second);
5701 }
5702 return 1;
5703 }
5704
5705 static int
5706 unify_vla_arg (bool explain_p, tree arg)
5707 {
5708 if (explain_p)
5709 inform (input_location,
5710 " variable-sized array type %qT is not "
5711 "a valid template argument",
5712 arg);
5713 return 1;
5714 }
5715
5716 static int
5717 unify_method_type_error (bool explain_p, tree arg)
5718 {
5719 if (explain_p)
5720 inform (input_location,
5721 " member function type %qT is not a valid template argument",
5722 arg);
5723 return 1;
5724 }
5725
5726 static int
5727 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
5728 {
5729 if (explain_p)
5730 {
5731 if (least_p)
5732 inform_n (input_location, wanted,
5733 " candidate expects at least %d argument, %d provided",
5734 " candidate expects at least %d arguments, %d provided",
5735 wanted, have);
5736 else
5737 inform_n (input_location, wanted,
5738 " candidate expects %d argument, %d provided",
5739 " candidate expects %d arguments, %d provided",
5740 wanted, have);
5741 }
5742 return 1;
5743 }
5744
5745 static int
5746 unify_too_many_arguments (bool explain_p, int have, int wanted)
5747 {
5748 return unify_arity (explain_p, have, wanted);
5749 }
5750
5751 static int
5752 unify_too_few_arguments (bool explain_p, int have, int wanted,
5753 bool least_p = false)
5754 {
5755 return unify_arity (explain_p, have, wanted, least_p);
5756 }
5757
5758 static int
5759 unify_arg_conversion (bool explain_p, tree to_type,
5760 tree from_type, tree arg)
5761 {
5762 if (explain_p)
5763 inform (EXPR_LOC_OR_LOC (arg, input_location),
5764 " cannot convert %qE (type %qT) to type %qT",
5765 arg, from_type, to_type);
5766 return 1;
5767 }
5768
5769 static int
5770 unify_no_common_base (bool explain_p, enum template_base_result r,
5771 tree parm, tree arg)
5772 {
5773 if (explain_p)
5774 switch (r)
5775 {
5776 case tbr_ambiguous_baseclass:
5777 inform (input_location, " %qT is an ambiguous base class of %qT",
5778 parm, arg);
5779 break;
5780 default:
5781 inform (input_location, " %qT is not derived from %qT", arg, parm);
5782 break;
5783 }
5784 return 1;
5785 }
5786
5787 static int
5788 unify_inconsistent_template_template_parameters (bool explain_p)
5789 {
5790 if (explain_p)
5791 inform (input_location,
5792 " template parameters of a template template argument are "
5793 "inconsistent with other deduced template arguments");
5794 return 1;
5795 }
5796
5797 static int
5798 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
5799 {
5800 if (explain_p)
5801 inform (input_location,
5802 " can't deduce a template for %qT from non-template type %qT",
5803 parm, arg);
5804 return 1;
5805 }
5806
5807 static int
5808 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
5809 {
5810 if (explain_p)
5811 inform (input_location,
5812 " template argument %qE does not match %qD", arg, parm);
5813 return 1;
5814 }
5815
5816 static int
5817 unify_overload_resolution_failure (bool explain_p, tree arg)
5818 {
5819 if (explain_p)
5820 inform (input_location,
5821 " could not resolve address from overloaded function %qE",
5822 arg);
5823 return 1;
5824 }
5825
5826 /* Attempt to convert the non-type template parameter EXPR to the
5827 indicated TYPE. If the conversion is successful, return the
5828 converted value. If the conversion is unsuccessful, return
5829 NULL_TREE if we issued an error message, or error_mark_node if we
5830 did not. We issue error messages for out-and-out bad template
5831 parameters, but not simply because the conversion failed, since we
5832 might be just trying to do argument deduction. Both TYPE and EXPR
5833 must be non-dependent.
5834
5835 The conversion follows the special rules described in
5836 [temp.arg.nontype], and it is much more strict than an implicit
5837 conversion.
5838
5839 This function is called twice for each template argument (see
5840 lookup_template_class for a more accurate description of this
5841 problem). This means that we need to handle expressions which
5842 are not valid in a C++ source, but can be created from the
5843 first call (for instance, casts to perform conversions). These
5844 hacks can go away after we fix the double coercion problem. */
5845
5846 static tree
5847 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
5848 {
5849 tree expr_type;
5850
5851 /* Detect immediately string literals as invalid non-type argument.
5852 This special-case is not needed for correctness (we would easily
5853 catch this later), but only to provide better diagnostic for this
5854 common user mistake. As suggested by DR 100, we do not mention
5855 linkage issues in the diagnostic as this is not the point. */
5856 /* FIXME we're making this OK. */
5857 if (TREE_CODE (expr) == STRING_CST)
5858 {
5859 if (complain & tf_error)
5860 error ("%qE is not a valid template argument for type %qT "
5861 "because string literals can never be used in this context",
5862 expr, type);
5863 return NULL_TREE;
5864 }
5865
5866 /* Add the ADDR_EXPR now for the benefit of
5867 value_dependent_expression_p. */
5868 if (TYPE_PTROBV_P (type)
5869 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
5870 {
5871 expr = decay_conversion (expr, complain);
5872 if (expr == error_mark_node)
5873 return error_mark_node;
5874 }
5875
5876 /* If we are in a template, EXPR may be non-dependent, but still
5877 have a syntactic, rather than semantic, form. For example, EXPR
5878 might be a SCOPE_REF, rather than the VAR_DECL to which the
5879 SCOPE_REF refers. Preserving the qualifying scope is necessary
5880 so that access checking can be performed when the template is
5881 instantiated -- but here we need the resolved form so that we can
5882 convert the argument. */
5883 bool non_dep = false;
5884 if (TYPE_REF_OBJ_P (type)
5885 && has_value_dependent_address (expr))
5886 /* If we want the address and it's value-dependent, don't fold. */;
5887 else if (!type_unknown_p (expr)
5888 && processing_template_decl
5889 && !instantiation_dependent_expression_p (expr)
5890 && potential_constant_expression (expr))
5891 non_dep = true;
5892 if (error_operand_p (expr))
5893 return error_mark_node;
5894 expr_type = TREE_TYPE (expr);
5895 if (TREE_CODE (type) == REFERENCE_TYPE)
5896 expr = mark_lvalue_use (expr);
5897 else
5898 expr = mark_rvalue_use (expr);
5899
5900 /* If the argument is non-dependent, perform any conversions in
5901 non-dependent context as well. */
5902 processing_template_decl_sentinel s (non_dep);
5903 if (non_dep)
5904 expr = instantiate_non_dependent_expr_internal (expr, complain);
5905
5906 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
5907 to a non-type argument of "nullptr". */
5908 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
5909 expr = convert (type, expr);
5910
5911 /* In C++11, integral or enumeration non-type template arguments can be
5912 arbitrary constant expressions. Pointer and pointer to
5913 member arguments can be general constant expressions that evaluate
5914 to a null value, but otherwise still need to be of a specific form. */
5915 if (cxx_dialect >= cxx11)
5916 {
5917 if (TREE_CODE (expr) == PTRMEM_CST)
5918 /* A PTRMEM_CST is already constant, and a valid template
5919 argument for a parameter of pointer to member type, we just want
5920 to leave it in that form rather than lower it to a
5921 CONSTRUCTOR. */;
5922 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5923 expr = maybe_constant_value (expr);
5924 else if (TYPE_PTR_OR_PTRMEM_P (type))
5925 {
5926 tree folded = maybe_constant_value (expr);
5927 if (TYPE_PTR_P (type) ? integer_zerop (folded)
5928 : null_member_pointer_value_p (folded))
5929 expr = folded;
5930 }
5931 }
5932
5933 /* HACK: Due to double coercion, we can get a
5934 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
5935 which is the tree that we built on the first call (see
5936 below when coercing to reference to object or to reference to
5937 function). We just strip everything and get to the arg.
5938 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
5939 for examples. */
5940 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
5941 {
5942 tree probe_type, probe = expr;
5943 if (REFERENCE_REF_P (probe))
5944 probe = TREE_OPERAND (probe, 0);
5945 probe_type = TREE_TYPE (probe);
5946 if (TREE_CODE (probe) == NOP_EXPR)
5947 {
5948 /* ??? Maybe we could use convert_from_reference here, but we
5949 would need to relax its constraints because the NOP_EXPR
5950 could actually change the type to something more cv-qualified,
5951 and this is not folded by convert_from_reference. */
5952 tree addr = TREE_OPERAND (probe, 0);
5953 if (TREE_CODE (probe_type) == REFERENCE_TYPE
5954 && TREE_CODE (addr) == ADDR_EXPR
5955 && TYPE_PTR_P (TREE_TYPE (addr))
5956 && (same_type_ignoring_top_level_qualifiers_p
5957 (TREE_TYPE (probe_type),
5958 TREE_TYPE (TREE_TYPE (addr)))))
5959 {
5960 expr = TREE_OPERAND (addr, 0);
5961 expr_type = TREE_TYPE (probe_type);
5962 }
5963 }
5964 }
5965
5966 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
5967 parameter is a pointer to object, through decay and
5968 qualification conversion. Let's strip everything. */
5969 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
5970 {
5971 tree probe = expr;
5972 STRIP_NOPS (probe);
5973 if (TREE_CODE (probe) == ADDR_EXPR
5974 && TYPE_PTR_P (TREE_TYPE (probe)))
5975 {
5976 /* Skip the ADDR_EXPR only if it is part of the decay for
5977 an array. Otherwise, it is part of the original argument
5978 in the source code. */
5979 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
5980 probe = TREE_OPERAND (probe, 0);
5981 expr = probe;
5982 expr_type = TREE_TYPE (expr);
5983 }
5984 }
5985
5986 /* [temp.arg.nontype]/5, bullet 1
5987
5988 For a non-type template-parameter of integral or enumeration type,
5989 integral promotions (_conv.prom_) and integral conversions
5990 (_conv.integral_) are applied. */
5991 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5992 {
5993 tree t = build_integral_nontype_arg_conv (type, expr, complain);
5994 t = maybe_constant_value (t);
5995 if (t != error_mark_node)
5996 expr = t;
5997
5998 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
5999 return error_mark_node;
6000
6001 /* Notice that there are constant expressions like '4 % 0' which
6002 do not fold into integer constants. */
6003 if (TREE_CODE (expr) != INTEGER_CST)
6004 {
6005 if (complain & tf_error)
6006 {
6007 int errs = errorcount, warns = warningcount + werrorcount;
6008 if (processing_template_decl
6009 && !require_potential_constant_expression (expr))
6010 return NULL_TREE;
6011 expr = cxx_constant_value (expr);
6012 if (errorcount > errs || warningcount + werrorcount > warns)
6013 inform (EXPR_LOC_OR_LOC (expr, input_location),
6014 "in template argument for type %qT ", type);
6015 if (expr == error_mark_node)
6016 return NULL_TREE;
6017 /* else cxx_constant_value complained but gave us
6018 a real constant, so go ahead. */
6019 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
6020 }
6021 else
6022 return NULL_TREE;
6023 }
6024
6025 /* Avoid typedef problems. */
6026 if (TREE_TYPE (expr) != type)
6027 expr = fold_convert (type, expr);
6028 }
6029 /* [temp.arg.nontype]/5, bullet 2
6030
6031 For a non-type template-parameter of type pointer to object,
6032 qualification conversions (_conv.qual_) and the array-to-pointer
6033 conversion (_conv.array_) are applied. */
6034 else if (TYPE_PTROBV_P (type))
6035 {
6036 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
6037
6038 A template-argument for a non-type, non-template template-parameter
6039 shall be one of: [...]
6040
6041 -- the name of a non-type template-parameter;
6042 -- the address of an object or function with external linkage, [...]
6043 expressed as "& id-expression" where the & is optional if the name
6044 refers to a function or array, or if the corresponding
6045 template-parameter is a reference.
6046
6047 Here, we do not care about functions, as they are invalid anyway
6048 for a parameter of type pointer-to-object. */
6049
6050 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
6051 /* Non-type template parameters are OK. */
6052 ;
6053 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
6054 /* Null pointer values are OK in C++11. */;
6055 else if (TREE_CODE (expr) != ADDR_EXPR
6056 && TREE_CODE (expr_type) != ARRAY_TYPE)
6057 {
6058 if (VAR_P (expr))
6059 {
6060 if (complain & tf_error)
6061 error ("%qD is not a valid template argument "
6062 "because %qD is a variable, not the address of "
6063 "a variable", expr, expr);
6064 return NULL_TREE;
6065 }
6066 if (POINTER_TYPE_P (expr_type))
6067 {
6068 if (complain & tf_error)
6069 error ("%qE is not a valid template argument for %qT "
6070 "because it is not the address of a variable",
6071 expr, type);
6072 return NULL_TREE;
6073 }
6074 /* Other values, like integer constants, might be valid
6075 non-type arguments of some other type. */
6076 return error_mark_node;
6077 }
6078 else
6079 {
6080 tree decl;
6081
6082 decl = ((TREE_CODE (expr) == ADDR_EXPR)
6083 ? TREE_OPERAND (expr, 0) : expr);
6084 if (!VAR_P (decl))
6085 {
6086 if (complain & tf_error)
6087 error ("%qE is not a valid template argument of type %qT "
6088 "because %qE is not a variable", expr, type, decl);
6089 return NULL_TREE;
6090 }
6091 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
6092 {
6093 if (complain & tf_error)
6094 error ("%qE is not a valid template argument of type %qT "
6095 "because %qD does not have external linkage",
6096 expr, type, decl);
6097 return NULL_TREE;
6098 }
6099 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
6100 {
6101 if (complain & tf_error)
6102 error ("%qE is not a valid template argument of type %qT "
6103 "because %qD has no linkage", expr, type, decl);
6104 return NULL_TREE;
6105 }
6106 }
6107
6108 expr = decay_conversion (expr, complain);
6109 if (expr == error_mark_node)
6110 return error_mark_node;
6111
6112 expr = perform_qualification_conversions (type, expr);
6113 if (expr == error_mark_node)
6114 return error_mark_node;
6115 }
6116 /* [temp.arg.nontype]/5, bullet 3
6117
6118 For a non-type template-parameter of type reference to object, no
6119 conversions apply. The type referred to by the reference may be more
6120 cv-qualified than the (otherwise identical) type of the
6121 template-argument. The template-parameter is bound directly to the
6122 template-argument, which must be an lvalue. */
6123 else if (TYPE_REF_OBJ_P (type))
6124 {
6125 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
6126 expr_type))
6127 return error_mark_node;
6128
6129 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
6130 {
6131 if (complain & tf_error)
6132 error ("%qE is not a valid template argument for type %qT "
6133 "because of conflicts in cv-qualification", expr, type);
6134 return NULL_TREE;
6135 }
6136
6137 if (!real_lvalue_p (expr))
6138 {
6139 if (complain & tf_error)
6140 error ("%qE is not a valid template argument for type %qT "
6141 "because it is not an lvalue", expr, type);
6142 return NULL_TREE;
6143 }
6144
6145 /* [temp.arg.nontype]/1
6146
6147 A template-argument for a non-type, non-template template-parameter
6148 shall be one of: [...]
6149
6150 -- the address of an object or function with external linkage. */
6151 if (INDIRECT_REF_P (expr)
6152 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
6153 {
6154 expr = TREE_OPERAND (expr, 0);
6155 if (DECL_P (expr))
6156 {
6157 if (complain & tf_error)
6158 error ("%q#D is not a valid template argument for type %qT "
6159 "because a reference variable does not have a constant "
6160 "address", expr, type);
6161 return NULL_TREE;
6162 }
6163 }
6164
6165 if (!DECL_P (expr))
6166 {
6167 if (complain & tf_error)
6168 error ("%qE is not a valid template argument for type %qT "
6169 "because it is not an object with external linkage",
6170 expr, type);
6171 return NULL_TREE;
6172 }
6173
6174 if (!DECL_EXTERNAL_LINKAGE_P (expr))
6175 {
6176 if (complain & tf_error)
6177 error ("%qE is not a valid template argument for type %qT "
6178 "because object %qD has not external linkage",
6179 expr, type, expr);
6180 return NULL_TREE;
6181 }
6182
6183 expr = build_nop (type, build_address (expr));
6184 }
6185 /* [temp.arg.nontype]/5, bullet 4
6186
6187 For a non-type template-parameter of type pointer to function, only
6188 the function-to-pointer conversion (_conv.func_) is applied. If the
6189 template-argument represents a set of overloaded functions (or a
6190 pointer to such), the matching function is selected from the set
6191 (_over.over_). */
6192 else if (TYPE_PTRFN_P (type))
6193 {
6194 /* If the argument is a template-id, we might not have enough
6195 context information to decay the pointer. */
6196 if (!type_unknown_p (expr_type))
6197 {
6198 expr = decay_conversion (expr, complain);
6199 if (expr == error_mark_node)
6200 return error_mark_node;
6201 }
6202
6203 if (cxx_dialect >= cxx11 && integer_zerop (expr))
6204 /* Null pointer values are OK in C++11. */
6205 return perform_qualification_conversions (type, expr);
6206
6207 expr = convert_nontype_argument_function (type, expr, complain);
6208 if (!expr || expr == error_mark_node)
6209 return expr;
6210 }
6211 /* [temp.arg.nontype]/5, bullet 5
6212
6213 For a non-type template-parameter of type reference to function, no
6214 conversions apply. If the template-argument represents a set of
6215 overloaded functions, the matching function is selected from the set
6216 (_over.over_). */
6217 else if (TYPE_REFFN_P (type))
6218 {
6219 if (TREE_CODE (expr) == ADDR_EXPR)
6220 {
6221 if (complain & tf_error)
6222 {
6223 error ("%qE is not a valid template argument for type %qT "
6224 "because it is a pointer", expr, type);
6225 inform (input_location, "try using %qE instead",
6226 TREE_OPERAND (expr, 0));
6227 }
6228 return NULL_TREE;
6229 }
6230
6231 expr = convert_nontype_argument_function (type, expr, complain);
6232 if (!expr || expr == error_mark_node)
6233 return expr;
6234
6235 expr = build_nop (type, build_address (expr));
6236 }
6237 /* [temp.arg.nontype]/5, bullet 6
6238
6239 For a non-type template-parameter of type pointer to member function,
6240 no conversions apply. If the template-argument represents a set of
6241 overloaded member functions, the matching member function is selected
6242 from the set (_over.over_). */
6243 else if (TYPE_PTRMEMFUNC_P (type))
6244 {
6245 expr = instantiate_type (type, expr, tf_none);
6246 if (expr == error_mark_node)
6247 return error_mark_node;
6248
6249 /* [temp.arg.nontype] bullet 1 says the pointer to member
6250 expression must be a pointer-to-member constant. */
6251 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6252 return error_mark_node;
6253
6254 /* There is no way to disable standard conversions in
6255 resolve_address_of_overloaded_function (called by
6256 instantiate_type). It is possible that the call succeeded by
6257 converting &B::I to &D::I (where B is a base of D), so we need
6258 to reject this conversion here.
6259
6260 Actually, even if there was a way to disable standard conversions,
6261 it would still be better to reject them here so that we can
6262 provide a superior diagnostic. */
6263 if (!same_type_p (TREE_TYPE (expr), type))
6264 {
6265 if (complain & tf_error)
6266 {
6267 error ("%qE is not a valid template argument for type %qT "
6268 "because it is of type %qT", expr, type,
6269 TREE_TYPE (expr));
6270 /* If we are just one standard conversion off, explain. */
6271 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6272 inform (input_location,
6273 "standard conversions are not allowed in this context");
6274 }
6275 return NULL_TREE;
6276 }
6277 }
6278 /* [temp.arg.nontype]/5, bullet 7
6279
6280 For a non-type template-parameter of type pointer to data member,
6281 qualification conversions (_conv.qual_) are applied. */
6282 else if (TYPE_PTRDATAMEM_P (type))
6283 {
6284 /* [temp.arg.nontype] bullet 1 says the pointer to member
6285 expression must be a pointer-to-member constant. */
6286 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6287 return error_mark_node;
6288
6289 expr = perform_qualification_conversions (type, expr);
6290 if (expr == error_mark_node)
6291 return expr;
6292 }
6293 else if (NULLPTR_TYPE_P (type))
6294 {
6295 if (expr != nullptr_node)
6296 {
6297 if (complain & tf_error)
6298 error ("%qE is not a valid template argument for type %qT "
6299 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6300 return NULL_TREE;
6301 }
6302 return expr;
6303 }
6304 /* A template non-type parameter must be one of the above. */
6305 else
6306 gcc_unreachable ();
6307
6308 /* Sanity check: did we actually convert the argument to the
6309 right type? */
6310 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6311 (type, TREE_TYPE (expr)));
6312 return convert_from_reference (expr);
6313 }
6314
6315 /* Subroutine of coerce_template_template_parms, which returns 1 if
6316 PARM_PARM and ARG_PARM match using the rule for the template
6317 parameters of template template parameters. Both PARM and ARG are
6318 template parameters; the rest of the arguments are the same as for
6319 coerce_template_template_parms.
6320 */
6321 static int
6322 coerce_template_template_parm (tree parm,
6323 tree arg,
6324 tsubst_flags_t complain,
6325 tree in_decl,
6326 tree outer_args)
6327 {
6328 if (arg == NULL_TREE || error_operand_p (arg)
6329 || parm == NULL_TREE || error_operand_p (parm))
6330 return 0;
6331
6332 if (TREE_CODE (arg) != TREE_CODE (parm))
6333 return 0;
6334
6335 switch (TREE_CODE (parm))
6336 {
6337 case TEMPLATE_DECL:
6338 /* We encounter instantiations of templates like
6339 template <template <template <class> class> class TT>
6340 class C; */
6341 {
6342 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6343 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6344
6345 if (!coerce_template_template_parms
6346 (parmparm, argparm, complain, in_decl, outer_args))
6347 return 0;
6348 }
6349 /* Fall through. */
6350
6351 case TYPE_DECL:
6352 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6353 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6354 /* Argument is a parameter pack but parameter is not. */
6355 return 0;
6356 break;
6357
6358 case PARM_DECL:
6359 /* The tsubst call is used to handle cases such as
6360
6361 template <int> class C {};
6362 template <class T, template <T> class TT> class D {};
6363 D<int, C> d;
6364
6365 i.e. the parameter list of TT depends on earlier parameters. */
6366 if (!uses_template_parms (TREE_TYPE (arg))
6367 && !same_type_p
6368 (tsubst (TREE_TYPE (parm), outer_args, complain, in_decl),
6369 TREE_TYPE (arg)))
6370 return 0;
6371
6372 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6373 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6374 /* Argument is a parameter pack but parameter is not. */
6375 return 0;
6376
6377 break;
6378
6379 default:
6380 gcc_unreachable ();
6381 }
6382
6383 return 1;
6384 }
6385
6386
6387 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6388 template template parameters. Both PARM_PARMS and ARG_PARMS are
6389 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6390 or PARM_DECL.
6391
6392 Consider the example:
6393 template <class T> class A;
6394 template<template <class U> class TT> class B;
6395
6396 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6397 the parameters to A, and OUTER_ARGS contains A. */
6398
6399 static int
6400 coerce_template_template_parms (tree parm_parms,
6401 tree arg_parms,
6402 tsubst_flags_t complain,
6403 tree in_decl,
6404 tree outer_args)
6405 {
6406 int nparms, nargs, i;
6407 tree parm, arg;
6408 int variadic_p = 0;
6409
6410 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
6411 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
6412
6413 nparms = TREE_VEC_LENGTH (parm_parms);
6414 nargs = TREE_VEC_LENGTH (arg_parms);
6415
6416 /* Determine whether we have a parameter pack at the end of the
6417 template template parameter's template parameter list. */
6418 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
6419 {
6420 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
6421
6422 if (error_operand_p (parm))
6423 return 0;
6424
6425 switch (TREE_CODE (parm))
6426 {
6427 case TEMPLATE_DECL:
6428 case TYPE_DECL:
6429 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6430 variadic_p = 1;
6431 break;
6432
6433 case PARM_DECL:
6434 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6435 variadic_p = 1;
6436 break;
6437
6438 default:
6439 gcc_unreachable ();
6440 }
6441 }
6442
6443 if (nargs != nparms
6444 && !(variadic_p && nargs >= nparms - 1))
6445 return 0;
6446
6447 /* Check all of the template parameters except the parameter pack at
6448 the end (if any). */
6449 for (i = 0; i < nparms - variadic_p; ++i)
6450 {
6451 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6452 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6453 continue;
6454
6455 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6456 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6457
6458 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6459 outer_args))
6460 return 0;
6461
6462 }
6463
6464 if (variadic_p)
6465 {
6466 /* Check each of the template parameters in the template
6467 argument against the template parameter pack at the end of
6468 the template template parameter. */
6469 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6470 return 0;
6471
6472 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6473
6474 for (; i < nargs; ++i)
6475 {
6476 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6477 continue;
6478
6479 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6480
6481 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6482 outer_args))
6483 return 0;
6484 }
6485 }
6486
6487 return 1;
6488 }
6489
6490 /* Verifies that the deduced template arguments (in TARGS) for the
6491 template template parameters (in TPARMS) represent valid bindings,
6492 by comparing the template parameter list of each template argument
6493 to the template parameter list of its corresponding template
6494 template parameter, in accordance with DR150. This
6495 routine can only be called after all template arguments have been
6496 deduced. It will return TRUE if all of the template template
6497 parameter bindings are okay, FALSE otherwise. */
6498 bool
6499 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6500 {
6501 int i, ntparms = TREE_VEC_LENGTH (tparms);
6502 bool ret = true;
6503
6504 /* We're dealing with template parms in this process. */
6505 ++processing_template_decl;
6506
6507 targs = INNERMOST_TEMPLATE_ARGS (targs);
6508
6509 for (i = 0; i < ntparms; ++i)
6510 {
6511 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6512 tree targ = TREE_VEC_ELT (targs, i);
6513
6514 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6515 {
6516 tree packed_args = NULL_TREE;
6517 int idx, len = 1;
6518
6519 if (ARGUMENT_PACK_P (targ))
6520 {
6521 /* Look inside the argument pack. */
6522 packed_args = ARGUMENT_PACK_ARGS (targ);
6523 len = TREE_VEC_LENGTH (packed_args);
6524 }
6525
6526 for (idx = 0; idx < len; ++idx)
6527 {
6528 tree targ_parms = NULL_TREE;
6529
6530 if (packed_args)
6531 /* Extract the next argument from the argument
6532 pack. */
6533 targ = TREE_VEC_ELT (packed_args, idx);
6534
6535 if (PACK_EXPANSION_P (targ))
6536 /* Look at the pattern of the pack expansion. */
6537 targ = PACK_EXPANSION_PATTERN (targ);
6538
6539 /* Extract the template parameters from the template
6540 argument. */
6541 if (TREE_CODE (targ) == TEMPLATE_DECL)
6542 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6543 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6544 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6545
6546 /* Verify that we can coerce the template template
6547 parameters from the template argument to the template
6548 parameter. This requires an exact match. */
6549 if (targ_parms
6550 && !coerce_template_template_parms
6551 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6552 targ_parms,
6553 tf_none,
6554 tparm,
6555 targs))
6556 {
6557 ret = false;
6558 goto out;
6559 }
6560 }
6561 }
6562 }
6563
6564 out:
6565
6566 --processing_template_decl;
6567 return ret;
6568 }
6569
6570 /* Since type attributes aren't mangled, we need to strip them from
6571 template type arguments. */
6572
6573 static tree
6574 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6575 {
6576 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6577 return arg;
6578 bool removed_attributes = false;
6579 tree canon = strip_typedefs (arg, &removed_attributes);
6580 if (removed_attributes
6581 && (complain & tf_warning))
6582 warning (0, "ignoring attributes on template argument %qT", arg);
6583 return canon;
6584 }
6585
6586 /* Convert the indicated template ARG as necessary to match the
6587 indicated template PARM. Returns the converted ARG, or
6588 error_mark_node if the conversion was unsuccessful. Error and
6589 warning messages are issued under control of COMPLAIN. This
6590 conversion is for the Ith parameter in the parameter list. ARGS is
6591 the full set of template arguments deduced so far. */
6592
6593 static tree
6594 convert_template_argument (tree parm,
6595 tree arg,
6596 tree args,
6597 tsubst_flags_t complain,
6598 int i,
6599 tree in_decl)
6600 {
6601 tree orig_arg;
6602 tree val;
6603 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
6604
6605 if (parm == error_mark_node)
6606 return error_mark_node;
6607
6608 if (TREE_CODE (arg) == TREE_LIST
6609 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
6610 {
6611 /* The template argument was the name of some
6612 member function. That's usually
6613 invalid, but static members are OK. In any
6614 case, grab the underlying fields/functions
6615 and issue an error later if required. */
6616 orig_arg = TREE_VALUE (arg);
6617 TREE_TYPE (arg) = unknown_type_node;
6618 }
6619
6620 orig_arg = arg;
6621
6622 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
6623 requires_type = (TREE_CODE (parm) == TYPE_DECL
6624 || requires_tmpl_type);
6625
6626 /* When determining whether an argument pack expansion is a template,
6627 look at the pattern. */
6628 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
6629 arg = PACK_EXPANSION_PATTERN (arg);
6630
6631 /* Deal with an injected-class-name used as a template template arg. */
6632 if (requires_tmpl_type && CLASS_TYPE_P (arg))
6633 {
6634 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
6635 if (TREE_CODE (t) == TEMPLATE_DECL)
6636 {
6637 if (cxx_dialect >= cxx11)
6638 /* OK under DR 1004. */;
6639 else if (complain & tf_warning_or_error)
6640 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
6641 " used as template template argument", TYPE_NAME (arg));
6642 else if (flag_pedantic_errors)
6643 t = arg;
6644
6645 arg = t;
6646 }
6647 }
6648
6649 is_tmpl_type =
6650 ((TREE_CODE (arg) == TEMPLATE_DECL
6651 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
6652 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
6653 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6654 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
6655
6656 if (is_tmpl_type
6657 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6658 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
6659 arg = TYPE_STUB_DECL (arg);
6660
6661 is_type = TYPE_P (arg) || is_tmpl_type;
6662
6663 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
6664 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
6665 {
6666 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
6667 {
6668 if (complain & tf_error)
6669 error ("invalid use of destructor %qE as a type", orig_arg);
6670 return error_mark_node;
6671 }
6672
6673 permerror (input_location,
6674 "to refer to a type member of a template parameter, "
6675 "use %<typename %E%>", orig_arg);
6676
6677 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
6678 TREE_OPERAND (arg, 1),
6679 typename_type,
6680 complain);
6681 arg = orig_arg;
6682 is_type = 1;
6683 }
6684 if (is_type != requires_type)
6685 {
6686 if (in_decl)
6687 {
6688 if (complain & tf_error)
6689 {
6690 error ("type/value mismatch at argument %d in template "
6691 "parameter list for %qD",
6692 i + 1, in_decl);
6693 if (is_type)
6694 inform (input_location,
6695 " expected a constant of type %qT, got %qT",
6696 TREE_TYPE (parm),
6697 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
6698 else if (requires_tmpl_type)
6699 inform (input_location,
6700 " expected a class template, got %qE", orig_arg);
6701 else
6702 inform (input_location,
6703 " expected a type, got %qE", orig_arg);
6704 }
6705 }
6706 return error_mark_node;
6707 }
6708 if (is_tmpl_type ^ requires_tmpl_type)
6709 {
6710 if (in_decl && (complain & tf_error))
6711 {
6712 error ("type/value mismatch at argument %d in template "
6713 "parameter list for %qD",
6714 i + 1, in_decl);
6715 if (is_tmpl_type)
6716 inform (input_location,
6717 " expected a type, got %qT", DECL_NAME (arg));
6718 else
6719 inform (input_location,
6720 " expected a class template, got %qT", orig_arg);
6721 }
6722 return error_mark_node;
6723 }
6724
6725 if (is_type)
6726 {
6727 if (requires_tmpl_type)
6728 {
6729 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6730 val = orig_arg;
6731 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
6732 /* The number of argument required is not known yet.
6733 Just accept it for now. */
6734 val = TREE_TYPE (arg);
6735 else
6736 {
6737 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6738 tree argparm;
6739
6740 /* Strip alias templates that are equivalent to another
6741 template. */
6742 arg = get_underlying_template (arg);
6743 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6744
6745 if (coerce_template_template_parms (parmparm, argparm,
6746 complain, in_decl,
6747 args))
6748 {
6749 val = arg;
6750
6751 /* TEMPLATE_TEMPLATE_PARM node is preferred over
6752 TEMPLATE_DECL. */
6753 if (val != error_mark_node)
6754 {
6755 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
6756 val = TREE_TYPE (val);
6757 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
6758 val = make_pack_expansion (val);
6759 }
6760 }
6761 else
6762 {
6763 if (in_decl && (complain & tf_error))
6764 {
6765 error ("type/value mismatch at argument %d in "
6766 "template parameter list for %qD",
6767 i + 1, in_decl);
6768 inform (input_location,
6769 " expected a template of type %qD, got %qT",
6770 parm, orig_arg);
6771 }
6772
6773 val = error_mark_node;
6774 }
6775 }
6776 }
6777 else
6778 val = orig_arg;
6779 /* We only form one instance of each template specialization.
6780 Therefore, if we use a non-canonical variant (i.e., a
6781 typedef), any future messages referring to the type will use
6782 the typedef, which is confusing if those future uses do not
6783 themselves also use the typedef. */
6784 if (TYPE_P (val))
6785 val = canonicalize_type_argument (val, complain);
6786 }
6787 else
6788 {
6789 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
6790
6791 if (invalid_nontype_parm_type_p (t, complain))
6792 return error_mark_node;
6793
6794 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6795 {
6796 if (same_type_p (t, TREE_TYPE (orig_arg)))
6797 val = orig_arg;
6798 else
6799 {
6800 /* Not sure if this is reachable, but it doesn't hurt
6801 to be robust. */
6802 error ("type mismatch in nontype parameter pack");
6803 val = error_mark_node;
6804 }
6805 }
6806 else if (!dependent_template_arg_p (orig_arg)
6807 && !uses_template_parms (t))
6808 /* We used to call digest_init here. However, digest_init
6809 will report errors, which we don't want when complain
6810 is zero. More importantly, digest_init will try too
6811 hard to convert things: for example, `0' should not be
6812 converted to pointer type at this point according to
6813 the standard. Accepting this is not merely an
6814 extension, since deciding whether or not these
6815 conversions can occur is part of determining which
6816 function template to call, or whether a given explicit
6817 argument specification is valid. */
6818 val = convert_nontype_argument (t, orig_arg, complain);
6819 else
6820 {
6821 bool removed_attr = false;
6822 val = strip_typedefs_expr (orig_arg, &removed_attr);
6823 }
6824
6825 if (val == NULL_TREE)
6826 val = error_mark_node;
6827 else if (val == error_mark_node && (complain & tf_error))
6828 error ("could not convert template argument %qE to %qT", orig_arg, t);
6829
6830 if (TREE_CODE (val) == SCOPE_REF)
6831 {
6832 /* Strip typedefs from the SCOPE_REF. */
6833 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
6834 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
6835 complain);
6836 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
6837 QUALIFIED_NAME_IS_TEMPLATE (val));
6838 }
6839 }
6840
6841 return val;
6842 }
6843
6844 /* Coerces the remaining template arguments in INNER_ARGS (from
6845 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
6846 Returns the coerced argument pack. PARM_IDX is the position of this
6847 parameter in the template parameter list. ARGS is the original
6848 template argument list. */
6849 static tree
6850 coerce_template_parameter_pack (tree parms,
6851 int parm_idx,
6852 tree args,
6853 tree inner_args,
6854 int arg_idx,
6855 tree new_args,
6856 int* lost,
6857 tree in_decl,
6858 tsubst_flags_t complain)
6859 {
6860 tree parm = TREE_VEC_ELT (parms, parm_idx);
6861 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6862 tree packed_args;
6863 tree argument_pack;
6864 tree packed_parms = NULL_TREE;
6865
6866 if (arg_idx > nargs)
6867 arg_idx = nargs;
6868
6869 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
6870 {
6871 /* When the template parameter is a non-type template parameter pack
6872 or template template parameter pack whose type or template
6873 parameters use parameter packs, we know exactly how many arguments
6874 we are looking for. Build a vector of the instantiated decls for
6875 these template parameters in PACKED_PARMS. */
6876 /* We can't use make_pack_expansion here because it would interpret a
6877 _DECL as a use rather than a declaration. */
6878 tree decl = TREE_VALUE (parm);
6879 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
6880 SET_PACK_EXPANSION_PATTERN (exp, decl);
6881 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
6882 SET_TYPE_STRUCTURAL_EQUALITY (exp);
6883
6884 TREE_VEC_LENGTH (args)--;
6885 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
6886 TREE_VEC_LENGTH (args)++;
6887
6888 if (packed_parms == error_mark_node)
6889 return error_mark_node;
6890
6891 /* If we're doing a partial instantiation of a member template,
6892 verify that all of the types used for the non-type
6893 template parameter pack are, in fact, valid for non-type
6894 template parameters. */
6895 if (arg_idx < nargs
6896 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
6897 {
6898 int j, len = TREE_VEC_LENGTH (packed_parms);
6899 for (j = 0; j < len; ++j)
6900 {
6901 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
6902 if (invalid_nontype_parm_type_p (t, complain))
6903 return error_mark_node;
6904 }
6905 /* We don't know how many args we have yet, just
6906 use the unconverted ones for now. */
6907 return NULL_TREE;
6908 }
6909
6910 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
6911 }
6912 else
6913 packed_args = make_tree_vec (nargs - arg_idx);
6914
6915 /* Convert the remaining arguments, which will be a part of the
6916 parameter pack "parm". */
6917 for (; arg_idx < nargs; ++arg_idx)
6918 {
6919 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
6920 tree actual_parm = TREE_VALUE (parm);
6921 int pack_idx = arg_idx - parm_idx;
6922
6923 if (packed_parms)
6924 {
6925 /* Once we've packed as many args as we have types, stop. */
6926 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
6927 break;
6928 else if (PACK_EXPANSION_P (arg))
6929 /* We don't know how many args we have yet, just
6930 use the unconverted ones for now. */
6931 return NULL_TREE;
6932 else
6933 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
6934 }
6935
6936 if (arg == error_mark_node)
6937 {
6938 if (complain & tf_error)
6939 error ("template argument %d is invalid", arg_idx + 1);
6940 }
6941 else
6942 arg = convert_template_argument (actual_parm,
6943 arg, new_args, complain, parm_idx,
6944 in_decl);
6945 if (arg == error_mark_node)
6946 (*lost)++;
6947 TREE_VEC_ELT (packed_args, pack_idx) = arg;
6948 }
6949
6950 if (arg_idx - parm_idx < TREE_VEC_LENGTH (packed_args)
6951 && TREE_VEC_LENGTH (packed_args) > 0)
6952 {
6953 if (complain & tf_error)
6954 error ("wrong number of template arguments (%d, should be %d)",
6955 arg_idx - parm_idx, TREE_VEC_LENGTH (packed_args));
6956 return error_mark_node;
6957 }
6958
6959 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
6960 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
6961 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
6962 else
6963 {
6964 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
6965 TREE_TYPE (argument_pack)
6966 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
6967 TREE_CONSTANT (argument_pack) = 1;
6968 }
6969
6970 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
6971 #ifdef ENABLE_CHECKING
6972 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
6973 TREE_VEC_LENGTH (packed_args));
6974 #endif
6975 return argument_pack;
6976 }
6977
6978 /* Returns the number of pack expansions in the template argument vector
6979 ARGS. */
6980
6981 static int
6982 pack_expansion_args_count (tree args)
6983 {
6984 int i;
6985 int count = 0;
6986 if (args)
6987 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
6988 {
6989 tree elt = TREE_VEC_ELT (args, i);
6990 if (elt && PACK_EXPANSION_P (elt))
6991 ++count;
6992 }
6993 return count;
6994 }
6995
6996 /* Convert all template arguments to their appropriate types, and
6997 return a vector containing the innermost resulting template
6998 arguments. If any error occurs, return error_mark_node. Error and
6999 warning messages are issued under control of COMPLAIN.
7000
7001 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
7002 for arguments not specified in ARGS. Otherwise, if
7003 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
7004 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
7005 USE_DEFAULT_ARGS is false, then all arguments must be specified in
7006 ARGS. */
7007
7008 static tree
7009 coerce_template_parms (tree parms,
7010 tree args,
7011 tree in_decl,
7012 tsubst_flags_t complain,
7013 bool require_all_args,
7014 bool use_default_args)
7015 {
7016 int nparms, nargs, parm_idx, arg_idx, lost = 0;
7017 tree orig_inner_args;
7018 tree inner_args;
7019 tree new_args;
7020 tree new_inner_args;
7021 int saved_unevaluated_operand;
7022 int saved_inhibit_evaluation_warnings;
7023
7024 /* When used as a boolean value, indicates whether this is a
7025 variadic template parameter list. Since it's an int, we can also
7026 subtract it from nparms to get the number of non-variadic
7027 parameters. */
7028 int variadic_p = 0;
7029 int variadic_args_p = 0;
7030 int post_variadic_parms = 0;
7031
7032 /* Likewise for parameters with default arguments. */
7033 int default_p = 0;
7034
7035 if (args == error_mark_node)
7036 return error_mark_node;
7037
7038 nparms = TREE_VEC_LENGTH (parms);
7039
7040 /* Determine if there are any parameter packs or default arguments. */
7041 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
7042 {
7043 tree parm = TREE_VEC_ELT (parms, parm_idx);
7044 if (variadic_p)
7045 ++post_variadic_parms;
7046 if (template_parameter_pack_p (TREE_VALUE (parm)))
7047 ++variadic_p;
7048 if (TREE_PURPOSE (parm))
7049 ++default_p;
7050 }
7051
7052 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
7053 /* If there are no parameters that follow a parameter pack, we need to
7054 expand any argument packs so that we can deduce a parameter pack from
7055 some non-packed args followed by an argument pack, as in variadic85.C.
7056 If there are such parameters, we need to leave argument packs intact
7057 so the arguments are assigned properly. This can happen when dealing
7058 with a nested class inside a partial specialization of a class
7059 template, as in variadic92.C, or when deducing a template parameter pack
7060 from a sub-declarator, as in variadic114.C. */
7061 if (!post_variadic_parms)
7062 inner_args = expand_template_argument_pack (inner_args);
7063
7064 /* Count any pack expansion args. */
7065 variadic_args_p = pack_expansion_args_count (inner_args);
7066
7067 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7068 if ((nargs > nparms && !variadic_p)
7069 || (nargs < nparms - variadic_p
7070 && require_all_args
7071 && !variadic_args_p
7072 && (!use_default_args
7073 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
7074 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
7075 {
7076 if (complain & tf_error)
7077 {
7078 if (variadic_p || default_p)
7079 {
7080 nparms -= variadic_p + default_p;
7081 error ("wrong number of template arguments "
7082 "(%d, should be at least %d)", nargs, nparms);
7083 }
7084 else
7085 error ("wrong number of template arguments "
7086 "(%d, should be %d)", nargs, nparms);
7087
7088 if (in_decl)
7089 inform (input_location, "provided for %q+D", in_decl);
7090 }
7091
7092 return error_mark_node;
7093 }
7094 /* We can't pass a pack expansion to a non-pack parameter of an alias
7095 template (DR 1430). */
7096 else if (in_decl && DECL_ALIAS_TEMPLATE_P (in_decl)
7097 && variadic_args_p
7098 && nargs - variadic_args_p < nparms - variadic_p)
7099 {
7100 if (complain & tf_error)
7101 {
7102 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
7103 {
7104 tree arg = TREE_VEC_ELT (inner_args, i);
7105 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
7106
7107 if (PACK_EXPANSION_P (arg)
7108 && !template_parameter_pack_p (parm))
7109 {
7110 error ("pack expansion argument for non-pack parameter "
7111 "%qD of alias template %qD", parm, in_decl);
7112 inform (DECL_SOURCE_LOCATION (parm), "declared here");
7113 goto found;
7114 }
7115 }
7116 gcc_unreachable ();
7117 found:;
7118 }
7119 return error_mark_node;
7120 }
7121
7122 /* We need to evaluate the template arguments, even though this
7123 template-id may be nested within a "sizeof". */
7124 saved_unevaluated_operand = cp_unevaluated_operand;
7125 cp_unevaluated_operand = 0;
7126 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
7127 c_inhibit_evaluation_warnings = 0;
7128 new_inner_args = make_tree_vec (nparms);
7129 new_args = add_outermost_template_args (args, new_inner_args);
7130 int pack_adjust = 0;
7131 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
7132 {
7133 tree arg;
7134 tree parm;
7135
7136 /* Get the Ith template parameter. */
7137 parm = TREE_VEC_ELT (parms, parm_idx);
7138
7139 if (parm == error_mark_node)
7140 {
7141 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
7142 continue;
7143 }
7144
7145 /* Calculate the next argument. */
7146 if (arg_idx < nargs)
7147 arg = TREE_VEC_ELT (inner_args, arg_idx);
7148 else
7149 arg = NULL_TREE;
7150
7151 if (template_parameter_pack_p (TREE_VALUE (parm))
7152 && !(arg && ARGUMENT_PACK_P (arg)))
7153 {
7154 /* Some arguments will be placed in the
7155 template parameter pack PARM. */
7156 arg = coerce_template_parameter_pack (parms, parm_idx, args,
7157 inner_args, arg_idx,
7158 new_args, &lost,
7159 in_decl, complain);
7160
7161 if (arg == NULL_TREE)
7162 {
7163 /* We don't know how many args we have yet, just use the
7164 unconverted (and still packed) ones for now. */
7165 new_inner_args = orig_inner_args;
7166 arg_idx = nargs;
7167 break;
7168 }
7169
7170 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
7171
7172 /* Store this argument. */
7173 if (arg == error_mark_node)
7174 {
7175 lost++;
7176 /* We are done with all of the arguments. */
7177 arg_idx = nargs;
7178 }
7179 else
7180 {
7181 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
7182 arg_idx += pack_adjust;
7183 }
7184
7185 continue;
7186 }
7187 else if (arg)
7188 {
7189 if (PACK_EXPANSION_P (arg))
7190 {
7191 /* "If every valid specialization of a variadic template
7192 requires an empty template parameter pack, the template is
7193 ill-formed, no diagnostic required." So check that the
7194 pattern works with this parameter. */
7195 tree pattern = PACK_EXPANSION_PATTERN (arg);
7196 tree conv = convert_template_argument (TREE_VALUE (parm),
7197 pattern, new_args,
7198 complain, parm_idx,
7199 in_decl);
7200 if (conv == error_mark_node)
7201 {
7202 inform (input_location, "so any instantiation with a "
7203 "non-empty parameter pack would be ill-formed");
7204 ++lost;
7205 }
7206 else if (TYPE_P (conv) && !TYPE_P (pattern))
7207 /* Recover from missing typename. */
7208 TREE_VEC_ELT (inner_args, arg_idx)
7209 = make_pack_expansion (conv);
7210
7211 /* We don't know how many args we have yet, just
7212 use the unconverted ones for now. */
7213 new_inner_args = inner_args;
7214 arg_idx = nargs;
7215 break;
7216 }
7217 }
7218 else if (require_all_args)
7219 {
7220 /* There must be a default arg in this case. */
7221 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
7222 complain, in_decl);
7223 /* The position of the first default template argument,
7224 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
7225 Record that. */
7226 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7227 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7228 arg_idx - pack_adjust);
7229 }
7230 else
7231 break;
7232
7233 if (arg == error_mark_node)
7234 {
7235 if (complain & tf_error)
7236 error ("template argument %d is invalid", arg_idx + 1);
7237 }
7238 else if (!arg)
7239 /* This only occurs if there was an error in the template
7240 parameter list itself (which we would already have
7241 reported) that we are trying to recover from, e.g., a class
7242 template with a parameter list such as
7243 template<typename..., typename>. */
7244 ++lost;
7245 else
7246 arg = convert_template_argument (TREE_VALUE (parm),
7247 arg, new_args, complain,
7248 parm_idx, in_decl);
7249
7250 if (arg == error_mark_node)
7251 lost++;
7252 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
7253 }
7254 cp_unevaluated_operand = saved_unevaluated_operand;
7255 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
7256
7257 if (variadic_p && arg_idx < nargs)
7258 {
7259 if (complain & tf_error)
7260 {
7261 error ("wrong number of template arguments "
7262 "(%d, should be %d)", nargs, arg_idx);
7263 if (in_decl)
7264 error ("provided for %q+D", in_decl);
7265 }
7266 return error_mark_node;
7267 }
7268
7269 if (lost)
7270 return error_mark_node;
7271
7272 #ifdef ENABLE_CHECKING
7273 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7274 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7275 TREE_VEC_LENGTH (new_inner_args));
7276 #endif
7277
7278 return new_inner_args;
7279 }
7280
7281 /* Like coerce_template_parms. If PARMS represents all template
7282 parameters levels, this function returns a vector of vectors
7283 representing all the resulting argument levels. Note that in this
7284 case, only the innermost arguments are coerced because the
7285 outermost ones are supposed to have been coerced already.
7286
7287 Otherwise, if PARMS represents only (the innermost) vector of
7288 parameters, this function returns a vector containing just the
7289 innermost resulting arguments. */
7290
7291 static tree
7292 coerce_innermost_template_parms (tree parms,
7293 tree args,
7294 tree in_decl,
7295 tsubst_flags_t complain,
7296 bool require_all_args,
7297 bool use_default_args)
7298 {
7299 int parms_depth = TMPL_PARMS_DEPTH (parms);
7300 int args_depth = TMPL_ARGS_DEPTH (args);
7301 tree coerced_args;
7302
7303 if (parms_depth > 1)
7304 {
7305 coerced_args = make_tree_vec (parms_depth);
7306 tree level;
7307 int cur_depth;
7308
7309 for (level = parms, cur_depth = parms_depth;
7310 parms_depth > 0 && level != NULL_TREE;
7311 level = TREE_CHAIN (level), --cur_depth)
7312 {
7313 tree l;
7314 if (cur_depth == args_depth)
7315 l = coerce_template_parms (TREE_VALUE (level),
7316 args, in_decl, complain,
7317 require_all_args,
7318 use_default_args);
7319 else
7320 l = TMPL_ARGS_LEVEL (args, cur_depth);
7321
7322 if (l == error_mark_node)
7323 return error_mark_node;
7324
7325 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
7326 }
7327 }
7328 else
7329 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
7330 args, in_decl, complain,
7331 require_all_args,
7332 use_default_args);
7333 return coerced_args;
7334 }
7335
7336 /* Returns 1 if template args OT and NT are equivalent. */
7337
7338 static int
7339 template_args_equal (tree ot, tree nt)
7340 {
7341 if (nt == ot)
7342 return 1;
7343 if (nt == NULL_TREE || ot == NULL_TREE)
7344 return false;
7345
7346 if (TREE_CODE (nt) == TREE_VEC)
7347 /* For member templates */
7348 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
7349 else if (PACK_EXPANSION_P (ot))
7350 return (PACK_EXPANSION_P (nt)
7351 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
7352 PACK_EXPANSION_PATTERN (nt))
7353 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
7354 PACK_EXPANSION_EXTRA_ARGS (nt)));
7355 else if (ARGUMENT_PACK_P (ot))
7356 {
7357 int i, len;
7358 tree opack, npack;
7359
7360 if (!ARGUMENT_PACK_P (nt))
7361 return 0;
7362
7363 opack = ARGUMENT_PACK_ARGS (ot);
7364 npack = ARGUMENT_PACK_ARGS (nt);
7365 len = TREE_VEC_LENGTH (opack);
7366 if (TREE_VEC_LENGTH (npack) != len)
7367 return 0;
7368 for (i = 0; i < len; ++i)
7369 if (!template_args_equal (TREE_VEC_ELT (opack, i),
7370 TREE_VEC_ELT (npack, i)))
7371 return 0;
7372 return 1;
7373 }
7374 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
7375 {
7376 /* We get here probably because we are in the middle of substituting
7377 into the pattern of a pack expansion. In that case the
7378 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
7379 interested in. So we want to use the initial pack argument for
7380 the comparison. */
7381 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
7382 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
7383 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
7384 return template_args_equal (ot, nt);
7385 }
7386 else if (TYPE_P (nt))
7387 {
7388 if (!TYPE_P (ot))
7389 return false;
7390 /* Don't treat an alias template specialization with dependent
7391 arguments as equivalent to its underlying type when used as a
7392 template argument; we need them to be distinct so that we
7393 substitute into the specialization arguments at instantiation
7394 time. And aliases can't be equivalent without being ==, so
7395 we don't need to look any deeper. */
7396 if (TYPE_ALIAS_P (nt) || TYPE_ALIAS_P (ot))
7397 return false;
7398 else
7399 return same_type_p (ot, nt);
7400 }
7401 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
7402 return 0;
7403 else
7404 {
7405 /* Try to treat a template non-type argument that has been converted
7406 to the parameter type as equivalent to one that hasn't yet. */
7407 for (enum tree_code code1 = TREE_CODE (ot);
7408 CONVERT_EXPR_CODE_P (code1)
7409 || code1 == NON_LVALUE_EXPR;
7410 code1 = TREE_CODE (ot))
7411 ot = TREE_OPERAND (ot, 0);
7412 for (enum tree_code code2 = TREE_CODE (nt);
7413 CONVERT_EXPR_CODE_P (code2)
7414 || code2 == NON_LVALUE_EXPR;
7415 code2 = TREE_CODE (nt))
7416 nt = TREE_OPERAND (nt, 0);
7417
7418 return cp_tree_equal (ot, nt);
7419 }
7420 }
7421
7422 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
7423 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
7424 NEWARG_PTR with the offending arguments if they are non-NULL. */
7425
7426 static int
7427 comp_template_args_with_info (tree oldargs, tree newargs,
7428 tree *oldarg_ptr, tree *newarg_ptr)
7429 {
7430 int i;
7431
7432 if (oldargs == newargs)
7433 return 1;
7434
7435 if (!oldargs || !newargs)
7436 return 0;
7437
7438 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
7439 return 0;
7440
7441 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
7442 {
7443 tree nt = TREE_VEC_ELT (newargs, i);
7444 tree ot = TREE_VEC_ELT (oldargs, i);
7445
7446 if (! template_args_equal (ot, nt))
7447 {
7448 if (oldarg_ptr != NULL)
7449 *oldarg_ptr = ot;
7450 if (newarg_ptr != NULL)
7451 *newarg_ptr = nt;
7452 return 0;
7453 }
7454 }
7455 return 1;
7456 }
7457
7458 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
7459 of template arguments. Returns 0 otherwise. */
7460
7461 int
7462 comp_template_args (tree oldargs, tree newargs)
7463 {
7464 return comp_template_args_with_info (oldargs, newargs, NULL, NULL);
7465 }
7466
7467 static void
7468 add_pending_template (tree d)
7469 {
7470 tree ti = (TYPE_P (d)
7471 ? CLASSTYPE_TEMPLATE_INFO (d)
7472 : DECL_TEMPLATE_INFO (d));
7473 struct pending_template *pt;
7474 int level;
7475
7476 if (TI_PENDING_TEMPLATE_FLAG (ti))
7477 return;
7478
7479 /* We are called both from instantiate_decl, where we've already had a
7480 tinst_level pushed, and instantiate_template, where we haven't.
7481 Compensate. */
7482 level = !current_tinst_level || current_tinst_level->decl != d;
7483
7484 if (level)
7485 push_tinst_level (d);
7486
7487 pt = ggc_alloc<pending_template> ();
7488 pt->next = NULL;
7489 pt->tinst = current_tinst_level;
7490 if (last_pending_template)
7491 last_pending_template->next = pt;
7492 else
7493 pending_templates = pt;
7494
7495 last_pending_template = pt;
7496
7497 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
7498
7499 if (level)
7500 pop_tinst_level ();
7501 }
7502
7503
7504 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
7505 ARGLIST. Valid choices for FNS are given in the cp-tree.def
7506 documentation for TEMPLATE_ID_EXPR. */
7507
7508 tree
7509 lookup_template_function (tree fns, tree arglist)
7510 {
7511 tree type;
7512
7513 if (fns == error_mark_node || arglist == error_mark_node)
7514 return error_mark_node;
7515
7516 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
7517
7518 if (!is_overloaded_fn (fns) && !identifier_p (fns))
7519 {
7520 error ("%q#D is not a function template", fns);
7521 return error_mark_node;
7522 }
7523
7524 if (BASELINK_P (fns))
7525 {
7526 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
7527 unknown_type_node,
7528 BASELINK_FUNCTIONS (fns),
7529 arglist);
7530 return fns;
7531 }
7532
7533 type = TREE_TYPE (fns);
7534 if (TREE_CODE (fns) == OVERLOAD || !type)
7535 type = unknown_type_node;
7536
7537 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
7538 }
7539
7540 /* Within the scope of a template class S<T>, the name S gets bound
7541 (in build_self_reference) to a TYPE_DECL for the class, not a
7542 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
7543 or one of its enclosing classes, and that type is a template,
7544 return the associated TEMPLATE_DECL. Otherwise, the original
7545 DECL is returned.
7546
7547 Also handle the case when DECL is a TREE_LIST of ambiguous
7548 injected-class-names from different bases. */
7549
7550 tree
7551 maybe_get_template_decl_from_type_decl (tree decl)
7552 {
7553 if (decl == NULL_TREE)
7554 return decl;
7555
7556 /* DR 176: A lookup that finds an injected-class-name (10.2
7557 [class.member.lookup]) can result in an ambiguity in certain cases
7558 (for example, if it is found in more than one base class). If all of
7559 the injected-class-names that are found refer to specializations of
7560 the same class template, and if the name is followed by a
7561 template-argument-list, the reference refers to the class template
7562 itself and not a specialization thereof, and is not ambiguous. */
7563 if (TREE_CODE (decl) == TREE_LIST)
7564 {
7565 tree t, tmpl = NULL_TREE;
7566 for (t = decl; t; t = TREE_CHAIN (t))
7567 {
7568 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
7569 if (!tmpl)
7570 tmpl = elt;
7571 else if (tmpl != elt)
7572 break;
7573 }
7574 if (tmpl && t == NULL_TREE)
7575 return tmpl;
7576 else
7577 return decl;
7578 }
7579
7580 return (decl != NULL_TREE
7581 && DECL_SELF_REFERENCE_P (decl)
7582 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
7583 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
7584 }
7585
7586 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
7587 parameters, find the desired type.
7588
7589 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
7590
7591 IN_DECL, if non-NULL, is the template declaration we are trying to
7592 instantiate.
7593
7594 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
7595 the class we are looking up.
7596
7597 Issue error and warning messages under control of COMPLAIN.
7598
7599 If the template class is really a local class in a template
7600 function, then the FUNCTION_CONTEXT is the function in which it is
7601 being instantiated.
7602
7603 ??? Note that this function is currently called *twice* for each
7604 template-id: the first time from the parser, while creating the
7605 incomplete type (finish_template_type), and the second type during the
7606 real instantiation (instantiate_template_class). This is surely something
7607 that we want to avoid. It also causes some problems with argument
7608 coercion (see convert_nontype_argument for more information on this). */
7609
7610 static tree
7611 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
7612 int entering_scope, tsubst_flags_t complain)
7613 {
7614 tree templ = NULL_TREE, parmlist;
7615 tree t;
7616 spec_entry **slot;
7617 spec_entry *entry;
7618 spec_entry elt;
7619 hashval_t hash;
7620
7621 if (identifier_p (d1))
7622 {
7623 tree value = innermost_non_namespace_value (d1);
7624 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
7625 templ = value;
7626 else
7627 {
7628 if (context)
7629 push_decl_namespace (context);
7630 templ = lookup_name (d1);
7631 templ = maybe_get_template_decl_from_type_decl (templ);
7632 if (context)
7633 pop_decl_namespace ();
7634 }
7635 if (templ)
7636 context = DECL_CONTEXT (templ);
7637 }
7638 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
7639 {
7640 tree type = TREE_TYPE (d1);
7641
7642 /* If we are declaring a constructor, say A<T>::A<T>, we will get
7643 an implicit typename for the second A. Deal with it. */
7644 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
7645 type = TREE_TYPE (type);
7646
7647 if (CLASSTYPE_TEMPLATE_INFO (type))
7648 {
7649 templ = CLASSTYPE_TI_TEMPLATE (type);
7650 d1 = DECL_NAME (templ);
7651 }
7652 }
7653 else if (TREE_CODE (d1) == ENUMERAL_TYPE
7654 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
7655 {
7656 templ = TYPE_TI_TEMPLATE (d1);
7657 d1 = DECL_NAME (templ);
7658 }
7659 else if (DECL_TYPE_TEMPLATE_P (d1))
7660 {
7661 templ = d1;
7662 d1 = DECL_NAME (templ);
7663 context = DECL_CONTEXT (templ);
7664 }
7665 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
7666 {
7667 templ = d1;
7668 d1 = DECL_NAME (templ);
7669 }
7670
7671 /* Issue an error message if we didn't find a template. */
7672 if (! templ)
7673 {
7674 if (complain & tf_error)
7675 error ("%qT is not a template", d1);
7676 return error_mark_node;
7677 }
7678
7679 if (TREE_CODE (templ) != TEMPLATE_DECL
7680 /* Make sure it's a user visible template, if it was named by
7681 the user. */
7682 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
7683 && !PRIMARY_TEMPLATE_P (templ)))
7684 {
7685 if (complain & tf_error)
7686 {
7687 error ("non-template type %qT used as a template", d1);
7688 if (in_decl)
7689 error ("for template declaration %q+D", in_decl);
7690 }
7691 return error_mark_node;
7692 }
7693
7694 complain &= ~tf_user;
7695
7696 /* An alias that just changes the name of a template is equivalent to the
7697 other template, so if any of the arguments are pack expansions, strip
7698 the alias to avoid problems with a pack expansion passed to a non-pack
7699 alias template parameter (DR 1430). */
7700 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
7701 templ = get_underlying_template (templ);
7702
7703 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
7704 {
7705 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
7706 template arguments */
7707
7708 tree parm;
7709 tree arglist2;
7710 tree outer;
7711
7712 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
7713
7714 /* Consider an example where a template template parameter declared as
7715
7716 template <class T, class U = std::allocator<T> > class TT
7717
7718 The template parameter level of T and U are one level larger than
7719 of TT. To proper process the default argument of U, say when an
7720 instantiation `TT<int>' is seen, we need to build the full
7721 arguments containing {int} as the innermost level. Outer levels,
7722 available when not appearing as default template argument, can be
7723 obtained from the arguments of the enclosing template.
7724
7725 Suppose that TT is later substituted with std::vector. The above
7726 instantiation is `TT<int, std::allocator<T> >' with TT at
7727 level 1, and T at level 2, while the template arguments at level 1
7728 becomes {std::vector} and the inner level 2 is {int}. */
7729
7730 outer = DECL_CONTEXT (templ);
7731 if (outer)
7732 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
7733 else if (current_template_parms)
7734 /* This is an argument of the current template, so we haven't set
7735 DECL_CONTEXT yet. */
7736 outer = current_template_args ();
7737
7738 if (outer)
7739 arglist = add_to_template_args (outer, arglist);
7740
7741 arglist2 = coerce_template_parms (parmlist, arglist, templ,
7742 complain,
7743 /*require_all_args=*/true,
7744 /*use_default_args=*/true);
7745 if (arglist2 == error_mark_node
7746 || (!uses_template_parms (arglist2)
7747 && check_instantiated_args (templ, arglist2, complain)))
7748 return error_mark_node;
7749
7750 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
7751 return parm;
7752 }
7753 else
7754 {
7755 tree template_type = TREE_TYPE (templ);
7756 tree gen_tmpl;
7757 tree type_decl;
7758 tree found = NULL_TREE;
7759 int arg_depth;
7760 int parm_depth;
7761 int is_dependent_type;
7762 int use_partial_inst_tmpl = false;
7763
7764 if (template_type == error_mark_node)
7765 /* An error occurred while building the template TEMPL, and a
7766 diagnostic has most certainly been emitted for that
7767 already. Let's propagate that error. */
7768 return error_mark_node;
7769
7770 gen_tmpl = most_general_template (templ);
7771 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
7772 parm_depth = TMPL_PARMS_DEPTH (parmlist);
7773 arg_depth = TMPL_ARGS_DEPTH (arglist);
7774
7775 if (arg_depth == 1 && parm_depth > 1)
7776 {
7777 /* We've been given an incomplete set of template arguments.
7778 For example, given:
7779
7780 template <class T> struct S1 {
7781 template <class U> struct S2 {};
7782 template <class U> struct S2<U*> {};
7783 };
7784
7785 we will be called with an ARGLIST of `U*', but the
7786 TEMPLATE will be `template <class T> template
7787 <class U> struct S1<T>::S2'. We must fill in the missing
7788 arguments. */
7789 arglist
7790 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
7791 arglist);
7792 arg_depth = TMPL_ARGS_DEPTH (arglist);
7793 }
7794
7795 /* Now we should have enough arguments. */
7796 gcc_assert (parm_depth == arg_depth);
7797
7798 /* From here on, we're only interested in the most general
7799 template. */
7800
7801 /* Calculate the BOUND_ARGS. These will be the args that are
7802 actually tsubst'd into the definition to create the
7803 instantiation. */
7804 arglist = coerce_innermost_template_parms (parmlist, arglist, gen_tmpl,
7805 complain,
7806 /*require_all_args=*/true,
7807 /*use_default_args=*/true);
7808
7809 if (arglist == error_mark_node)
7810 /* We were unable to bind the arguments. */
7811 return error_mark_node;
7812
7813 /* In the scope of a template class, explicit references to the
7814 template class refer to the type of the template, not any
7815 instantiation of it. For example, in:
7816
7817 template <class T> class C { void f(C<T>); }
7818
7819 the `C<T>' is just the same as `C'. Outside of the
7820 class, however, such a reference is an instantiation. */
7821 if ((entering_scope
7822 || !PRIMARY_TEMPLATE_P (gen_tmpl)
7823 || currently_open_class (template_type))
7824 /* comp_template_args is expensive, check it last. */
7825 && comp_template_args (TYPE_TI_ARGS (template_type),
7826 arglist))
7827 return template_type;
7828
7829 /* If we already have this specialization, return it. */
7830 elt.tmpl = gen_tmpl;
7831 elt.args = arglist;
7832 hash = spec_hasher::hash (&elt);
7833 entry = type_specializations->find_with_hash (&elt, hash);
7834
7835 if (entry)
7836 return entry->spec;
7837
7838 is_dependent_type = uses_template_parms (arglist);
7839
7840 /* If the deduced arguments are invalid, then the binding
7841 failed. */
7842 if (!is_dependent_type
7843 && check_instantiated_args (gen_tmpl,
7844 INNERMOST_TEMPLATE_ARGS (arglist),
7845 complain))
7846 return error_mark_node;
7847
7848 if (!is_dependent_type
7849 && !PRIMARY_TEMPLATE_P (gen_tmpl)
7850 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
7851 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
7852 {
7853 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
7854 DECL_NAME (gen_tmpl),
7855 /*tag_scope=*/ts_global);
7856 return found;
7857 }
7858
7859 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
7860 complain, in_decl);
7861 if (context == error_mark_node)
7862 return error_mark_node;
7863
7864 if (!context)
7865 context = global_namespace;
7866
7867 /* Create the type. */
7868 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7869 {
7870 /* The user referred to a specialization of an alias
7871 template represented by GEN_TMPL.
7872
7873 [temp.alias]/2 says:
7874
7875 When a template-id refers to the specialization of an
7876 alias template, it is equivalent to the associated
7877 type obtained by substitution of its
7878 template-arguments for the template-parameters in the
7879 type-id of the alias template. */
7880
7881 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
7882 /* Note that the call above (by indirectly calling
7883 register_specialization in tsubst_decl) registers the
7884 TYPE_DECL representing the specialization of the alias
7885 template. So next time someone substitutes ARGLIST for
7886 the template parms into the alias template (GEN_TMPL),
7887 she'll get that TYPE_DECL back. */
7888
7889 if (t == error_mark_node)
7890 return t;
7891 }
7892 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
7893 {
7894 if (!is_dependent_type)
7895 {
7896 set_current_access_from_decl (TYPE_NAME (template_type));
7897 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
7898 tsubst (ENUM_UNDERLYING_TYPE (template_type),
7899 arglist, complain, in_decl),
7900 SCOPED_ENUM_P (template_type), NULL);
7901
7902 if (t == error_mark_node)
7903 return t;
7904 }
7905 else
7906 {
7907 /* We don't want to call start_enum for this type, since
7908 the values for the enumeration constants may involve
7909 template parameters. And, no one should be interested
7910 in the enumeration constants for such a type. */
7911 t = cxx_make_type (ENUMERAL_TYPE);
7912 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
7913 }
7914 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
7915 ENUM_FIXED_UNDERLYING_TYPE_P (t)
7916 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
7917 }
7918 else if (CLASS_TYPE_P (template_type))
7919 {
7920 t = make_class_type (TREE_CODE (template_type));
7921 CLASSTYPE_DECLARED_CLASS (t)
7922 = CLASSTYPE_DECLARED_CLASS (template_type);
7923 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
7924 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
7925
7926 /* A local class. Make sure the decl gets registered properly. */
7927 if (context == current_function_decl)
7928 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
7929
7930 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
7931 /* This instantiation is another name for the primary
7932 template type. Set the TYPE_CANONICAL field
7933 appropriately. */
7934 TYPE_CANONICAL (t) = template_type;
7935 else if (any_template_arguments_need_structural_equality_p (arglist))
7936 /* Some of the template arguments require structural
7937 equality testing, so this template class requires
7938 structural equality testing. */
7939 SET_TYPE_STRUCTURAL_EQUALITY (t);
7940 }
7941 else
7942 gcc_unreachable ();
7943
7944 /* If we called start_enum or pushtag above, this information
7945 will already be set up. */
7946 if (!TYPE_NAME (t))
7947 {
7948 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
7949
7950 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
7951 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
7952 DECL_SOURCE_LOCATION (type_decl)
7953 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
7954 }
7955 else
7956 type_decl = TYPE_NAME (t);
7957
7958 if (CLASS_TYPE_P (template_type))
7959 {
7960 TREE_PRIVATE (type_decl)
7961 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
7962 TREE_PROTECTED (type_decl)
7963 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
7964 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
7965 {
7966 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
7967 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
7968 }
7969 }
7970
7971 if (OVERLOAD_TYPE_P (t)
7972 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7973 {
7974 static const char *tags[] = {"abi_tag", "may_alias"};
7975
7976 for (unsigned ix = 0; ix != 2; ix++)
7977 {
7978 tree attributes
7979 = lookup_attribute (tags[ix], TYPE_ATTRIBUTES (template_type));
7980
7981 if (!attributes)
7982 ;
7983 else if (!TREE_CHAIN (attributes) && !TYPE_ATTRIBUTES (t))
7984 TYPE_ATTRIBUTES (t) = attributes;
7985 else
7986 TYPE_ATTRIBUTES (t)
7987 = tree_cons (TREE_PURPOSE (attributes),
7988 TREE_VALUE (attributes),
7989 TYPE_ATTRIBUTES (t));
7990 }
7991 }
7992
7993 /* Let's consider the explicit specialization of a member
7994 of a class template specialization that is implicitly instantiated,
7995 e.g.:
7996 template<class T>
7997 struct S
7998 {
7999 template<class U> struct M {}; //#0
8000 };
8001
8002 template<>
8003 template<>
8004 struct S<int>::M<char> //#1
8005 {
8006 int i;
8007 };
8008 [temp.expl.spec]/4 says this is valid.
8009
8010 In this case, when we write:
8011 S<int>::M<char> m;
8012
8013 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
8014 the one of #0.
8015
8016 When we encounter #1, we want to store the partial instantiation
8017 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
8018
8019 For all cases other than this "explicit specialization of member of a
8020 class template", we just want to store the most general template into
8021 the CLASSTYPE_TI_TEMPLATE of M.
8022
8023 This case of "explicit specialization of member of a class template"
8024 only happens when:
8025 1/ the enclosing class is an instantiation of, and therefore not
8026 the same as, the context of the most general template, and
8027 2/ we aren't looking at the partial instantiation itself, i.e.
8028 the innermost arguments are not the same as the innermost parms of
8029 the most general template.
8030
8031 So it's only when 1/ and 2/ happens that we want to use the partial
8032 instantiation of the member template in lieu of its most general
8033 template. */
8034
8035 if (PRIMARY_TEMPLATE_P (gen_tmpl)
8036 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
8037 /* the enclosing class must be an instantiation... */
8038 && CLASS_TYPE_P (context)
8039 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
8040 {
8041 tree partial_inst_args;
8042 TREE_VEC_LENGTH (arglist)--;
8043 ++processing_template_decl;
8044 partial_inst_args =
8045 tsubst (INNERMOST_TEMPLATE_ARGS
8046 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
8047 arglist, complain, NULL_TREE);
8048 --processing_template_decl;
8049 TREE_VEC_LENGTH (arglist)++;
8050 use_partial_inst_tmpl =
8051 /*...and we must not be looking at the partial instantiation
8052 itself. */
8053 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
8054 partial_inst_args);
8055 }
8056
8057 if (!use_partial_inst_tmpl)
8058 /* This case is easy; there are no member templates involved. */
8059 found = gen_tmpl;
8060 else
8061 {
8062 /* This is a full instantiation of a member template. Find
8063 the partial instantiation of which this is an instance. */
8064
8065 /* Temporarily reduce by one the number of levels in the ARGLIST
8066 so as to avoid comparing the last set of arguments. */
8067 TREE_VEC_LENGTH (arglist)--;
8068 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
8069 TREE_VEC_LENGTH (arglist)++;
8070 /* FOUND is either a proper class type, or an alias
8071 template specialization. In the later case, it's a
8072 TYPE_DECL, resulting from the substituting of arguments
8073 for parameters in the TYPE_DECL of the alias template
8074 done earlier. So be careful while getting the template
8075 of FOUND. */
8076 found = TREE_CODE (found) == TYPE_DECL
8077 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
8078 : CLASSTYPE_TI_TEMPLATE (found);
8079 }
8080
8081 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
8082
8083 elt.spec = t;
8084 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
8085 entry = ggc_alloc<spec_entry> ();
8086 *entry = elt;
8087 *slot = entry;
8088
8089 /* Note this use of the partial instantiation so we can check it
8090 later in maybe_process_partial_specialization. */
8091 DECL_TEMPLATE_INSTANTIATIONS (found)
8092 = tree_cons (arglist, t,
8093 DECL_TEMPLATE_INSTANTIATIONS (found));
8094
8095 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
8096 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8097 /* Now that the type has been registered on the instantiations
8098 list, we set up the enumerators. Because the enumeration
8099 constants may involve the enumeration type itself, we make
8100 sure to register the type first, and then create the
8101 constants. That way, doing tsubst_expr for the enumeration
8102 constants won't result in recursive calls here; we'll find
8103 the instantiation and exit above. */
8104 tsubst_enum (template_type, t, arglist);
8105
8106 if (CLASS_TYPE_P (template_type) && is_dependent_type)
8107 /* If the type makes use of template parameters, the
8108 code that generates debugging information will crash. */
8109 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
8110
8111 /* Possibly limit visibility based on template args. */
8112 TREE_PUBLIC (type_decl) = 1;
8113 determine_visibility (type_decl);
8114
8115 inherit_targ_abi_tags (t);
8116
8117 return t;
8118 }
8119 }
8120
8121 /* Wrapper for lookup_template_class_1. */
8122
8123 tree
8124 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
8125 int entering_scope, tsubst_flags_t complain)
8126 {
8127 tree ret;
8128 timevar_push (TV_TEMPLATE_INST);
8129 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
8130 entering_scope, complain);
8131 timevar_pop (TV_TEMPLATE_INST);
8132 return ret;
8133 }
8134
8135 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST.
8136 The type of the expression is the unknown_type_node since the
8137 template-id could refer to an explicit or partial specialization. */
8138
8139 tree
8140 lookup_template_variable (tree templ, tree arglist)
8141 {
8142 tree type = unknown_type_node;
8143 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
8144 }
8145
8146 /* Instantiate a variable declaration from a TEMPLATE_ID_EXPR for use. */
8147
8148 tree
8149 finish_template_variable (tree var)
8150 {
8151 tree templ = TREE_OPERAND (var, 0);
8152
8153 tree arglist = TREE_OPERAND (var, 1);
8154 tree tmpl_args = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (templ));
8155 arglist = add_outermost_template_args (tmpl_args, arglist);
8156
8157 tree parms = DECL_TEMPLATE_PARMS (templ);
8158 tsubst_flags_t complain = tf_warning_or_error;
8159 arglist = coerce_innermost_template_parms (parms, arglist, templ, complain,
8160 /*req_all*/true,
8161 /*use_default*/true);
8162
8163 return instantiate_template (templ, arglist, complain);
8164 }
8165 \f
8166 struct pair_fn_data
8167 {
8168 tree_fn_t fn;
8169 void *data;
8170 /* True when we should also visit template parameters that occur in
8171 non-deduced contexts. */
8172 bool include_nondeduced_p;
8173 hash_set<tree> *visited;
8174 };
8175
8176 /* Called from for_each_template_parm via walk_tree. */
8177
8178 static tree
8179 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
8180 {
8181 tree t = *tp;
8182 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
8183 tree_fn_t fn = pfd->fn;
8184 void *data = pfd->data;
8185
8186 if (TYPE_P (t)
8187 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE)
8188 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited,
8189 pfd->include_nondeduced_p))
8190 return error_mark_node;
8191
8192 switch (TREE_CODE (t))
8193 {
8194 case RECORD_TYPE:
8195 if (TYPE_PTRMEMFUNC_P (t))
8196 break;
8197 /* Fall through. */
8198
8199 case UNION_TYPE:
8200 case ENUMERAL_TYPE:
8201 if (!TYPE_TEMPLATE_INFO (t))
8202 *walk_subtrees = 0;
8203 else if (for_each_template_parm (TYPE_TI_ARGS (t),
8204 fn, data, pfd->visited,
8205 pfd->include_nondeduced_p))
8206 return error_mark_node;
8207 break;
8208
8209 case INTEGER_TYPE:
8210 if (for_each_template_parm (TYPE_MIN_VALUE (t),
8211 fn, data, pfd->visited,
8212 pfd->include_nondeduced_p)
8213 || for_each_template_parm (TYPE_MAX_VALUE (t),
8214 fn, data, pfd->visited,
8215 pfd->include_nondeduced_p))
8216 return error_mark_node;
8217 break;
8218
8219 case METHOD_TYPE:
8220 /* Since we're not going to walk subtrees, we have to do this
8221 explicitly here. */
8222 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
8223 pfd->visited, pfd->include_nondeduced_p))
8224 return error_mark_node;
8225 /* Fall through. */
8226
8227 case FUNCTION_TYPE:
8228 /* Check the return type. */
8229 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
8230 pfd->include_nondeduced_p))
8231 return error_mark_node;
8232
8233 /* Check the parameter types. Since default arguments are not
8234 instantiated until they are needed, the TYPE_ARG_TYPES may
8235 contain expressions that involve template parameters. But,
8236 no-one should be looking at them yet. And, once they're
8237 instantiated, they don't contain template parameters, so
8238 there's no point in looking at them then, either. */
8239 {
8240 tree parm;
8241
8242 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
8243 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
8244 pfd->visited, pfd->include_nondeduced_p))
8245 return error_mark_node;
8246
8247 /* Since we've already handled the TYPE_ARG_TYPES, we don't
8248 want walk_tree walking into them itself. */
8249 *walk_subtrees = 0;
8250 }
8251 break;
8252
8253 case TYPEOF_TYPE:
8254 case UNDERLYING_TYPE:
8255 if (pfd->include_nondeduced_p
8256 && for_each_template_parm (TYPE_FIELDS (t), fn, data,
8257 pfd->visited,
8258 pfd->include_nondeduced_p))
8259 return error_mark_node;
8260 break;
8261
8262 case FUNCTION_DECL:
8263 case VAR_DECL:
8264 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
8265 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
8266 pfd->visited, pfd->include_nondeduced_p))
8267 return error_mark_node;
8268 /* Fall through. */
8269
8270 case PARM_DECL:
8271 case CONST_DECL:
8272 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
8273 && for_each_template_parm (DECL_INITIAL (t), fn, data,
8274 pfd->visited, pfd->include_nondeduced_p))
8275 return error_mark_node;
8276 if (DECL_CONTEXT (t)
8277 && pfd->include_nondeduced_p
8278 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
8279 pfd->visited, pfd->include_nondeduced_p))
8280 return error_mark_node;
8281 break;
8282
8283 case BOUND_TEMPLATE_TEMPLATE_PARM:
8284 /* Record template parameters such as `T' inside `TT<T>'. */
8285 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited,
8286 pfd->include_nondeduced_p))
8287 return error_mark_node;
8288 /* Fall through. */
8289
8290 case TEMPLATE_TEMPLATE_PARM:
8291 case TEMPLATE_TYPE_PARM:
8292 case TEMPLATE_PARM_INDEX:
8293 if (fn && (*fn)(t, data))
8294 return error_mark_node;
8295 else if (!fn)
8296 return error_mark_node;
8297 break;
8298
8299 case TEMPLATE_DECL:
8300 /* A template template parameter is encountered. */
8301 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
8302 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
8303 pfd->include_nondeduced_p))
8304 return error_mark_node;
8305
8306 /* Already substituted template template parameter */
8307 *walk_subtrees = 0;
8308 break;
8309
8310 case TYPENAME_TYPE:
8311 if (!fn
8312 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
8313 data, pfd->visited,
8314 pfd->include_nondeduced_p))
8315 return error_mark_node;
8316 break;
8317
8318 case CONSTRUCTOR:
8319 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
8320 && pfd->include_nondeduced_p
8321 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
8322 (TREE_TYPE (t)), fn, data,
8323 pfd->visited, pfd->include_nondeduced_p))
8324 return error_mark_node;
8325 break;
8326
8327 case INDIRECT_REF:
8328 case COMPONENT_REF:
8329 /* If there's no type, then this thing must be some expression
8330 involving template parameters. */
8331 if (!fn && !TREE_TYPE (t))
8332 return error_mark_node;
8333 break;
8334
8335 case MODOP_EXPR:
8336 case CAST_EXPR:
8337 case IMPLICIT_CONV_EXPR:
8338 case REINTERPRET_CAST_EXPR:
8339 case CONST_CAST_EXPR:
8340 case STATIC_CAST_EXPR:
8341 case DYNAMIC_CAST_EXPR:
8342 case ARROW_EXPR:
8343 case DOTSTAR_EXPR:
8344 case TYPEID_EXPR:
8345 case PSEUDO_DTOR_EXPR:
8346 if (!fn)
8347 return error_mark_node;
8348 break;
8349
8350 default:
8351 break;
8352 }
8353
8354 /* We didn't find any template parameters we liked. */
8355 return NULL_TREE;
8356 }
8357
8358 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
8359 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
8360 call FN with the parameter and the DATA.
8361 If FN returns nonzero, the iteration is terminated, and
8362 for_each_template_parm returns 1. Otherwise, the iteration
8363 continues. If FN never returns a nonzero value, the value
8364 returned by for_each_template_parm is 0. If FN is NULL, it is
8365 considered to be the function which always returns 1.
8366
8367 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
8368 parameters that occur in non-deduced contexts. When false, only
8369 visits those template parameters that can be deduced. */
8370
8371 static int
8372 for_each_template_parm (tree t, tree_fn_t fn, void* data,
8373 hash_set<tree> *visited,
8374 bool include_nondeduced_p)
8375 {
8376 struct pair_fn_data pfd;
8377 int result;
8378
8379 /* Set up. */
8380 pfd.fn = fn;
8381 pfd.data = data;
8382 pfd.include_nondeduced_p = include_nondeduced_p;
8383
8384 /* Walk the tree. (Conceptually, we would like to walk without
8385 duplicates, but for_each_template_parm_r recursively calls
8386 for_each_template_parm, so we would need to reorganize a fair
8387 bit to use walk_tree_without_duplicates, so we keep our own
8388 visited list.) */
8389 if (visited)
8390 pfd.visited = visited;
8391 else
8392 pfd.visited = new hash_set<tree>;
8393 result = cp_walk_tree (&t,
8394 for_each_template_parm_r,
8395 &pfd,
8396 pfd.visited) != NULL_TREE;
8397
8398 /* Clean up. */
8399 if (!visited)
8400 {
8401 delete pfd.visited;
8402 pfd.visited = 0;
8403 }
8404
8405 return result;
8406 }
8407
8408 /* Returns true if T depends on any template parameter. */
8409
8410 int
8411 uses_template_parms (tree t)
8412 {
8413 if (t == NULL_TREE)
8414 return false;
8415
8416 bool dependent_p;
8417 int saved_processing_template_decl;
8418
8419 saved_processing_template_decl = processing_template_decl;
8420 if (!saved_processing_template_decl)
8421 processing_template_decl = 1;
8422 if (TYPE_P (t))
8423 dependent_p = dependent_type_p (t);
8424 else if (TREE_CODE (t) == TREE_VEC)
8425 dependent_p = any_dependent_template_arguments_p (t);
8426 else if (TREE_CODE (t) == TREE_LIST)
8427 dependent_p = (uses_template_parms (TREE_VALUE (t))
8428 || uses_template_parms (TREE_CHAIN (t)));
8429 else if (TREE_CODE (t) == TYPE_DECL)
8430 dependent_p = dependent_type_p (TREE_TYPE (t));
8431 else if (DECL_P (t)
8432 || EXPR_P (t)
8433 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
8434 || TREE_CODE (t) == OVERLOAD
8435 || BASELINK_P (t)
8436 || identifier_p (t)
8437 || TREE_CODE (t) == TRAIT_EXPR
8438 || TREE_CODE (t) == CONSTRUCTOR
8439 || CONSTANT_CLASS_P (t))
8440 dependent_p = (type_dependent_expression_p (t)
8441 || value_dependent_expression_p (t));
8442 else
8443 {
8444 gcc_assert (t == error_mark_node);
8445 dependent_p = false;
8446 }
8447
8448 processing_template_decl = saved_processing_template_decl;
8449
8450 return dependent_p;
8451 }
8452
8453 /* Returns true iff current_function_decl is an incompletely instantiated
8454 template. Useful instead of processing_template_decl because the latter
8455 is set to 0 during instantiate_non_dependent_expr. */
8456
8457 bool
8458 in_template_function (void)
8459 {
8460 tree fn = current_function_decl;
8461 bool ret;
8462 ++processing_template_decl;
8463 ret = (fn && DECL_LANG_SPECIFIC (fn)
8464 && DECL_TEMPLATE_INFO (fn)
8465 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
8466 --processing_template_decl;
8467 return ret;
8468 }
8469
8470 /* Returns true if T depends on any template parameter with level LEVEL. */
8471
8472 int
8473 uses_template_parms_level (tree t, int level)
8474 {
8475 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
8476 /*include_nondeduced_p=*/true);
8477 }
8478
8479 /* Returns TRUE iff INST is an instantiation we don't need to do in an
8480 ill-formed translation unit, i.e. a variable or function that isn't
8481 usable in a constant expression. */
8482
8483 static inline bool
8484 neglectable_inst_p (tree d)
8485 {
8486 return (DECL_P (d)
8487 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
8488 : decl_maybe_constant_var_p (d)));
8489 }
8490
8491 /* Returns TRUE iff we should refuse to instantiate DECL because it's
8492 neglectable and instantiated from within an erroneous instantiation. */
8493
8494 static bool
8495 limit_bad_template_recursion (tree decl)
8496 {
8497 struct tinst_level *lev = current_tinst_level;
8498 int errs = errorcount + sorrycount;
8499 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
8500 return false;
8501
8502 for (; lev; lev = lev->next)
8503 if (neglectable_inst_p (lev->decl))
8504 break;
8505
8506 return (lev && errs > lev->errors);
8507 }
8508
8509 static int tinst_depth;
8510 extern int max_tinst_depth;
8511 int depth_reached;
8512
8513 static GTY(()) struct tinst_level *last_error_tinst_level;
8514
8515 /* We're starting to instantiate D; record the template instantiation context
8516 for diagnostics and to restore it later. */
8517
8518 bool
8519 push_tinst_level (tree d)
8520 {
8521 return push_tinst_level_loc (d, input_location);
8522 }
8523
8524 /* We're starting to instantiate D; record the template instantiation context
8525 at LOC for diagnostics and to restore it later. */
8526
8527 bool
8528 push_tinst_level_loc (tree d, location_t loc)
8529 {
8530 struct tinst_level *new_level;
8531
8532 if (tinst_depth >= max_tinst_depth)
8533 {
8534 fatal_error (input_location,
8535 "template instantiation depth exceeds maximum of %d"
8536 " (use -ftemplate-depth= to increase the maximum)",
8537 max_tinst_depth);
8538 return false;
8539 }
8540
8541 /* If the current instantiation caused problems, don't let it instantiate
8542 anything else. Do allow deduction substitution and decls usable in
8543 constant expressions. */
8544 if (limit_bad_template_recursion (d))
8545 return false;
8546
8547 new_level = ggc_alloc<tinst_level> ();
8548 new_level->decl = d;
8549 new_level->locus = loc;
8550 new_level->errors = errorcount+sorrycount;
8551 new_level->in_system_header_p = in_system_header_at (input_location);
8552 new_level->next = current_tinst_level;
8553 current_tinst_level = new_level;
8554
8555 ++tinst_depth;
8556 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
8557 depth_reached = tinst_depth;
8558
8559 return true;
8560 }
8561
8562 /* We're done instantiating this template; return to the instantiation
8563 context. */
8564
8565 void
8566 pop_tinst_level (void)
8567 {
8568 /* Restore the filename and line number stashed away when we started
8569 this instantiation. */
8570 input_location = current_tinst_level->locus;
8571 current_tinst_level = current_tinst_level->next;
8572 --tinst_depth;
8573 }
8574
8575 /* We're instantiating a deferred template; restore the template
8576 instantiation context in which the instantiation was requested, which
8577 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
8578
8579 static tree
8580 reopen_tinst_level (struct tinst_level *level)
8581 {
8582 struct tinst_level *t;
8583
8584 tinst_depth = 0;
8585 for (t = level; t; t = t->next)
8586 ++tinst_depth;
8587
8588 current_tinst_level = level;
8589 pop_tinst_level ();
8590 if (current_tinst_level)
8591 current_tinst_level->errors = errorcount+sorrycount;
8592 return level->decl;
8593 }
8594
8595 /* Returns the TINST_LEVEL which gives the original instantiation
8596 context. */
8597
8598 struct tinst_level *
8599 outermost_tinst_level (void)
8600 {
8601 struct tinst_level *level = current_tinst_level;
8602 if (level)
8603 while (level->next)
8604 level = level->next;
8605 return level;
8606 }
8607
8608 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
8609 vector of template arguments, as for tsubst.
8610
8611 Returns an appropriate tsubst'd friend declaration. */
8612
8613 static tree
8614 tsubst_friend_function (tree decl, tree args)
8615 {
8616 tree new_friend;
8617
8618 if (TREE_CODE (decl) == FUNCTION_DECL
8619 && DECL_TEMPLATE_INSTANTIATION (decl)
8620 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
8621 /* This was a friend declared with an explicit template
8622 argument list, e.g.:
8623
8624 friend void f<>(T);
8625
8626 to indicate that f was a template instantiation, not a new
8627 function declaration. Now, we have to figure out what
8628 instantiation of what template. */
8629 {
8630 tree template_id, arglist, fns;
8631 tree new_args;
8632 tree tmpl;
8633 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
8634
8635 /* Friend functions are looked up in the containing namespace scope.
8636 We must enter that scope, to avoid finding member functions of the
8637 current class with same name. */
8638 push_nested_namespace (ns);
8639 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
8640 tf_warning_or_error, NULL_TREE,
8641 /*integral_constant_expression_p=*/false);
8642 pop_nested_namespace (ns);
8643 arglist = tsubst (DECL_TI_ARGS (decl), args,
8644 tf_warning_or_error, NULL_TREE);
8645 template_id = lookup_template_function (fns, arglist);
8646
8647 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8648 tmpl = determine_specialization (template_id, new_friend,
8649 &new_args,
8650 /*need_member_template=*/0,
8651 TREE_VEC_LENGTH (args),
8652 tsk_none);
8653 return instantiate_template (tmpl, new_args, tf_error);
8654 }
8655
8656 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8657
8658 /* The NEW_FRIEND will look like an instantiation, to the
8659 compiler, but is not an instantiation from the point of view of
8660 the language. For example, we might have had:
8661
8662 template <class T> struct S {
8663 template <class U> friend void f(T, U);
8664 };
8665
8666 Then, in S<int>, template <class U> void f(int, U) is not an
8667 instantiation of anything. */
8668 if (new_friend == error_mark_node)
8669 return error_mark_node;
8670
8671 DECL_USE_TEMPLATE (new_friend) = 0;
8672 if (TREE_CODE (decl) == TEMPLATE_DECL)
8673 {
8674 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
8675 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
8676 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
8677 }
8678
8679 /* The mangled name for the NEW_FRIEND is incorrect. The function
8680 is not a template instantiation and should not be mangled like
8681 one. Therefore, we forget the mangling here; we'll recompute it
8682 later if we need it. */
8683 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
8684 {
8685 SET_DECL_RTL (new_friend, NULL);
8686 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
8687 }
8688
8689 if (DECL_NAMESPACE_SCOPE_P (new_friend))
8690 {
8691 tree old_decl;
8692 tree new_friend_template_info;
8693 tree new_friend_result_template_info;
8694 tree ns;
8695 int new_friend_is_defn;
8696
8697 /* We must save some information from NEW_FRIEND before calling
8698 duplicate decls since that function will free NEW_FRIEND if
8699 possible. */
8700 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
8701 new_friend_is_defn =
8702 (DECL_INITIAL (DECL_TEMPLATE_RESULT
8703 (template_for_substitution (new_friend)))
8704 != NULL_TREE);
8705 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
8706 {
8707 /* This declaration is a `primary' template. */
8708 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
8709
8710 new_friend_result_template_info
8711 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
8712 }
8713 else
8714 new_friend_result_template_info = NULL_TREE;
8715
8716 /* Make the init_value nonzero so pushdecl knows this is a defn. */
8717 if (new_friend_is_defn)
8718 DECL_INITIAL (new_friend) = error_mark_node;
8719
8720 /* Inside pushdecl_namespace_level, we will push into the
8721 current namespace. However, the friend function should go
8722 into the namespace of the template. */
8723 ns = decl_namespace_context (new_friend);
8724 push_nested_namespace (ns);
8725 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
8726 pop_nested_namespace (ns);
8727
8728 if (old_decl == error_mark_node)
8729 return error_mark_node;
8730
8731 if (old_decl != new_friend)
8732 {
8733 /* This new friend declaration matched an existing
8734 declaration. For example, given:
8735
8736 template <class T> void f(T);
8737 template <class U> class C {
8738 template <class T> friend void f(T) {}
8739 };
8740
8741 the friend declaration actually provides the definition
8742 of `f', once C has been instantiated for some type. So,
8743 old_decl will be the out-of-class template declaration,
8744 while new_friend is the in-class definition.
8745
8746 But, if `f' was called before this point, the
8747 instantiation of `f' will have DECL_TI_ARGS corresponding
8748 to `T' but not to `U', references to which might appear
8749 in the definition of `f'. Previously, the most general
8750 template for an instantiation of `f' was the out-of-class
8751 version; now it is the in-class version. Therefore, we
8752 run through all specialization of `f', adding to their
8753 DECL_TI_ARGS appropriately. In particular, they need a
8754 new set of outer arguments, corresponding to the
8755 arguments for this class instantiation.
8756
8757 The same situation can arise with something like this:
8758
8759 friend void f(int);
8760 template <class T> class C {
8761 friend void f(T) {}
8762 };
8763
8764 when `C<int>' is instantiated. Now, `f(int)' is defined
8765 in the class. */
8766
8767 if (!new_friend_is_defn)
8768 /* On the other hand, if the in-class declaration does
8769 *not* provide a definition, then we don't want to alter
8770 existing definitions. We can just leave everything
8771 alone. */
8772 ;
8773 else
8774 {
8775 tree new_template = TI_TEMPLATE (new_friend_template_info);
8776 tree new_args = TI_ARGS (new_friend_template_info);
8777
8778 /* Overwrite whatever template info was there before, if
8779 any, with the new template information pertaining to
8780 the declaration. */
8781 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
8782
8783 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
8784 {
8785 /* We should have called reregister_specialization in
8786 duplicate_decls. */
8787 gcc_assert (retrieve_specialization (new_template,
8788 new_args, 0)
8789 == old_decl);
8790
8791 /* Instantiate it if the global has already been used. */
8792 if (DECL_ODR_USED (old_decl))
8793 instantiate_decl (old_decl, /*defer_ok=*/true,
8794 /*expl_inst_class_mem_p=*/false);
8795 }
8796 else
8797 {
8798 tree t;
8799
8800 /* Indicate that the old function template is a partial
8801 instantiation. */
8802 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
8803 = new_friend_result_template_info;
8804
8805 gcc_assert (new_template
8806 == most_general_template (new_template));
8807 gcc_assert (new_template != old_decl);
8808
8809 /* Reassign any specializations already in the hash table
8810 to the new more general template, and add the
8811 additional template args. */
8812 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
8813 t != NULL_TREE;
8814 t = TREE_CHAIN (t))
8815 {
8816 tree spec = TREE_VALUE (t);
8817 spec_entry elt;
8818
8819 elt.tmpl = old_decl;
8820 elt.args = DECL_TI_ARGS (spec);
8821 elt.spec = NULL_TREE;
8822
8823 decl_specializations->remove_elt (&elt);
8824
8825 DECL_TI_ARGS (spec)
8826 = add_outermost_template_args (new_args,
8827 DECL_TI_ARGS (spec));
8828
8829 register_specialization
8830 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
8831
8832 }
8833 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
8834 }
8835 }
8836
8837 /* The information from NEW_FRIEND has been merged into OLD_DECL
8838 by duplicate_decls. */
8839 new_friend = old_decl;
8840 }
8841 }
8842 else
8843 {
8844 tree context = DECL_CONTEXT (new_friend);
8845 bool dependent_p;
8846
8847 /* In the code
8848 template <class T> class C {
8849 template <class U> friend void C1<U>::f (); // case 1
8850 friend void C2<T>::f (); // case 2
8851 };
8852 we only need to make sure CONTEXT is a complete type for
8853 case 2. To distinguish between the two cases, we note that
8854 CONTEXT of case 1 remains dependent type after tsubst while
8855 this isn't true for case 2. */
8856 ++processing_template_decl;
8857 dependent_p = dependent_type_p (context);
8858 --processing_template_decl;
8859
8860 if (!dependent_p
8861 && !complete_type_or_else (context, NULL_TREE))
8862 return error_mark_node;
8863
8864 if (COMPLETE_TYPE_P (context))
8865 {
8866 tree fn = new_friend;
8867 /* do_friend adds the TEMPLATE_DECL for any member friend
8868 template even if it isn't a member template, i.e.
8869 template <class T> friend A<T>::f();
8870 Look through it in that case. */
8871 if (TREE_CODE (fn) == TEMPLATE_DECL
8872 && !PRIMARY_TEMPLATE_P (fn))
8873 fn = DECL_TEMPLATE_RESULT (fn);
8874 /* Check to see that the declaration is really present, and,
8875 possibly obtain an improved declaration. */
8876 fn = check_classfn (context, fn, NULL_TREE);
8877
8878 if (fn)
8879 new_friend = fn;
8880 }
8881 }
8882
8883 return new_friend;
8884 }
8885
8886 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
8887 template arguments, as for tsubst.
8888
8889 Returns an appropriate tsubst'd friend type or error_mark_node on
8890 failure. */
8891
8892 static tree
8893 tsubst_friend_class (tree friend_tmpl, tree args)
8894 {
8895 tree friend_type;
8896 tree tmpl;
8897 tree context;
8898
8899 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
8900 {
8901 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
8902 return TREE_TYPE (t);
8903 }
8904
8905 context = CP_DECL_CONTEXT (friend_tmpl);
8906
8907 if (context != global_namespace)
8908 {
8909 if (TREE_CODE (context) == NAMESPACE_DECL)
8910 push_nested_namespace (context);
8911 else
8912 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
8913 }
8914
8915 /* Look for a class template declaration. We look for hidden names
8916 because two friend declarations of the same template are the
8917 same. For example, in:
8918
8919 struct A {
8920 template <typename> friend class F;
8921 };
8922 template <typename> struct B {
8923 template <typename> friend class F;
8924 };
8925
8926 both F templates are the same. */
8927 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
8928 /*block_p=*/true, 0, LOOKUP_HIDDEN);
8929
8930 /* But, if we don't find one, it might be because we're in a
8931 situation like this:
8932
8933 template <class T>
8934 struct S {
8935 template <class U>
8936 friend struct S;
8937 };
8938
8939 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
8940 for `S<int>', not the TEMPLATE_DECL. */
8941 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
8942 {
8943 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
8944 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
8945 }
8946
8947 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
8948 {
8949 /* The friend template has already been declared. Just
8950 check to see that the declarations match, and install any new
8951 default parameters. We must tsubst the default parameters,
8952 of course. We only need the innermost template parameters
8953 because that is all that redeclare_class_template will look
8954 at. */
8955 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
8956 > TMPL_ARGS_DEPTH (args))
8957 {
8958 tree parms;
8959 location_t saved_input_location;
8960 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
8961 args, tf_warning_or_error);
8962
8963 saved_input_location = input_location;
8964 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
8965 redeclare_class_template (TREE_TYPE (tmpl), parms);
8966 input_location = saved_input_location;
8967
8968 }
8969
8970 friend_type = TREE_TYPE (tmpl);
8971 }
8972 else
8973 {
8974 /* The friend template has not already been declared. In this
8975 case, the instantiation of the template class will cause the
8976 injection of this template into the global scope. */
8977 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
8978 if (tmpl == error_mark_node)
8979 return error_mark_node;
8980
8981 /* The new TMPL is not an instantiation of anything, so we
8982 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
8983 the new type because that is supposed to be the corresponding
8984 template decl, i.e., TMPL. */
8985 DECL_USE_TEMPLATE (tmpl) = 0;
8986 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
8987 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
8988 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
8989 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
8990
8991 /* Inject this template into the global scope. */
8992 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
8993 }
8994
8995 if (context != global_namespace)
8996 {
8997 if (TREE_CODE (context) == NAMESPACE_DECL)
8998 pop_nested_namespace (context);
8999 else
9000 pop_nested_class ();
9001 }
9002
9003 return friend_type;
9004 }
9005
9006 /* Returns zero if TYPE cannot be completed later due to circularity.
9007 Otherwise returns one. */
9008
9009 static int
9010 can_complete_type_without_circularity (tree type)
9011 {
9012 if (type == NULL_TREE || type == error_mark_node)
9013 return 0;
9014 else if (COMPLETE_TYPE_P (type))
9015 return 1;
9016 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
9017 return can_complete_type_without_circularity (TREE_TYPE (type));
9018 else if (CLASS_TYPE_P (type)
9019 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
9020 return 0;
9021 else
9022 return 1;
9023 }
9024
9025 static tree tsubst_omp_clauses (tree, bool, tree, tsubst_flags_t, tree);
9026
9027 /* Apply any attributes which had to be deferred until instantiation
9028 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
9029 ARGS, COMPLAIN, IN_DECL are as tsubst. */
9030
9031 static void
9032 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
9033 tree args, tsubst_flags_t complain, tree in_decl)
9034 {
9035 tree last_dep = NULL_TREE;
9036 tree t;
9037 tree *p;
9038
9039 for (t = attributes; t; t = TREE_CHAIN (t))
9040 if (ATTR_IS_DEPENDENT (t))
9041 {
9042 last_dep = t;
9043 attributes = copy_list (attributes);
9044 break;
9045 }
9046
9047 if (DECL_P (*decl_p))
9048 {
9049 if (TREE_TYPE (*decl_p) == error_mark_node)
9050 return;
9051 p = &DECL_ATTRIBUTES (*decl_p);
9052 }
9053 else
9054 p = &TYPE_ATTRIBUTES (*decl_p);
9055
9056 if (last_dep)
9057 {
9058 tree late_attrs = NULL_TREE;
9059 tree *q = &late_attrs;
9060
9061 for (*p = attributes; *p; )
9062 {
9063 t = *p;
9064 if (ATTR_IS_DEPENDENT (t))
9065 {
9066 *p = TREE_CHAIN (t);
9067 TREE_CHAIN (t) = NULL_TREE;
9068 if ((flag_openmp || flag_cilkplus)
9069 && is_attribute_p ("omp declare simd",
9070 get_attribute_name (t))
9071 && TREE_VALUE (t))
9072 {
9073 tree clauses = TREE_VALUE (TREE_VALUE (t));
9074 clauses = tsubst_omp_clauses (clauses, true, args,
9075 complain, in_decl);
9076 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
9077 clauses = finish_omp_clauses (clauses);
9078 tree parms = DECL_ARGUMENTS (*decl_p);
9079 clauses
9080 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
9081 if (clauses)
9082 TREE_VALUE (TREE_VALUE (t)) = clauses;
9083 else
9084 TREE_VALUE (t) = NULL_TREE;
9085 }
9086 /* If the first attribute argument is an identifier, don't
9087 pass it through tsubst. Attributes like mode, format,
9088 cleanup and several target specific attributes expect it
9089 unmodified. */
9090 else if (attribute_takes_identifier_p (get_attribute_name (t))
9091 && TREE_VALUE (t))
9092 {
9093 tree chain
9094 = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain,
9095 in_decl,
9096 /*integral_constant_expression_p=*/false);
9097 if (chain != TREE_CHAIN (TREE_VALUE (t)))
9098 TREE_VALUE (t)
9099 = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)),
9100 chain);
9101 }
9102 else if (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t)))
9103 {
9104 /* An attribute pack expansion. */
9105 tree purp = TREE_PURPOSE (t);
9106 tree pack = (tsubst_pack_expansion
9107 (TREE_VALUE (t), args, complain, in_decl));
9108 int len = TREE_VEC_LENGTH (pack);
9109 for (int i = 0; i < len; ++i)
9110 {
9111 tree elt = TREE_VEC_ELT (pack, i);
9112 *q = build_tree_list (purp, elt);
9113 q = &TREE_CHAIN (*q);
9114 }
9115 continue;
9116 }
9117 else
9118 TREE_VALUE (t)
9119 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
9120 /*integral_constant_expression_p=*/false);
9121 *q = t;
9122 q = &TREE_CHAIN (t);
9123 }
9124 else
9125 p = &TREE_CHAIN (t);
9126 }
9127
9128 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
9129 }
9130 }
9131
9132 /* Perform (or defer) access check for typedefs that were referenced
9133 from within the template TMPL code.
9134 This is a subroutine of instantiate_decl and instantiate_class_template.
9135 TMPL is the template to consider and TARGS is the list of arguments of
9136 that template. */
9137
9138 static void
9139 perform_typedefs_access_check (tree tmpl, tree targs)
9140 {
9141 location_t saved_location;
9142 unsigned i;
9143 qualified_typedef_usage_t *iter;
9144
9145 if (!tmpl
9146 || (!CLASS_TYPE_P (tmpl)
9147 && TREE_CODE (tmpl) != FUNCTION_DECL))
9148 return;
9149
9150 saved_location = input_location;
9151 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
9152 {
9153 tree type_decl = iter->typedef_decl;
9154 tree type_scope = iter->context;
9155
9156 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
9157 continue;
9158
9159 if (uses_template_parms (type_decl))
9160 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
9161 if (uses_template_parms (type_scope))
9162 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
9163
9164 /* Make access check error messages point to the location
9165 of the use of the typedef. */
9166 input_location = iter->locus;
9167 perform_or_defer_access_check (TYPE_BINFO (type_scope),
9168 type_decl, type_decl,
9169 tf_warning_or_error);
9170 }
9171 input_location = saved_location;
9172 }
9173
9174 static tree
9175 instantiate_class_template_1 (tree type)
9176 {
9177 tree templ, args, pattern, t, member;
9178 tree typedecl;
9179 tree pbinfo;
9180 tree base_list;
9181 unsigned int saved_maximum_field_alignment;
9182 tree fn_context;
9183
9184 if (type == error_mark_node)
9185 return error_mark_node;
9186
9187 if (COMPLETE_OR_OPEN_TYPE_P (type)
9188 || uses_template_parms (type))
9189 return type;
9190
9191 /* Figure out which template is being instantiated. */
9192 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
9193 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
9194
9195 /* Determine what specialization of the original template to
9196 instantiate. */
9197 t = most_specialized_partial_spec (type, tf_warning_or_error);
9198 if (t == error_mark_node)
9199 {
9200 TYPE_BEING_DEFINED (type) = 1;
9201 return error_mark_node;
9202 }
9203 else if (t)
9204 {
9205 /* This TYPE is actually an instantiation of a partial
9206 specialization. We replace the innermost set of ARGS with
9207 the arguments appropriate for substitution. For example,
9208 given:
9209
9210 template <class T> struct S {};
9211 template <class T> struct S<T*> {};
9212
9213 and supposing that we are instantiating S<int*>, ARGS will
9214 presently be {int*} -- but we need {int}. */
9215 pattern = TREE_TYPE (t);
9216 args = TREE_PURPOSE (t);
9217 }
9218 else
9219 {
9220 pattern = TREE_TYPE (templ);
9221 args = CLASSTYPE_TI_ARGS (type);
9222 }
9223
9224 /* If the template we're instantiating is incomplete, then clearly
9225 there's nothing we can do. */
9226 if (!COMPLETE_TYPE_P (pattern))
9227 return type;
9228
9229 /* If we've recursively instantiated too many templates, stop. */
9230 if (! push_tinst_level (type))
9231 return type;
9232
9233 /* Now we're really doing the instantiation. Mark the type as in
9234 the process of being defined. */
9235 TYPE_BEING_DEFINED (type) = 1;
9236
9237 /* We may be in the middle of deferred access check. Disable
9238 it now. */
9239 push_deferring_access_checks (dk_no_deferred);
9240
9241 int saved_unevaluated_operand = cp_unevaluated_operand;
9242 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
9243
9244 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
9245 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
9246 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
9247 fn_context = error_mark_node;
9248 if (!fn_context)
9249 push_to_top_level ();
9250 else
9251 {
9252 cp_unevaluated_operand = 0;
9253 c_inhibit_evaluation_warnings = 0;
9254 }
9255 /* Use #pragma pack from the template context. */
9256 saved_maximum_field_alignment = maximum_field_alignment;
9257 maximum_field_alignment = TYPE_PRECISION (pattern);
9258
9259 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
9260
9261 /* Set the input location to the most specialized template definition.
9262 This is needed if tsubsting causes an error. */
9263 typedecl = TYPE_MAIN_DECL (pattern);
9264 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
9265 DECL_SOURCE_LOCATION (typedecl);
9266
9267 TYPE_PACKED (type) = TYPE_PACKED (pattern);
9268 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
9269 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
9270 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
9271 if (ANON_AGGR_TYPE_P (pattern))
9272 SET_ANON_AGGR_TYPE_P (type);
9273 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
9274 {
9275 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
9276 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
9277 /* Adjust visibility for template arguments. */
9278 determine_visibility (TYPE_MAIN_DECL (type));
9279 }
9280 if (CLASS_TYPE_P (type))
9281 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
9282
9283 pbinfo = TYPE_BINFO (pattern);
9284
9285 /* We should never instantiate a nested class before its enclosing
9286 class; we need to look up the nested class by name before we can
9287 instantiate it, and that lookup should instantiate the enclosing
9288 class. */
9289 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
9290 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
9291
9292 base_list = NULL_TREE;
9293 if (BINFO_N_BASE_BINFOS (pbinfo))
9294 {
9295 tree pbase_binfo;
9296 tree pushed_scope;
9297 int i;
9298
9299 /* We must enter the scope containing the type, as that is where
9300 the accessibility of types named in dependent bases are
9301 looked up from. */
9302 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
9303
9304 /* Substitute into each of the bases to determine the actual
9305 basetypes. */
9306 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
9307 {
9308 tree base;
9309 tree access = BINFO_BASE_ACCESS (pbinfo, i);
9310 tree expanded_bases = NULL_TREE;
9311 int idx, len = 1;
9312
9313 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
9314 {
9315 expanded_bases =
9316 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
9317 args, tf_error, NULL_TREE);
9318 if (expanded_bases == error_mark_node)
9319 continue;
9320
9321 len = TREE_VEC_LENGTH (expanded_bases);
9322 }
9323
9324 for (idx = 0; idx < len; idx++)
9325 {
9326 if (expanded_bases)
9327 /* Extract the already-expanded base class. */
9328 base = TREE_VEC_ELT (expanded_bases, idx);
9329 else
9330 /* Substitute to figure out the base class. */
9331 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
9332 NULL_TREE);
9333
9334 if (base == error_mark_node)
9335 continue;
9336
9337 base_list = tree_cons (access, base, base_list);
9338 if (BINFO_VIRTUAL_P (pbase_binfo))
9339 TREE_TYPE (base_list) = integer_type_node;
9340 }
9341 }
9342
9343 /* The list is now in reverse order; correct that. */
9344 base_list = nreverse (base_list);
9345
9346 if (pushed_scope)
9347 pop_scope (pushed_scope);
9348 }
9349 /* Now call xref_basetypes to set up all the base-class
9350 information. */
9351 xref_basetypes (type, base_list);
9352
9353 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
9354 (int) ATTR_FLAG_TYPE_IN_PLACE,
9355 args, tf_error, NULL_TREE);
9356 fixup_attribute_variants (type);
9357
9358 /* Now that our base classes are set up, enter the scope of the
9359 class, so that name lookups into base classes, etc. will work
9360 correctly. This is precisely analogous to what we do in
9361 begin_class_definition when defining an ordinary non-template
9362 class, except we also need to push the enclosing classes. */
9363 push_nested_class (type);
9364
9365 /* Now members are processed in the order of declaration. */
9366 for (member = CLASSTYPE_DECL_LIST (pattern);
9367 member; member = TREE_CHAIN (member))
9368 {
9369 tree t = TREE_VALUE (member);
9370
9371 if (TREE_PURPOSE (member))
9372 {
9373 if (TYPE_P (t))
9374 {
9375 /* Build new CLASSTYPE_NESTED_UTDS. */
9376
9377 tree newtag;
9378 bool class_template_p;
9379
9380 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
9381 && TYPE_LANG_SPECIFIC (t)
9382 && CLASSTYPE_IS_TEMPLATE (t));
9383 /* If the member is a class template, then -- even after
9384 substitution -- there may be dependent types in the
9385 template argument list for the class. We increment
9386 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
9387 that function will assume that no types are dependent
9388 when outside of a template. */
9389 if (class_template_p)
9390 ++processing_template_decl;
9391 newtag = tsubst (t, args, tf_error, NULL_TREE);
9392 if (class_template_p)
9393 --processing_template_decl;
9394 if (newtag == error_mark_node)
9395 continue;
9396
9397 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
9398 {
9399 tree name = TYPE_IDENTIFIER (t);
9400
9401 if (class_template_p)
9402 /* Unfortunately, lookup_template_class sets
9403 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
9404 instantiation (i.e., for the type of a member
9405 template class nested within a template class.)
9406 This behavior is required for
9407 maybe_process_partial_specialization to work
9408 correctly, but is not accurate in this case;
9409 the TAG is not an instantiation of anything.
9410 (The corresponding TEMPLATE_DECL is an
9411 instantiation, but the TYPE is not.) */
9412 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
9413
9414 /* Now, we call pushtag to put this NEWTAG into the scope of
9415 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
9416 pushtag calling push_template_decl. We don't have to do
9417 this for enums because it will already have been done in
9418 tsubst_enum. */
9419 if (name)
9420 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
9421 pushtag (name, newtag, /*tag_scope=*/ts_current);
9422 }
9423 }
9424 else if (DECL_DECLARES_FUNCTION_P (t))
9425 {
9426 /* Build new TYPE_METHODS. */
9427 tree r;
9428
9429 if (TREE_CODE (t) == TEMPLATE_DECL)
9430 ++processing_template_decl;
9431 r = tsubst (t, args, tf_error, NULL_TREE);
9432 if (TREE_CODE (t) == TEMPLATE_DECL)
9433 --processing_template_decl;
9434 set_current_access_from_decl (r);
9435 finish_member_declaration (r);
9436 /* Instantiate members marked with attribute used. */
9437 if (r != error_mark_node && DECL_PRESERVE_P (r))
9438 mark_used (r);
9439 if (TREE_CODE (r) == FUNCTION_DECL
9440 && DECL_OMP_DECLARE_REDUCTION_P (r))
9441 cp_check_omp_declare_reduction (r);
9442 }
9443 else if (DECL_CLASS_TEMPLATE_P (t)
9444 && LAMBDA_TYPE_P (TREE_TYPE (t)))
9445 /* A closure type for a lambda in a default argument for a
9446 member template. Ignore it; it will be instantiated with
9447 the default argument. */;
9448 else
9449 {
9450 /* Build new TYPE_FIELDS. */
9451 if (TREE_CODE (t) == STATIC_ASSERT)
9452 {
9453 tree condition;
9454
9455 ++c_inhibit_evaluation_warnings;
9456 condition =
9457 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
9458 tf_warning_or_error, NULL_TREE,
9459 /*integral_constant_expression_p=*/true);
9460 --c_inhibit_evaluation_warnings;
9461
9462 finish_static_assert (condition,
9463 STATIC_ASSERT_MESSAGE (t),
9464 STATIC_ASSERT_SOURCE_LOCATION (t),
9465 /*member_p=*/true);
9466 }
9467 else if (TREE_CODE (t) != CONST_DECL)
9468 {
9469 tree r;
9470 tree vec = NULL_TREE;
9471 int len = 1;
9472
9473 /* The file and line for this declaration, to
9474 assist in error message reporting. Since we
9475 called push_tinst_level above, we don't need to
9476 restore these. */
9477 input_location = DECL_SOURCE_LOCATION (t);
9478
9479 if (TREE_CODE (t) == TEMPLATE_DECL)
9480 ++processing_template_decl;
9481 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
9482 if (TREE_CODE (t) == TEMPLATE_DECL)
9483 --processing_template_decl;
9484
9485 if (TREE_CODE (r) == TREE_VEC)
9486 {
9487 /* A capture pack became multiple fields. */
9488 vec = r;
9489 len = TREE_VEC_LENGTH (vec);
9490 }
9491
9492 for (int i = 0; i < len; ++i)
9493 {
9494 if (vec)
9495 r = TREE_VEC_ELT (vec, i);
9496 if (VAR_P (r))
9497 {
9498 /* In [temp.inst]:
9499
9500 [t]he initialization (and any associated
9501 side-effects) of a static data member does
9502 not occur unless the static data member is
9503 itself used in a way that requires the
9504 definition of the static data member to
9505 exist.
9506
9507 Therefore, we do not substitute into the
9508 initialized for the static data member here. */
9509 finish_static_data_member_decl
9510 (r,
9511 /*init=*/NULL_TREE,
9512 /*init_const_expr_p=*/false,
9513 /*asmspec_tree=*/NULL_TREE,
9514 /*flags=*/0);
9515 /* Instantiate members marked with attribute used. */
9516 if (r != error_mark_node && DECL_PRESERVE_P (r))
9517 mark_used (r);
9518 }
9519 else if (TREE_CODE (r) == FIELD_DECL)
9520 {
9521 /* Determine whether R has a valid type and can be
9522 completed later. If R is invalid, then its type
9523 is replaced by error_mark_node. */
9524 tree rtype = TREE_TYPE (r);
9525 if (can_complete_type_without_circularity (rtype))
9526 complete_type (rtype);
9527
9528 if (!COMPLETE_TYPE_P (rtype))
9529 {
9530 cxx_incomplete_type_error (r, rtype);
9531 TREE_TYPE (r) = error_mark_node;
9532 }
9533 }
9534
9535 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
9536 such a thing will already have been added to the field
9537 list by tsubst_enum in finish_member_declaration in the
9538 CLASSTYPE_NESTED_UTDS case above. */
9539 if (!(TREE_CODE (r) == TYPE_DECL
9540 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
9541 && DECL_ARTIFICIAL (r)))
9542 {
9543 set_current_access_from_decl (r);
9544 finish_member_declaration (r);
9545 }
9546 }
9547 }
9548 }
9549 }
9550 else
9551 {
9552 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
9553 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
9554 {
9555 /* Build new CLASSTYPE_FRIEND_CLASSES. */
9556
9557 tree friend_type = t;
9558 bool adjust_processing_template_decl = false;
9559
9560 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
9561 {
9562 /* template <class T> friend class C; */
9563 friend_type = tsubst_friend_class (friend_type, args);
9564 adjust_processing_template_decl = true;
9565 }
9566 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
9567 {
9568 /* template <class T> friend class C::D; */
9569 friend_type = tsubst (friend_type, args,
9570 tf_warning_or_error, NULL_TREE);
9571 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
9572 friend_type = TREE_TYPE (friend_type);
9573 adjust_processing_template_decl = true;
9574 }
9575 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
9576 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
9577 {
9578 /* This could be either
9579
9580 friend class T::C;
9581
9582 when dependent_type_p is false or
9583
9584 template <class U> friend class T::C;
9585
9586 otherwise. */
9587 friend_type = tsubst (friend_type, args,
9588 tf_warning_or_error, NULL_TREE);
9589 /* Bump processing_template_decl for correct
9590 dependent_type_p calculation. */
9591 ++processing_template_decl;
9592 if (dependent_type_p (friend_type))
9593 adjust_processing_template_decl = true;
9594 --processing_template_decl;
9595 }
9596 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
9597 && hidden_name_p (TYPE_NAME (friend_type)))
9598 {
9599 /* friend class C;
9600
9601 where C hasn't been declared yet. Let's lookup name
9602 from namespace scope directly, bypassing any name that
9603 come from dependent base class. */
9604 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
9605
9606 /* The call to xref_tag_from_type does injection for friend
9607 classes. */
9608 push_nested_namespace (ns);
9609 friend_type =
9610 xref_tag_from_type (friend_type, NULL_TREE,
9611 /*tag_scope=*/ts_current);
9612 pop_nested_namespace (ns);
9613 }
9614 else if (uses_template_parms (friend_type))
9615 /* friend class C<T>; */
9616 friend_type = tsubst (friend_type, args,
9617 tf_warning_or_error, NULL_TREE);
9618 /* Otherwise it's
9619
9620 friend class C;
9621
9622 where C is already declared or
9623
9624 friend class C<int>;
9625
9626 We don't have to do anything in these cases. */
9627
9628 if (adjust_processing_template_decl)
9629 /* Trick make_friend_class into realizing that the friend
9630 we're adding is a template, not an ordinary class. It's
9631 important that we use make_friend_class since it will
9632 perform some error-checking and output cross-reference
9633 information. */
9634 ++processing_template_decl;
9635
9636 if (friend_type != error_mark_node)
9637 make_friend_class (type, friend_type, /*complain=*/false);
9638
9639 if (adjust_processing_template_decl)
9640 --processing_template_decl;
9641 }
9642 else
9643 {
9644 /* Build new DECL_FRIENDLIST. */
9645 tree r;
9646
9647 /* The file and line for this declaration, to
9648 assist in error message reporting. Since we
9649 called push_tinst_level above, we don't need to
9650 restore these. */
9651 input_location = DECL_SOURCE_LOCATION (t);
9652
9653 if (TREE_CODE (t) == TEMPLATE_DECL)
9654 {
9655 ++processing_template_decl;
9656 push_deferring_access_checks (dk_no_check);
9657 }
9658
9659 r = tsubst_friend_function (t, args);
9660 add_friend (type, r, /*complain=*/false);
9661 if (TREE_CODE (t) == TEMPLATE_DECL)
9662 {
9663 pop_deferring_access_checks ();
9664 --processing_template_decl;
9665 }
9666 }
9667 }
9668 }
9669
9670 if (fn_context)
9671 {
9672 /* Restore these before substituting into the lambda capture
9673 initializers. */
9674 cp_unevaluated_operand = saved_unevaluated_operand;
9675 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
9676 }
9677
9678 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
9679 {
9680 tree decl = lambda_function (type);
9681 if (decl)
9682 {
9683 if (!DECL_TEMPLATE_INFO (decl)
9684 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
9685 instantiate_decl (decl, false, false);
9686
9687 /* We need to instantiate the capture list from the template
9688 after we've instantiated the closure members, but before we
9689 consider adding the conversion op. Also keep any captures
9690 that may have been added during instantiation of the op(). */
9691 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
9692 tree tmpl_cap
9693 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
9694 args, tf_warning_or_error, NULL_TREE,
9695 false, false);
9696
9697 LAMBDA_EXPR_CAPTURE_LIST (expr)
9698 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
9699
9700 maybe_add_lambda_conv_op (type);
9701 }
9702 else
9703 gcc_assert (errorcount);
9704 }
9705
9706 /* Set the file and line number information to whatever is given for
9707 the class itself. This puts error messages involving generated
9708 implicit functions at a predictable point, and the same point
9709 that would be used for non-template classes. */
9710 input_location = DECL_SOURCE_LOCATION (typedecl);
9711
9712 unreverse_member_declarations (type);
9713 finish_struct_1 (type);
9714 TYPE_BEING_DEFINED (type) = 0;
9715
9716 /* We don't instantiate default arguments for member functions. 14.7.1:
9717
9718 The implicit instantiation of a class template specialization causes
9719 the implicit instantiation of the declarations, but not of the
9720 definitions or default arguments, of the class member functions,
9721 member classes, static data members and member templates.... */
9722
9723 /* Some typedefs referenced from within the template code need to be access
9724 checked at template instantiation time, i.e now. These types were
9725 added to the template at parsing time. Let's get those and perform
9726 the access checks then. */
9727 perform_typedefs_access_check (pattern, args);
9728 perform_deferred_access_checks (tf_warning_or_error);
9729 pop_nested_class ();
9730 maximum_field_alignment = saved_maximum_field_alignment;
9731 if (!fn_context)
9732 pop_from_top_level ();
9733 pop_deferring_access_checks ();
9734 pop_tinst_level ();
9735
9736 /* The vtable for a template class can be emitted in any translation
9737 unit in which the class is instantiated. When there is no key
9738 method, however, finish_struct_1 will already have added TYPE to
9739 the keyed_classes list. */
9740 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
9741 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
9742
9743 return type;
9744 }
9745
9746 /* Wrapper for instantiate_class_template_1. */
9747
9748 tree
9749 instantiate_class_template (tree type)
9750 {
9751 tree ret;
9752 timevar_push (TV_TEMPLATE_INST);
9753 ret = instantiate_class_template_1 (type);
9754 timevar_pop (TV_TEMPLATE_INST);
9755 return ret;
9756 }
9757
9758 static tree
9759 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9760 {
9761 tree r;
9762
9763 if (!t)
9764 r = t;
9765 else if (TYPE_P (t))
9766 r = tsubst (t, args, complain, in_decl);
9767 else
9768 {
9769 if (!(complain & tf_warning))
9770 ++c_inhibit_evaluation_warnings;
9771 r = tsubst_expr (t, args, complain, in_decl,
9772 /*integral_constant_expression_p=*/true);
9773 if (!(complain & tf_warning))
9774 --c_inhibit_evaluation_warnings;
9775 }
9776 return r;
9777 }
9778
9779 /* Given a function parameter pack TMPL_PARM and some function parameters
9780 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
9781 and set *SPEC_P to point at the next point in the list. */
9782
9783 static tree
9784 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
9785 {
9786 /* Collect all of the extra "packed" parameters into an
9787 argument pack. */
9788 tree parmvec;
9789 tree parmtypevec;
9790 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
9791 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
9792 tree spec_parm = *spec_p;
9793 int i, len;
9794
9795 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
9796 if (tmpl_parm
9797 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
9798 break;
9799
9800 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
9801 parmvec = make_tree_vec (len);
9802 parmtypevec = make_tree_vec (len);
9803 spec_parm = *spec_p;
9804 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
9805 {
9806 TREE_VEC_ELT (parmvec, i) = spec_parm;
9807 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
9808 }
9809
9810 /* Build the argument packs. */
9811 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
9812 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
9813 TREE_TYPE (argpack) = argtypepack;
9814 *spec_p = spec_parm;
9815
9816 return argpack;
9817 }
9818
9819 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
9820 NONTYPE_ARGUMENT_PACK. */
9821
9822 static tree
9823 make_fnparm_pack (tree spec_parm)
9824 {
9825 return extract_fnparm_pack (NULL_TREE, &spec_parm);
9826 }
9827
9828 /* Return 1 if the Ith element of the argument pack ARG_PACK is a
9829 pack expansion with no extra args, 2 if it has extra args, or 0
9830 if it is not a pack expansion. */
9831
9832 static int
9833 argument_pack_element_is_expansion_p (tree arg_pack, int i)
9834 {
9835 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
9836 if (i >= TREE_VEC_LENGTH (vec))
9837 return 0;
9838 tree elt = TREE_VEC_ELT (vec, i);
9839 if (!PACK_EXPANSION_P (elt))
9840 return 0;
9841 if (PACK_EXPANSION_EXTRA_ARGS (elt))
9842 return 2;
9843 return 1;
9844 }
9845
9846
9847 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
9848
9849 static tree
9850 make_argument_pack_select (tree arg_pack, unsigned index)
9851 {
9852 tree aps = make_node (ARGUMENT_PACK_SELECT);
9853
9854 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
9855 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
9856
9857 return aps;
9858 }
9859
9860 /* This is a subroutine of tsubst_pack_expansion.
9861
9862 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
9863 mechanism to store the (non complete list of) arguments of the
9864 substitution and return a non substituted pack expansion, in order
9865 to wait for when we have enough arguments to really perform the
9866 substitution. */
9867
9868 static bool
9869 use_pack_expansion_extra_args_p (tree parm_packs,
9870 int arg_pack_len,
9871 bool has_empty_arg)
9872 {
9873 /* If one pack has an expansion and another pack has a normal
9874 argument or if one pack has an empty argument and an another
9875 one hasn't then tsubst_pack_expansion cannot perform the
9876 substitution and need to fall back on the
9877 PACK_EXPANSION_EXTRA mechanism. */
9878 if (parm_packs == NULL_TREE)
9879 return false;
9880 else if (has_empty_arg)
9881 return true;
9882
9883 bool has_expansion_arg = false;
9884 for (int i = 0 ; i < arg_pack_len; ++i)
9885 {
9886 bool has_non_expansion_arg = false;
9887 for (tree parm_pack = parm_packs;
9888 parm_pack;
9889 parm_pack = TREE_CHAIN (parm_pack))
9890 {
9891 tree arg = TREE_VALUE (parm_pack);
9892
9893 int exp = argument_pack_element_is_expansion_p (arg, i);
9894 if (exp == 2)
9895 /* We can't substitute a pack expansion with extra args into
9896 our pattern. */
9897 return true;
9898 else if (exp)
9899 has_expansion_arg = true;
9900 else
9901 has_non_expansion_arg = true;
9902 }
9903
9904 if (has_expansion_arg && has_non_expansion_arg)
9905 return true;
9906 }
9907 return false;
9908 }
9909
9910 /* [temp.variadic]/6 says that:
9911
9912 The instantiation of a pack expansion [...]
9913 produces a list E1,E2, ..., En, where N is the number of elements
9914 in the pack expansion parameters.
9915
9916 This subroutine of tsubst_pack_expansion produces one of these Ei.
9917
9918 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
9919 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
9920 PATTERN, and each TREE_VALUE is its corresponding argument pack.
9921 INDEX is the index 'i' of the element Ei to produce. ARGS,
9922 COMPLAIN, and IN_DECL are the same parameters as for the
9923 tsubst_pack_expansion function.
9924
9925 The function returns the resulting Ei upon successful completion,
9926 or error_mark_node.
9927
9928 Note that this function possibly modifies the ARGS parameter, so
9929 it's the responsibility of the caller to restore it. */
9930
9931 static tree
9932 gen_elem_of_pack_expansion_instantiation (tree pattern,
9933 tree parm_packs,
9934 unsigned index,
9935 tree args /* This parm gets
9936 modified. */,
9937 tsubst_flags_t complain,
9938 tree in_decl)
9939 {
9940 tree t;
9941 bool ith_elem_is_expansion = false;
9942
9943 /* For each parameter pack, change the substitution of the parameter
9944 pack to the ith argument in its argument pack, then expand the
9945 pattern. */
9946 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
9947 {
9948 tree parm = TREE_PURPOSE (pack);
9949 tree arg_pack = TREE_VALUE (pack);
9950 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
9951
9952 ith_elem_is_expansion |=
9953 argument_pack_element_is_expansion_p (arg_pack, index);
9954
9955 /* Select the Ith argument from the pack. */
9956 if (TREE_CODE (parm) == PARM_DECL
9957 || TREE_CODE (parm) == FIELD_DECL)
9958 {
9959 if (index == 0)
9960 {
9961 aps = make_argument_pack_select (arg_pack, index);
9962 if (!mark_used (parm, complain) && !(complain & tf_error))
9963 return error_mark_node;
9964 register_local_specialization (aps, parm);
9965 }
9966 else
9967 aps = retrieve_local_specialization (parm);
9968 }
9969 else
9970 {
9971 int idx, level;
9972 template_parm_level_and_index (parm, &level, &idx);
9973
9974 if (index == 0)
9975 {
9976 aps = make_argument_pack_select (arg_pack, index);
9977 /* Update the corresponding argument. */
9978 TMPL_ARG (args, level, idx) = aps;
9979 }
9980 else
9981 /* Re-use the ARGUMENT_PACK_SELECT. */
9982 aps = TMPL_ARG (args, level, idx);
9983 }
9984 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
9985 }
9986
9987 /* Substitute into the PATTERN with the (possibly altered)
9988 arguments. */
9989 if (pattern == in_decl)
9990 /* Expanding a fixed parameter pack from
9991 coerce_template_parameter_pack. */
9992 t = tsubst_decl (pattern, args, complain);
9993 else if (!TYPE_P (pattern))
9994 t = tsubst_expr (pattern, args, complain, in_decl,
9995 /*integral_constant_expression_p=*/false);
9996 else
9997 t = tsubst (pattern, args, complain, in_decl);
9998
9999 /* If the Ith argument pack element is a pack expansion, then
10000 the Ith element resulting from the substituting is going to
10001 be a pack expansion as well. */
10002 if (ith_elem_is_expansion)
10003 t = make_pack_expansion (t);
10004
10005 return t;
10006 }
10007
10008 /* Substitute ARGS into T, which is an pack expansion
10009 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
10010 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
10011 (if only a partial substitution could be performed) or
10012 ERROR_MARK_NODE if there was an error. */
10013 tree
10014 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
10015 tree in_decl)
10016 {
10017 tree pattern;
10018 tree pack, packs = NULL_TREE;
10019 bool unsubstituted_packs = false;
10020 int i, len = -1;
10021 tree result;
10022 hash_map<tree, tree> *saved_local_specializations = NULL;
10023 bool need_local_specializations = false;
10024 int levels;
10025
10026 gcc_assert (PACK_EXPANSION_P (t));
10027 pattern = PACK_EXPANSION_PATTERN (t);
10028
10029 /* Add in any args remembered from an earlier partial instantiation. */
10030 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
10031
10032 levels = TMPL_ARGS_DEPTH (args);
10033
10034 /* Determine the argument packs that will instantiate the parameter
10035 packs used in the expansion expression. While we're at it,
10036 compute the number of arguments to be expanded and make sure it
10037 is consistent. */
10038 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
10039 pack = TREE_CHAIN (pack))
10040 {
10041 tree parm_pack = TREE_VALUE (pack);
10042 tree arg_pack = NULL_TREE;
10043 tree orig_arg = NULL_TREE;
10044 int level = 0;
10045
10046 if (TREE_CODE (parm_pack) == BASES)
10047 {
10048 if (BASES_DIRECT (parm_pack))
10049 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
10050 args, complain, in_decl, false));
10051 else
10052 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
10053 args, complain, in_decl, false));
10054 }
10055 if (TREE_CODE (parm_pack) == PARM_DECL)
10056 {
10057 if (PACK_EXPANSION_LOCAL_P (t))
10058 arg_pack = retrieve_local_specialization (parm_pack);
10059 else
10060 {
10061 /* We can't rely on local_specializations for a parameter
10062 name used later in a function declaration (such as in a
10063 late-specified return type). Even if it exists, it might
10064 have the wrong value for a recursive call. Just make a
10065 dummy decl, since it's only used for its type. */
10066 arg_pack = tsubst_decl (parm_pack, args, complain);
10067 if (arg_pack && DECL_PACK_P (arg_pack))
10068 /* Partial instantiation of the parm_pack, we can't build
10069 up an argument pack yet. */
10070 arg_pack = NULL_TREE;
10071 else
10072 arg_pack = make_fnparm_pack (arg_pack);
10073 need_local_specializations = true;
10074 }
10075 }
10076 else if (TREE_CODE (parm_pack) == FIELD_DECL)
10077 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
10078 else
10079 {
10080 int idx;
10081 template_parm_level_and_index (parm_pack, &level, &idx);
10082
10083 if (level <= levels)
10084 arg_pack = TMPL_ARG (args, level, idx);
10085 }
10086
10087 orig_arg = arg_pack;
10088 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
10089 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
10090
10091 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
10092 /* This can only happen if we forget to expand an argument
10093 pack somewhere else. Just return an error, silently. */
10094 {
10095 result = make_tree_vec (1);
10096 TREE_VEC_ELT (result, 0) = error_mark_node;
10097 return result;
10098 }
10099
10100 if (arg_pack)
10101 {
10102 int my_len =
10103 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
10104
10105 /* Don't bother trying to do a partial substitution with
10106 incomplete packs; we'll try again after deduction. */
10107 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
10108 return t;
10109
10110 if (len < 0)
10111 len = my_len;
10112 else if (len != my_len)
10113 {
10114 if (!(complain & tf_error))
10115 /* Fail quietly. */;
10116 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
10117 error ("mismatched argument pack lengths while expanding "
10118 "%<%T%>",
10119 pattern);
10120 else
10121 error ("mismatched argument pack lengths while expanding "
10122 "%<%E%>",
10123 pattern);
10124 return error_mark_node;
10125 }
10126
10127 /* Keep track of the parameter packs and their corresponding
10128 argument packs. */
10129 packs = tree_cons (parm_pack, arg_pack, packs);
10130 TREE_TYPE (packs) = orig_arg;
10131 }
10132 else
10133 {
10134 /* We can't substitute for this parameter pack. We use a flag as
10135 well as the missing_level counter because function parameter
10136 packs don't have a level. */
10137 unsubstituted_packs = true;
10138 }
10139 }
10140
10141 /* If the expansion is just T..., return the matching argument pack. */
10142 if (!unsubstituted_packs
10143 && TREE_PURPOSE (packs) == pattern)
10144 {
10145 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
10146 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
10147 || pack_expansion_args_count (args))
10148 return args;
10149 /* Otherwise use the normal path so we get convert_from_reference. */
10150 }
10151
10152 /* We cannot expand this expansion expression, because we don't have
10153 all of the argument packs we need. */
10154 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
10155 {
10156 /* We got some full packs, but we can't substitute them in until we
10157 have values for all the packs. So remember these until then. */
10158
10159 t = make_pack_expansion (pattern);
10160 PACK_EXPANSION_EXTRA_ARGS (t) = args;
10161 return t;
10162 }
10163 else if (unsubstituted_packs)
10164 {
10165 /* There were no real arguments, we're just replacing a parameter
10166 pack with another version of itself. Substitute into the
10167 pattern and return a PACK_EXPANSION_*. The caller will need to
10168 deal with that. */
10169 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
10170 t = tsubst_expr (pattern, args, complain, in_decl,
10171 /*integral_constant_expression_p=*/false);
10172 else
10173 t = tsubst (pattern, args, complain, in_decl);
10174 t = make_pack_expansion (t);
10175 return t;
10176 }
10177
10178 gcc_assert (len >= 0);
10179
10180 if (need_local_specializations)
10181 {
10182 /* We're in a late-specified return type, so create our own local
10183 specializations map; the current map is either NULL or (in the
10184 case of recursive unification) might have bindings that we don't
10185 want to use or alter. */
10186 saved_local_specializations = local_specializations;
10187 local_specializations = new hash_map<tree, tree>;
10188 }
10189
10190 /* For each argument in each argument pack, substitute into the
10191 pattern. */
10192 result = make_tree_vec (len);
10193 for (i = 0; i < len; ++i)
10194 {
10195 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
10196 i,
10197 args, complain,
10198 in_decl);
10199 TREE_VEC_ELT (result, i) = t;
10200 if (t == error_mark_node)
10201 {
10202 result = error_mark_node;
10203 break;
10204 }
10205 }
10206
10207 /* Update ARGS to restore the substitution from parameter packs to
10208 their argument packs. */
10209 for (pack = packs; pack; pack = TREE_CHAIN (pack))
10210 {
10211 tree parm = TREE_PURPOSE (pack);
10212
10213 if (TREE_CODE (parm) == PARM_DECL
10214 || TREE_CODE (parm) == FIELD_DECL)
10215 register_local_specialization (TREE_TYPE (pack), parm);
10216 else
10217 {
10218 int idx, level;
10219
10220 if (TREE_VALUE (pack) == NULL_TREE)
10221 continue;
10222
10223 template_parm_level_and_index (parm, &level, &idx);
10224
10225 /* Update the corresponding argument. */
10226 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
10227 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
10228 TREE_TYPE (pack);
10229 else
10230 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
10231 }
10232 }
10233
10234 if (need_local_specializations)
10235 {
10236 delete local_specializations;
10237 local_specializations = saved_local_specializations;
10238 }
10239
10240 return result;
10241 }
10242
10243 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
10244 TMPL. We do this using DECL_PARM_INDEX, which should work even with
10245 parameter packs; all parms generated from a function parameter pack will
10246 have the same DECL_PARM_INDEX. */
10247
10248 tree
10249 get_pattern_parm (tree parm, tree tmpl)
10250 {
10251 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
10252 tree patparm;
10253
10254 if (DECL_ARTIFICIAL (parm))
10255 {
10256 for (patparm = DECL_ARGUMENTS (pattern);
10257 patparm; patparm = DECL_CHAIN (patparm))
10258 if (DECL_ARTIFICIAL (patparm)
10259 && DECL_NAME (parm) == DECL_NAME (patparm))
10260 break;
10261 }
10262 else
10263 {
10264 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
10265 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
10266 gcc_assert (DECL_PARM_INDEX (patparm)
10267 == DECL_PARM_INDEX (parm));
10268 }
10269
10270 return patparm;
10271 }
10272
10273 /* Substitute ARGS into the vector or list of template arguments T. */
10274
10275 static tree
10276 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10277 {
10278 tree orig_t = t;
10279 int len, need_new = 0, i, expanded_len_adjust = 0, out;
10280 tree *elts;
10281
10282 if (t == error_mark_node)
10283 return error_mark_node;
10284
10285 len = TREE_VEC_LENGTH (t);
10286 elts = XALLOCAVEC (tree, len);
10287
10288 for (i = 0; i < len; i++)
10289 {
10290 tree orig_arg = TREE_VEC_ELT (t, i);
10291 tree new_arg;
10292
10293 if (TREE_CODE (orig_arg) == TREE_VEC)
10294 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
10295 else if (PACK_EXPANSION_P (orig_arg))
10296 {
10297 /* Substitute into an expansion expression. */
10298 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
10299
10300 if (TREE_CODE (new_arg) == TREE_VEC)
10301 /* Add to the expanded length adjustment the number of
10302 expanded arguments. We subtract one from this
10303 measurement, because the argument pack expression
10304 itself is already counted as 1 in
10305 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
10306 the argument pack is empty. */
10307 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
10308 }
10309 else if (ARGUMENT_PACK_P (orig_arg))
10310 {
10311 /* Substitute into each of the arguments. */
10312 new_arg = TYPE_P (orig_arg)
10313 ? cxx_make_type (TREE_CODE (orig_arg))
10314 : make_node (TREE_CODE (orig_arg));
10315
10316 SET_ARGUMENT_PACK_ARGS (
10317 new_arg,
10318 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
10319 args, complain, in_decl));
10320
10321 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
10322 new_arg = error_mark_node;
10323
10324 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
10325 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
10326 complain, in_decl);
10327 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
10328
10329 if (TREE_TYPE (new_arg) == error_mark_node)
10330 new_arg = error_mark_node;
10331 }
10332 }
10333 else
10334 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
10335
10336 if (new_arg == error_mark_node)
10337 return error_mark_node;
10338
10339 elts[i] = new_arg;
10340 if (new_arg != orig_arg)
10341 need_new = 1;
10342 }
10343
10344 if (!need_new)
10345 return t;
10346
10347 /* Make space for the expanded arguments coming from template
10348 argument packs. */
10349 t = make_tree_vec (len + expanded_len_adjust);
10350 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
10351 arguments for a member template.
10352 In that case each TREE_VEC in ORIG_T represents a level of template
10353 arguments, and ORIG_T won't carry any non defaulted argument count.
10354 It will rather be the nested TREE_VECs that will carry one.
10355 In other words, ORIG_T carries a non defaulted argument count only
10356 if it doesn't contain any nested TREE_VEC. */
10357 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
10358 {
10359 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
10360 count += expanded_len_adjust;
10361 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
10362 }
10363 for (i = 0, out = 0; i < len; i++)
10364 {
10365 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
10366 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
10367 && TREE_CODE (elts[i]) == TREE_VEC)
10368 {
10369 int idx;
10370
10371 /* Now expand the template argument pack "in place". */
10372 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
10373 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
10374 }
10375 else
10376 {
10377 TREE_VEC_ELT (t, out) = elts[i];
10378 out++;
10379 }
10380 }
10381
10382 return t;
10383 }
10384
10385 /* Return the result of substituting ARGS into the template parameters
10386 given by PARMS. If there are m levels of ARGS and m + n levels of
10387 PARMS, then the result will contain n levels of PARMS. For
10388 example, if PARMS is `template <class T> template <class U>
10389 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
10390 result will be `template <int*, double, class V>'. */
10391
10392 static tree
10393 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
10394 {
10395 tree r = NULL_TREE;
10396 tree* new_parms;
10397
10398 /* When substituting into a template, we must set
10399 PROCESSING_TEMPLATE_DECL as the template parameters may be
10400 dependent if they are based on one-another, and the dependency
10401 predicates are short-circuit outside of templates. */
10402 ++processing_template_decl;
10403
10404 for (new_parms = &r;
10405 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
10406 new_parms = &(TREE_CHAIN (*new_parms)),
10407 parms = TREE_CHAIN (parms))
10408 {
10409 tree new_vec =
10410 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
10411 int i;
10412
10413 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
10414 {
10415 tree tuple;
10416
10417 if (parms == error_mark_node)
10418 continue;
10419
10420 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
10421
10422 if (tuple == error_mark_node)
10423 continue;
10424
10425 TREE_VEC_ELT (new_vec, i) =
10426 tsubst_template_parm (tuple, args, complain);
10427 }
10428
10429 *new_parms =
10430 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
10431 - TMPL_ARGS_DEPTH (args)),
10432 new_vec, NULL_TREE);
10433 }
10434
10435 --processing_template_decl;
10436
10437 return r;
10438 }
10439
10440 /* Return the result of substituting ARGS into one template parameter
10441 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
10442 parameter and which TREE_PURPOSE is the default argument of the
10443 template parameter. */
10444
10445 static tree
10446 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
10447 {
10448 tree default_value, parm_decl;
10449
10450 if (args == NULL_TREE
10451 || t == NULL_TREE
10452 || t == error_mark_node)
10453 return t;
10454
10455 gcc_assert (TREE_CODE (t) == TREE_LIST);
10456
10457 default_value = TREE_PURPOSE (t);
10458 parm_decl = TREE_VALUE (t);
10459
10460 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
10461 if (TREE_CODE (parm_decl) == PARM_DECL
10462 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
10463 parm_decl = error_mark_node;
10464 default_value = tsubst_template_arg (default_value, args,
10465 complain, NULL_TREE);
10466
10467 return build_tree_list (default_value, parm_decl);
10468 }
10469
10470 /* Substitute the ARGS into the indicated aggregate (or enumeration)
10471 type T. If T is not an aggregate or enumeration type, it is
10472 handled as if by tsubst. IN_DECL is as for tsubst. If
10473 ENTERING_SCOPE is nonzero, T is the context for a template which
10474 we are presently tsubst'ing. Return the substituted value. */
10475
10476 static tree
10477 tsubst_aggr_type (tree t,
10478 tree args,
10479 tsubst_flags_t complain,
10480 tree in_decl,
10481 int entering_scope)
10482 {
10483 if (t == NULL_TREE)
10484 return NULL_TREE;
10485
10486 switch (TREE_CODE (t))
10487 {
10488 case RECORD_TYPE:
10489 if (TYPE_PTRMEMFUNC_P (t))
10490 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
10491
10492 /* Else fall through. */
10493 case ENUMERAL_TYPE:
10494 case UNION_TYPE:
10495 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
10496 {
10497 tree argvec;
10498 tree context;
10499 tree r;
10500 int saved_unevaluated_operand;
10501 int saved_inhibit_evaluation_warnings;
10502
10503 /* In "sizeof(X<I>)" we need to evaluate "I". */
10504 saved_unevaluated_operand = cp_unevaluated_operand;
10505 cp_unevaluated_operand = 0;
10506 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
10507 c_inhibit_evaluation_warnings = 0;
10508
10509 /* First, determine the context for the type we are looking
10510 up. */
10511 context = TYPE_CONTEXT (t);
10512 if (context && TYPE_P (context))
10513 {
10514 context = tsubst_aggr_type (context, args, complain,
10515 in_decl, /*entering_scope=*/1);
10516 /* If context is a nested class inside a class template,
10517 it may still need to be instantiated (c++/33959). */
10518 context = complete_type (context);
10519 }
10520
10521 /* Then, figure out what arguments are appropriate for the
10522 type we are trying to find. For example, given:
10523
10524 template <class T> struct S;
10525 template <class T, class U> void f(T, U) { S<U> su; }
10526
10527 and supposing that we are instantiating f<int, double>,
10528 then our ARGS will be {int, double}, but, when looking up
10529 S we only want {double}. */
10530 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
10531 complain, in_decl);
10532 if (argvec == error_mark_node)
10533 r = error_mark_node;
10534 else
10535 {
10536 r = lookup_template_class (t, argvec, in_decl, context,
10537 entering_scope, complain);
10538 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
10539 }
10540
10541 cp_unevaluated_operand = saved_unevaluated_operand;
10542 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10543
10544 return r;
10545 }
10546 else
10547 /* This is not a template type, so there's nothing to do. */
10548 return t;
10549
10550 default:
10551 return tsubst (t, args, complain, in_decl);
10552 }
10553 }
10554
10555 /* Substitute into the default argument ARG (a default argument for
10556 FN), which has the indicated TYPE. */
10557
10558 tree
10559 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
10560 {
10561 tree saved_class_ptr = NULL_TREE;
10562 tree saved_class_ref = NULL_TREE;
10563 int errs = errorcount + sorrycount;
10564
10565 /* This can happen in invalid code. */
10566 if (TREE_CODE (arg) == DEFAULT_ARG)
10567 return arg;
10568
10569 /* This default argument came from a template. Instantiate the
10570 default argument here, not in tsubst. In the case of
10571 something like:
10572
10573 template <class T>
10574 struct S {
10575 static T t();
10576 void f(T = t());
10577 };
10578
10579 we must be careful to do name lookup in the scope of S<T>,
10580 rather than in the current class. */
10581 push_access_scope (fn);
10582 /* The "this" pointer is not valid in a default argument. */
10583 if (cfun)
10584 {
10585 saved_class_ptr = current_class_ptr;
10586 cp_function_chain->x_current_class_ptr = NULL_TREE;
10587 saved_class_ref = current_class_ref;
10588 cp_function_chain->x_current_class_ref = NULL_TREE;
10589 }
10590
10591 push_deferring_access_checks(dk_no_deferred);
10592 /* The default argument expression may cause implicitly defined
10593 member functions to be synthesized, which will result in garbage
10594 collection. We must treat this situation as if we were within
10595 the body of function so as to avoid collecting live data on the
10596 stack. */
10597 ++function_depth;
10598 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
10599 complain, NULL_TREE,
10600 /*integral_constant_expression_p=*/false);
10601 --function_depth;
10602 pop_deferring_access_checks();
10603
10604 /* Restore the "this" pointer. */
10605 if (cfun)
10606 {
10607 cp_function_chain->x_current_class_ptr = saved_class_ptr;
10608 cp_function_chain->x_current_class_ref = saved_class_ref;
10609 }
10610
10611 if (errorcount+sorrycount > errs
10612 && (complain & tf_warning_or_error))
10613 inform (input_location,
10614 " when instantiating default argument for call to %D", fn);
10615
10616 /* Make sure the default argument is reasonable. */
10617 arg = check_default_argument (type, arg, complain);
10618
10619 pop_access_scope (fn);
10620
10621 return arg;
10622 }
10623
10624 /* Substitute into all the default arguments for FN. */
10625
10626 static void
10627 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
10628 {
10629 tree arg;
10630 tree tmpl_args;
10631
10632 tmpl_args = DECL_TI_ARGS (fn);
10633
10634 /* If this function is not yet instantiated, we certainly don't need
10635 its default arguments. */
10636 if (uses_template_parms (tmpl_args))
10637 return;
10638 /* Don't do this again for clones. */
10639 if (DECL_CLONED_FUNCTION_P (fn))
10640 return;
10641
10642 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
10643 arg;
10644 arg = TREE_CHAIN (arg))
10645 if (TREE_PURPOSE (arg))
10646 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
10647 TREE_VALUE (arg),
10648 TREE_PURPOSE (arg),
10649 complain);
10650 }
10651
10652 /* Substitute the ARGS into the T, which is a _DECL. Return the
10653 result of the substitution. Issue error and warning messages under
10654 control of COMPLAIN. */
10655
10656 static tree
10657 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
10658 {
10659 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
10660 location_t saved_loc;
10661 tree r = NULL_TREE;
10662 tree in_decl = t;
10663 hashval_t hash = 0;
10664
10665 /* Set the filename and linenumber to improve error-reporting. */
10666 saved_loc = input_location;
10667 input_location = DECL_SOURCE_LOCATION (t);
10668
10669 switch (TREE_CODE (t))
10670 {
10671 case TEMPLATE_DECL:
10672 {
10673 /* We can get here when processing a member function template,
10674 member class template, or template template parameter. */
10675 tree decl = DECL_TEMPLATE_RESULT (t);
10676 tree spec;
10677 tree tmpl_args;
10678 tree full_args;
10679
10680 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10681 {
10682 /* Template template parameter is treated here. */
10683 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10684 if (new_type == error_mark_node)
10685 RETURN (error_mark_node);
10686 /* If we get a real template back, return it. This can happen in
10687 the context of most_specialized_partial_spec. */
10688 if (TREE_CODE (new_type) == TEMPLATE_DECL)
10689 return new_type;
10690
10691 r = copy_decl (t);
10692 DECL_CHAIN (r) = NULL_TREE;
10693 TREE_TYPE (r) = new_type;
10694 DECL_TEMPLATE_RESULT (r)
10695 = build_decl (DECL_SOURCE_LOCATION (decl),
10696 TYPE_DECL, DECL_NAME (decl), new_type);
10697 DECL_TEMPLATE_PARMS (r)
10698 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
10699 complain);
10700 TYPE_NAME (new_type) = r;
10701 break;
10702 }
10703
10704 /* We might already have an instance of this template.
10705 The ARGS are for the surrounding class type, so the
10706 full args contain the tsubst'd args for the context,
10707 plus the innermost args from the template decl. */
10708 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
10709 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
10710 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
10711 /* Because this is a template, the arguments will still be
10712 dependent, even after substitution. If
10713 PROCESSING_TEMPLATE_DECL is not set, the dependency
10714 predicates will short-circuit. */
10715 ++processing_template_decl;
10716 full_args = tsubst_template_args (tmpl_args, args,
10717 complain, in_decl);
10718 --processing_template_decl;
10719 if (full_args == error_mark_node)
10720 RETURN (error_mark_node);
10721
10722 /* If this is a default template template argument,
10723 tsubst might not have changed anything. */
10724 if (full_args == tmpl_args)
10725 RETURN (t);
10726
10727 hash = hash_tmpl_and_args (t, full_args);
10728 spec = retrieve_specialization (t, full_args, hash);
10729 if (spec != NULL_TREE)
10730 {
10731 r = spec;
10732 break;
10733 }
10734
10735 /* Make a new template decl. It will be similar to the
10736 original, but will record the current template arguments.
10737 We also create a new function declaration, which is just
10738 like the old one, but points to this new template, rather
10739 than the old one. */
10740 r = copy_decl (t);
10741 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
10742 DECL_CHAIN (r) = NULL_TREE;
10743
10744 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
10745
10746 if (TREE_CODE (decl) == TYPE_DECL
10747 && !TYPE_DECL_ALIAS_P (decl))
10748 {
10749 tree new_type;
10750 ++processing_template_decl;
10751 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10752 --processing_template_decl;
10753 if (new_type == error_mark_node)
10754 RETURN (error_mark_node);
10755
10756 TREE_TYPE (r) = new_type;
10757 /* For a partial specialization, we need to keep pointing to
10758 the primary template. */
10759 if (!DECL_TEMPLATE_SPECIALIZATION (t))
10760 CLASSTYPE_TI_TEMPLATE (new_type) = r;
10761 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
10762 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
10763 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
10764 }
10765 else
10766 {
10767 tree new_decl;
10768 ++processing_template_decl;
10769 new_decl = tsubst (decl, args, complain, in_decl);
10770 --processing_template_decl;
10771 if (new_decl == error_mark_node)
10772 RETURN (error_mark_node);
10773
10774 DECL_TEMPLATE_RESULT (r) = new_decl;
10775 DECL_TI_TEMPLATE (new_decl) = r;
10776 TREE_TYPE (r) = TREE_TYPE (new_decl);
10777 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
10778 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
10779 }
10780
10781 SET_DECL_IMPLICIT_INSTANTIATION (r);
10782 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
10783 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
10784
10785 /* The template parameters for this new template are all the
10786 template parameters for the old template, except the
10787 outermost level of parameters. */
10788 DECL_TEMPLATE_PARMS (r)
10789 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
10790 complain);
10791
10792 if (PRIMARY_TEMPLATE_P (t))
10793 DECL_PRIMARY_TEMPLATE (r) = r;
10794
10795 if (TREE_CODE (decl) != TYPE_DECL && !VAR_P (decl))
10796 /* Record this non-type partial instantiation. */
10797 register_specialization (r, t,
10798 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
10799 false, hash);
10800 }
10801 break;
10802
10803 case FUNCTION_DECL:
10804 {
10805 tree ctx;
10806 tree argvec = NULL_TREE;
10807 tree *friends;
10808 tree gen_tmpl;
10809 tree type;
10810 int member;
10811 int args_depth;
10812 int parms_depth;
10813
10814 /* Nobody should be tsubst'ing into non-template functions. */
10815 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
10816
10817 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
10818 {
10819 tree spec;
10820 bool dependent_p;
10821
10822 /* If T is not dependent, just return it. We have to
10823 increment PROCESSING_TEMPLATE_DECL because
10824 value_dependent_expression_p assumes that nothing is
10825 dependent when PROCESSING_TEMPLATE_DECL is zero. */
10826 ++processing_template_decl;
10827 dependent_p = value_dependent_expression_p (t);
10828 --processing_template_decl;
10829 if (!dependent_p)
10830 RETURN (t);
10831
10832 /* Calculate the most general template of which R is a
10833 specialization, and the complete set of arguments used to
10834 specialize R. */
10835 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
10836 argvec = tsubst_template_args (DECL_TI_ARGS
10837 (DECL_TEMPLATE_RESULT
10838 (DECL_TI_TEMPLATE (t))),
10839 args, complain, in_decl);
10840 if (argvec == error_mark_node)
10841 RETURN (error_mark_node);
10842
10843 /* Check to see if we already have this specialization. */
10844 hash = hash_tmpl_and_args (gen_tmpl, argvec);
10845 spec = retrieve_specialization (gen_tmpl, argvec, hash);
10846
10847 if (spec)
10848 {
10849 r = spec;
10850 break;
10851 }
10852
10853 /* We can see more levels of arguments than parameters if
10854 there was a specialization of a member template, like
10855 this:
10856
10857 template <class T> struct S { template <class U> void f(); }
10858 template <> template <class U> void S<int>::f(U);
10859
10860 Here, we'll be substituting into the specialization,
10861 because that's where we can find the code we actually
10862 want to generate, but we'll have enough arguments for
10863 the most general template.
10864
10865 We also deal with the peculiar case:
10866
10867 template <class T> struct S {
10868 template <class U> friend void f();
10869 };
10870 template <class U> void f() {}
10871 template S<int>;
10872 template void f<double>();
10873
10874 Here, the ARGS for the instantiation of will be {int,
10875 double}. But, we only need as many ARGS as there are
10876 levels of template parameters in CODE_PATTERN. We are
10877 careful not to get fooled into reducing the ARGS in
10878 situations like:
10879
10880 template <class T> struct S { template <class U> void f(U); }
10881 template <class T> template <> void S<T>::f(int) {}
10882
10883 which we can spot because the pattern will be a
10884 specialization in this case. */
10885 args_depth = TMPL_ARGS_DEPTH (args);
10886 parms_depth =
10887 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
10888 if (args_depth > parms_depth
10889 && !DECL_TEMPLATE_SPECIALIZATION (t))
10890 args = get_innermost_template_args (args, parms_depth);
10891 }
10892 else
10893 {
10894 /* This special case arises when we have something like this:
10895
10896 template <class T> struct S {
10897 friend void f<int>(int, double);
10898 };
10899
10900 Here, the DECL_TI_TEMPLATE for the friend declaration
10901 will be an IDENTIFIER_NODE. We are being called from
10902 tsubst_friend_function, and we want only to create a
10903 new decl (R) with appropriate types so that we can call
10904 determine_specialization. */
10905 gen_tmpl = NULL_TREE;
10906 }
10907
10908 if (DECL_CLASS_SCOPE_P (t))
10909 {
10910 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
10911 member = 2;
10912 else
10913 member = 1;
10914 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
10915 complain, t, /*entering_scope=*/1);
10916 }
10917 else
10918 {
10919 member = 0;
10920 ctx = DECL_CONTEXT (t);
10921 }
10922 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10923 if (type == error_mark_node)
10924 RETURN (error_mark_node);
10925
10926 /* If we hit excessive deduction depth, the type is bogus even if
10927 it isn't error_mark_node, so don't build a decl. */
10928 if (excessive_deduction_depth)
10929 RETURN (error_mark_node);
10930
10931 /* We do NOT check for matching decls pushed separately at this
10932 point, as they may not represent instantiations of this
10933 template, and in any case are considered separate under the
10934 discrete model. */
10935 r = copy_decl (t);
10936 DECL_USE_TEMPLATE (r) = 0;
10937 TREE_TYPE (r) = type;
10938 /* Clear out the mangled name and RTL for the instantiation. */
10939 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
10940 SET_DECL_RTL (r, NULL);
10941 /* Leave DECL_INITIAL set on deleted instantiations. */
10942 if (!DECL_DELETED_FN (r))
10943 DECL_INITIAL (r) = NULL_TREE;
10944 DECL_CONTEXT (r) = ctx;
10945
10946 /* OpenMP UDRs have the only argument a reference to the declared
10947 type. We want to diagnose if the declared type is a reference,
10948 which is invalid, but as references to references are usually
10949 quietly merged, diagnose it here. */
10950 if (DECL_OMP_DECLARE_REDUCTION_P (t))
10951 {
10952 tree argtype
10953 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
10954 argtype = tsubst (argtype, args, complain, in_decl);
10955 if (TREE_CODE (argtype) == REFERENCE_TYPE)
10956 error_at (DECL_SOURCE_LOCATION (t),
10957 "reference type %qT in "
10958 "%<#pragma omp declare reduction%>", argtype);
10959 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
10960 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
10961 argtype);
10962 }
10963
10964 if (member && DECL_CONV_FN_P (r))
10965 /* Type-conversion operator. Reconstruct the name, in
10966 case it's the name of one of the template's parameters. */
10967 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
10968
10969 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
10970 complain, t);
10971 DECL_RESULT (r) = NULL_TREE;
10972
10973 TREE_STATIC (r) = 0;
10974 TREE_PUBLIC (r) = TREE_PUBLIC (t);
10975 DECL_EXTERNAL (r) = 1;
10976 /* If this is an instantiation of a function with internal
10977 linkage, we already know what object file linkage will be
10978 assigned to the instantiation. */
10979 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
10980 DECL_DEFER_OUTPUT (r) = 0;
10981 DECL_CHAIN (r) = NULL_TREE;
10982 DECL_PENDING_INLINE_INFO (r) = 0;
10983 DECL_PENDING_INLINE_P (r) = 0;
10984 DECL_SAVED_TREE (r) = NULL_TREE;
10985 DECL_STRUCT_FUNCTION (r) = NULL;
10986 TREE_USED (r) = 0;
10987 /* We'll re-clone as appropriate in instantiate_template. */
10988 DECL_CLONED_FUNCTION (r) = NULL_TREE;
10989
10990 /* If we aren't complaining now, return on error before we register
10991 the specialization so that we'll complain eventually. */
10992 if ((complain & tf_error) == 0
10993 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10994 && !grok_op_properties (r, /*complain=*/false))
10995 RETURN (error_mark_node);
10996
10997 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
10998 this in the special friend case mentioned above where
10999 GEN_TMPL is NULL. */
11000 if (gen_tmpl)
11001 {
11002 DECL_TEMPLATE_INFO (r)
11003 = build_template_info (gen_tmpl, argvec);
11004 SET_DECL_IMPLICIT_INSTANTIATION (r);
11005
11006 tree new_r
11007 = register_specialization (r, gen_tmpl, argvec, false, hash);
11008 if (new_r != r)
11009 /* We instantiated this while substituting into
11010 the type earlier (template/friend54.C). */
11011 RETURN (new_r);
11012
11013 /* We're not supposed to instantiate default arguments
11014 until they are called, for a template. But, for a
11015 declaration like:
11016
11017 template <class T> void f ()
11018 { extern void g(int i = T()); }
11019
11020 we should do the substitution when the template is
11021 instantiated. We handle the member function case in
11022 instantiate_class_template since the default arguments
11023 might refer to other members of the class. */
11024 if (!member
11025 && !PRIMARY_TEMPLATE_P (gen_tmpl)
11026 && !uses_template_parms (argvec))
11027 tsubst_default_arguments (r, complain);
11028 }
11029 else
11030 DECL_TEMPLATE_INFO (r) = NULL_TREE;
11031
11032 /* Copy the list of befriending classes. */
11033 for (friends = &DECL_BEFRIENDING_CLASSES (r);
11034 *friends;
11035 friends = &TREE_CHAIN (*friends))
11036 {
11037 *friends = copy_node (*friends);
11038 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
11039 args, complain,
11040 in_decl);
11041 }
11042
11043 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
11044 {
11045 maybe_retrofit_in_chrg (r);
11046 if (DECL_CONSTRUCTOR_P (r))
11047 grok_ctor_properties (ctx, r);
11048 if (DECL_INHERITED_CTOR_BASE (r))
11049 deduce_inheriting_ctor (r);
11050 /* If this is an instantiation of a member template, clone it.
11051 If it isn't, that'll be handled by
11052 clone_constructors_and_destructors. */
11053 if (PRIMARY_TEMPLATE_P (gen_tmpl))
11054 clone_function_decl (r, /*update_method_vec_p=*/0);
11055 }
11056 else if ((complain & tf_error) != 0
11057 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11058 && !grok_op_properties (r, /*complain=*/true))
11059 RETURN (error_mark_node);
11060
11061 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
11062 SET_DECL_FRIEND_CONTEXT (r,
11063 tsubst (DECL_FRIEND_CONTEXT (t),
11064 args, complain, in_decl));
11065
11066 /* Possibly limit visibility based on template args. */
11067 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
11068 if (DECL_VISIBILITY_SPECIFIED (t))
11069 {
11070 DECL_VISIBILITY_SPECIFIED (r) = 0;
11071 DECL_ATTRIBUTES (r)
11072 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
11073 }
11074 determine_visibility (r);
11075 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
11076 && !processing_template_decl)
11077 defaulted_late_check (r);
11078
11079 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11080 args, complain, in_decl);
11081 }
11082 break;
11083
11084 case PARM_DECL:
11085 {
11086 tree type = NULL_TREE;
11087 int i, len = 1;
11088 tree expanded_types = NULL_TREE;
11089 tree prev_r = NULL_TREE;
11090 tree first_r = NULL_TREE;
11091
11092 if (DECL_PACK_P (t))
11093 {
11094 /* If there is a local specialization that isn't a
11095 parameter pack, it means that we're doing a "simple"
11096 substitution from inside tsubst_pack_expansion. Just
11097 return the local specialization (which will be a single
11098 parm). */
11099 tree spec = retrieve_local_specialization (t);
11100 if (spec
11101 && TREE_CODE (spec) == PARM_DECL
11102 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
11103 RETURN (spec);
11104
11105 /* Expand the TYPE_PACK_EXPANSION that provides the types for
11106 the parameters in this function parameter pack. */
11107 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11108 complain, in_decl);
11109 if (TREE_CODE (expanded_types) == TREE_VEC)
11110 {
11111 len = TREE_VEC_LENGTH (expanded_types);
11112
11113 /* Zero-length parameter packs are boring. Just substitute
11114 into the chain. */
11115 if (len == 0)
11116 RETURN (tsubst (TREE_CHAIN (t), args, complain,
11117 TREE_CHAIN (t)));
11118 }
11119 else
11120 {
11121 /* All we did was update the type. Make a note of that. */
11122 type = expanded_types;
11123 expanded_types = NULL_TREE;
11124 }
11125 }
11126
11127 /* Loop through all of the parameters we'll build. When T is
11128 a function parameter pack, LEN is the number of expanded
11129 types in EXPANDED_TYPES; otherwise, LEN is 1. */
11130 r = NULL_TREE;
11131 for (i = 0; i < len; ++i)
11132 {
11133 prev_r = r;
11134 r = copy_node (t);
11135 if (DECL_TEMPLATE_PARM_P (t))
11136 SET_DECL_TEMPLATE_PARM_P (r);
11137
11138 if (expanded_types)
11139 /* We're on the Ith parameter of the function parameter
11140 pack. */
11141 {
11142 /* Get the Ith type. */
11143 type = TREE_VEC_ELT (expanded_types, i);
11144
11145 /* Rename the parameter to include the index. */
11146 DECL_NAME (r)
11147 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11148 }
11149 else if (!type)
11150 /* We're dealing with a normal parameter. */
11151 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11152
11153 type = type_decays_to (type);
11154 TREE_TYPE (r) = type;
11155 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11156
11157 if (DECL_INITIAL (r))
11158 {
11159 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
11160 DECL_INITIAL (r) = TREE_TYPE (r);
11161 else
11162 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
11163 complain, in_decl);
11164 }
11165
11166 DECL_CONTEXT (r) = NULL_TREE;
11167
11168 if (!DECL_TEMPLATE_PARM_P (r))
11169 DECL_ARG_TYPE (r) = type_passed_as (type);
11170
11171 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11172 args, complain, in_decl);
11173
11174 /* Keep track of the first new parameter we
11175 generate. That's what will be returned to the
11176 caller. */
11177 if (!first_r)
11178 first_r = r;
11179
11180 /* Build a proper chain of parameters when substituting
11181 into a function parameter pack. */
11182 if (prev_r)
11183 DECL_CHAIN (prev_r) = r;
11184 }
11185
11186 /* If cp_unevaluated_operand is set, we're just looking for a
11187 single dummy parameter, so don't keep going. */
11188 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
11189 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
11190 complain, DECL_CHAIN (t));
11191
11192 /* FIRST_R contains the start of the chain we've built. */
11193 r = first_r;
11194 }
11195 break;
11196
11197 case FIELD_DECL:
11198 {
11199 tree type = NULL_TREE;
11200 tree vec = NULL_TREE;
11201 tree expanded_types = NULL_TREE;
11202 int len = 1;
11203
11204 if (PACK_EXPANSION_P (TREE_TYPE (t)))
11205 {
11206 /* This field is a lambda capture pack. Return a TREE_VEC of
11207 the expanded fields to instantiate_class_template_1 and
11208 store them in the specializations hash table as a
11209 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
11210 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11211 complain, in_decl);
11212 if (TREE_CODE (expanded_types) == TREE_VEC)
11213 {
11214 len = TREE_VEC_LENGTH (expanded_types);
11215 vec = make_tree_vec (len);
11216 }
11217 else
11218 {
11219 /* All we did was update the type. Make a note of that. */
11220 type = expanded_types;
11221 expanded_types = NULL_TREE;
11222 }
11223 }
11224
11225 for (int i = 0; i < len; ++i)
11226 {
11227 r = copy_decl (t);
11228 if (expanded_types)
11229 {
11230 type = TREE_VEC_ELT (expanded_types, i);
11231 DECL_NAME (r)
11232 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11233 }
11234 else if (!type)
11235 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11236
11237 if (type == error_mark_node)
11238 RETURN (error_mark_node);
11239 TREE_TYPE (r) = type;
11240 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11241
11242 if (DECL_C_BIT_FIELD (r))
11243 /* For bit-fields, DECL_INITIAL gives the number of bits. For
11244 non-bit-fields DECL_INITIAL is a non-static data member
11245 initializer, which gets deferred instantiation. */
11246 DECL_INITIAL (r)
11247 = tsubst_expr (DECL_INITIAL (t), args,
11248 complain, in_decl,
11249 /*integral_constant_expression_p=*/true);
11250 else if (DECL_INITIAL (t))
11251 {
11252 /* Set up DECL_TEMPLATE_INFO so that we can get at the
11253 NSDMI in perform_member_init. Still set DECL_INITIAL
11254 so that we know there is one. */
11255 DECL_INITIAL (r) = void_node;
11256 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
11257 retrofit_lang_decl (r);
11258 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11259 }
11260 /* We don't have to set DECL_CONTEXT here; it is set by
11261 finish_member_declaration. */
11262 DECL_CHAIN (r) = NULL_TREE;
11263
11264 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11265 args, complain, in_decl);
11266
11267 if (vec)
11268 TREE_VEC_ELT (vec, i) = r;
11269 }
11270
11271 if (vec)
11272 {
11273 r = vec;
11274 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
11275 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
11276 SET_ARGUMENT_PACK_ARGS (pack, vec);
11277 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
11278 TREE_TYPE (pack) = tpack;
11279 register_specialization (pack, t, args, false, 0);
11280 }
11281 }
11282 break;
11283
11284 case USING_DECL:
11285 /* We reach here only for member using decls. We also need to check
11286 uses_template_parms because DECL_DEPENDENT_P is not set for a
11287 using-declaration that designates a member of the current
11288 instantiation (c++/53549). */
11289 if (DECL_DEPENDENT_P (t)
11290 || uses_template_parms (USING_DECL_SCOPE (t)))
11291 {
11292 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
11293 complain, in_decl);
11294 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
11295 r = do_class_using_decl (inst_scope, name);
11296 if (!r)
11297 r = error_mark_node;
11298 else
11299 {
11300 TREE_PROTECTED (r) = TREE_PROTECTED (t);
11301 TREE_PRIVATE (r) = TREE_PRIVATE (t);
11302 }
11303 }
11304 else
11305 {
11306 r = copy_node (t);
11307 DECL_CHAIN (r) = NULL_TREE;
11308 }
11309 break;
11310
11311 case TYPE_DECL:
11312 case VAR_DECL:
11313 {
11314 tree argvec = NULL_TREE;
11315 tree gen_tmpl = NULL_TREE;
11316 tree spec;
11317 tree tmpl = NULL_TREE;
11318 tree ctx;
11319 tree type = NULL_TREE;
11320 bool local_p;
11321
11322 if (TREE_TYPE (t) == error_mark_node)
11323 RETURN (error_mark_node);
11324
11325 if (TREE_CODE (t) == TYPE_DECL
11326 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
11327 {
11328 /* If this is the canonical decl, we don't have to
11329 mess with instantiations, and often we can't (for
11330 typename, template type parms and such). Note that
11331 TYPE_NAME is not correct for the above test if
11332 we've copied the type for a typedef. */
11333 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11334 if (type == error_mark_node)
11335 RETURN (error_mark_node);
11336 r = TYPE_NAME (type);
11337 break;
11338 }
11339
11340 /* Check to see if we already have the specialization we
11341 need. */
11342 spec = NULL_TREE;
11343 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
11344 {
11345 /* T is a static data member or namespace-scope entity.
11346 We have to substitute into namespace-scope variables
11347 (not just variable templates) because of cases like:
11348
11349 template <class T> void f() { extern T t; }
11350
11351 where the entity referenced is not known until
11352 instantiation time. */
11353 local_p = false;
11354 ctx = DECL_CONTEXT (t);
11355 if (DECL_CLASS_SCOPE_P (t))
11356 {
11357 ctx = tsubst_aggr_type (ctx, args,
11358 complain,
11359 in_decl, /*entering_scope=*/1);
11360 /* If CTX is unchanged, then T is in fact the
11361 specialization we want. That situation occurs when
11362 referencing a static data member within in its own
11363 class. We can use pointer equality, rather than
11364 same_type_p, because DECL_CONTEXT is always
11365 canonical... */
11366 if (ctx == DECL_CONTEXT (t)
11367 /* ... unless T is a member template; in which
11368 case our caller can be willing to create a
11369 specialization of that template represented
11370 by T. */
11371 && !(DECL_TI_TEMPLATE (t)
11372 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
11373 spec = t;
11374 }
11375
11376 if (!spec)
11377 {
11378 tmpl = DECL_TI_TEMPLATE (t);
11379 gen_tmpl = most_general_template (tmpl);
11380 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
11381 if (argvec != error_mark_node)
11382 argvec = (coerce_innermost_template_parms
11383 (DECL_TEMPLATE_PARMS (gen_tmpl),
11384 argvec, t, complain,
11385 /*all*/true, /*defarg*/true));
11386 if (argvec == error_mark_node)
11387 RETURN (error_mark_node);
11388 hash = hash_tmpl_and_args (gen_tmpl, argvec);
11389 spec = retrieve_specialization (gen_tmpl, argvec, hash);
11390 }
11391 }
11392 else
11393 {
11394 /* A local variable. */
11395 local_p = true;
11396 /* Subsequent calls to pushdecl will fill this in. */
11397 ctx = NULL_TREE;
11398 spec = retrieve_local_specialization (t);
11399 }
11400 /* If we already have the specialization we need, there is
11401 nothing more to do. */
11402 if (spec)
11403 {
11404 r = spec;
11405 break;
11406 }
11407
11408 /* Create a new node for the specialization we need. */
11409 r = copy_decl (t);
11410 if (type == NULL_TREE)
11411 {
11412 if (is_typedef_decl (t))
11413 type = DECL_ORIGINAL_TYPE (t);
11414 else
11415 type = TREE_TYPE (t);
11416 if (VAR_P (t)
11417 && VAR_HAD_UNKNOWN_BOUND (t)
11418 && type != error_mark_node)
11419 type = strip_array_domain (type);
11420 type = tsubst (type, args, complain, in_decl);
11421 }
11422 if (VAR_P (r))
11423 {
11424 /* Even if the original location is out of scope, the
11425 newly substituted one is not. */
11426 DECL_DEAD_FOR_LOCAL (r) = 0;
11427 DECL_INITIALIZED_P (r) = 0;
11428 DECL_TEMPLATE_INSTANTIATED (r) = 0;
11429 if (type == error_mark_node)
11430 RETURN (error_mark_node);
11431 if (TREE_CODE (type) == FUNCTION_TYPE)
11432 {
11433 /* It may seem that this case cannot occur, since:
11434
11435 typedef void f();
11436 void g() { f x; }
11437
11438 declares a function, not a variable. However:
11439
11440 typedef void f();
11441 template <typename T> void g() { T t; }
11442 template void g<f>();
11443
11444 is an attempt to declare a variable with function
11445 type. */
11446 error ("variable %qD has function type",
11447 /* R is not yet sufficiently initialized, so we
11448 just use its name. */
11449 DECL_NAME (r));
11450 RETURN (error_mark_node);
11451 }
11452 type = complete_type (type);
11453 /* Wait until cp_finish_decl to set this again, to handle
11454 circular dependency (template/instantiate6.C). */
11455 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
11456 type = check_var_type (DECL_NAME (r), type);
11457
11458 if (DECL_HAS_VALUE_EXPR_P (t))
11459 {
11460 tree ve = DECL_VALUE_EXPR (t);
11461 ve = tsubst_expr (ve, args, complain, in_decl,
11462 /*constant_expression_p=*/false);
11463 if (REFERENCE_REF_P (ve))
11464 {
11465 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
11466 ve = TREE_OPERAND (ve, 0);
11467 }
11468 SET_DECL_VALUE_EXPR (r, ve);
11469 }
11470 if (CP_DECL_THREAD_LOCAL_P (r)
11471 && !processing_template_decl)
11472 set_decl_tls_model (r, decl_default_tls_model (r));
11473 }
11474 else if (DECL_SELF_REFERENCE_P (t))
11475 SET_DECL_SELF_REFERENCE_P (r);
11476 TREE_TYPE (r) = type;
11477 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11478 DECL_CONTEXT (r) = ctx;
11479 /* Clear out the mangled name and RTL for the instantiation. */
11480 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
11481 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
11482 SET_DECL_RTL (r, NULL);
11483 /* The initializer must not be expanded until it is required;
11484 see [temp.inst]. */
11485 DECL_INITIAL (r) = NULL_TREE;
11486 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
11487 SET_DECL_RTL (r, NULL);
11488 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
11489 if (VAR_P (r))
11490 {
11491 /* Possibly limit visibility based on template args. */
11492 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
11493 if (DECL_VISIBILITY_SPECIFIED (t))
11494 {
11495 DECL_VISIBILITY_SPECIFIED (r) = 0;
11496 DECL_ATTRIBUTES (r)
11497 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
11498 }
11499 determine_visibility (r);
11500 }
11501
11502 if (!local_p)
11503 {
11504 /* A static data member declaration is always marked
11505 external when it is declared in-class, even if an
11506 initializer is present. We mimic the non-template
11507 processing here. */
11508 DECL_EXTERNAL (r) = 1;
11509 if (DECL_NAMESPACE_SCOPE_P (t))
11510 DECL_NOT_REALLY_EXTERN (r) = 1;
11511
11512 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
11513 SET_DECL_IMPLICIT_INSTANTIATION (r);
11514 register_specialization (r, gen_tmpl, argvec, false, hash);
11515 }
11516 else if (!cp_unevaluated_operand)
11517 register_local_specialization (r, t);
11518
11519 DECL_CHAIN (r) = NULL_TREE;
11520
11521 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
11522 /*flags=*/0,
11523 args, complain, in_decl);
11524
11525 /* Preserve a typedef that names a type. */
11526 if (is_typedef_decl (r))
11527 {
11528 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
11529 set_underlying_type (r);
11530 }
11531
11532 layout_decl (r, 0);
11533 }
11534 break;
11535
11536 default:
11537 gcc_unreachable ();
11538 }
11539 #undef RETURN
11540
11541 out:
11542 /* Restore the file and line information. */
11543 input_location = saved_loc;
11544
11545 return r;
11546 }
11547
11548 /* Substitute into the ARG_TYPES of a function type.
11549 If END is a TREE_CHAIN, leave it and any following types
11550 un-substituted. */
11551
11552 static tree
11553 tsubst_arg_types (tree arg_types,
11554 tree args,
11555 tree end,
11556 tsubst_flags_t complain,
11557 tree in_decl)
11558 {
11559 tree remaining_arg_types;
11560 tree type = NULL_TREE;
11561 int i = 1;
11562 tree expanded_args = NULL_TREE;
11563 tree default_arg;
11564
11565 if (!arg_types || arg_types == void_list_node || arg_types == end)
11566 return arg_types;
11567
11568 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
11569 args, end, complain, in_decl);
11570 if (remaining_arg_types == error_mark_node)
11571 return error_mark_node;
11572
11573 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
11574 {
11575 /* For a pack expansion, perform substitution on the
11576 entire expression. Later on, we'll handle the arguments
11577 one-by-one. */
11578 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
11579 args, complain, in_decl);
11580
11581 if (TREE_CODE (expanded_args) == TREE_VEC)
11582 /* So that we'll spin through the parameters, one by one. */
11583 i = TREE_VEC_LENGTH (expanded_args);
11584 else
11585 {
11586 /* We only partially substituted into the parameter
11587 pack. Our type is TYPE_PACK_EXPANSION. */
11588 type = expanded_args;
11589 expanded_args = NULL_TREE;
11590 }
11591 }
11592
11593 while (i > 0) {
11594 --i;
11595
11596 if (expanded_args)
11597 type = TREE_VEC_ELT (expanded_args, i);
11598 else if (!type)
11599 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
11600
11601 if (type == error_mark_node)
11602 return error_mark_node;
11603 if (VOID_TYPE_P (type))
11604 {
11605 if (complain & tf_error)
11606 {
11607 error ("invalid parameter type %qT", type);
11608 if (in_decl)
11609 error ("in declaration %q+D", in_decl);
11610 }
11611 return error_mark_node;
11612 }
11613 /* DR 657. */
11614 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
11615 return error_mark_node;
11616
11617 /* Do array-to-pointer, function-to-pointer conversion, and ignore
11618 top-level qualifiers as required. */
11619 type = cv_unqualified (type_decays_to (type));
11620
11621 /* We do not substitute into default arguments here. The standard
11622 mandates that they be instantiated only when needed, which is
11623 done in build_over_call. */
11624 default_arg = TREE_PURPOSE (arg_types);
11625
11626 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
11627 {
11628 /* We've instantiated a template before its default arguments
11629 have been parsed. This can happen for a nested template
11630 class, and is not an error unless we require the default
11631 argument in a call of this function. */
11632 remaining_arg_types =
11633 tree_cons (default_arg, type, remaining_arg_types);
11634 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
11635 }
11636 else
11637 remaining_arg_types =
11638 hash_tree_cons (default_arg, type, remaining_arg_types);
11639 }
11640
11641 return remaining_arg_types;
11642 }
11643
11644 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
11645 *not* handle the exception-specification for FNTYPE, because the
11646 initial substitution of explicitly provided template parameters
11647 during argument deduction forbids substitution into the
11648 exception-specification:
11649
11650 [temp.deduct]
11651
11652 All references in the function type of the function template to the
11653 corresponding template parameters are replaced by the specified tem-
11654 plate argument values. If a substitution in a template parameter or
11655 in the function type of the function template results in an invalid
11656 type, type deduction fails. [Note: The equivalent substitution in
11657 exception specifications is done only when the function is instanti-
11658 ated, at which point a program is ill-formed if the substitution
11659 results in an invalid type.] */
11660
11661 static tree
11662 tsubst_function_type (tree t,
11663 tree args,
11664 tsubst_flags_t complain,
11665 tree in_decl)
11666 {
11667 tree return_type;
11668 tree arg_types = NULL_TREE;
11669 tree fntype;
11670
11671 /* The TYPE_CONTEXT is not used for function/method types. */
11672 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
11673
11674 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
11675 failure. */
11676 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
11677
11678 if (late_return_type_p)
11679 {
11680 /* Substitute the argument types. */
11681 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
11682 complain, in_decl);
11683 if (arg_types == error_mark_node)
11684 return error_mark_node;
11685
11686 tree save_ccp = current_class_ptr;
11687 tree save_ccr = current_class_ref;
11688 tree this_type = (TREE_CODE (t) == METHOD_TYPE
11689 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
11690 bool do_inject = this_type && CLASS_TYPE_P (this_type);
11691 if (do_inject)
11692 {
11693 /* DR 1207: 'this' is in scope in the trailing return type. */
11694 inject_this_parameter (this_type, cp_type_quals (this_type));
11695 }
11696
11697 /* Substitute the return type. */
11698 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11699
11700 if (do_inject)
11701 {
11702 current_class_ptr = save_ccp;
11703 current_class_ref = save_ccr;
11704 }
11705 }
11706 else
11707 /* Substitute the return type. */
11708 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11709
11710 if (return_type == error_mark_node)
11711 return error_mark_node;
11712 /* DR 486 clarifies that creation of a function type with an
11713 invalid return type is a deduction failure. */
11714 if (TREE_CODE (return_type) == ARRAY_TYPE
11715 || TREE_CODE (return_type) == FUNCTION_TYPE)
11716 {
11717 if (complain & tf_error)
11718 {
11719 if (TREE_CODE (return_type) == ARRAY_TYPE)
11720 error ("function returning an array");
11721 else
11722 error ("function returning a function");
11723 }
11724 return error_mark_node;
11725 }
11726 /* And DR 657. */
11727 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
11728 return error_mark_node;
11729
11730 if (!late_return_type_p)
11731 {
11732 /* Substitute the argument types. */
11733 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
11734 complain, in_decl);
11735 if (arg_types == error_mark_node)
11736 return error_mark_node;
11737 }
11738
11739 /* Construct a new type node and return it. */
11740 if (TREE_CODE (t) == FUNCTION_TYPE)
11741 {
11742 fntype = build_function_type (return_type, arg_types);
11743 fntype = apply_memfn_quals (fntype,
11744 type_memfn_quals (t),
11745 type_memfn_rqual (t));
11746 }
11747 else
11748 {
11749 tree r = TREE_TYPE (TREE_VALUE (arg_types));
11750 /* Don't pick up extra function qualifiers from the basetype. */
11751 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
11752 if (! MAYBE_CLASS_TYPE_P (r))
11753 {
11754 /* [temp.deduct]
11755
11756 Type deduction may fail for any of the following
11757 reasons:
11758
11759 -- Attempting to create "pointer to member of T" when T
11760 is not a class type. */
11761 if (complain & tf_error)
11762 error ("creating pointer to member function of non-class type %qT",
11763 r);
11764 return error_mark_node;
11765 }
11766
11767 fntype = build_method_type_directly (r, return_type,
11768 TREE_CHAIN (arg_types));
11769 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
11770 }
11771 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
11772
11773 if (late_return_type_p)
11774 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
11775
11776 return fntype;
11777 }
11778
11779 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
11780 ARGS into that specification, and return the substituted
11781 specification. If there is no specification, return NULL_TREE. */
11782
11783 static tree
11784 tsubst_exception_specification (tree fntype,
11785 tree args,
11786 tsubst_flags_t complain,
11787 tree in_decl,
11788 bool defer_ok)
11789 {
11790 tree specs;
11791 tree new_specs;
11792
11793 specs = TYPE_RAISES_EXCEPTIONS (fntype);
11794 new_specs = NULL_TREE;
11795 if (specs && TREE_PURPOSE (specs))
11796 {
11797 /* A noexcept-specifier. */
11798 tree expr = TREE_PURPOSE (specs);
11799 if (TREE_CODE (expr) == INTEGER_CST)
11800 new_specs = expr;
11801 else if (defer_ok)
11802 {
11803 /* Defer instantiation of noexcept-specifiers to avoid
11804 excessive instantiations (c++/49107). */
11805 new_specs = make_node (DEFERRED_NOEXCEPT);
11806 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
11807 {
11808 /* We already partially instantiated this member template,
11809 so combine the new args with the old. */
11810 DEFERRED_NOEXCEPT_PATTERN (new_specs)
11811 = DEFERRED_NOEXCEPT_PATTERN (expr);
11812 DEFERRED_NOEXCEPT_ARGS (new_specs)
11813 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
11814 }
11815 else
11816 {
11817 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
11818 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
11819 }
11820 }
11821 else
11822 new_specs = tsubst_copy_and_build
11823 (expr, args, complain, in_decl, /*function_p=*/false,
11824 /*integral_constant_expression_p=*/true);
11825 new_specs = build_noexcept_spec (new_specs, complain);
11826 }
11827 else if (specs)
11828 {
11829 if (! TREE_VALUE (specs))
11830 new_specs = specs;
11831 else
11832 while (specs)
11833 {
11834 tree spec;
11835 int i, len = 1;
11836 tree expanded_specs = NULL_TREE;
11837
11838 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
11839 {
11840 /* Expand the pack expansion type. */
11841 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
11842 args, complain,
11843 in_decl);
11844
11845 if (expanded_specs == error_mark_node)
11846 return error_mark_node;
11847 else if (TREE_CODE (expanded_specs) == TREE_VEC)
11848 len = TREE_VEC_LENGTH (expanded_specs);
11849 else
11850 {
11851 /* We're substituting into a member template, so
11852 we got a TYPE_PACK_EXPANSION back. Add that
11853 expansion and move on. */
11854 gcc_assert (TREE_CODE (expanded_specs)
11855 == TYPE_PACK_EXPANSION);
11856 new_specs = add_exception_specifier (new_specs,
11857 expanded_specs,
11858 complain);
11859 specs = TREE_CHAIN (specs);
11860 continue;
11861 }
11862 }
11863
11864 for (i = 0; i < len; ++i)
11865 {
11866 if (expanded_specs)
11867 spec = TREE_VEC_ELT (expanded_specs, i);
11868 else
11869 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
11870 if (spec == error_mark_node)
11871 return spec;
11872 new_specs = add_exception_specifier (new_specs, spec,
11873 complain);
11874 }
11875
11876 specs = TREE_CHAIN (specs);
11877 }
11878 }
11879 return new_specs;
11880 }
11881
11882 /* Take the tree structure T and replace template parameters used
11883 therein with the argument vector ARGS. IN_DECL is an associated
11884 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
11885 Issue error and warning messages under control of COMPLAIN. Note
11886 that we must be relatively non-tolerant of extensions here, in
11887 order to preserve conformance; if we allow substitutions that
11888 should not be allowed, we may allow argument deductions that should
11889 not succeed, and therefore report ambiguous overload situations
11890 where there are none. In theory, we could allow the substitution,
11891 but indicate that it should have failed, and allow our caller to
11892 make sure that the right thing happens, but we don't try to do this
11893 yet.
11894
11895 This function is used for dealing with types, decls and the like;
11896 for expressions, use tsubst_expr or tsubst_copy. */
11897
11898 tree
11899 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11900 {
11901 enum tree_code code;
11902 tree type, r = NULL_TREE;
11903
11904 if (t == NULL_TREE || t == error_mark_node
11905 || t == integer_type_node
11906 || t == void_type_node
11907 || t == char_type_node
11908 || t == unknown_type_node
11909 || TREE_CODE (t) == NAMESPACE_DECL
11910 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
11911 return t;
11912
11913 if (DECL_P (t))
11914 return tsubst_decl (t, args, complain);
11915
11916 if (args == NULL_TREE)
11917 return t;
11918
11919 code = TREE_CODE (t);
11920
11921 if (code == IDENTIFIER_NODE)
11922 type = IDENTIFIER_TYPE_VALUE (t);
11923 else
11924 type = TREE_TYPE (t);
11925
11926 gcc_assert (type != unknown_type_node);
11927
11928 /* Reuse typedefs. We need to do this to handle dependent attributes,
11929 such as attribute aligned. */
11930 if (TYPE_P (t)
11931 && typedef_variant_p (t))
11932 {
11933 tree decl = TYPE_NAME (t);
11934
11935 if (alias_template_specialization_p (t))
11936 {
11937 /* DECL represents an alias template and we want to
11938 instantiate it. */
11939 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11940 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11941 r = instantiate_alias_template (tmpl, gen_args, complain);
11942 }
11943 else if (DECL_CLASS_SCOPE_P (decl)
11944 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
11945 && uses_template_parms (DECL_CONTEXT (decl)))
11946 {
11947 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11948 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11949 r = retrieve_specialization (tmpl, gen_args, 0);
11950 }
11951 else if (DECL_FUNCTION_SCOPE_P (decl)
11952 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
11953 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
11954 r = retrieve_local_specialization (decl);
11955 else
11956 /* The typedef is from a non-template context. */
11957 return t;
11958
11959 if (r)
11960 {
11961 r = TREE_TYPE (r);
11962 r = cp_build_qualified_type_real
11963 (r, cp_type_quals (t) | cp_type_quals (r),
11964 complain | tf_ignore_bad_quals);
11965 return r;
11966 }
11967 else
11968 {
11969 /* We don't have an instantiation yet, so drop the typedef. */
11970 int quals = cp_type_quals (t);
11971 t = DECL_ORIGINAL_TYPE (decl);
11972 t = cp_build_qualified_type_real (t, quals,
11973 complain | tf_ignore_bad_quals);
11974 }
11975 }
11976
11977 if (type
11978 && code != TYPENAME_TYPE
11979 && code != TEMPLATE_TYPE_PARM
11980 && code != IDENTIFIER_NODE
11981 && code != FUNCTION_TYPE
11982 && code != METHOD_TYPE)
11983 type = tsubst (type, args, complain, in_decl);
11984 if (type == error_mark_node)
11985 return error_mark_node;
11986
11987 switch (code)
11988 {
11989 case RECORD_TYPE:
11990 case UNION_TYPE:
11991 case ENUMERAL_TYPE:
11992 return tsubst_aggr_type (t, args, complain, in_decl,
11993 /*entering_scope=*/0);
11994
11995 case ERROR_MARK:
11996 case IDENTIFIER_NODE:
11997 case VOID_TYPE:
11998 case REAL_TYPE:
11999 case COMPLEX_TYPE:
12000 case VECTOR_TYPE:
12001 case BOOLEAN_TYPE:
12002 case NULLPTR_TYPE:
12003 case LANG_TYPE:
12004 return t;
12005
12006 case INTEGER_TYPE:
12007 if (t == integer_type_node)
12008 return t;
12009
12010 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
12011 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
12012 return t;
12013
12014 {
12015 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
12016
12017 max = tsubst_expr (omax, args, complain, in_decl,
12018 /*integral_constant_expression_p=*/false);
12019
12020 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
12021 needed. */
12022 if (TREE_CODE (max) == NOP_EXPR
12023 && TREE_SIDE_EFFECTS (omax)
12024 && !TREE_TYPE (max))
12025 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
12026
12027 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
12028 with TREE_SIDE_EFFECTS that indicates this is not an integral
12029 constant expression. */
12030 if (processing_template_decl
12031 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
12032 {
12033 gcc_assert (TREE_CODE (max) == NOP_EXPR);
12034 TREE_SIDE_EFFECTS (max) = 1;
12035 }
12036
12037 return compute_array_index_type (NULL_TREE, max, complain);
12038 }
12039
12040 case TEMPLATE_TYPE_PARM:
12041 case TEMPLATE_TEMPLATE_PARM:
12042 case BOUND_TEMPLATE_TEMPLATE_PARM:
12043 case TEMPLATE_PARM_INDEX:
12044 {
12045 int idx;
12046 int level;
12047 int levels;
12048 tree arg = NULL_TREE;
12049
12050 r = NULL_TREE;
12051
12052 gcc_assert (TREE_VEC_LENGTH (args) > 0);
12053 template_parm_level_and_index (t, &level, &idx);
12054
12055 levels = TMPL_ARGS_DEPTH (args);
12056 if (level <= levels)
12057 {
12058 arg = TMPL_ARG (args, level, idx);
12059
12060 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
12061 {
12062 /* See through ARGUMENT_PACK_SELECT arguments. */
12063 arg = ARGUMENT_PACK_SELECT_ARG (arg);
12064 /* If the selected argument is an expansion E, that most
12065 likely means we were called from
12066 gen_elem_of_pack_expansion_instantiation during the
12067 substituting of pack an argument pack (which Ith
12068 element is a pack expansion, where I is
12069 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
12070 In this case, the Ith element resulting from this
12071 substituting is going to be a pack expansion, which
12072 pattern is the pattern of E. Let's return the
12073 pattern of E, and
12074 gen_elem_of_pack_expansion_instantiation will
12075 build the resulting pack expansion from it. */
12076 if (PACK_EXPANSION_P (arg))
12077 {
12078 /* Make sure we aren't throwing away arg info. */
12079 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
12080 arg = PACK_EXPANSION_PATTERN (arg);
12081 }
12082 }
12083 }
12084
12085 if (arg == error_mark_node)
12086 return error_mark_node;
12087 else if (arg != NULL_TREE)
12088 {
12089 if (ARGUMENT_PACK_P (arg))
12090 /* If ARG is an argument pack, we don't actually want to
12091 perform a substitution here, because substitutions
12092 for argument packs are only done
12093 element-by-element. We can get to this point when
12094 substituting the type of a non-type template
12095 parameter pack, when that type actually contains
12096 template parameter packs from an outer template, e.g.,
12097
12098 template<typename... Types> struct A {
12099 template<Types... Values> struct B { };
12100 }; */
12101 return t;
12102
12103 if (code == TEMPLATE_TYPE_PARM)
12104 {
12105 int quals;
12106 gcc_assert (TYPE_P (arg));
12107
12108 quals = cp_type_quals (arg) | cp_type_quals (t);
12109
12110 return cp_build_qualified_type_real
12111 (arg, quals, complain | tf_ignore_bad_quals);
12112 }
12113 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
12114 {
12115 /* We are processing a type constructed from a
12116 template template parameter. */
12117 tree argvec = tsubst (TYPE_TI_ARGS (t),
12118 args, complain, in_decl);
12119 if (argvec == error_mark_node)
12120 return error_mark_node;
12121
12122 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
12123 || TREE_CODE (arg) == TEMPLATE_DECL
12124 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
12125
12126 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
12127 /* Consider this code:
12128
12129 template <template <class> class Template>
12130 struct Internal {
12131 template <class Arg> using Bind = Template<Arg>;
12132 };
12133
12134 template <template <class> class Template, class Arg>
12135 using Instantiate = Template<Arg>; //#0
12136
12137 template <template <class> class Template,
12138 class Argument>
12139 using Bind =
12140 Instantiate<Internal<Template>::template Bind,
12141 Argument>; //#1
12142
12143 When #1 is parsed, the
12144 BOUND_TEMPLATE_TEMPLATE_PARM representing the
12145 parameter `Template' in #0 matches the
12146 UNBOUND_CLASS_TEMPLATE representing the argument
12147 `Internal<Template>::template Bind'; We then want
12148 to assemble the type `Bind<Argument>' that can't
12149 be fully created right now, because
12150 `Internal<Template>' not being complete, the Bind
12151 template cannot be looked up in that context. So
12152 we need to "store" `Bind<Argument>' for later
12153 when the context of Bind becomes complete. Let's
12154 store that in a TYPENAME_TYPE. */
12155 return make_typename_type (TYPE_CONTEXT (arg),
12156 build_nt (TEMPLATE_ID_EXPR,
12157 TYPE_IDENTIFIER (arg),
12158 argvec),
12159 typename_type,
12160 complain);
12161
12162 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
12163 are resolving nested-types in the signature of a
12164 member function templates. Otherwise ARG is a
12165 TEMPLATE_DECL and is the real template to be
12166 instantiated. */
12167 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
12168 arg = TYPE_NAME (arg);
12169
12170 r = lookup_template_class (arg,
12171 argvec, in_decl,
12172 DECL_CONTEXT (arg),
12173 /*entering_scope=*/0,
12174 complain);
12175 return cp_build_qualified_type_real
12176 (r, cp_type_quals (t) | cp_type_quals (r), complain);
12177 }
12178 else
12179 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
12180 return convert_from_reference (unshare_expr (arg));
12181 }
12182
12183 if (level == 1)
12184 /* This can happen during the attempted tsubst'ing in
12185 unify. This means that we don't yet have any information
12186 about the template parameter in question. */
12187 return t;
12188
12189 /* Early in template argument deduction substitution, we don't
12190 want to reduce the level of 'auto', or it will be confused
12191 with a normal template parm in subsequent deduction. */
12192 if (is_auto (t) && (complain & tf_partial))
12193 return t;
12194
12195 /* If we get here, we must have been looking at a parm for a
12196 more deeply nested template. Make a new version of this
12197 template parameter, but with a lower level. */
12198 switch (code)
12199 {
12200 case TEMPLATE_TYPE_PARM:
12201 case TEMPLATE_TEMPLATE_PARM:
12202 case BOUND_TEMPLATE_TEMPLATE_PARM:
12203 if (cp_type_quals (t))
12204 {
12205 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
12206 r = cp_build_qualified_type_real
12207 (r, cp_type_quals (t),
12208 complain | (code == TEMPLATE_TYPE_PARM
12209 ? tf_ignore_bad_quals : 0));
12210 }
12211 else
12212 {
12213 r = copy_type (t);
12214 TEMPLATE_TYPE_PARM_INDEX (r)
12215 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
12216 r, levels, args, complain);
12217 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
12218 TYPE_MAIN_VARIANT (r) = r;
12219 TYPE_POINTER_TO (r) = NULL_TREE;
12220 TYPE_REFERENCE_TO (r) = NULL_TREE;
12221
12222 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
12223 /* We have reduced the level of the template
12224 template parameter, but not the levels of its
12225 template parameters, so canonical_type_parameter
12226 will not be able to find the canonical template
12227 template parameter for this level. Thus, we
12228 require structural equality checking to compare
12229 TEMPLATE_TEMPLATE_PARMs. */
12230 SET_TYPE_STRUCTURAL_EQUALITY (r);
12231 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
12232 SET_TYPE_STRUCTURAL_EQUALITY (r);
12233 else
12234 TYPE_CANONICAL (r) = canonical_type_parameter (r);
12235
12236 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
12237 {
12238 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
12239 complain, in_decl);
12240 if (argvec == error_mark_node)
12241 return error_mark_node;
12242
12243 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
12244 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
12245 }
12246 }
12247 break;
12248
12249 case TEMPLATE_PARM_INDEX:
12250 r = reduce_template_parm_level (t, type, levels, args, complain);
12251 break;
12252
12253 default:
12254 gcc_unreachable ();
12255 }
12256
12257 return r;
12258 }
12259
12260 case TREE_LIST:
12261 {
12262 tree purpose, value, chain;
12263
12264 if (t == void_list_node)
12265 return t;
12266
12267 purpose = TREE_PURPOSE (t);
12268 if (purpose)
12269 {
12270 purpose = tsubst (purpose, args, complain, in_decl);
12271 if (purpose == error_mark_node)
12272 return error_mark_node;
12273 }
12274 value = TREE_VALUE (t);
12275 if (value)
12276 {
12277 value = tsubst (value, args, complain, in_decl);
12278 if (value == error_mark_node)
12279 return error_mark_node;
12280 }
12281 chain = TREE_CHAIN (t);
12282 if (chain && chain != void_type_node)
12283 {
12284 chain = tsubst (chain, args, complain, in_decl);
12285 if (chain == error_mark_node)
12286 return error_mark_node;
12287 }
12288 if (purpose == TREE_PURPOSE (t)
12289 && value == TREE_VALUE (t)
12290 && chain == TREE_CHAIN (t))
12291 return t;
12292 return hash_tree_cons (purpose, value, chain);
12293 }
12294
12295 case TREE_BINFO:
12296 /* We should never be tsubsting a binfo. */
12297 gcc_unreachable ();
12298
12299 case TREE_VEC:
12300 /* A vector of template arguments. */
12301 gcc_assert (!type);
12302 return tsubst_template_args (t, args, complain, in_decl);
12303
12304 case POINTER_TYPE:
12305 case REFERENCE_TYPE:
12306 {
12307 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
12308 return t;
12309
12310 /* [temp.deduct]
12311
12312 Type deduction may fail for any of the following
12313 reasons:
12314
12315 -- Attempting to create a pointer to reference type.
12316 -- Attempting to create a reference to a reference type or
12317 a reference to void.
12318
12319 Core issue 106 says that creating a reference to a reference
12320 during instantiation is no longer a cause for failure. We
12321 only enforce this check in strict C++98 mode. */
12322 if ((TREE_CODE (type) == REFERENCE_TYPE
12323 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
12324 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
12325 {
12326 static location_t last_loc;
12327
12328 /* We keep track of the last time we issued this error
12329 message to avoid spewing a ton of messages during a
12330 single bad template instantiation. */
12331 if (complain & tf_error
12332 && last_loc != input_location)
12333 {
12334 if (VOID_TYPE_P (type))
12335 error ("forming reference to void");
12336 else if (code == POINTER_TYPE)
12337 error ("forming pointer to reference type %qT", type);
12338 else
12339 error ("forming reference to reference type %qT", type);
12340 last_loc = input_location;
12341 }
12342
12343 return error_mark_node;
12344 }
12345 else if (TREE_CODE (type) == FUNCTION_TYPE
12346 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
12347 || type_memfn_rqual (type) != REF_QUAL_NONE))
12348 {
12349 if (complain & tf_error)
12350 {
12351 if (code == POINTER_TYPE)
12352 error ("forming pointer to qualified function type %qT",
12353 type);
12354 else
12355 error ("forming reference to qualified function type %qT",
12356 type);
12357 }
12358 return error_mark_node;
12359 }
12360 else if (code == POINTER_TYPE)
12361 {
12362 r = build_pointer_type (type);
12363 if (TREE_CODE (type) == METHOD_TYPE)
12364 r = build_ptrmemfunc_type (r);
12365 }
12366 else if (TREE_CODE (type) == REFERENCE_TYPE)
12367 /* In C++0x, during template argument substitution, when there is an
12368 attempt to create a reference to a reference type, reference
12369 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
12370
12371 "If a template-argument for a template-parameter T names a type
12372 that is a reference to a type A, an attempt to create the type
12373 'lvalue reference to cv T' creates the type 'lvalue reference to
12374 A,' while an attempt to create the type type rvalue reference to
12375 cv T' creates the type T"
12376 */
12377 r = cp_build_reference_type
12378 (TREE_TYPE (type),
12379 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
12380 else
12381 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
12382 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
12383
12384 if (r != error_mark_node)
12385 /* Will this ever be needed for TYPE_..._TO values? */
12386 layout_type (r);
12387
12388 return r;
12389 }
12390 case OFFSET_TYPE:
12391 {
12392 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
12393 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
12394 {
12395 /* [temp.deduct]
12396
12397 Type deduction may fail for any of the following
12398 reasons:
12399
12400 -- Attempting to create "pointer to member of T" when T
12401 is not a class type. */
12402 if (complain & tf_error)
12403 error ("creating pointer to member of non-class type %qT", r);
12404 return error_mark_node;
12405 }
12406 if (TREE_CODE (type) == REFERENCE_TYPE)
12407 {
12408 if (complain & tf_error)
12409 error ("creating pointer to member reference type %qT", type);
12410 return error_mark_node;
12411 }
12412 if (VOID_TYPE_P (type))
12413 {
12414 if (complain & tf_error)
12415 error ("creating pointer to member of type void");
12416 return error_mark_node;
12417 }
12418 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
12419 if (TREE_CODE (type) == FUNCTION_TYPE)
12420 {
12421 /* The type of the implicit object parameter gets its
12422 cv-qualifiers from the FUNCTION_TYPE. */
12423 tree memptr;
12424 tree method_type
12425 = build_memfn_type (type, r, type_memfn_quals (type),
12426 type_memfn_rqual (type));
12427 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
12428 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
12429 complain);
12430 }
12431 else
12432 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
12433 cp_type_quals (t),
12434 complain);
12435 }
12436 case FUNCTION_TYPE:
12437 case METHOD_TYPE:
12438 {
12439 tree fntype;
12440 tree specs;
12441 fntype = tsubst_function_type (t, args, complain, in_decl);
12442 if (fntype == error_mark_node)
12443 return error_mark_node;
12444
12445 /* Substitute the exception specification. */
12446 specs = tsubst_exception_specification (t, args, complain,
12447 in_decl, /*defer_ok*/true);
12448 if (specs == error_mark_node)
12449 return error_mark_node;
12450 if (specs)
12451 fntype = build_exception_variant (fntype, specs);
12452 return fntype;
12453 }
12454 case ARRAY_TYPE:
12455 {
12456 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
12457 if (domain == error_mark_node)
12458 return error_mark_node;
12459
12460 /* As an optimization, we avoid regenerating the array type if
12461 it will obviously be the same as T. */
12462 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
12463 return t;
12464
12465 /* These checks should match the ones in create_array_type_for_decl.
12466
12467 [temp.deduct]
12468
12469 The deduction may fail for any of the following reasons:
12470
12471 -- Attempting to create an array with an element type that
12472 is void, a function type, or a reference type, or [DR337]
12473 an abstract class type. */
12474 if (VOID_TYPE_P (type)
12475 || TREE_CODE (type) == FUNCTION_TYPE
12476 || (TREE_CODE (type) == ARRAY_TYPE
12477 && TYPE_DOMAIN (type) == NULL_TREE)
12478 || TREE_CODE (type) == REFERENCE_TYPE)
12479 {
12480 if (complain & tf_error)
12481 error ("creating array of %qT", type);
12482 return error_mark_node;
12483 }
12484
12485 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
12486 return error_mark_node;
12487
12488 r = build_cplus_array_type (type, domain);
12489
12490 if (TYPE_USER_ALIGN (t))
12491 {
12492 TYPE_ALIGN (r) = TYPE_ALIGN (t);
12493 TYPE_USER_ALIGN (r) = 1;
12494 }
12495
12496 return r;
12497 }
12498
12499 case TYPENAME_TYPE:
12500 {
12501 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
12502 in_decl, /*entering_scope=*/1);
12503 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
12504 complain, in_decl);
12505
12506 if (ctx == error_mark_node || f == error_mark_node)
12507 return error_mark_node;
12508
12509 if (!MAYBE_CLASS_TYPE_P (ctx))
12510 {
12511 if (complain & tf_error)
12512 error ("%qT is not a class, struct, or union type", ctx);
12513 return error_mark_node;
12514 }
12515 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
12516 {
12517 /* Normally, make_typename_type does not require that the CTX
12518 have complete type in order to allow things like:
12519
12520 template <class T> struct S { typename S<T>::X Y; };
12521
12522 But, such constructs have already been resolved by this
12523 point, so here CTX really should have complete type, unless
12524 it's a partial instantiation. */
12525 ctx = complete_type (ctx);
12526 if (!COMPLETE_TYPE_P (ctx))
12527 {
12528 if (complain & tf_error)
12529 cxx_incomplete_type_error (NULL_TREE, ctx);
12530 return error_mark_node;
12531 }
12532 }
12533
12534 f = make_typename_type (ctx, f, typename_type,
12535 complain | tf_keep_type_decl);
12536 if (f == error_mark_node)
12537 return f;
12538 if (TREE_CODE (f) == TYPE_DECL)
12539 {
12540 complain |= tf_ignore_bad_quals;
12541 f = TREE_TYPE (f);
12542 }
12543
12544 if (TREE_CODE (f) != TYPENAME_TYPE)
12545 {
12546 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
12547 {
12548 if (complain & tf_error)
12549 error ("%qT resolves to %qT, which is not an enumeration type",
12550 t, f);
12551 else
12552 return error_mark_node;
12553 }
12554 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
12555 {
12556 if (complain & tf_error)
12557 error ("%qT resolves to %qT, which is is not a class type",
12558 t, f);
12559 else
12560 return error_mark_node;
12561 }
12562 }
12563
12564 return cp_build_qualified_type_real
12565 (f, cp_type_quals (f) | cp_type_quals (t), complain);
12566 }
12567
12568 case UNBOUND_CLASS_TEMPLATE:
12569 {
12570 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
12571 in_decl, /*entering_scope=*/1);
12572 tree name = TYPE_IDENTIFIER (t);
12573 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
12574
12575 if (ctx == error_mark_node || name == error_mark_node)
12576 return error_mark_node;
12577
12578 if (parm_list)
12579 parm_list = tsubst_template_parms (parm_list, args, complain);
12580 return make_unbound_class_template (ctx, name, parm_list, complain);
12581 }
12582
12583 case TYPEOF_TYPE:
12584 {
12585 tree type;
12586
12587 ++cp_unevaluated_operand;
12588 ++c_inhibit_evaluation_warnings;
12589
12590 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
12591 complain, in_decl,
12592 /*integral_constant_expression_p=*/false);
12593
12594 --cp_unevaluated_operand;
12595 --c_inhibit_evaluation_warnings;
12596
12597 type = finish_typeof (type);
12598 return cp_build_qualified_type_real (type,
12599 cp_type_quals (t)
12600 | cp_type_quals (type),
12601 complain);
12602 }
12603
12604 case DECLTYPE_TYPE:
12605 {
12606 tree type;
12607
12608 ++cp_unevaluated_operand;
12609 ++c_inhibit_evaluation_warnings;
12610
12611 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
12612 complain|tf_decltype, in_decl,
12613 /*function_p*/false,
12614 /*integral_constant_expression*/false);
12615
12616 --cp_unevaluated_operand;
12617 --c_inhibit_evaluation_warnings;
12618
12619 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
12620 type = lambda_capture_field_type (type,
12621 DECLTYPE_FOR_INIT_CAPTURE (t));
12622 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
12623 type = lambda_proxy_type (type);
12624 else
12625 {
12626 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
12627 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
12628 && EXPR_P (type))
12629 /* In a template ~id could be either a complement expression
12630 or an unqualified-id naming a destructor; if instantiating
12631 it produces an expression, it's not an id-expression or
12632 member access. */
12633 id = false;
12634 type = finish_decltype_type (type, id, complain);
12635 }
12636 return cp_build_qualified_type_real (type,
12637 cp_type_quals (t)
12638 | cp_type_quals (type),
12639 complain | tf_ignore_bad_quals);
12640 }
12641
12642 case UNDERLYING_TYPE:
12643 {
12644 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
12645 complain, in_decl);
12646 return finish_underlying_type (type);
12647 }
12648
12649 case TYPE_ARGUMENT_PACK:
12650 case NONTYPE_ARGUMENT_PACK:
12651 {
12652 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
12653 tree packed_out =
12654 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
12655 args,
12656 complain,
12657 in_decl);
12658 SET_ARGUMENT_PACK_ARGS (r, packed_out);
12659
12660 /* For template nontype argument packs, also substitute into
12661 the type. */
12662 if (code == NONTYPE_ARGUMENT_PACK)
12663 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
12664
12665 return r;
12666 }
12667 break;
12668
12669 case VOID_CST:
12670 case INTEGER_CST:
12671 case REAL_CST:
12672 case STRING_CST:
12673 case PLUS_EXPR:
12674 case MINUS_EXPR:
12675 case NEGATE_EXPR:
12676 case NOP_EXPR:
12677 case INDIRECT_REF:
12678 case ADDR_EXPR:
12679 case CALL_EXPR:
12680 case ARRAY_REF:
12681 case SCOPE_REF:
12682 /* We should use one of the expression tsubsts for these codes. */
12683 gcc_unreachable ();
12684
12685 default:
12686 sorry ("use of %qs in template", get_tree_code_name (code));
12687 return error_mark_node;
12688 }
12689 }
12690
12691 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
12692 type of the expression on the left-hand side of the "." or "->"
12693 operator. */
12694
12695 static tree
12696 tsubst_baselink (tree baselink, tree object_type,
12697 tree args, tsubst_flags_t complain, tree in_decl)
12698 {
12699 tree name;
12700 tree qualifying_scope;
12701 tree fns;
12702 tree optype;
12703 tree template_args = 0;
12704 bool template_id_p = false;
12705 bool qualified = BASELINK_QUALIFIED_P (baselink);
12706
12707 /* A baselink indicates a function from a base class. Both the
12708 BASELINK_ACCESS_BINFO and the base class referenced may
12709 indicate bases of the template class, rather than the
12710 instantiated class. In addition, lookups that were not
12711 ambiguous before may be ambiguous now. Therefore, we perform
12712 the lookup again. */
12713 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
12714 qualifying_scope = tsubst (qualifying_scope, args,
12715 complain, in_decl);
12716 fns = BASELINK_FUNCTIONS (baselink);
12717 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
12718 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
12719 {
12720 template_id_p = true;
12721 template_args = TREE_OPERAND (fns, 1);
12722 fns = TREE_OPERAND (fns, 0);
12723 if (template_args)
12724 template_args = tsubst_template_args (template_args, args,
12725 complain, in_decl);
12726 }
12727 name = DECL_NAME (get_first_fn (fns));
12728 if (IDENTIFIER_TYPENAME_P (name))
12729 name = mangle_conv_op_name_for_type (optype);
12730 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
12731 if (!baselink)
12732 return error_mark_node;
12733
12734 /* If lookup found a single function, mark it as used at this
12735 point. (If it lookup found multiple functions the one selected
12736 later by overload resolution will be marked as used at that
12737 point.) */
12738 if (BASELINK_P (baselink))
12739 fns = BASELINK_FUNCTIONS (baselink);
12740 if (!template_id_p && !really_overloaded_fn (fns)
12741 && !mark_used (OVL_CURRENT (fns), complain) && !(complain & tf_error))
12742 return error_mark_node;
12743
12744 /* Add back the template arguments, if present. */
12745 if (BASELINK_P (baselink) && template_id_p)
12746 BASELINK_FUNCTIONS (baselink)
12747 = build_nt (TEMPLATE_ID_EXPR,
12748 BASELINK_FUNCTIONS (baselink),
12749 template_args);
12750 /* Update the conversion operator type. */
12751 BASELINK_OPTYPE (baselink) = optype;
12752
12753 if (!object_type)
12754 object_type = current_class_type;
12755
12756 if (qualified)
12757 baselink = adjust_result_of_qualified_name_lookup (baselink,
12758 qualifying_scope,
12759 object_type);
12760 return baselink;
12761 }
12762
12763 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
12764 true if the qualified-id will be a postfix-expression in-and-of
12765 itself; false if more of the postfix-expression follows the
12766 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
12767 of "&". */
12768
12769 static tree
12770 tsubst_qualified_id (tree qualified_id, tree args,
12771 tsubst_flags_t complain, tree in_decl,
12772 bool done, bool address_p)
12773 {
12774 tree expr;
12775 tree scope;
12776 tree name;
12777 bool is_template;
12778 tree template_args;
12779 location_t loc = UNKNOWN_LOCATION;
12780
12781 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
12782
12783 /* Figure out what name to look up. */
12784 name = TREE_OPERAND (qualified_id, 1);
12785 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
12786 {
12787 is_template = true;
12788 loc = EXPR_LOCATION (name);
12789 template_args = TREE_OPERAND (name, 1);
12790 if (template_args)
12791 template_args = tsubst_template_args (template_args, args,
12792 complain, in_decl);
12793 name = TREE_OPERAND (name, 0);
12794 }
12795 else
12796 {
12797 is_template = false;
12798 template_args = NULL_TREE;
12799 }
12800
12801 /* Substitute into the qualifying scope. When there are no ARGS, we
12802 are just trying to simplify a non-dependent expression. In that
12803 case the qualifying scope may be dependent, and, in any case,
12804 substituting will not help. */
12805 scope = TREE_OPERAND (qualified_id, 0);
12806 if (args)
12807 {
12808 scope = tsubst (scope, args, complain, in_decl);
12809 expr = tsubst_copy (name, args, complain, in_decl);
12810 }
12811 else
12812 expr = name;
12813
12814 if (dependent_scope_p (scope))
12815 {
12816 if (is_template)
12817 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
12818 return build_qualified_name (NULL_TREE, scope, expr,
12819 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
12820 }
12821
12822 if (!BASELINK_P (name) && !DECL_P (expr))
12823 {
12824 if (TREE_CODE (expr) == BIT_NOT_EXPR)
12825 {
12826 /* A BIT_NOT_EXPR is used to represent a destructor. */
12827 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
12828 {
12829 error ("qualifying type %qT does not match destructor name ~%qT",
12830 scope, TREE_OPERAND (expr, 0));
12831 expr = error_mark_node;
12832 }
12833 else
12834 expr = lookup_qualified_name (scope, complete_dtor_identifier,
12835 /*is_type_p=*/0, false);
12836 }
12837 else
12838 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
12839 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
12840 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
12841 {
12842 if (complain & tf_error)
12843 {
12844 error ("dependent-name %qE is parsed as a non-type, but "
12845 "instantiation yields a type", qualified_id);
12846 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
12847 }
12848 return error_mark_node;
12849 }
12850 }
12851
12852 if (DECL_P (expr))
12853 {
12854 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
12855 scope);
12856 /* Remember that there was a reference to this entity. */
12857 if (!mark_used (expr, complain) && !(complain & tf_error))
12858 return error_mark_node;
12859 }
12860
12861 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
12862 {
12863 if (complain & tf_error)
12864 qualified_name_lookup_error (scope,
12865 TREE_OPERAND (qualified_id, 1),
12866 expr, input_location);
12867 return error_mark_node;
12868 }
12869
12870 if (is_template)
12871 expr = lookup_template_function (expr, template_args);
12872
12873 if (expr == error_mark_node && complain & tf_error)
12874 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
12875 expr, input_location);
12876 else if (TYPE_P (scope))
12877 {
12878 expr = (adjust_result_of_qualified_name_lookup
12879 (expr, scope, current_nonlambda_class_type ()));
12880 expr = (finish_qualified_id_expr
12881 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
12882 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
12883 /*template_arg_p=*/false, complain));
12884 }
12885
12886 /* Expressions do not generally have reference type. */
12887 if (TREE_CODE (expr) != SCOPE_REF
12888 /* However, if we're about to form a pointer-to-member, we just
12889 want the referenced member referenced. */
12890 && TREE_CODE (expr) != OFFSET_REF)
12891 expr = convert_from_reference (expr);
12892
12893 return expr;
12894 }
12895
12896 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
12897 initializer, DECL is the substituted VAR_DECL. Other arguments are as
12898 for tsubst. */
12899
12900 static tree
12901 tsubst_init (tree init, tree decl, tree args,
12902 tsubst_flags_t complain, tree in_decl)
12903 {
12904 if (!init)
12905 return NULL_TREE;
12906
12907 init = tsubst_expr (init, args, complain, in_decl, false);
12908
12909 if (!init)
12910 {
12911 /* If we had an initializer but it
12912 instantiated to nothing,
12913 value-initialize the object. This will
12914 only occur when the initializer was a
12915 pack expansion where the parameter packs
12916 used in that expansion were of length
12917 zero. */
12918 init = build_value_init (TREE_TYPE (decl),
12919 complain);
12920 if (TREE_CODE (init) == AGGR_INIT_EXPR)
12921 init = get_target_expr_sfinae (init, complain);
12922 }
12923
12924 return init;
12925 }
12926
12927 /* Like tsubst, but deals with expressions. This function just replaces
12928 template parms; to finish processing the resultant expression, use
12929 tsubst_copy_and_build or tsubst_expr. */
12930
12931 static tree
12932 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12933 {
12934 enum tree_code code;
12935 tree r;
12936
12937 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
12938 return t;
12939
12940 code = TREE_CODE (t);
12941
12942 switch (code)
12943 {
12944 case PARM_DECL:
12945 r = retrieve_local_specialization (t);
12946
12947 if (r == NULL_TREE)
12948 {
12949 /* We get here for a use of 'this' in an NSDMI. */
12950 if (DECL_NAME (t) == this_identifier
12951 && current_function_decl
12952 && DECL_CONSTRUCTOR_P (current_function_decl))
12953 return current_class_ptr;
12954
12955 /* This can happen for a parameter name used later in a function
12956 declaration (such as in a late-specified return type). Just
12957 make a dummy decl, since it's only used for its type. */
12958 gcc_assert (cp_unevaluated_operand != 0);
12959 r = tsubst_decl (t, args, complain);
12960 /* Give it the template pattern as its context; its true context
12961 hasn't been instantiated yet and this is good enough for
12962 mangling. */
12963 DECL_CONTEXT (r) = DECL_CONTEXT (t);
12964 }
12965
12966 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
12967 r = ARGUMENT_PACK_SELECT_ARG (r);
12968 if (!mark_used (r, complain) && !(complain & tf_error))
12969 return error_mark_node;
12970 return r;
12971
12972 case CONST_DECL:
12973 {
12974 tree enum_type;
12975 tree v;
12976
12977 if (DECL_TEMPLATE_PARM_P (t))
12978 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
12979 /* There is no need to substitute into namespace-scope
12980 enumerators. */
12981 if (DECL_NAMESPACE_SCOPE_P (t))
12982 return t;
12983 /* If ARGS is NULL, then T is known to be non-dependent. */
12984 if (args == NULL_TREE)
12985 return scalar_constant_value (t);
12986
12987 /* Unfortunately, we cannot just call lookup_name here.
12988 Consider:
12989
12990 template <int I> int f() {
12991 enum E { a = I };
12992 struct S { void g() { E e = a; } };
12993 };
12994
12995 When we instantiate f<7>::S::g(), say, lookup_name is not
12996 clever enough to find f<7>::a. */
12997 enum_type
12998 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12999 /*entering_scope=*/0);
13000
13001 for (v = TYPE_VALUES (enum_type);
13002 v != NULL_TREE;
13003 v = TREE_CHAIN (v))
13004 if (TREE_PURPOSE (v) == DECL_NAME (t))
13005 return TREE_VALUE (v);
13006
13007 /* We didn't find the name. That should never happen; if
13008 name-lookup found it during preliminary parsing, we
13009 should find it again here during instantiation. */
13010 gcc_unreachable ();
13011 }
13012 return t;
13013
13014 case FIELD_DECL:
13015 if (PACK_EXPANSION_P (TREE_TYPE (t)))
13016 {
13017 /* Check for a local specialization set up by
13018 tsubst_pack_expansion. */
13019 if (tree r = retrieve_local_specialization (t))
13020 {
13021 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13022 r = ARGUMENT_PACK_SELECT_ARG (r);
13023 return r;
13024 }
13025
13026 /* When retrieving a capture pack from a generic lambda, remove the
13027 lambda call op's own template argument list from ARGS. Only the
13028 template arguments active for the closure type should be used to
13029 retrieve the pack specialization. */
13030 if (LAMBDA_FUNCTION_P (current_function_decl)
13031 && (template_class_depth (DECL_CONTEXT (t))
13032 != TMPL_ARGS_DEPTH (args)))
13033 args = strip_innermost_template_args (args, 1);
13034
13035 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
13036 tsubst_decl put in the hash table. */
13037 return retrieve_specialization (t, args, 0);
13038 }
13039
13040 if (DECL_CONTEXT (t))
13041 {
13042 tree ctx;
13043
13044 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13045 /*entering_scope=*/1);
13046 if (ctx != DECL_CONTEXT (t))
13047 {
13048 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
13049 if (!r)
13050 {
13051 if (complain & tf_error)
13052 error ("using invalid field %qD", t);
13053 return error_mark_node;
13054 }
13055 return r;
13056 }
13057 }
13058
13059 return t;
13060
13061 case VAR_DECL:
13062 case FUNCTION_DECL:
13063 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
13064 r = tsubst (t, args, complain, in_decl);
13065 else if (local_variable_p (t))
13066 {
13067 r = retrieve_local_specialization (t);
13068 if (r == NULL_TREE)
13069 {
13070 /* First try name lookup to find the instantiation. */
13071 r = lookup_name (DECL_NAME (t));
13072 if (r)
13073 {
13074 /* Make sure that the one we found is the one we want. */
13075 tree ctx = tsubst (DECL_CONTEXT (t), args,
13076 complain, in_decl);
13077 if (ctx != DECL_CONTEXT (r))
13078 r = NULL_TREE;
13079 }
13080
13081 if (r)
13082 /* OK */;
13083 else
13084 {
13085 /* This can happen for a variable used in a
13086 late-specified return type of a local lambda, or for a
13087 local static or constant. Building a new VAR_DECL
13088 should be OK in all those cases. */
13089 r = tsubst_decl (t, args, complain);
13090 if (decl_maybe_constant_var_p (r))
13091 {
13092 /* We can't call cp_finish_decl, so handle the
13093 initializer by hand. */
13094 tree init = tsubst_init (DECL_INITIAL (t), r, args,
13095 complain, in_decl);
13096 if (!processing_template_decl)
13097 init = maybe_constant_init (init);
13098 if (processing_template_decl
13099 ? potential_constant_expression (init)
13100 : reduced_constant_expression_p (init))
13101 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
13102 = TREE_CONSTANT (r) = true;
13103 DECL_INITIAL (r) = init;
13104 }
13105 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
13106 || decl_constant_var_p (r)
13107 || errorcount || sorrycount);
13108 if (!processing_template_decl)
13109 {
13110 if (TREE_STATIC (r))
13111 rest_of_decl_compilation (r, toplevel_bindings_p (),
13112 at_eof);
13113 else
13114 r = process_outer_var_ref (r, complain);
13115 }
13116 }
13117 /* Remember this for subsequent uses. */
13118 if (local_specializations)
13119 register_local_specialization (r, t);
13120 }
13121 }
13122 else
13123 r = t;
13124 if (!mark_used (r, complain) && !(complain & tf_error))
13125 return error_mark_node;
13126 return r;
13127
13128 case NAMESPACE_DECL:
13129 return t;
13130
13131 case OVERLOAD:
13132 /* An OVERLOAD will always be a non-dependent overload set; an
13133 overload set from function scope will just be represented with an
13134 IDENTIFIER_NODE, and from class scope with a BASELINK. */
13135 gcc_assert (!uses_template_parms (t));
13136 return t;
13137
13138 case BASELINK:
13139 return tsubst_baselink (t, current_nonlambda_class_type (),
13140 args, complain, in_decl);
13141
13142 case TEMPLATE_DECL:
13143 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
13144 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
13145 args, complain, in_decl);
13146 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
13147 return tsubst (t, args, complain, in_decl);
13148 else if (DECL_CLASS_SCOPE_P (t)
13149 && uses_template_parms (DECL_CONTEXT (t)))
13150 {
13151 /* Template template argument like the following example need
13152 special treatment:
13153
13154 template <template <class> class TT> struct C {};
13155 template <class T> struct D {
13156 template <class U> struct E {};
13157 C<E> c; // #1
13158 };
13159 D<int> d; // #2
13160
13161 We are processing the template argument `E' in #1 for
13162 the template instantiation #2. Originally, `E' is a
13163 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
13164 have to substitute this with one having context `D<int>'. */
13165
13166 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
13167 return lookup_field (context, DECL_NAME(t), 0, false);
13168 }
13169 else
13170 /* Ordinary template template argument. */
13171 return t;
13172
13173 case CAST_EXPR:
13174 case REINTERPRET_CAST_EXPR:
13175 case CONST_CAST_EXPR:
13176 case STATIC_CAST_EXPR:
13177 case DYNAMIC_CAST_EXPR:
13178 case IMPLICIT_CONV_EXPR:
13179 case CONVERT_EXPR:
13180 case NOP_EXPR:
13181 {
13182 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13183 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13184 return build1 (code, type, op0);
13185 }
13186
13187 case SIZEOF_EXPR:
13188 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
13189 {
13190
13191 tree expanded, op = TREE_OPERAND (t, 0);
13192 int len = 0;
13193
13194 if (SIZEOF_EXPR_TYPE_P (t))
13195 op = TREE_TYPE (op);
13196
13197 ++cp_unevaluated_operand;
13198 ++c_inhibit_evaluation_warnings;
13199 /* We only want to compute the number of arguments. */
13200 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
13201 --cp_unevaluated_operand;
13202 --c_inhibit_evaluation_warnings;
13203
13204 if (TREE_CODE (expanded) == TREE_VEC)
13205 len = TREE_VEC_LENGTH (expanded);
13206
13207 if (expanded == error_mark_node)
13208 return error_mark_node;
13209 else if (PACK_EXPANSION_P (expanded)
13210 || (TREE_CODE (expanded) == TREE_VEC
13211 && len > 0
13212 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
13213 {
13214 if (TREE_CODE (expanded) == TREE_VEC)
13215 expanded = TREE_VEC_ELT (expanded, len - 1);
13216
13217 if (TYPE_P (expanded))
13218 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
13219 complain & tf_error);
13220 else
13221 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
13222 complain & tf_error);
13223 }
13224 else
13225 return build_int_cst (size_type_node, len);
13226 }
13227 if (SIZEOF_EXPR_TYPE_P (t))
13228 {
13229 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
13230 args, complain, in_decl);
13231 r = build1 (NOP_EXPR, r, error_mark_node);
13232 r = build1 (SIZEOF_EXPR,
13233 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
13234 SIZEOF_EXPR_TYPE_P (r) = 1;
13235 return r;
13236 }
13237 /* Fall through */
13238
13239 case INDIRECT_REF:
13240 case NEGATE_EXPR:
13241 case TRUTH_NOT_EXPR:
13242 case BIT_NOT_EXPR:
13243 case ADDR_EXPR:
13244 case UNARY_PLUS_EXPR: /* Unary + */
13245 case ALIGNOF_EXPR:
13246 case AT_ENCODE_EXPR:
13247 case ARROW_EXPR:
13248 case THROW_EXPR:
13249 case TYPEID_EXPR:
13250 case REALPART_EXPR:
13251 case IMAGPART_EXPR:
13252 case PAREN_EXPR:
13253 {
13254 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13255 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13256 return build1 (code, type, op0);
13257 }
13258
13259 case COMPONENT_REF:
13260 {
13261 tree object;
13262 tree name;
13263
13264 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13265 name = TREE_OPERAND (t, 1);
13266 if (TREE_CODE (name) == BIT_NOT_EXPR)
13267 {
13268 name = tsubst_copy (TREE_OPERAND (name, 0), args,
13269 complain, in_decl);
13270 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
13271 }
13272 else if (TREE_CODE (name) == SCOPE_REF
13273 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
13274 {
13275 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
13276 complain, in_decl);
13277 name = TREE_OPERAND (name, 1);
13278 name = tsubst_copy (TREE_OPERAND (name, 0), args,
13279 complain, in_decl);
13280 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
13281 name = build_qualified_name (/*type=*/NULL_TREE,
13282 base, name,
13283 /*template_p=*/false);
13284 }
13285 else if (BASELINK_P (name))
13286 name = tsubst_baselink (name,
13287 non_reference (TREE_TYPE (object)),
13288 args, complain,
13289 in_decl);
13290 else
13291 name = tsubst_copy (name, args, complain, in_decl);
13292 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
13293 }
13294
13295 case PLUS_EXPR:
13296 case MINUS_EXPR:
13297 case MULT_EXPR:
13298 case TRUNC_DIV_EXPR:
13299 case CEIL_DIV_EXPR:
13300 case FLOOR_DIV_EXPR:
13301 case ROUND_DIV_EXPR:
13302 case EXACT_DIV_EXPR:
13303 case BIT_AND_EXPR:
13304 case BIT_IOR_EXPR:
13305 case BIT_XOR_EXPR:
13306 case TRUNC_MOD_EXPR:
13307 case FLOOR_MOD_EXPR:
13308 case TRUTH_ANDIF_EXPR:
13309 case TRUTH_ORIF_EXPR:
13310 case TRUTH_AND_EXPR:
13311 case TRUTH_OR_EXPR:
13312 case RSHIFT_EXPR:
13313 case LSHIFT_EXPR:
13314 case RROTATE_EXPR:
13315 case LROTATE_EXPR:
13316 case EQ_EXPR:
13317 case NE_EXPR:
13318 case MAX_EXPR:
13319 case MIN_EXPR:
13320 case LE_EXPR:
13321 case GE_EXPR:
13322 case LT_EXPR:
13323 case GT_EXPR:
13324 case COMPOUND_EXPR:
13325 case DOTSTAR_EXPR:
13326 case MEMBER_REF:
13327 case PREDECREMENT_EXPR:
13328 case PREINCREMENT_EXPR:
13329 case POSTDECREMENT_EXPR:
13330 case POSTINCREMENT_EXPR:
13331 {
13332 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13333 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13334 return build_nt (code, op0, op1);
13335 }
13336
13337 case SCOPE_REF:
13338 {
13339 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13340 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13341 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
13342 QUALIFIED_NAME_IS_TEMPLATE (t));
13343 }
13344
13345 case ARRAY_REF:
13346 {
13347 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13348 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13349 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
13350 }
13351
13352 case CALL_EXPR:
13353 {
13354 int n = VL_EXP_OPERAND_LENGTH (t);
13355 tree result = build_vl_exp (CALL_EXPR, n);
13356 int i;
13357 for (i = 0; i < n; i++)
13358 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
13359 complain, in_decl);
13360 return result;
13361 }
13362
13363 case COND_EXPR:
13364 case MODOP_EXPR:
13365 case PSEUDO_DTOR_EXPR:
13366 case VEC_PERM_EXPR:
13367 {
13368 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13369 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13370 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
13371 r = build_nt (code, op0, op1, op2);
13372 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
13373 return r;
13374 }
13375
13376 case NEW_EXPR:
13377 {
13378 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13379 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13380 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
13381 r = build_nt (code, op0, op1, op2);
13382 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
13383 return r;
13384 }
13385
13386 case DELETE_EXPR:
13387 {
13388 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13389 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13390 r = build_nt (code, op0, op1);
13391 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
13392 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
13393 return r;
13394 }
13395
13396 case TEMPLATE_ID_EXPR:
13397 {
13398 /* Substituted template arguments */
13399 tree fn = TREE_OPERAND (t, 0);
13400 tree targs = TREE_OPERAND (t, 1);
13401
13402 fn = tsubst_copy (fn, args, complain, in_decl);
13403 if (targs)
13404 targs = tsubst_template_args (targs, args, complain, in_decl);
13405
13406 return lookup_template_function (fn, targs);
13407 }
13408
13409 case TREE_LIST:
13410 {
13411 tree purpose, value, chain;
13412
13413 if (t == void_list_node)
13414 return t;
13415
13416 purpose = TREE_PURPOSE (t);
13417 if (purpose)
13418 purpose = tsubst_copy (purpose, args, complain, in_decl);
13419 value = TREE_VALUE (t);
13420 if (value)
13421 value = tsubst_copy (value, args, complain, in_decl);
13422 chain = TREE_CHAIN (t);
13423 if (chain && chain != void_type_node)
13424 chain = tsubst_copy (chain, args, complain, in_decl);
13425 if (purpose == TREE_PURPOSE (t)
13426 && value == TREE_VALUE (t)
13427 && chain == TREE_CHAIN (t))
13428 return t;
13429 return tree_cons (purpose, value, chain);
13430 }
13431
13432 case RECORD_TYPE:
13433 case UNION_TYPE:
13434 case ENUMERAL_TYPE:
13435 case INTEGER_TYPE:
13436 case TEMPLATE_TYPE_PARM:
13437 case TEMPLATE_TEMPLATE_PARM:
13438 case BOUND_TEMPLATE_TEMPLATE_PARM:
13439 case TEMPLATE_PARM_INDEX:
13440 case POINTER_TYPE:
13441 case REFERENCE_TYPE:
13442 case OFFSET_TYPE:
13443 case FUNCTION_TYPE:
13444 case METHOD_TYPE:
13445 case ARRAY_TYPE:
13446 case TYPENAME_TYPE:
13447 case UNBOUND_CLASS_TEMPLATE:
13448 case TYPEOF_TYPE:
13449 case DECLTYPE_TYPE:
13450 case TYPE_DECL:
13451 return tsubst (t, args, complain, in_decl);
13452
13453 case USING_DECL:
13454 t = DECL_NAME (t);
13455 /* Fall through. */
13456 case IDENTIFIER_NODE:
13457 if (IDENTIFIER_TYPENAME_P (t))
13458 {
13459 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13460 return mangle_conv_op_name_for_type (new_type);
13461 }
13462 else
13463 return t;
13464
13465 case CONSTRUCTOR:
13466 /* This is handled by tsubst_copy_and_build. */
13467 gcc_unreachable ();
13468
13469 case VA_ARG_EXPR:
13470 {
13471 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13472 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13473 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
13474 }
13475
13476 case CLEANUP_POINT_EXPR:
13477 /* We shouldn't have built any of these during initial template
13478 generation. Instead, they should be built during instantiation
13479 in response to the saved STMT_IS_FULL_EXPR_P setting. */
13480 gcc_unreachable ();
13481
13482 case OFFSET_REF:
13483 {
13484 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13485 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13486 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13487 r = build2 (code, type, op0, op1);
13488 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
13489 if (!mark_used (TREE_OPERAND (r, 1), complain)
13490 && !(complain & tf_error))
13491 return error_mark_node;
13492 return r;
13493 }
13494
13495 case EXPR_PACK_EXPANSION:
13496 error ("invalid use of pack expansion expression");
13497 return error_mark_node;
13498
13499 case NONTYPE_ARGUMENT_PACK:
13500 error ("use %<...%> to expand argument pack");
13501 return error_mark_node;
13502
13503 case VOID_CST:
13504 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
13505 return t;
13506
13507 case INTEGER_CST:
13508 case REAL_CST:
13509 case STRING_CST:
13510 case COMPLEX_CST:
13511 {
13512 /* Instantiate any typedefs in the type. */
13513 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13514 r = fold_convert (type, t);
13515 gcc_assert (TREE_CODE (r) == code);
13516 return r;
13517 }
13518
13519 case PTRMEM_CST:
13520 /* These can sometimes show up in a partial instantiation, but never
13521 involve template parms. */
13522 gcc_assert (!uses_template_parms (t));
13523 return t;
13524
13525 default:
13526 /* We shouldn't get here, but keep going if !ENABLE_CHECKING. */
13527 gcc_checking_assert (false);
13528 return t;
13529 }
13530 }
13531
13532 /* Helper function for tsubst_omp_clauses, used for instantiation of
13533 OMP_CLAUSE_DECL of clauses that handles also OpenMP array sections
13534 represented with TREE_LIST. */
13535
13536 static tree
13537 tsubst_omp_clause_decl (tree decl, tree args, tsubst_flags_t complain,
13538 tree in_decl)
13539 {
13540 if (TREE_CODE (decl) == TREE_LIST)
13541 {
13542 tree low_bound
13543 = tsubst_expr (TREE_PURPOSE (decl), args, complain, in_decl,
13544 /*integral_constant_expression_p=*/false);
13545 tree length = tsubst_expr (TREE_VALUE (decl), args, complain, in_decl,
13546 /*integral_constant_expression_p=*/false);
13547 tree chain = tsubst_omp_clause_decl (TREE_CHAIN (decl), args, complain,
13548 in_decl);
13549 if (TREE_PURPOSE (decl) == low_bound
13550 && TREE_VALUE (decl) == length
13551 && TREE_CHAIN (decl) == chain)
13552 return decl;
13553 return tree_cons (low_bound, length, chain);
13554 }
13555 return tsubst_copy (decl, args, complain, in_decl);
13556 }
13557
13558 /* Like tsubst_copy, but specifically for OpenMP clauses. */
13559
13560 static tree
13561 tsubst_omp_clauses (tree clauses, bool declare_simd,
13562 tree args, tsubst_flags_t complain, tree in_decl)
13563 {
13564 tree new_clauses = NULL, nc, oc;
13565
13566 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
13567 {
13568 nc = copy_node (oc);
13569 OMP_CLAUSE_CHAIN (nc) = new_clauses;
13570 new_clauses = nc;
13571
13572 switch (OMP_CLAUSE_CODE (nc))
13573 {
13574 case OMP_CLAUSE_LASTPRIVATE:
13575 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
13576 {
13577 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
13578 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
13579 in_decl, /*integral_constant_expression_p=*/false);
13580 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
13581 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
13582 }
13583 /* FALLTHRU */
13584 case OMP_CLAUSE_PRIVATE:
13585 case OMP_CLAUSE_SHARED:
13586 case OMP_CLAUSE_FIRSTPRIVATE:
13587 case OMP_CLAUSE_COPYIN:
13588 case OMP_CLAUSE_COPYPRIVATE:
13589 case OMP_CLAUSE_UNIFORM:
13590 OMP_CLAUSE_DECL (nc) = tsubst_copy (OMP_CLAUSE_DECL (oc), args,
13591 complain, in_decl);
13592 break;
13593 case OMP_CLAUSE_DEPEND:
13594 case OMP_CLAUSE_FROM:
13595 case OMP_CLAUSE_TO:
13596 case OMP_CLAUSE_MAP:
13597 OMP_CLAUSE_DECL (nc)
13598 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
13599 in_decl);
13600 break;
13601 case OMP_CLAUSE_IF:
13602 case OMP_CLAUSE_NUM_THREADS:
13603 case OMP_CLAUSE_SCHEDULE:
13604 case OMP_CLAUSE_COLLAPSE:
13605 case OMP_CLAUSE_FINAL:
13606 case OMP_CLAUSE_DEVICE:
13607 case OMP_CLAUSE_DIST_SCHEDULE:
13608 case OMP_CLAUSE_NUM_TEAMS:
13609 case OMP_CLAUSE_THREAD_LIMIT:
13610 case OMP_CLAUSE_SAFELEN:
13611 case OMP_CLAUSE_SIMDLEN:
13612 OMP_CLAUSE_OPERAND (nc, 0)
13613 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13614 in_decl, /*integral_constant_expression_p=*/false);
13615 break;
13616 case OMP_CLAUSE_REDUCTION:
13617 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
13618 {
13619 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
13620 if (TREE_CODE (placeholder) == SCOPE_REF)
13621 {
13622 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
13623 complain, in_decl);
13624 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
13625 = build_qualified_name (NULL_TREE, scope,
13626 TREE_OPERAND (placeholder, 1),
13627 false);
13628 }
13629 else
13630 gcc_assert (identifier_p (placeholder));
13631 }
13632 OMP_CLAUSE_DECL (nc) = tsubst_copy (OMP_CLAUSE_DECL (oc), args,
13633 complain, in_decl);
13634 break;
13635 case OMP_CLAUSE_LINEAR:
13636 case OMP_CLAUSE_ALIGNED:
13637 OMP_CLAUSE_DECL (nc) = tsubst_copy (OMP_CLAUSE_DECL (oc), args,
13638 complain, in_decl);
13639 OMP_CLAUSE_OPERAND (nc, 1)
13640 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
13641 in_decl, /*integral_constant_expression_p=*/false);
13642 break;
13643 case OMP_CLAUSE_NOWAIT:
13644 case OMP_CLAUSE_ORDERED:
13645 case OMP_CLAUSE_DEFAULT:
13646 case OMP_CLAUSE_UNTIED:
13647 case OMP_CLAUSE_MERGEABLE:
13648 case OMP_CLAUSE_INBRANCH:
13649 case OMP_CLAUSE_NOTINBRANCH:
13650 case OMP_CLAUSE_PROC_BIND:
13651 case OMP_CLAUSE_FOR:
13652 case OMP_CLAUSE_PARALLEL:
13653 case OMP_CLAUSE_SECTIONS:
13654 case OMP_CLAUSE_TASKGROUP:
13655 break;
13656 default:
13657 gcc_unreachable ();
13658 }
13659 }
13660
13661 new_clauses = nreverse (new_clauses);
13662 if (!declare_simd)
13663 new_clauses = finish_omp_clauses (new_clauses);
13664 return new_clauses;
13665 }
13666
13667 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
13668
13669 static tree
13670 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
13671 tree in_decl)
13672 {
13673 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
13674
13675 tree purpose, value, chain;
13676
13677 if (t == NULL)
13678 return t;
13679
13680 if (TREE_CODE (t) != TREE_LIST)
13681 return tsubst_copy_and_build (t, args, complain, in_decl,
13682 /*function_p=*/false,
13683 /*integral_constant_expression_p=*/false);
13684
13685 if (t == void_list_node)
13686 return t;
13687
13688 purpose = TREE_PURPOSE (t);
13689 if (purpose)
13690 purpose = RECUR (purpose);
13691 value = TREE_VALUE (t);
13692 if (value)
13693 {
13694 if (TREE_CODE (value) != LABEL_DECL)
13695 value = RECUR (value);
13696 else
13697 {
13698 value = lookup_label (DECL_NAME (value));
13699 gcc_assert (TREE_CODE (value) == LABEL_DECL);
13700 TREE_USED (value) = 1;
13701 }
13702 }
13703 chain = TREE_CHAIN (t);
13704 if (chain && chain != void_type_node)
13705 chain = RECUR (chain);
13706 return tree_cons (purpose, value, chain);
13707 #undef RECUR
13708 }
13709
13710 /* Substitute one OMP_FOR iterator. */
13711
13712 static void
13713 tsubst_omp_for_iterator (tree t, int i, tree declv, tree initv,
13714 tree condv, tree incrv, tree *clauses,
13715 tree args, tsubst_flags_t complain, tree in_decl,
13716 bool integral_constant_expression_p)
13717 {
13718 #define RECUR(NODE) \
13719 tsubst_expr ((NODE), args, complain, in_decl, \
13720 integral_constant_expression_p)
13721 tree decl, init, cond, incr;
13722
13723 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
13724 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
13725 decl = TREE_OPERAND (init, 0);
13726 init = TREE_OPERAND (init, 1);
13727 tree decl_expr = NULL_TREE;
13728 if (init && TREE_CODE (init) == DECL_EXPR)
13729 {
13730 /* We need to jump through some hoops to handle declarations in the
13731 for-init-statement, since we might need to handle auto deduction,
13732 but we need to keep control of initialization. */
13733 decl_expr = init;
13734 init = DECL_INITIAL (DECL_EXPR_DECL (init));
13735 decl = tsubst_decl (decl, args, complain);
13736 }
13737 else
13738 decl = RECUR (decl);
13739 init = RECUR (init);
13740
13741 tree auto_node = type_uses_auto (TREE_TYPE (decl));
13742 if (auto_node && init)
13743 TREE_TYPE (decl)
13744 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
13745
13746 gcc_assert (!type_dependent_expression_p (decl));
13747
13748 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
13749 {
13750 if (decl_expr)
13751 {
13752 /* Declare the variable, but don't let that initialize it. */
13753 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
13754 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
13755 RECUR (decl_expr);
13756 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
13757 }
13758
13759 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
13760 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
13761 if (TREE_CODE (incr) == MODIFY_EXPR)
13762 {
13763 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13764 tree rhs = RECUR (TREE_OPERAND (incr, 1));
13765 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
13766 NOP_EXPR, rhs, complain);
13767 }
13768 else
13769 incr = RECUR (incr);
13770 TREE_VEC_ELT (declv, i) = decl;
13771 TREE_VEC_ELT (initv, i) = init;
13772 TREE_VEC_ELT (condv, i) = cond;
13773 TREE_VEC_ELT (incrv, i) = incr;
13774 return;
13775 }
13776
13777 if (decl_expr)
13778 {
13779 /* Declare and initialize the variable. */
13780 RECUR (decl_expr);
13781 init = NULL_TREE;
13782 }
13783 else if (init)
13784 {
13785 tree c;
13786 for (c = *clauses; c ; c = OMP_CLAUSE_CHAIN (c))
13787 {
13788 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
13789 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
13790 && OMP_CLAUSE_DECL (c) == decl)
13791 break;
13792 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
13793 && OMP_CLAUSE_DECL (c) == decl)
13794 error ("iteration variable %qD should not be firstprivate", decl);
13795 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
13796 && OMP_CLAUSE_DECL (c) == decl)
13797 error ("iteration variable %qD should not be reduction", decl);
13798 }
13799 if (c == NULL)
13800 {
13801 c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
13802 OMP_CLAUSE_DECL (c) = decl;
13803 c = finish_omp_clauses (c);
13804 if (c)
13805 {
13806 OMP_CLAUSE_CHAIN (c) = *clauses;
13807 *clauses = c;
13808 }
13809 }
13810 }
13811 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
13812 if (COMPARISON_CLASS_P (cond))
13813 {
13814 tree op0 = RECUR (TREE_OPERAND (cond, 0));
13815 tree op1 = RECUR (TREE_OPERAND (cond, 1));
13816 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
13817 }
13818 else
13819 cond = RECUR (cond);
13820 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
13821 switch (TREE_CODE (incr))
13822 {
13823 case PREINCREMENT_EXPR:
13824 case PREDECREMENT_EXPR:
13825 case POSTINCREMENT_EXPR:
13826 case POSTDECREMENT_EXPR:
13827 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
13828 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
13829 break;
13830 case MODIFY_EXPR:
13831 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
13832 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
13833 {
13834 tree rhs = TREE_OPERAND (incr, 1);
13835 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13836 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
13837 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
13838 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13839 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
13840 rhs0, rhs1));
13841 }
13842 else
13843 incr = RECUR (incr);
13844 break;
13845 case MODOP_EXPR:
13846 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
13847 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
13848 {
13849 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13850 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13851 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
13852 TREE_TYPE (decl), lhs,
13853 RECUR (TREE_OPERAND (incr, 2))));
13854 }
13855 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
13856 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
13857 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
13858 {
13859 tree rhs = TREE_OPERAND (incr, 2);
13860 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13861 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
13862 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
13863 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13864 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
13865 rhs0, rhs1));
13866 }
13867 else
13868 incr = RECUR (incr);
13869 break;
13870 default:
13871 incr = RECUR (incr);
13872 break;
13873 }
13874
13875 TREE_VEC_ELT (declv, i) = decl;
13876 TREE_VEC_ELT (initv, i) = init;
13877 TREE_VEC_ELT (condv, i) = cond;
13878 TREE_VEC_ELT (incrv, i) = incr;
13879 #undef RECUR
13880 }
13881
13882 /* Like tsubst_copy for expressions, etc. but also does semantic
13883 processing. */
13884
13885 static tree
13886 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
13887 bool integral_constant_expression_p)
13888 {
13889 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
13890 #define RECUR(NODE) \
13891 tsubst_expr ((NODE), args, complain, in_decl, \
13892 integral_constant_expression_p)
13893
13894 tree stmt, tmp;
13895 tree r;
13896 location_t loc;
13897
13898 if (t == NULL_TREE || t == error_mark_node)
13899 return t;
13900
13901 loc = input_location;
13902 if (EXPR_HAS_LOCATION (t))
13903 input_location = EXPR_LOCATION (t);
13904 if (STATEMENT_CODE_P (TREE_CODE (t)))
13905 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
13906
13907 switch (TREE_CODE (t))
13908 {
13909 case STATEMENT_LIST:
13910 {
13911 tree_stmt_iterator i;
13912 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
13913 RECUR (tsi_stmt (i));
13914 break;
13915 }
13916
13917 case CTOR_INITIALIZER:
13918 finish_mem_initializers (tsubst_initializer_list
13919 (TREE_OPERAND (t, 0), args));
13920 break;
13921
13922 case RETURN_EXPR:
13923 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
13924 break;
13925
13926 case EXPR_STMT:
13927 tmp = RECUR (EXPR_STMT_EXPR (t));
13928 if (EXPR_STMT_STMT_EXPR_RESULT (t))
13929 finish_stmt_expr_expr (tmp, cur_stmt_expr);
13930 else
13931 finish_expr_stmt (tmp);
13932 break;
13933
13934 case USING_STMT:
13935 do_using_directive (USING_STMT_NAMESPACE (t));
13936 break;
13937
13938 case DECL_EXPR:
13939 {
13940 tree decl, pattern_decl;
13941 tree init;
13942
13943 pattern_decl = decl = DECL_EXPR_DECL (t);
13944 if (TREE_CODE (decl) == LABEL_DECL)
13945 finish_label_decl (DECL_NAME (decl));
13946 else if (TREE_CODE (decl) == USING_DECL)
13947 {
13948 tree scope = USING_DECL_SCOPE (decl);
13949 tree name = DECL_NAME (decl);
13950 tree decl;
13951
13952 scope = tsubst (scope, args, complain, in_decl);
13953 decl = lookup_qualified_name (scope, name,
13954 /*is_type_p=*/false,
13955 /*complain=*/false);
13956 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
13957 qualified_name_lookup_error (scope, name, decl, input_location);
13958 else
13959 do_local_using_decl (decl, scope, name);
13960 }
13961 else if (DECL_PACK_P (decl))
13962 {
13963 /* Don't build up decls for a variadic capture proxy, we'll
13964 instantiate the elements directly as needed. */
13965 break;
13966 }
13967 else
13968 {
13969 init = DECL_INITIAL (decl);
13970 decl = tsubst (decl, args, complain, in_decl);
13971 if (decl != error_mark_node)
13972 {
13973 /* By marking the declaration as instantiated, we avoid
13974 trying to instantiate it. Since instantiate_decl can't
13975 handle local variables, and since we've already done
13976 all that needs to be done, that's the right thing to
13977 do. */
13978 if (VAR_P (decl))
13979 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
13980 if (VAR_P (decl)
13981 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
13982 /* Anonymous aggregates are a special case. */
13983 finish_anon_union (decl);
13984 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
13985 {
13986 DECL_CONTEXT (decl) = current_function_decl;
13987 if (DECL_NAME (decl) == this_identifier)
13988 {
13989 tree lam = DECL_CONTEXT (current_function_decl);
13990 lam = CLASSTYPE_LAMBDA_EXPR (lam);
13991 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
13992 }
13993 insert_capture_proxy (decl);
13994 }
13995 else if (DECL_IMPLICIT_TYPEDEF_P (t))
13996 /* We already did a pushtag. */;
13997 else if (TREE_CODE (decl) == FUNCTION_DECL
13998 && DECL_OMP_DECLARE_REDUCTION_P (decl)
13999 && DECL_FUNCTION_SCOPE_P (pattern_decl))
14000 {
14001 DECL_CONTEXT (decl) = NULL_TREE;
14002 pushdecl (decl);
14003 DECL_CONTEXT (decl) = current_function_decl;
14004 cp_check_omp_declare_reduction (decl);
14005 }
14006 else
14007 {
14008 int const_init = false;
14009 maybe_push_decl (decl);
14010 if (VAR_P (decl)
14011 && DECL_PRETTY_FUNCTION_P (decl))
14012 {
14013 /* For __PRETTY_FUNCTION__ we have to adjust the
14014 initializer. */
14015 const char *const name
14016 = cxx_printable_name (current_function_decl, 2);
14017 init = cp_fname_init (name, &TREE_TYPE (decl));
14018 }
14019 else
14020 init = tsubst_init (init, decl, args, complain, in_decl);
14021
14022 if (VAR_P (decl))
14023 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
14024 (pattern_decl));
14025 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
14026 }
14027 }
14028 }
14029
14030 break;
14031 }
14032
14033 case FOR_STMT:
14034 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
14035 RECUR (FOR_INIT_STMT (t));
14036 finish_for_init_stmt (stmt);
14037 tmp = RECUR (FOR_COND (t));
14038 finish_for_cond (tmp, stmt, false);
14039 tmp = RECUR (FOR_EXPR (t));
14040 finish_for_expr (tmp, stmt);
14041 RECUR (FOR_BODY (t));
14042 finish_for_stmt (stmt);
14043 break;
14044
14045 case RANGE_FOR_STMT:
14046 {
14047 tree decl, expr;
14048 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
14049 decl = RANGE_FOR_DECL (t);
14050 decl = tsubst (decl, args, complain, in_decl);
14051 maybe_push_decl (decl);
14052 expr = RECUR (RANGE_FOR_EXPR (t));
14053 stmt = cp_convert_range_for (stmt, decl, expr, RANGE_FOR_IVDEP (t));
14054 RECUR (RANGE_FOR_BODY (t));
14055 finish_for_stmt (stmt);
14056 }
14057 break;
14058
14059 case WHILE_STMT:
14060 stmt = begin_while_stmt ();
14061 tmp = RECUR (WHILE_COND (t));
14062 finish_while_stmt_cond (tmp, stmt, false);
14063 RECUR (WHILE_BODY (t));
14064 finish_while_stmt (stmt);
14065 break;
14066
14067 case DO_STMT:
14068 stmt = begin_do_stmt ();
14069 RECUR (DO_BODY (t));
14070 finish_do_body (stmt);
14071 tmp = RECUR (DO_COND (t));
14072 finish_do_stmt (tmp, stmt, false);
14073 break;
14074
14075 case IF_STMT:
14076 stmt = begin_if_stmt ();
14077 tmp = RECUR (IF_COND (t));
14078 finish_if_stmt_cond (tmp, stmt);
14079 RECUR (THEN_CLAUSE (t));
14080 finish_then_clause (stmt);
14081
14082 if (ELSE_CLAUSE (t))
14083 {
14084 begin_else_clause (stmt);
14085 RECUR (ELSE_CLAUSE (t));
14086 finish_else_clause (stmt);
14087 }
14088
14089 finish_if_stmt (stmt);
14090 break;
14091
14092 case BIND_EXPR:
14093 if (BIND_EXPR_BODY_BLOCK (t))
14094 stmt = begin_function_body ();
14095 else
14096 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
14097 ? BCS_TRY_BLOCK : 0);
14098
14099 RECUR (BIND_EXPR_BODY (t));
14100
14101 if (BIND_EXPR_BODY_BLOCK (t))
14102 finish_function_body (stmt);
14103 else
14104 finish_compound_stmt (stmt);
14105 break;
14106
14107 case BREAK_STMT:
14108 finish_break_stmt ();
14109 break;
14110
14111 case CONTINUE_STMT:
14112 finish_continue_stmt ();
14113 break;
14114
14115 case SWITCH_STMT:
14116 stmt = begin_switch_stmt ();
14117 tmp = RECUR (SWITCH_STMT_COND (t));
14118 finish_switch_cond (tmp, stmt);
14119 RECUR (SWITCH_STMT_BODY (t));
14120 finish_switch_stmt (stmt);
14121 break;
14122
14123 case CASE_LABEL_EXPR:
14124 {
14125 tree low = RECUR (CASE_LOW (t));
14126 tree high = RECUR (CASE_HIGH (t));
14127 finish_case_label (EXPR_LOCATION (t), low, high);
14128 }
14129 break;
14130
14131 case LABEL_EXPR:
14132 {
14133 tree decl = LABEL_EXPR_LABEL (t);
14134 tree label;
14135
14136 label = finish_label_stmt (DECL_NAME (decl));
14137 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
14138 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
14139 }
14140 break;
14141
14142 case GOTO_EXPR:
14143 tmp = GOTO_DESTINATION (t);
14144 if (TREE_CODE (tmp) != LABEL_DECL)
14145 /* Computed goto's must be tsubst'd into. On the other hand,
14146 non-computed gotos must not be; the identifier in question
14147 will have no binding. */
14148 tmp = RECUR (tmp);
14149 else
14150 tmp = DECL_NAME (tmp);
14151 finish_goto_stmt (tmp);
14152 break;
14153
14154 case ASM_EXPR:
14155 {
14156 tree string = RECUR (ASM_STRING (t));
14157 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
14158 complain, in_decl);
14159 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
14160 complain, in_decl);
14161 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
14162 complain, in_decl);
14163 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
14164 complain, in_decl);
14165 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
14166 clobbers, labels);
14167 tree asm_expr = tmp;
14168 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
14169 asm_expr = TREE_OPERAND (asm_expr, 0);
14170 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
14171 }
14172 break;
14173
14174 case TRY_BLOCK:
14175 if (CLEANUP_P (t))
14176 {
14177 stmt = begin_try_block ();
14178 RECUR (TRY_STMTS (t));
14179 finish_cleanup_try_block (stmt);
14180 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
14181 }
14182 else
14183 {
14184 tree compound_stmt = NULL_TREE;
14185
14186 if (FN_TRY_BLOCK_P (t))
14187 stmt = begin_function_try_block (&compound_stmt);
14188 else
14189 stmt = begin_try_block ();
14190
14191 RECUR (TRY_STMTS (t));
14192
14193 if (FN_TRY_BLOCK_P (t))
14194 finish_function_try_block (stmt);
14195 else
14196 finish_try_block (stmt);
14197
14198 RECUR (TRY_HANDLERS (t));
14199 if (FN_TRY_BLOCK_P (t))
14200 finish_function_handler_sequence (stmt, compound_stmt);
14201 else
14202 finish_handler_sequence (stmt);
14203 }
14204 break;
14205
14206 case HANDLER:
14207 {
14208 tree decl = HANDLER_PARMS (t);
14209
14210 if (decl)
14211 {
14212 decl = tsubst (decl, args, complain, in_decl);
14213 /* Prevent instantiate_decl from trying to instantiate
14214 this variable. We've already done all that needs to be
14215 done. */
14216 if (decl != error_mark_node)
14217 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
14218 }
14219 stmt = begin_handler ();
14220 finish_handler_parms (decl, stmt);
14221 RECUR (HANDLER_BODY (t));
14222 finish_handler (stmt);
14223 }
14224 break;
14225
14226 case TAG_DEFN:
14227 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
14228 if (CLASS_TYPE_P (tmp))
14229 {
14230 /* Local classes are not independent templates; they are
14231 instantiated along with their containing function. And this
14232 way we don't have to deal with pushing out of one local class
14233 to instantiate a member of another local class. */
14234 tree fn;
14235 /* Closures are handled by the LAMBDA_EXPR. */
14236 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
14237 complete_type (tmp);
14238 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
14239 if (!DECL_ARTIFICIAL (fn))
14240 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
14241 }
14242 break;
14243
14244 case STATIC_ASSERT:
14245 {
14246 tree condition;
14247
14248 ++c_inhibit_evaluation_warnings;
14249 condition =
14250 tsubst_expr (STATIC_ASSERT_CONDITION (t),
14251 args,
14252 complain, in_decl,
14253 /*integral_constant_expression_p=*/true);
14254 --c_inhibit_evaluation_warnings;
14255
14256 finish_static_assert (condition,
14257 STATIC_ASSERT_MESSAGE (t),
14258 STATIC_ASSERT_SOURCE_LOCATION (t),
14259 /*member_p=*/false);
14260 }
14261 break;
14262
14263 case OMP_PARALLEL:
14264 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), false,
14265 args, complain, in_decl);
14266 stmt = begin_omp_parallel ();
14267 RECUR (OMP_PARALLEL_BODY (t));
14268 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
14269 = OMP_PARALLEL_COMBINED (t);
14270 break;
14271
14272 case OMP_TASK:
14273 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), false,
14274 args, complain, in_decl);
14275 stmt = begin_omp_task ();
14276 RECUR (OMP_TASK_BODY (t));
14277 finish_omp_task (tmp, stmt);
14278 break;
14279
14280 case OMP_FOR:
14281 case OMP_SIMD:
14282 case CILK_SIMD:
14283 case CILK_FOR:
14284 case OMP_DISTRIBUTE:
14285 {
14286 tree clauses, body, pre_body;
14287 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
14288 tree incrv = NULL_TREE;
14289 int i;
14290
14291 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), false,
14292 args, complain, in_decl);
14293 if (OMP_FOR_INIT (t) != NULL_TREE)
14294 {
14295 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14296 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14297 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14298 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14299 }
14300
14301 stmt = begin_omp_structured_block ();
14302
14303 pre_body = push_stmt_list ();
14304 RECUR (OMP_FOR_PRE_BODY (t));
14305 pre_body = pop_stmt_list (pre_body);
14306
14307 if (OMP_FOR_INIT (t) != NULL_TREE)
14308 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
14309 tsubst_omp_for_iterator (t, i, declv, initv, condv, incrv,
14310 &clauses, args, complain, in_decl,
14311 integral_constant_expression_p);
14312
14313 body = push_stmt_list ();
14314 RECUR (OMP_FOR_BODY (t));
14315 body = pop_stmt_list (body);
14316
14317 if (OMP_FOR_INIT (t) != NULL_TREE)
14318 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv, initv,
14319 condv, incrv, body, pre_body, clauses);
14320 else
14321 {
14322 t = make_node (TREE_CODE (t));
14323 TREE_TYPE (t) = void_type_node;
14324 OMP_FOR_BODY (t) = body;
14325 OMP_FOR_PRE_BODY (t) = pre_body;
14326 OMP_FOR_CLAUSES (t) = clauses;
14327 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
14328 add_stmt (t);
14329 }
14330
14331 add_stmt (finish_omp_structured_block (stmt));
14332 }
14333 break;
14334
14335 case OMP_SECTIONS:
14336 case OMP_SINGLE:
14337 case OMP_TEAMS:
14338 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
14339 args, complain, in_decl);
14340 stmt = push_stmt_list ();
14341 RECUR (OMP_BODY (t));
14342 stmt = pop_stmt_list (stmt);
14343
14344 t = copy_node (t);
14345 OMP_BODY (t) = stmt;
14346 OMP_CLAUSES (t) = tmp;
14347 add_stmt (t);
14348 break;
14349
14350 case OMP_TARGET_DATA:
14351 case OMP_TARGET:
14352 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
14353 args, complain, in_decl);
14354 keep_next_level (true);
14355 stmt = begin_omp_structured_block ();
14356
14357 RECUR (OMP_BODY (t));
14358 stmt = finish_omp_structured_block (stmt);
14359
14360 t = copy_node (t);
14361 OMP_BODY (t) = stmt;
14362 OMP_CLAUSES (t) = tmp;
14363 add_stmt (t);
14364 break;
14365
14366 case OMP_TARGET_UPDATE:
14367 tmp = tsubst_omp_clauses (OMP_TARGET_UPDATE_CLAUSES (t), false,
14368 args, complain, in_decl);
14369 t = copy_node (t);
14370 OMP_TARGET_UPDATE_CLAUSES (t) = tmp;
14371 add_stmt (t);
14372 break;
14373
14374 case OMP_SECTION:
14375 case OMP_CRITICAL:
14376 case OMP_MASTER:
14377 case OMP_TASKGROUP:
14378 case OMP_ORDERED:
14379 stmt = push_stmt_list ();
14380 RECUR (OMP_BODY (t));
14381 stmt = pop_stmt_list (stmt);
14382
14383 t = copy_node (t);
14384 OMP_BODY (t) = stmt;
14385 add_stmt (t);
14386 break;
14387
14388 case OMP_ATOMIC:
14389 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
14390 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
14391 {
14392 tree op1 = TREE_OPERAND (t, 1);
14393 tree rhs1 = NULL_TREE;
14394 tree lhs, rhs;
14395 if (TREE_CODE (op1) == COMPOUND_EXPR)
14396 {
14397 rhs1 = RECUR (TREE_OPERAND (op1, 0));
14398 op1 = TREE_OPERAND (op1, 1);
14399 }
14400 lhs = RECUR (TREE_OPERAND (op1, 0));
14401 rhs = RECUR (TREE_OPERAND (op1, 1));
14402 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
14403 NULL_TREE, NULL_TREE, rhs1,
14404 OMP_ATOMIC_SEQ_CST (t));
14405 }
14406 else
14407 {
14408 tree op1 = TREE_OPERAND (t, 1);
14409 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
14410 tree rhs1 = NULL_TREE;
14411 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
14412 enum tree_code opcode = NOP_EXPR;
14413 if (code == OMP_ATOMIC_READ)
14414 {
14415 v = RECUR (TREE_OPERAND (op1, 0));
14416 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
14417 }
14418 else if (code == OMP_ATOMIC_CAPTURE_OLD
14419 || code == OMP_ATOMIC_CAPTURE_NEW)
14420 {
14421 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
14422 v = RECUR (TREE_OPERAND (op1, 0));
14423 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
14424 if (TREE_CODE (op11) == COMPOUND_EXPR)
14425 {
14426 rhs1 = RECUR (TREE_OPERAND (op11, 0));
14427 op11 = TREE_OPERAND (op11, 1);
14428 }
14429 lhs = RECUR (TREE_OPERAND (op11, 0));
14430 rhs = RECUR (TREE_OPERAND (op11, 1));
14431 opcode = TREE_CODE (op11);
14432 if (opcode == MODIFY_EXPR)
14433 opcode = NOP_EXPR;
14434 }
14435 else
14436 {
14437 code = OMP_ATOMIC;
14438 lhs = RECUR (TREE_OPERAND (op1, 0));
14439 rhs = RECUR (TREE_OPERAND (op1, 1));
14440 }
14441 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
14442 OMP_ATOMIC_SEQ_CST (t));
14443 }
14444 break;
14445
14446 case TRANSACTION_EXPR:
14447 {
14448 int flags = 0;
14449 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
14450 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
14451
14452 if (TRANSACTION_EXPR_IS_STMT (t))
14453 {
14454 tree body = TRANSACTION_EXPR_BODY (t);
14455 tree noex = NULL_TREE;
14456 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
14457 {
14458 noex = MUST_NOT_THROW_COND (body);
14459 if (noex == NULL_TREE)
14460 noex = boolean_true_node;
14461 body = TREE_OPERAND (body, 0);
14462 }
14463 stmt = begin_transaction_stmt (input_location, NULL, flags);
14464 RECUR (body);
14465 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
14466 }
14467 else
14468 {
14469 stmt = build_transaction_expr (EXPR_LOCATION (t),
14470 RECUR (TRANSACTION_EXPR_BODY (t)),
14471 flags, NULL_TREE);
14472 RETURN (stmt);
14473 }
14474 }
14475 break;
14476
14477 case MUST_NOT_THROW_EXPR:
14478 {
14479 tree op0 = RECUR (TREE_OPERAND (t, 0));
14480 tree cond = RECUR (MUST_NOT_THROW_COND (t));
14481 RETURN (build_must_not_throw_expr (op0, cond));
14482 }
14483
14484 case EXPR_PACK_EXPANSION:
14485 error ("invalid use of pack expansion expression");
14486 RETURN (error_mark_node);
14487
14488 case NONTYPE_ARGUMENT_PACK:
14489 error ("use %<...%> to expand argument pack");
14490 RETURN (error_mark_node);
14491
14492 case CILK_SPAWN_STMT:
14493 cfun->calls_cilk_spawn = 1;
14494 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
14495
14496 case CILK_SYNC_STMT:
14497 RETURN (build_cilk_sync ());
14498
14499 case COMPOUND_EXPR:
14500 tmp = RECUR (TREE_OPERAND (t, 0));
14501 if (tmp == NULL_TREE)
14502 /* If the first operand was a statement, we're done with it. */
14503 RETURN (RECUR (TREE_OPERAND (t, 1)));
14504 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
14505 RECUR (TREE_OPERAND (t, 1)),
14506 complain));
14507
14508 case ANNOTATE_EXPR:
14509 tmp = RECUR (TREE_OPERAND (t, 0));
14510 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
14511 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
14512
14513 default:
14514 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
14515
14516 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
14517 /*function_p=*/false,
14518 integral_constant_expression_p));
14519 }
14520
14521 RETURN (NULL_TREE);
14522 out:
14523 input_location = loc;
14524 return r;
14525 #undef RECUR
14526 #undef RETURN
14527 }
14528
14529 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
14530 function. For description of the body see comment above
14531 cp_parser_omp_declare_reduction_exprs. */
14532
14533 static void
14534 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
14535 {
14536 if (t == NULL_TREE || t == error_mark_node)
14537 return;
14538
14539 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
14540
14541 tree_stmt_iterator tsi;
14542 int i;
14543 tree stmts[7];
14544 memset (stmts, 0, sizeof stmts);
14545 for (i = 0, tsi = tsi_start (t);
14546 i < 7 && !tsi_end_p (tsi);
14547 i++, tsi_next (&tsi))
14548 stmts[i] = tsi_stmt (tsi);
14549 gcc_assert (tsi_end_p (tsi));
14550
14551 if (i >= 3)
14552 {
14553 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
14554 && TREE_CODE (stmts[1]) == DECL_EXPR);
14555 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
14556 args, complain, in_decl);
14557 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
14558 args, complain, in_decl);
14559 DECL_CONTEXT (omp_out) = current_function_decl;
14560 DECL_CONTEXT (omp_in) = current_function_decl;
14561 keep_next_level (true);
14562 tree block = begin_omp_structured_block ();
14563 tsubst_expr (stmts[2], args, complain, in_decl, false);
14564 block = finish_omp_structured_block (block);
14565 block = maybe_cleanup_point_expr_void (block);
14566 add_decl_expr (omp_out);
14567 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
14568 TREE_NO_WARNING (omp_out) = 1;
14569 add_decl_expr (omp_in);
14570 finish_expr_stmt (block);
14571 }
14572 if (i >= 6)
14573 {
14574 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
14575 && TREE_CODE (stmts[4]) == DECL_EXPR);
14576 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
14577 args, complain, in_decl);
14578 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
14579 args, complain, in_decl);
14580 DECL_CONTEXT (omp_priv) = current_function_decl;
14581 DECL_CONTEXT (omp_orig) = current_function_decl;
14582 keep_next_level (true);
14583 tree block = begin_omp_structured_block ();
14584 tsubst_expr (stmts[5], args, complain, in_decl, false);
14585 block = finish_omp_structured_block (block);
14586 block = maybe_cleanup_point_expr_void (block);
14587 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
14588 add_decl_expr (omp_priv);
14589 add_decl_expr (omp_orig);
14590 finish_expr_stmt (block);
14591 if (i == 7)
14592 add_decl_expr (omp_orig);
14593 }
14594 }
14595
14596 /* T is a postfix-expression that is not being used in a function
14597 call. Return the substituted version of T. */
14598
14599 static tree
14600 tsubst_non_call_postfix_expression (tree t, tree args,
14601 tsubst_flags_t complain,
14602 tree in_decl)
14603 {
14604 if (TREE_CODE (t) == SCOPE_REF)
14605 t = tsubst_qualified_id (t, args, complain, in_decl,
14606 /*done=*/false, /*address_p=*/false);
14607 else
14608 t = tsubst_copy_and_build (t, args, complain, in_decl,
14609 /*function_p=*/false,
14610 /*integral_constant_expression_p=*/false);
14611
14612 return t;
14613 }
14614
14615 /* Like tsubst but deals with expressions and performs semantic
14616 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
14617
14618 tree
14619 tsubst_copy_and_build (tree t,
14620 tree args,
14621 tsubst_flags_t complain,
14622 tree in_decl,
14623 bool function_p,
14624 bool integral_constant_expression_p)
14625 {
14626 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
14627 #define RECUR(NODE) \
14628 tsubst_copy_and_build (NODE, args, complain, in_decl, \
14629 /*function_p=*/false, \
14630 integral_constant_expression_p)
14631
14632 tree retval, op1;
14633 location_t loc;
14634
14635 if (t == NULL_TREE || t == error_mark_node)
14636 return t;
14637
14638 loc = input_location;
14639 if (EXPR_HAS_LOCATION (t))
14640 input_location = EXPR_LOCATION (t);
14641
14642 /* N3276 decltype magic only applies to calls at the top level or on the
14643 right side of a comma. */
14644 tsubst_flags_t decltype_flag = (complain & tf_decltype);
14645 complain &= ~tf_decltype;
14646
14647 switch (TREE_CODE (t))
14648 {
14649 case USING_DECL:
14650 t = DECL_NAME (t);
14651 /* Fall through. */
14652 case IDENTIFIER_NODE:
14653 {
14654 tree decl;
14655 cp_id_kind idk;
14656 bool non_integral_constant_expression_p;
14657 const char *error_msg;
14658
14659 if (IDENTIFIER_TYPENAME_P (t))
14660 {
14661 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14662 t = mangle_conv_op_name_for_type (new_type);
14663 }
14664
14665 /* Look up the name. */
14666 decl = lookup_name (t);
14667
14668 /* By convention, expressions use ERROR_MARK_NODE to indicate
14669 failure, not NULL_TREE. */
14670 if (decl == NULL_TREE)
14671 decl = error_mark_node;
14672
14673 decl = finish_id_expression (t, decl, NULL_TREE,
14674 &idk,
14675 integral_constant_expression_p,
14676 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
14677 &non_integral_constant_expression_p,
14678 /*template_p=*/false,
14679 /*done=*/true,
14680 /*address_p=*/false,
14681 /*template_arg_p=*/false,
14682 &error_msg,
14683 input_location);
14684 if (error_msg)
14685 error (error_msg);
14686 if (!function_p && identifier_p (decl))
14687 {
14688 if (complain & tf_error)
14689 unqualified_name_lookup_error (decl);
14690 decl = error_mark_node;
14691 }
14692 RETURN (decl);
14693 }
14694
14695 case TEMPLATE_ID_EXPR:
14696 {
14697 tree object;
14698 tree templ = RECUR (TREE_OPERAND (t, 0));
14699 tree targs = TREE_OPERAND (t, 1);
14700
14701 if (targs)
14702 targs = tsubst_template_args (targs, args, complain, in_decl);
14703
14704 if (TREE_CODE (templ) == COMPONENT_REF)
14705 {
14706 object = TREE_OPERAND (templ, 0);
14707 templ = TREE_OPERAND (templ, 1);
14708 }
14709 else
14710 object = NULL_TREE;
14711 templ = lookup_template_function (templ, targs);
14712
14713 if (object)
14714 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
14715 object, templ, NULL_TREE));
14716 else
14717 RETURN (baselink_for_fns (templ));
14718 }
14719
14720 case INDIRECT_REF:
14721 {
14722 tree r = RECUR (TREE_OPERAND (t, 0));
14723
14724 if (REFERENCE_REF_P (t))
14725 {
14726 /* A type conversion to reference type will be enclosed in
14727 such an indirect ref, but the substitution of the cast
14728 will have also added such an indirect ref. */
14729 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
14730 r = convert_from_reference (r);
14731 }
14732 else
14733 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
14734 complain|decltype_flag);
14735 RETURN (r);
14736 }
14737
14738 case NOP_EXPR:
14739 {
14740 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14741 tree op0 = RECUR (TREE_OPERAND (t, 0));
14742 RETURN (build_nop (type, op0));
14743 }
14744
14745 case IMPLICIT_CONV_EXPR:
14746 {
14747 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14748 tree expr = RECUR (TREE_OPERAND (t, 0));
14749 int flags = LOOKUP_IMPLICIT;
14750 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
14751 flags = LOOKUP_NORMAL;
14752 RETURN (perform_implicit_conversion_flags (type, expr, complain,
14753 flags));
14754 }
14755
14756 case CONVERT_EXPR:
14757 {
14758 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14759 tree op0 = RECUR (TREE_OPERAND (t, 0));
14760 RETURN (build1 (CONVERT_EXPR, type, op0));
14761 }
14762
14763 case CAST_EXPR:
14764 case REINTERPRET_CAST_EXPR:
14765 case CONST_CAST_EXPR:
14766 case DYNAMIC_CAST_EXPR:
14767 case STATIC_CAST_EXPR:
14768 {
14769 tree type;
14770 tree op, r = NULL_TREE;
14771
14772 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14773 if (integral_constant_expression_p
14774 && !cast_valid_in_integral_constant_expression_p (type))
14775 {
14776 if (complain & tf_error)
14777 error ("a cast to a type other than an integral or "
14778 "enumeration type cannot appear in a constant-expression");
14779 RETURN (error_mark_node);
14780 }
14781
14782 op = RECUR (TREE_OPERAND (t, 0));
14783
14784 warning_sentinel s(warn_useless_cast);
14785 switch (TREE_CODE (t))
14786 {
14787 case CAST_EXPR:
14788 r = build_functional_cast (type, op, complain);
14789 break;
14790 case REINTERPRET_CAST_EXPR:
14791 r = build_reinterpret_cast (type, op, complain);
14792 break;
14793 case CONST_CAST_EXPR:
14794 r = build_const_cast (type, op, complain);
14795 break;
14796 case DYNAMIC_CAST_EXPR:
14797 r = build_dynamic_cast (type, op, complain);
14798 break;
14799 case STATIC_CAST_EXPR:
14800 r = build_static_cast (type, op, complain);
14801 break;
14802 default:
14803 gcc_unreachable ();
14804 }
14805
14806 RETURN (r);
14807 }
14808
14809 case POSTDECREMENT_EXPR:
14810 case POSTINCREMENT_EXPR:
14811 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14812 args, complain, in_decl);
14813 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
14814 complain|decltype_flag));
14815
14816 case PREDECREMENT_EXPR:
14817 case PREINCREMENT_EXPR:
14818 case NEGATE_EXPR:
14819 case BIT_NOT_EXPR:
14820 case ABS_EXPR:
14821 case TRUTH_NOT_EXPR:
14822 case UNARY_PLUS_EXPR: /* Unary + */
14823 case REALPART_EXPR:
14824 case IMAGPART_EXPR:
14825 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
14826 RECUR (TREE_OPERAND (t, 0)),
14827 complain|decltype_flag));
14828
14829 case FIX_TRUNC_EXPR:
14830 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
14831 0, complain));
14832
14833 case ADDR_EXPR:
14834 op1 = TREE_OPERAND (t, 0);
14835 if (TREE_CODE (op1) == LABEL_DECL)
14836 RETURN (finish_label_address_expr (DECL_NAME (op1),
14837 EXPR_LOCATION (op1)));
14838 if (TREE_CODE (op1) == SCOPE_REF)
14839 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
14840 /*done=*/true, /*address_p=*/true);
14841 else
14842 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
14843 in_decl);
14844 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
14845 complain|decltype_flag));
14846
14847 case PLUS_EXPR:
14848 case MINUS_EXPR:
14849 case MULT_EXPR:
14850 case TRUNC_DIV_EXPR:
14851 case CEIL_DIV_EXPR:
14852 case FLOOR_DIV_EXPR:
14853 case ROUND_DIV_EXPR:
14854 case EXACT_DIV_EXPR:
14855 case BIT_AND_EXPR:
14856 case BIT_IOR_EXPR:
14857 case BIT_XOR_EXPR:
14858 case TRUNC_MOD_EXPR:
14859 case FLOOR_MOD_EXPR:
14860 case TRUTH_ANDIF_EXPR:
14861 case TRUTH_ORIF_EXPR:
14862 case TRUTH_AND_EXPR:
14863 case TRUTH_OR_EXPR:
14864 case RSHIFT_EXPR:
14865 case LSHIFT_EXPR:
14866 case RROTATE_EXPR:
14867 case LROTATE_EXPR:
14868 case EQ_EXPR:
14869 case NE_EXPR:
14870 case MAX_EXPR:
14871 case MIN_EXPR:
14872 case LE_EXPR:
14873 case GE_EXPR:
14874 case LT_EXPR:
14875 case GT_EXPR:
14876 case MEMBER_REF:
14877 case DOTSTAR_EXPR:
14878 {
14879 warning_sentinel s1(warn_type_limits);
14880 warning_sentinel s2(warn_div_by_zero);
14881 tree op0 = RECUR (TREE_OPERAND (t, 0));
14882 tree op1 = RECUR (TREE_OPERAND (t, 1));
14883 tree r = build_x_binary_op
14884 (input_location, TREE_CODE (t),
14885 op0,
14886 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
14887 ? ERROR_MARK
14888 : TREE_CODE (TREE_OPERAND (t, 0))),
14889 op1,
14890 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
14891 ? ERROR_MARK
14892 : TREE_CODE (TREE_OPERAND (t, 1))),
14893 /*overload=*/NULL,
14894 complain|decltype_flag);
14895 if (EXPR_P (r) && TREE_NO_WARNING (t))
14896 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14897
14898 RETURN (r);
14899 }
14900
14901 case POINTER_PLUS_EXPR:
14902 {
14903 tree op0 = RECUR (TREE_OPERAND (t, 0));
14904 tree op1 = RECUR (TREE_OPERAND (t, 1));
14905 return fold_build_pointer_plus (op0, op1);
14906 }
14907
14908 case SCOPE_REF:
14909 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
14910 /*address_p=*/false));
14911 case ARRAY_REF:
14912 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14913 args, complain, in_decl);
14914 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
14915 RECUR (TREE_OPERAND (t, 1)),
14916 complain|decltype_flag));
14917
14918 case ARRAY_NOTATION_REF:
14919 {
14920 tree start_index, length, stride;
14921 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
14922 args, complain, in_decl);
14923 start_index = RECUR (ARRAY_NOTATION_START (t));
14924 length = RECUR (ARRAY_NOTATION_LENGTH (t));
14925 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
14926 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
14927 length, stride, TREE_TYPE (op1)));
14928 }
14929 case SIZEOF_EXPR:
14930 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
14931 RETURN (tsubst_copy (t, args, complain, in_decl));
14932 /* Fall through */
14933
14934 case ALIGNOF_EXPR:
14935 {
14936 tree r;
14937
14938 op1 = TREE_OPERAND (t, 0);
14939 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
14940 op1 = TREE_TYPE (op1);
14941 if (!args)
14942 {
14943 /* When there are no ARGS, we are trying to evaluate a
14944 non-dependent expression from the parser. Trying to do
14945 the substitutions may not work. */
14946 if (!TYPE_P (op1))
14947 op1 = TREE_TYPE (op1);
14948 }
14949 else
14950 {
14951 ++cp_unevaluated_operand;
14952 ++c_inhibit_evaluation_warnings;
14953 if (TYPE_P (op1))
14954 op1 = tsubst (op1, args, complain, in_decl);
14955 else
14956 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14957 /*function_p=*/false,
14958 /*integral_constant_expression_p=*/
14959 false);
14960 --cp_unevaluated_operand;
14961 --c_inhibit_evaluation_warnings;
14962 }
14963 if (TYPE_P (op1))
14964 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
14965 complain & tf_error);
14966 else
14967 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
14968 complain & tf_error);
14969 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
14970 {
14971 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
14972 {
14973 if (!processing_template_decl && TYPE_P (op1))
14974 {
14975 r = build_min (SIZEOF_EXPR, size_type_node,
14976 build1 (NOP_EXPR, op1, error_mark_node));
14977 SIZEOF_EXPR_TYPE_P (r) = 1;
14978 }
14979 else
14980 r = build_min (SIZEOF_EXPR, size_type_node, op1);
14981 TREE_SIDE_EFFECTS (r) = 0;
14982 TREE_READONLY (r) = 1;
14983 }
14984 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
14985 }
14986 RETURN (r);
14987 }
14988
14989 case AT_ENCODE_EXPR:
14990 {
14991 op1 = TREE_OPERAND (t, 0);
14992 ++cp_unevaluated_operand;
14993 ++c_inhibit_evaluation_warnings;
14994 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14995 /*function_p=*/false,
14996 /*integral_constant_expression_p=*/false);
14997 --cp_unevaluated_operand;
14998 --c_inhibit_evaluation_warnings;
14999 RETURN (objc_build_encode_expr (op1));
15000 }
15001
15002 case NOEXCEPT_EXPR:
15003 op1 = TREE_OPERAND (t, 0);
15004 ++cp_unevaluated_operand;
15005 ++c_inhibit_evaluation_warnings;
15006 ++cp_noexcept_operand;
15007 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
15008 /*function_p=*/false,
15009 /*integral_constant_expression_p=*/false);
15010 --cp_unevaluated_operand;
15011 --c_inhibit_evaluation_warnings;
15012 --cp_noexcept_operand;
15013 RETURN (finish_noexcept_expr (op1, complain));
15014
15015 case MODOP_EXPR:
15016 {
15017 warning_sentinel s(warn_div_by_zero);
15018 tree lhs = RECUR (TREE_OPERAND (t, 0));
15019 tree rhs = RECUR (TREE_OPERAND (t, 2));
15020 tree r = build_x_modify_expr
15021 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
15022 complain|decltype_flag);
15023 /* TREE_NO_WARNING must be set if either the expression was
15024 parenthesized or it uses an operator such as >>= rather
15025 than plain assignment. In the former case, it was already
15026 set and must be copied. In the latter case,
15027 build_x_modify_expr sets it and it must not be reset
15028 here. */
15029 if (TREE_NO_WARNING (t))
15030 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
15031
15032 RETURN (r);
15033 }
15034
15035 case ARROW_EXPR:
15036 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
15037 args, complain, in_decl);
15038 /* Remember that there was a reference to this entity. */
15039 if (DECL_P (op1)
15040 && !mark_used (op1, complain) && !(complain & tf_error))
15041 RETURN (error_mark_node);
15042 RETURN (build_x_arrow (input_location, op1, complain));
15043
15044 case NEW_EXPR:
15045 {
15046 tree placement = RECUR (TREE_OPERAND (t, 0));
15047 tree init = RECUR (TREE_OPERAND (t, 3));
15048 vec<tree, va_gc> *placement_vec;
15049 vec<tree, va_gc> *init_vec;
15050 tree ret;
15051
15052 if (placement == NULL_TREE)
15053 placement_vec = NULL;
15054 else
15055 {
15056 placement_vec = make_tree_vector ();
15057 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
15058 vec_safe_push (placement_vec, TREE_VALUE (placement));
15059 }
15060
15061 /* If there was an initializer in the original tree, but it
15062 instantiated to an empty list, then we should pass a
15063 non-NULL empty vector to tell build_new that it was an
15064 empty initializer() rather than no initializer. This can
15065 only happen when the initializer is a pack expansion whose
15066 parameter packs are of length zero. */
15067 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
15068 init_vec = NULL;
15069 else
15070 {
15071 init_vec = make_tree_vector ();
15072 if (init == void_node)
15073 gcc_assert (init_vec != NULL);
15074 else
15075 {
15076 for (; init != NULL_TREE; init = TREE_CHAIN (init))
15077 vec_safe_push (init_vec, TREE_VALUE (init));
15078 }
15079 }
15080
15081 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
15082 tree op2 = RECUR (TREE_OPERAND (t, 2));
15083 ret = build_new (&placement_vec, op1, op2, &init_vec,
15084 NEW_EXPR_USE_GLOBAL (t),
15085 complain);
15086
15087 if (placement_vec != NULL)
15088 release_tree_vector (placement_vec);
15089 if (init_vec != NULL)
15090 release_tree_vector (init_vec);
15091
15092 RETURN (ret);
15093 }
15094
15095 case DELETE_EXPR:
15096 {
15097 tree op0 = RECUR (TREE_OPERAND (t, 0));
15098 tree op1 = RECUR (TREE_OPERAND (t, 1));
15099 RETURN (delete_sanity (op0, op1,
15100 DELETE_EXPR_USE_VEC (t),
15101 DELETE_EXPR_USE_GLOBAL (t),
15102 complain));
15103 }
15104
15105 case COMPOUND_EXPR:
15106 {
15107 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
15108 complain & ~tf_decltype, in_decl,
15109 /*function_p=*/false,
15110 integral_constant_expression_p);
15111 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
15112 op0,
15113 RECUR (TREE_OPERAND (t, 1)),
15114 complain|decltype_flag));
15115 }
15116
15117 case CALL_EXPR:
15118 {
15119 tree function;
15120 vec<tree, va_gc> *call_args;
15121 unsigned int nargs, i;
15122 bool qualified_p;
15123 bool koenig_p;
15124 tree ret;
15125
15126 function = CALL_EXPR_FN (t);
15127 /* When we parsed the expression, we determined whether or
15128 not Koenig lookup should be performed. */
15129 koenig_p = KOENIG_LOOKUP_P (t);
15130 if (TREE_CODE (function) == SCOPE_REF)
15131 {
15132 qualified_p = true;
15133 function = tsubst_qualified_id (function, args, complain, in_decl,
15134 /*done=*/false,
15135 /*address_p=*/false);
15136 }
15137 else if (koenig_p && identifier_p (function))
15138 {
15139 /* Do nothing; calling tsubst_copy_and_build on an identifier
15140 would incorrectly perform unqualified lookup again.
15141
15142 Note that we can also have an IDENTIFIER_NODE if the earlier
15143 unqualified lookup found a member function; in that case
15144 koenig_p will be false and we do want to do the lookup
15145 again to find the instantiated member function.
15146
15147 FIXME but doing that causes c++/15272, so we need to stop
15148 using IDENTIFIER_NODE in that situation. */
15149 qualified_p = false;
15150 }
15151 else
15152 {
15153 if (TREE_CODE (function) == COMPONENT_REF)
15154 {
15155 tree op = TREE_OPERAND (function, 1);
15156
15157 qualified_p = (TREE_CODE (op) == SCOPE_REF
15158 || (BASELINK_P (op)
15159 && BASELINK_QUALIFIED_P (op)));
15160 }
15161 else
15162 qualified_p = false;
15163
15164 if (TREE_CODE (function) == ADDR_EXPR
15165 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
15166 /* Avoid error about taking the address of a constructor. */
15167 function = TREE_OPERAND (function, 0);
15168
15169 function = tsubst_copy_and_build (function, args, complain,
15170 in_decl,
15171 !qualified_p,
15172 integral_constant_expression_p);
15173
15174 if (BASELINK_P (function))
15175 qualified_p = true;
15176 }
15177
15178 nargs = call_expr_nargs (t);
15179 call_args = make_tree_vector ();
15180 for (i = 0; i < nargs; ++i)
15181 {
15182 tree arg = CALL_EXPR_ARG (t, i);
15183
15184 if (!PACK_EXPANSION_P (arg))
15185 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
15186 else
15187 {
15188 /* Expand the pack expansion and push each entry onto
15189 CALL_ARGS. */
15190 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
15191 if (TREE_CODE (arg) == TREE_VEC)
15192 {
15193 unsigned int len, j;
15194
15195 len = TREE_VEC_LENGTH (arg);
15196 for (j = 0; j < len; ++j)
15197 {
15198 tree value = TREE_VEC_ELT (arg, j);
15199 if (value != NULL_TREE)
15200 value = convert_from_reference (value);
15201 vec_safe_push (call_args, value);
15202 }
15203 }
15204 else
15205 {
15206 /* A partial substitution. Add one entry. */
15207 vec_safe_push (call_args, arg);
15208 }
15209 }
15210 }
15211
15212 /* We do not perform argument-dependent lookup if normal
15213 lookup finds a non-function, in accordance with the
15214 expected resolution of DR 218. */
15215 if (koenig_p
15216 && ((is_overloaded_fn (function)
15217 /* If lookup found a member function, the Koenig lookup is
15218 not appropriate, even if an unqualified-name was used
15219 to denote the function. */
15220 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
15221 || identifier_p (function))
15222 /* Only do this when substitution turns a dependent call
15223 into a non-dependent call. */
15224 && type_dependent_expression_p_push (t)
15225 && !any_type_dependent_arguments_p (call_args))
15226 function = perform_koenig_lookup (function, call_args, tf_none);
15227
15228 if (identifier_p (function)
15229 && !any_type_dependent_arguments_p (call_args))
15230 {
15231 if (koenig_p && (complain & tf_warning_or_error))
15232 {
15233 /* For backwards compatibility and good diagnostics, try
15234 the unqualified lookup again if we aren't in SFINAE
15235 context. */
15236 tree unq = (tsubst_copy_and_build
15237 (function, args, complain, in_decl, true,
15238 integral_constant_expression_p));
15239 if (unq == error_mark_node)
15240 RETURN (error_mark_node);
15241
15242 if (unq != function)
15243 {
15244 tree fn = unq;
15245 if (INDIRECT_REF_P (fn))
15246 fn = TREE_OPERAND (fn, 0);
15247 if (TREE_CODE (fn) == COMPONENT_REF)
15248 fn = TREE_OPERAND (fn, 1);
15249 if (is_overloaded_fn (fn))
15250 fn = get_first_fn (fn);
15251 if (permerror (EXPR_LOC_OR_LOC (t, input_location),
15252 "%qD was not declared in this scope, "
15253 "and no declarations were found by "
15254 "argument-dependent lookup at the point "
15255 "of instantiation", function))
15256 {
15257 if (!DECL_P (fn))
15258 /* Can't say anything more. */;
15259 else if (DECL_CLASS_SCOPE_P (fn))
15260 {
15261 location_t loc = EXPR_LOC_OR_LOC (t,
15262 input_location);
15263 inform (loc,
15264 "declarations in dependent base %qT are "
15265 "not found by unqualified lookup",
15266 DECL_CLASS_CONTEXT (fn));
15267 if (current_class_ptr)
15268 inform (loc,
15269 "use %<this->%D%> instead", function);
15270 else
15271 inform (loc,
15272 "use %<%T::%D%> instead",
15273 current_class_name, function);
15274 }
15275 else
15276 inform (0, "%q+D declared here, later in the "
15277 "translation unit", fn);
15278 }
15279 function = unq;
15280 }
15281 }
15282 if (identifier_p (function))
15283 {
15284 if (complain & tf_error)
15285 unqualified_name_lookup_error (function);
15286 release_tree_vector (call_args);
15287 RETURN (error_mark_node);
15288 }
15289 }
15290
15291 /* Remember that there was a reference to this entity. */
15292 if (DECL_P (function)
15293 && !mark_used (function, complain) && !(complain & tf_error))
15294 RETURN (error_mark_node);
15295
15296 /* Put back tf_decltype for the actual call. */
15297 complain |= decltype_flag;
15298
15299 if (TREE_CODE (function) == OFFSET_REF)
15300 ret = build_offset_ref_call_from_tree (function, &call_args,
15301 complain);
15302 else if (TREE_CODE (function) == COMPONENT_REF)
15303 {
15304 tree instance = TREE_OPERAND (function, 0);
15305 tree fn = TREE_OPERAND (function, 1);
15306
15307 if (processing_template_decl
15308 && (type_dependent_expression_p (instance)
15309 || (!BASELINK_P (fn)
15310 && TREE_CODE (fn) != FIELD_DECL)
15311 || type_dependent_expression_p (fn)
15312 || any_type_dependent_arguments_p (call_args)))
15313 ret = build_nt_call_vec (function, call_args);
15314 else if (!BASELINK_P (fn))
15315 ret = finish_call_expr (function, &call_args,
15316 /*disallow_virtual=*/false,
15317 /*koenig_p=*/false,
15318 complain);
15319 else
15320 ret = (build_new_method_call
15321 (instance, fn,
15322 &call_args, NULL_TREE,
15323 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
15324 /*fn_p=*/NULL,
15325 complain));
15326 }
15327 else
15328 ret = finish_call_expr (function, &call_args,
15329 /*disallow_virtual=*/qualified_p,
15330 koenig_p,
15331 complain);
15332
15333 release_tree_vector (call_args);
15334
15335 RETURN (ret);
15336 }
15337
15338 case COND_EXPR:
15339 {
15340 tree cond = RECUR (TREE_OPERAND (t, 0));
15341 tree folded_cond = fold_non_dependent_expr (cond);
15342 tree exp1, exp2;
15343
15344 if (TREE_CODE (folded_cond) == INTEGER_CST)
15345 {
15346 if (integer_zerop (folded_cond))
15347 {
15348 ++c_inhibit_evaluation_warnings;
15349 exp1 = RECUR (TREE_OPERAND (t, 1));
15350 --c_inhibit_evaluation_warnings;
15351 exp2 = RECUR (TREE_OPERAND (t, 2));
15352 }
15353 else
15354 {
15355 exp1 = RECUR (TREE_OPERAND (t, 1));
15356 ++c_inhibit_evaluation_warnings;
15357 exp2 = RECUR (TREE_OPERAND (t, 2));
15358 --c_inhibit_evaluation_warnings;
15359 }
15360 cond = folded_cond;
15361 }
15362 else
15363 {
15364 exp1 = RECUR (TREE_OPERAND (t, 1));
15365 exp2 = RECUR (TREE_OPERAND (t, 2));
15366 }
15367
15368 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
15369 cond, exp1, exp2, complain));
15370 }
15371
15372 case PSEUDO_DTOR_EXPR:
15373 {
15374 tree op0 = RECUR (TREE_OPERAND (t, 0));
15375 tree op1 = RECUR (TREE_OPERAND (t, 1));
15376 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
15377 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
15378 input_location));
15379 }
15380
15381 case TREE_LIST:
15382 {
15383 tree purpose, value, chain;
15384
15385 if (t == void_list_node)
15386 RETURN (t);
15387
15388 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
15389 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
15390 {
15391 /* We have pack expansions, so expand those and
15392 create a new list out of it. */
15393 tree purposevec = NULL_TREE;
15394 tree valuevec = NULL_TREE;
15395 tree chain;
15396 int i, len = -1;
15397
15398 /* Expand the argument expressions. */
15399 if (TREE_PURPOSE (t))
15400 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
15401 complain, in_decl);
15402 if (TREE_VALUE (t))
15403 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
15404 complain, in_decl);
15405
15406 /* Build the rest of the list. */
15407 chain = TREE_CHAIN (t);
15408 if (chain && chain != void_type_node)
15409 chain = RECUR (chain);
15410
15411 /* Determine the number of arguments. */
15412 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
15413 {
15414 len = TREE_VEC_LENGTH (purposevec);
15415 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
15416 }
15417 else if (TREE_CODE (valuevec) == TREE_VEC)
15418 len = TREE_VEC_LENGTH (valuevec);
15419 else
15420 {
15421 /* Since we only performed a partial substitution into
15422 the argument pack, we only RETURN (a single list
15423 node. */
15424 if (purposevec == TREE_PURPOSE (t)
15425 && valuevec == TREE_VALUE (t)
15426 && chain == TREE_CHAIN (t))
15427 RETURN (t);
15428
15429 RETURN (tree_cons (purposevec, valuevec, chain));
15430 }
15431
15432 /* Convert the argument vectors into a TREE_LIST */
15433 i = len;
15434 while (i > 0)
15435 {
15436 /* Grab the Ith values. */
15437 i--;
15438 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
15439 : NULL_TREE;
15440 value
15441 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
15442 : NULL_TREE;
15443
15444 /* Build the list (backwards). */
15445 chain = tree_cons (purpose, value, chain);
15446 }
15447
15448 RETURN (chain);
15449 }
15450
15451 purpose = TREE_PURPOSE (t);
15452 if (purpose)
15453 purpose = RECUR (purpose);
15454 value = TREE_VALUE (t);
15455 if (value)
15456 value = RECUR (value);
15457 chain = TREE_CHAIN (t);
15458 if (chain && chain != void_type_node)
15459 chain = RECUR (chain);
15460 if (purpose == TREE_PURPOSE (t)
15461 && value == TREE_VALUE (t)
15462 && chain == TREE_CHAIN (t))
15463 RETURN (t);
15464 RETURN (tree_cons (purpose, value, chain));
15465 }
15466
15467 case COMPONENT_REF:
15468 {
15469 tree object;
15470 tree object_type;
15471 tree member;
15472 tree r;
15473
15474 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
15475 args, complain, in_decl);
15476 /* Remember that there was a reference to this entity. */
15477 if (DECL_P (object)
15478 && !mark_used (object, complain) && !(complain & tf_error))
15479 RETURN (error_mark_node);
15480 object_type = TREE_TYPE (object);
15481
15482 member = TREE_OPERAND (t, 1);
15483 if (BASELINK_P (member))
15484 member = tsubst_baselink (member,
15485 non_reference (TREE_TYPE (object)),
15486 args, complain, in_decl);
15487 else
15488 member = tsubst_copy (member, args, complain, in_decl);
15489 if (member == error_mark_node)
15490 RETURN (error_mark_node);
15491
15492 if (type_dependent_expression_p (object))
15493 /* We can't do much here. */;
15494 else if (!CLASS_TYPE_P (object_type))
15495 {
15496 if (scalarish_type_p (object_type))
15497 {
15498 tree s = NULL_TREE;
15499 tree dtor = member;
15500
15501 if (TREE_CODE (dtor) == SCOPE_REF)
15502 {
15503 s = TREE_OPERAND (dtor, 0);
15504 dtor = TREE_OPERAND (dtor, 1);
15505 }
15506 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
15507 {
15508 dtor = TREE_OPERAND (dtor, 0);
15509 if (TYPE_P (dtor))
15510 RETURN (finish_pseudo_destructor_expr
15511 (object, s, dtor, input_location));
15512 }
15513 }
15514 }
15515 else if (TREE_CODE (member) == SCOPE_REF
15516 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
15517 {
15518 /* Lookup the template functions now that we know what the
15519 scope is. */
15520 tree scope = TREE_OPERAND (member, 0);
15521 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
15522 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
15523 member = lookup_qualified_name (scope, tmpl,
15524 /*is_type_p=*/false,
15525 /*complain=*/false);
15526 if (BASELINK_P (member))
15527 {
15528 BASELINK_FUNCTIONS (member)
15529 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
15530 args);
15531 member = (adjust_result_of_qualified_name_lookup
15532 (member, BINFO_TYPE (BASELINK_BINFO (member)),
15533 object_type));
15534 }
15535 else
15536 {
15537 qualified_name_lookup_error (scope, tmpl, member,
15538 input_location);
15539 RETURN (error_mark_node);
15540 }
15541 }
15542 else if (TREE_CODE (member) == SCOPE_REF
15543 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
15544 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
15545 {
15546 if (complain & tf_error)
15547 {
15548 if (TYPE_P (TREE_OPERAND (member, 0)))
15549 error ("%qT is not a class or namespace",
15550 TREE_OPERAND (member, 0));
15551 else
15552 error ("%qD is not a class or namespace",
15553 TREE_OPERAND (member, 0));
15554 }
15555 RETURN (error_mark_node);
15556 }
15557 else if (TREE_CODE (member) == FIELD_DECL)
15558 {
15559 r = finish_non_static_data_member (member, object, NULL_TREE);
15560 if (TREE_CODE (r) == COMPONENT_REF)
15561 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
15562 RETURN (r);
15563 }
15564
15565 r = finish_class_member_access_expr (object, member,
15566 /*template_p=*/false,
15567 complain);
15568 if (TREE_CODE (r) == COMPONENT_REF)
15569 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
15570 RETURN (r);
15571 }
15572
15573 case THROW_EXPR:
15574 RETURN (build_throw
15575 (RECUR (TREE_OPERAND (t, 0))));
15576
15577 case CONSTRUCTOR:
15578 {
15579 vec<constructor_elt, va_gc> *n;
15580 constructor_elt *ce;
15581 unsigned HOST_WIDE_INT idx;
15582 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15583 bool process_index_p;
15584 int newlen;
15585 bool need_copy_p = false;
15586 tree r;
15587
15588 if (type == error_mark_node)
15589 RETURN (error_mark_node);
15590
15591 /* digest_init will do the wrong thing if we let it. */
15592 if (type && TYPE_PTRMEMFUNC_P (type))
15593 RETURN (t);
15594
15595 /* We do not want to process the index of aggregate
15596 initializers as they are identifier nodes which will be
15597 looked up by digest_init. */
15598 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
15599
15600 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
15601 newlen = vec_safe_length (n);
15602 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
15603 {
15604 if (ce->index && process_index_p
15605 /* An identifier index is looked up in the type
15606 being initialized, not the current scope. */
15607 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
15608 ce->index = RECUR (ce->index);
15609
15610 if (PACK_EXPANSION_P (ce->value))
15611 {
15612 /* Substitute into the pack expansion. */
15613 ce->value = tsubst_pack_expansion (ce->value, args, complain,
15614 in_decl);
15615
15616 if (ce->value == error_mark_node
15617 || PACK_EXPANSION_P (ce->value))
15618 ;
15619 else if (TREE_VEC_LENGTH (ce->value) == 1)
15620 /* Just move the argument into place. */
15621 ce->value = TREE_VEC_ELT (ce->value, 0);
15622 else
15623 {
15624 /* Update the length of the final CONSTRUCTOR
15625 arguments vector, and note that we will need to
15626 copy.*/
15627 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
15628 need_copy_p = true;
15629 }
15630 }
15631 else
15632 ce->value = RECUR (ce->value);
15633 }
15634
15635 if (need_copy_p)
15636 {
15637 vec<constructor_elt, va_gc> *old_n = n;
15638
15639 vec_alloc (n, newlen);
15640 FOR_EACH_VEC_ELT (*old_n, idx, ce)
15641 {
15642 if (TREE_CODE (ce->value) == TREE_VEC)
15643 {
15644 int i, len = TREE_VEC_LENGTH (ce->value);
15645 for (i = 0; i < len; ++i)
15646 CONSTRUCTOR_APPEND_ELT (n, 0,
15647 TREE_VEC_ELT (ce->value, i));
15648 }
15649 else
15650 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
15651 }
15652 }
15653
15654 r = build_constructor (init_list_type_node, n);
15655 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
15656
15657 if (TREE_HAS_CONSTRUCTOR (t))
15658 RETURN (finish_compound_literal (type, r, complain));
15659
15660 TREE_TYPE (r) = type;
15661 RETURN (r);
15662 }
15663
15664 case TYPEID_EXPR:
15665 {
15666 tree operand_0 = TREE_OPERAND (t, 0);
15667 if (TYPE_P (operand_0))
15668 {
15669 operand_0 = tsubst (operand_0, args, complain, in_decl);
15670 RETURN (get_typeid (operand_0, complain));
15671 }
15672 else
15673 {
15674 operand_0 = RECUR (operand_0);
15675 RETURN (build_typeid (operand_0, complain));
15676 }
15677 }
15678
15679 case VAR_DECL:
15680 if (!args)
15681 RETURN (t);
15682 else if (DECL_PACK_P (t))
15683 {
15684 /* We don't build decls for an instantiation of a
15685 variadic capture proxy, we instantiate the elements
15686 when needed. */
15687 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
15688 return RECUR (DECL_VALUE_EXPR (t));
15689 }
15690 /* Fall through */
15691
15692 case PARM_DECL:
15693 {
15694 tree r = tsubst_copy (t, args, complain, in_decl);
15695 /* ??? We're doing a subset of finish_id_expression here. */
15696 if (VAR_P (r)
15697 && !processing_template_decl
15698 && !cp_unevaluated_operand
15699 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
15700 && CP_DECL_THREAD_LOCAL_P (r))
15701 {
15702 if (tree wrap = get_tls_wrapper_fn (r))
15703 /* Replace an evaluated use of the thread_local variable with
15704 a call to its wrapper. */
15705 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
15706 }
15707 else if (outer_automatic_var_p (r))
15708 {
15709 r = process_outer_var_ref (r, complain);
15710 if (is_capture_proxy (r))
15711 register_local_specialization (r, t);
15712 }
15713
15714 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
15715 /* If the original type was a reference, we'll be wrapped in
15716 the appropriate INDIRECT_REF. */
15717 r = convert_from_reference (r);
15718 RETURN (r);
15719 }
15720
15721 case VA_ARG_EXPR:
15722 {
15723 tree op0 = RECUR (TREE_OPERAND (t, 0));
15724 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15725 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
15726 }
15727
15728 case OFFSETOF_EXPR:
15729 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0)),
15730 EXPR_LOCATION (t)));
15731
15732 case TRAIT_EXPR:
15733 {
15734 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
15735 complain, in_decl);
15736
15737 tree type2 = TRAIT_EXPR_TYPE2 (t);
15738 if (type2 && TREE_CODE (type2) == TREE_LIST)
15739 type2 = RECUR (type2);
15740 else if (type2)
15741 type2 = tsubst (type2, args, complain, in_decl);
15742
15743 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
15744 }
15745
15746 case STMT_EXPR:
15747 {
15748 tree old_stmt_expr = cur_stmt_expr;
15749 tree stmt_expr = begin_stmt_expr ();
15750
15751 cur_stmt_expr = stmt_expr;
15752 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
15753 integral_constant_expression_p);
15754 stmt_expr = finish_stmt_expr (stmt_expr, false);
15755 cur_stmt_expr = old_stmt_expr;
15756
15757 /* If the resulting list of expression statement is empty,
15758 fold it further into void_node. */
15759 if (empty_expr_stmt_p (stmt_expr))
15760 stmt_expr = void_node;
15761
15762 RETURN (stmt_expr);
15763 }
15764
15765 case LAMBDA_EXPR:
15766 {
15767 tree r = build_lambda_expr ();
15768
15769 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
15770 LAMBDA_EXPR_CLOSURE (r) = type;
15771 CLASSTYPE_LAMBDA_EXPR (type) = r;
15772
15773 LAMBDA_EXPR_LOCATION (r)
15774 = LAMBDA_EXPR_LOCATION (t);
15775 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
15776 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
15777 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
15778 LAMBDA_EXPR_DISCRIMINATOR (r)
15779 = (LAMBDA_EXPR_DISCRIMINATOR (t));
15780 /* For a function scope, we want to use tsubst so that we don't
15781 complain about referring to an auto function before its return
15782 type has been deduced. Otherwise, we want to use tsubst_copy so
15783 that we look up the existing field/parameter/variable rather
15784 than build a new one. */
15785 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
15786 if (scope && TREE_CODE (scope) == FUNCTION_DECL)
15787 scope = tsubst (scope, args, complain, in_decl);
15788 else if (scope && TREE_CODE (scope) == PARM_DECL)
15789 {
15790 /* Look up the parameter we want directly, as tsubst_copy
15791 doesn't do what we need. */
15792 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
15793 tree parm = FUNCTION_FIRST_USER_PARM (fn);
15794 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
15795 parm = DECL_CHAIN (parm);
15796 scope = parm;
15797 /* FIXME Work around the parm not having DECL_CONTEXT set. */
15798 if (DECL_CONTEXT (scope) == NULL_TREE)
15799 DECL_CONTEXT (scope) = fn;
15800 }
15801 else
15802 scope = RECUR (scope);
15803 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
15804 LAMBDA_EXPR_RETURN_TYPE (r)
15805 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
15806
15807 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
15808 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
15809
15810 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
15811 determine_visibility (TYPE_NAME (type));
15812 /* Now that we know visibility, instantiate the type so we have a
15813 declaration of the op() for later calls to lambda_function. */
15814 complete_type (type);
15815
15816 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
15817
15818 RETURN (build_lambda_object (r));
15819 }
15820
15821 case TARGET_EXPR:
15822 /* We can get here for a constant initializer of non-dependent type.
15823 FIXME stop folding in cp_parser_initializer_clause. */
15824 {
15825 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
15826 complain);
15827 RETURN (r);
15828 }
15829
15830 case TRANSACTION_EXPR:
15831 RETURN (tsubst_expr(t, args, complain, in_decl,
15832 integral_constant_expression_p));
15833
15834 case PAREN_EXPR:
15835 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
15836
15837 case VEC_PERM_EXPR:
15838 {
15839 tree op0 = RECUR (TREE_OPERAND (t, 0));
15840 tree op1 = RECUR (TREE_OPERAND (t, 1));
15841 tree op2 = RECUR (TREE_OPERAND (t, 2));
15842 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
15843 complain));
15844 }
15845
15846 default:
15847 /* Handle Objective-C++ constructs, if appropriate. */
15848 {
15849 tree subst
15850 = objcp_tsubst_copy_and_build (t, args, complain,
15851 in_decl, /*function_p=*/false);
15852 if (subst)
15853 RETURN (subst);
15854 }
15855 RETURN (tsubst_copy (t, args, complain, in_decl));
15856 }
15857
15858 #undef RECUR
15859 #undef RETURN
15860 out:
15861 input_location = loc;
15862 return retval;
15863 }
15864
15865 /* Verify that the instantiated ARGS are valid. For type arguments,
15866 make sure that the type's linkage is ok. For non-type arguments,
15867 make sure they are constants if they are integral or enumerations.
15868 Emit an error under control of COMPLAIN, and return TRUE on error. */
15869
15870 static bool
15871 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
15872 {
15873 if (dependent_template_arg_p (t))
15874 return false;
15875 if (ARGUMENT_PACK_P (t))
15876 {
15877 tree vec = ARGUMENT_PACK_ARGS (t);
15878 int len = TREE_VEC_LENGTH (vec);
15879 bool result = false;
15880 int i;
15881
15882 for (i = 0; i < len; ++i)
15883 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
15884 result = true;
15885 return result;
15886 }
15887 else if (TYPE_P (t))
15888 {
15889 /* [basic.link]: A name with no linkage (notably, the name
15890 of a class or enumeration declared in a local scope)
15891 shall not be used to declare an entity with linkage.
15892 This implies that names with no linkage cannot be used as
15893 template arguments
15894
15895 DR 757 relaxes this restriction for C++0x. */
15896 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
15897 : no_linkage_check (t, /*relaxed_p=*/false));
15898
15899 if (nt)
15900 {
15901 /* DR 488 makes use of a type with no linkage cause
15902 type deduction to fail. */
15903 if (complain & tf_error)
15904 {
15905 if (TYPE_ANONYMOUS_P (nt))
15906 error ("%qT is/uses anonymous type", t);
15907 else
15908 error ("template argument for %qD uses local type %qT",
15909 tmpl, t);
15910 }
15911 return true;
15912 }
15913 /* In order to avoid all sorts of complications, we do not
15914 allow variably-modified types as template arguments. */
15915 else if (variably_modified_type_p (t, NULL_TREE))
15916 {
15917 if (complain & tf_error)
15918 error ("%qT is a variably modified type", t);
15919 return true;
15920 }
15921 }
15922 /* Class template and alias template arguments should be OK. */
15923 else if (DECL_TYPE_TEMPLATE_P (t))
15924 ;
15925 /* A non-type argument of integral or enumerated type must be a
15926 constant. */
15927 else if (TREE_TYPE (t)
15928 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
15929 && !REFERENCE_REF_P (t)
15930 && !TREE_CONSTANT (t))
15931 {
15932 if (complain & tf_error)
15933 error ("integral expression %qE is not constant", t);
15934 return true;
15935 }
15936 return false;
15937 }
15938
15939 static bool
15940 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
15941 {
15942 int ix, len = DECL_NTPARMS (tmpl);
15943 bool result = false;
15944
15945 for (ix = 0; ix != len; ix++)
15946 {
15947 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
15948 result = true;
15949 }
15950 if (result && (complain & tf_error))
15951 error (" trying to instantiate %qD", tmpl);
15952 return result;
15953 }
15954
15955 /* We're out of SFINAE context now, so generate diagnostics for the access
15956 errors we saw earlier when instantiating D from TMPL and ARGS. */
15957
15958 static void
15959 recheck_decl_substitution (tree d, tree tmpl, tree args)
15960 {
15961 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
15962 tree type = TREE_TYPE (pattern);
15963 location_t loc = input_location;
15964
15965 push_access_scope (d);
15966 push_deferring_access_checks (dk_no_deferred);
15967 input_location = DECL_SOURCE_LOCATION (pattern);
15968 tsubst (type, args, tf_warning_or_error, d);
15969 input_location = loc;
15970 pop_deferring_access_checks ();
15971 pop_access_scope (d);
15972 }
15973
15974 /* Instantiate the indicated variable, function, or alias template TMPL with
15975 the template arguments in TARG_PTR. */
15976
15977 static tree
15978 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
15979 {
15980 tree targ_ptr = orig_args;
15981 tree fndecl;
15982 tree gen_tmpl;
15983 tree spec;
15984 bool access_ok = true;
15985
15986 if (tmpl == error_mark_node)
15987 return error_mark_node;
15988
15989 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
15990
15991 /* If this function is a clone, handle it specially. */
15992 if (DECL_CLONED_FUNCTION_P (tmpl))
15993 {
15994 tree spec;
15995 tree clone;
15996
15997 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
15998 DECL_CLONED_FUNCTION. */
15999 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
16000 targ_ptr, complain);
16001 if (spec == error_mark_node)
16002 return error_mark_node;
16003
16004 /* Look for the clone. */
16005 FOR_EACH_CLONE (clone, spec)
16006 if (DECL_NAME (clone) == DECL_NAME (tmpl))
16007 return clone;
16008 /* We should always have found the clone by now. */
16009 gcc_unreachable ();
16010 return NULL_TREE;
16011 }
16012
16013 if (targ_ptr == error_mark_node)
16014 return error_mark_node;
16015
16016 /* Check to see if we already have this specialization. */
16017 gen_tmpl = most_general_template (tmpl);
16018 if (tmpl != gen_tmpl)
16019 /* The TMPL is a partial instantiation. To get a full set of
16020 arguments we must add the arguments used to perform the
16021 partial instantiation. */
16022 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
16023 targ_ptr);
16024
16025 /* It would be nice to avoid hashing here and then again in tsubst_decl,
16026 but it doesn't seem to be on the hot path. */
16027 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
16028
16029 gcc_assert (tmpl == gen_tmpl
16030 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
16031 == spec)
16032 || fndecl == NULL_TREE);
16033
16034 if (spec != NULL_TREE)
16035 {
16036 if (FNDECL_HAS_ACCESS_ERRORS (spec))
16037 {
16038 if (complain & tf_error)
16039 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
16040 return error_mark_node;
16041 }
16042 return spec;
16043 }
16044
16045 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
16046 complain))
16047 return error_mark_node;
16048
16049 /* We are building a FUNCTION_DECL, during which the access of its
16050 parameters and return types have to be checked. However this
16051 FUNCTION_DECL which is the desired context for access checking
16052 is not built yet. We solve this chicken-and-egg problem by
16053 deferring all checks until we have the FUNCTION_DECL. */
16054 push_deferring_access_checks (dk_deferred);
16055
16056 /* Instantiation of the function happens in the context of the function
16057 template, not the context of the overload resolution we're doing. */
16058 push_to_top_level ();
16059 /* If there are dependent arguments, e.g. because we're doing partial
16060 ordering, make sure processing_template_decl stays set. */
16061 if (uses_template_parms (targ_ptr))
16062 ++processing_template_decl;
16063 if (DECL_CLASS_SCOPE_P (gen_tmpl))
16064 {
16065 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
16066 complain, gen_tmpl, true);
16067 push_nested_class (ctx);
16068 }
16069
16070 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
16071
16072 if (VAR_P (pattern))
16073 {
16074 /* We need to determine if we're using a partial or explicit
16075 specialization now, because the type of the variable could be
16076 different. */
16077 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
16078 tree elt = most_specialized_partial_spec (tid, complain);
16079 if (elt == error_mark_node)
16080 pattern = error_mark_node;
16081 else if (elt)
16082 {
16083 tmpl = TREE_VALUE (elt);
16084 pattern = DECL_TEMPLATE_RESULT (tmpl);
16085 targ_ptr = TREE_PURPOSE (elt);
16086 }
16087 }
16088
16089 /* Substitute template parameters to obtain the specialization. */
16090 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
16091 if (DECL_CLASS_SCOPE_P (gen_tmpl))
16092 pop_nested_class ();
16093 pop_from_top_level ();
16094
16095 if (fndecl == error_mark_node)
16096 {
16097 pop_deferring_access_checks ();
16098 return error_mark_node;
16099 }
16100
16101 /* The DECL_TI_TEMPLATE should always be the immediate parent
16102 template, not the most general template. */
16103 DECL_TI_TEMPLATE (fndecl) = tmpl;
16104
16105 /* Now we know the specialization, compute access previously
16106 deferred. */
16107 push_access_scope (fndecl);
16108 if (!perform_deferred_access_checks (complain))
16109 access_ok = false;
16110 pop_access_scope (fndecl);
16111 pop_deferring_access_checks ();
16112
16113 /* If we've just instantiated the main entry point for a function,
16114 instantiate all the alternate entry points as well. We do this
16115 by cloning the instantiation of the main entry point, not by
16116 instantiating the template clones. */
16117 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
16118 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
16119
16120 if (!access_ok)
16121 {
16122 if (!(complain & tf_error))
16123 {
16124 /* Remember to reinstantiate when we're out of SFINAE so the user
16125 can see the errors. */
16126 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
16127 }
16128 return error_mark_node;
16129 }
16130 return fndecl;
16131 }
16132
16133 /* Wrapper for instantiate_template_1. */
16134
16135 tree
16136 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
16137 {
16138 tree ret;
16139 timevar_push (TV_TEMPLATE_INST);
16140 ret = instantiate_template_1 (tmpl, orig_args, complain);
16141 timevar_pop (TV_TEMPLATE_INST);
16142 return ret;
16143 }
16144
16145 /* Instantiate the alias template TMPL with ARGS. Also push a template
16146 instantiation level, which instantiate_template doesn't do because
16147 functions and variables have sufficient context established by the
16148 callers. */
16149
16150 static tree
16151 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
16152 {
16153 struct pending_template *old_last_pend = last_pending_template;
16154 struct tinst_level *old_error_tinst = last_error_tinst_level;
16155 if (tmpl == error_mark_node || args == error_mark_node)
16156 return error_mark_node;
16157 tree tinst = build_tree_list (tmpl, args);
16158 if (!push_tinst_level (tinst))
16159 {
16160 ggc_free (tinst);
16161 return error_mark_node;
16162 }
16163
16164 args =
16165 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
16166 args, tmpl, complain,
16167 /*require_all_args=*/true,
16168 /*use_default_args=*/true);
16169
16170 tree r = instantiate_template (tmpl, args, complain);
16171 pop_tinst_level ();
16172 /* We can't free this if a pending_template entry or last_error_tinst_level
16173 is pointing at it. */
16174 if (last_pending_template == old_last_pend
16175 && last_error_tinst_level == old_error_tinst)
16176 ggc_free (tinst);
16177
16178 return r;
16179 }
16180
16181 /* PARM is a template parameter pack for FN. Returns true iff
16182 PARM is used in a deducible way in the argument list of FN. */
16183
16184 static bool
16185 pack_deducible_p (tree parm, tree fn)
16186 {
16187 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
16188 for (; t; t = TREE_CHAIN (t))
16189 {
16190 tree type = TREE_VALUE (t);
16191 tree packs;
16192 if (!PACK_EXPANSION_P (type))
16193 continue;
16194 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
16195 packs; packs = TREE_CHAIN (packs))
16196 if (template_args_equal (TREE_VALUE (packs), parm))
16197 {
16198 /* The template parameter pack is used in a function parameter
16199 pack. If this is the end of the parameter list, the
16200 template parameter pack is deducible. */
16201 if (TREE_CHAIN (t) == void_list_node)
16202 return true;
16203 else
16204 /* Otherwise, not. Well, it could be deduced from
16205 a non-pack parameter, but doing so would end up with
16206 a deduction mismatch, so don't bother. */
16207 return false;
16208 }
16209 }
16210 /* The template parameter pack isn't used in any function parameter
16211 packs, but it might be used deeper, e.g. tuple<Args...>. */
16212 return true;
16213 }
16214
16215 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
16216 NARGS elements of the arguments that are being used when calling
16217 it. TARGS is a vector into which the deduced template arguments
16218 are placed.
16219
16220 Returns either a FUNCTION_DECL for the matching specialization of FN or
16221 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
16222 true, diagnostics will be printed to explain why it failed.
16223
16224 If FN is a conversion operator, or we are trying to produce a specific
16225 specialization, RETURN_TYPE is the return type desired.
16226
16227 The EXPLICIT_TARGS are explicit template arguments provided via a
16228 template-id.
16229
16230 The parameter STRICT is one of:
16231
16232 DEDUCE_CALL:
16233 We are deducing arguments for a function call, as in
16234 [temp.deduct.call].
16235
16236 DEDUCE_CONV:
16237 We are deducing arguments for a conversion function, as in
16238 [temp.deduct.conv].
16239
16240 DEDUCE_EXACT:
16241 We are deducing arguments when doing an explicit instantiation
16242 as in [temp.explicit], when determining an explicit specialization
16243 as in [temp.expl.spec], or when taking the address of a function
16244 template, as in [temp.deduct.funcaddr]. */
16245
16246 tree
16247 fn_type_unification (tree fn,
16248 tree explicit_targs,
16249 tree targs,
16250 const tree *args,
16251 unsigned int nargs,
16252 tree return_type,
16253 unification_kind_t strict,
16254 int flags,
16255 bool explain_p,
16256 bool decltype_p)
16257 {
16258 tree parms;
16259 tree fntype;
16260 tree decl = NULL_TREE;
16261 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
16262 bool ok;
16263 static int deduction_depth;
16264 struct pending_template *old_last_pend = last_pending_template;
16265 struct tinst_level *old_error_tinst = last_error_tinst_level;
16266 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
16267 tree tinst;
16268 tree r = error_mark_node;
16269
16270 if (decltype_p)
16271 complain |= tf_decltype;
16272
16273 /* In C++0x, it's possible to have a function template whose type depends
16274 on itself recursively. This is most obvious with decltype, but can also
16275 occur with enumeration scope (c++/48969). So we need to catch infinite
16276 recursion and reject the substitution at deduction time; this function
16277 will return error_mark_node for any repeated substitution.
16278
16279 This also catches excessive recursion such as when f<N> depends on
16280 f<N-1> across all integers, and returns error_mark_node for all the
16281 substitutions back up to the initial one.
16282
16283 This is, of course, not reentrant. */
16284 if (excessive_deduction_depth)
16285 return error_mark_node;
16286 tinst = build_tree_list (fn, NULL_TREE);
16287 ++deduction_depth;
16288
16289 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
16290
16291 fntype = TREE_TYPE (fn);
16292 if (explicit_targs)
16293 {
16294 /* [temp.deduct]
16295
16296 The specified template arguments must match the template
16297 parameters in kind (i.e., type, nontype, template), and there
16298 must not be more arguments than there are parameters;
16299 otherwise type deduction fails.
16300
16301 Nontype arguments must match the types of the corresponding
16302 nontype template parameters, or must be convertible to the
16303 types of the corresponding nontype parameters as specified in
16304 _temp.arg.nontype_, otherwise type deduction fails.
16305
16306 All references in the function type of the function template
16307 to the corresponding template parameters are replaced by the
16308 specified template argument values. If a substitution in a
16309 template parameter or in the function type of the function
16310 template results in an invalid type, type deduction fails. */
16311 int i, len = TREE_VEC_LENGTH (tparms);
16312 location_t loc = input_location;
16313 bool incomplete = false;
16314
16315 /* Adjust any explicit template arguments before entering the
16316 substitution context. */
16317 explicit_targs
16318 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
16319 complain,
16320 /*require_all_args=*/false,
16321 /*use_default_args=*/false));
16322 if (explicit_targs == error_mark_node)
16323 goto fail;
16324
16325 /* Substitute the explicit args into the function type. This is
16326 necessary so that, for instance, explicitly declared function
16327 arguments can match null pointed constants. If we were given
16328 an incomplete set of explicit args, we must not do semantic
16329 processing during substitution as we could create partial
16330 instantiations. */
16331 for (i = 0; i < len; i++)
16332 {
16333 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
16334 bool parameter_pack = false;
16335 tree targ = TREE_VEC_ELT (explicit_targs, i);
16336
16337 /* Dig out the actual parm. */
16338 if (TREE_CODE (parm) == TYPE_DECL
16339 || TREE_CODE (parm) == TEMPLATE_DECL)
16340 {
16341 parm = TREE_TYPE (parm);
16342 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
16343 }
16344 else if (TREE_CODE (parm) == PARM_DECL)
16345 {
16346 parm = DECL_INITIAL (parm);
16347 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
16348 }
16349
16350 if (!parameter_pack && targ == NULL_TREE)
16351 /* No explicit argument for this template parameter. */
16352 incomplete = true;
16353
16354 if (parameter_pack && pack_deducible_p (parm, fn))
16355 {
16356 /* Mark the argument pack as "incomplete". We could
16357 still deduce more arguments during unification.
16358 We remove this mark in type_unification_real. */
16359 if (targ)
16360 {
16361 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
16362 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
16363 = ARGUMENT_PACK_ARGS (targ);
16364 }
16365
16366 /* We have some incomplete argument packs. */
16367 incomplete = true;
16368 }
16369 }
16370
16371 TREE_VALUE (tinst) = explicit_targs;
16372 if (!push_tinst_level (tinst))
16373 {
16374 excessive_deduction_depth = true;
16375 goto fail;
16376 }
16377 processing_template_decl += incomplete;
16378 input_location = DECL_SOURCE_LOCATION (fn);
16379 /* Ignore any access checks; we'll see them again in
16380 instantiate_template and they might have the wrong
16381 access path at this point. */
16382 push_deferring_access_checks (dk_deferred);
16383 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
16384 complain | tf_partial, NULL_TREE);
16385 pop_deferring_access_checks ();
16386 input_location = loc;
16387 processing_template_decl -= incomplete;
16388 pop_tinst_level ();
16389
16390 if (fntype == error_mark_node)
16391 goto fail;
16392
16393 /* Place the explicitly specified arguments in TARGS. */
16394 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
16395 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
16396 }
16397
16398 /* Never do unification on the 'this' parameter. */
16399 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
16400
16401 if (return_type)
16402 {
16403 tree *new_args;
16404
16405 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
16406 new_args = XALLOCAVEC (tree, nargs + 1);
16407 new_args[0] = return_type;
16408 memcpy (new_args + 1, args, nargs * sizeof (tree));
16409 args = new_args;
16410 ++nargs;
16411 }
16412
16413 /* We allow incomplete unification without an error message here
16414 because the standard doesn't seem to explicitly prohibit it. Our
16415 callers must be ready to deal with unification failures in any
16416 event. */
16417
16418 TREE_VALUE (tinst) = targs;
16419 /* If we aren't explaining yet, push tinst context so we can see where
16420 any errors (e.g. from class instantiations triggered by instantiation
16421 of default template arguments) come from. If we are explaining, this
16422 context is redundant. */
16423 if (!explain_p && !push_tinst_level (tinst))
16424 {
16425 excessive_deduction_depth = true;
16426 goto fail;
16427 }
16428
16429 /* type_unification_real will pass back any access checks from default
16430 template argument substitution. */
16431 vec<deferred_access_check, va_gc> *checks;
16432 checks = NULL;
16433
16434 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
16435 targs, parms, args, nargs, /*subr=*/0,
16436 strict, flags, &checks, explain_p);
16437 if (!explain_p)
16438 pop_tinst_level ();
16439 if (!ok)
16440 goto fail;
16441
16442 /* Now that we have bindings for all of the template arguments,
16443 ensure that the arguments deduced for the template template
16444 parameters have compatible template parameter lists. We cannot
16445 check this property before we have deduced all template
16446 arguments, because the template parameter types of a template
16447 template parameter might depend on prior template parameters
16448 deduced after the template template parameter. The following
16449 ill-formed example illustrates this issue:
16450
16451 template<typename T, template<T> class C> void f(C<5>, T);
16452
16453 template<int N> struct X {};
16454
16455 void g() {
16456 f(X<5>(), 5l); // error: template argument deduction fails
16457 }
16458
16459 The template parameter list of 'C' depends on the template type
16460 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
16461 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
16462 time that we deduce 'C'. */
16463 if (!template_template_parm_bindings_ok_p
16464 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
16465 {
16466 unify_inconsistent_template_template_parameters (explain_p);
16467 goto fail;
16468 }
16469
16470 /* All is well so far. Now, check:
16471
16472 [temp.deduct]
16473
16474 When all template arguments have been deduced, all uses of
16475 template parameters in nondeduced contexts are replaced with
16476 the corresponding deduced argument values. If the
16477 substitution results in an invalid type, as described above,
16478 type deduction fails. */
16479 TREE_VALUE (tinst) = targs;
16480 if (!push_tinst_level (tinst))
16481 {
16482 excessive_deduction_depth = true;
16483 goto fail;
16484 }
16485
16486 /* Also collect access checks from the instantiation. */
16487 reopen_deferring_access_checks (checks);
16488
16489 decl = instantiate_template (fn, targs, complain);
16490
16491 checks = get_deferred_access_checks ();
16492 pop_deferring_access_checks ();
16493
16494 pop_tinst_level ();
16495
16496 if (decl == error_mark_node)
16497 goto fail;
16498
16499 /* Now perform any access checks encountered during substitution. */
16500 push_access_scope (decl);
16501 ok = perform_access_checks (checks, complain);
16502 pop_access_scope (decl);
16503 if (!ok)
16504 goto fail;
16505
16506 /* If we're looking for an exact match, check that what we got
16507 is indeed an exact match. It might not be if some template
16508 parameters are used in non-deduced contexts. But don't check
16509 for an exact match if we have dependent template arguments;
16510 in that case we're doing partial ordering, and we already know
16511 that we have two candidates that will provide the actual type. */
16512 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
16513 {
16514 tree substed = TREE_TYPE (decl);
16515 unsigned int i;
16516
16517 tree sarg
16518 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
16519 if (return_type)
16520 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
16521 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
16522 if (!same_type_p (args[i], TREE_VALUE (sarg)))
16523 {
16524 unify_type_mismatch (explain_p, args[i],
16525 TREE_VALUE (sarg));
16526 goto fail;
16527 }
16528 }
16529
16530 r = decl;
16531
16532 fail:
16533 --deduction_depth;
16534 if (excessive_deduction_depth)
16535 {
16536 if (deduction_depth == 0)
16537 /* Reset once we're all the way out. */
16538 excessive_deduction_depth = false;
16539 }
16540
16541 /* We can't free this if a pending_template entry or last_error_tinst_level
16542 is pointing at it. */
16543 if (last_pending_template == old_last_pend
16544 && last_error_tinst_level == old_error_tinst)
16545 ggc_free (tinst);
16546
16547 return r;
16548 }
16549
16550 /* Adjust types before performing type deduction, as described in
16551 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
16552 sections are symmetric. PARM is the type of a function parameter
16553 or the return type of the conversion function. ARG is the type of
16554 the argument passed to the call, or the type of the value
16555 initialized with the result of the conversion function.
16556 ARG_EXPR is the original argument expression, which may be null. */
16557
16558 static int
16559 maybe_adjust_types_for_deduction (unification_kind_t strict,
16560 tree* parm,
16561 tree* arg,
16562 tree arg_expr)
16563 {
16564 int result = 0;
16565
16566 switch (strict)
16567 {
16568 case DEDUCE_CALL:
16569 break;
16570
16571 case DEDUCE_CONV:
16572 /* Swap PARM and ARG throughout the remainder of this
16573 function; the handling is precisely symmetric since PARM
16574 will initialize ARG rather than vice versa. */
16575 std::swap (parm, arg);
16576 break;
16577
16578 case DEDUCE_EXACT:
16579 /* Core issue #873: Do the DR606 thing (see below) for these cases,
16580 too, but here handle it by stripping the reference from PARM
16581 rather than by adding it to ARG. */
16582 if (TREE_CODE (*parm) == REFERENCE_TYPE
16583 && TYPE_REF_IS_RVALUE (*parm)
16584 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
16585 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
16586 && TREE_CODE (*arg) == REFERENCE_TYPE
16587 && !TYPE_REF_IS_RVALUE (*arg))
16588 *parm = TREE_TYPE (*parm);
16589 /* Nothing else to do in this case. */
16590 return 0;
16591
16592 default:
16593 gcc_unreachable ();
16594 }
16595
16596 if (TREE_CODE (*parm) != REFERENCE_TYPE)
16597 {
16598 /* [temp.deduct.call]
16599
16600 If P is not a reference type:
16601
16602 --If A is an array type, the pointer type produced by the
16603 array-to-pointer standard conversion (_conv.array_) is
16604 used in place of A for type deduction; otherwise,
16605
16606 --If A is a function type, the pointer type produced by
16607 the function-to-pointer standard conversion
16608 (_conv.func_) is used in place of A for type deduction;
16609 otherwise,
16610
16611 --If A is a cv-qualified type, the top level
16612 cv-qualifiers of A's type are ignored for type
16613 deduction. */
16614 if (TREE_CODE (*arg) == ARRAY_TYPE)
16615 *arg = build_pointer_type (TREE_TYPE (*arg));
16616 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
16617 *arg = build_pointer_type (*arg);
16618 else
16619 *arg = TYPE_MAIN_VARIANT (*arg);
16620 }
16621
16622 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
16623 of the form T&&, where T is a template parameter, and the argument
16624 is an lvalue, T is deduced as A& */
16625 if (TREE_CODE (*parm) == REFERENCE_TYPE
16626 && TYPE_REF_IS_RVALUE (*parm)
16627 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
16628 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
16629 && (arg_expr ? real_lvalue_p (arg_expr)
16630 /* try_one_overload doesn't provide an arg_expr, but
16631 functions are always lvalues. */
16632 : TREE_CODE (*arg) == FUNCTION_TYPE))
16633 *arg = build_reference_type (*arg);
16634
16635 /* [temp.deduct.call]
16636
16637 If P is a cv-qualified type, the top level cv-qualifiers
16638 of P's type are ignored for type deduction. If P is a
16639 reference type, the type referred to by P is used for
16640 type deduction. */
16641 *parm = TYPE_MAIN_VARIANT (*parm);
16642 if (TREE_CODE (*parm) == REFERENCE_TYPE)
16643 {
16644 *parm = TREE_TYPE (*parm);
16645 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
16646 }
16647
16648 /* DR 322. For conversion deduction, remove a reference type on parm
16649 too (which has been swapped into ARG). */
16650 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
16651 *arg = TREE_TYPE (*arg);
16652
16653 return result;
16654 }
16655
16656 /* Subroutine of unify_one_argument. PARM is a function parameter of a
16657 template which does contain any deducible template parameters; check if
16658 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
16659 unify_one_argument. */
16660
16661 static int
16662 check_non_deducible_conversion (tree parm, tree arg, int strict,
16663 int flags, bool explain_p)
16664 {
16665 tree type;
16666
16667 if (!TYPE_P (arg))
16668 type = TREE_TYPE (arg);
16669 else
16670 type = arg;
16671
16672 if (same_type_p (parm, type))
16673 return unify_success (explain_p);
16674
16675 if (strict == DEDUCE_CONV)
16676 {
16677 if (can_convert_arg (type, parm, NULL_TREE, flags,
16678 explain_p ? tf_warning_or_error : tf_none))
16679 return unify_success (explain_p);
16680 }
16681 else if (strict != DEDUCE_EXACT)
16682 {
16683 if (can_convert_arg (parm, type,
16684 TYPE_P (arg) ? NULL_TREE : arg,
16685 flags, explain_p ? tf_warning_or_error : tf_none))
16686 return unify_success (explain_p);
16687 }
16688
16689 if (strict == DEDUCE_EXACT)
16690 return unify_type_mismatch (explain_p, parm, arg);
16691 else
16692 return unify_arg_conversion (explain_p, parm, type, arg);
16693 }
16694
16695 static bool uses_deducible_template_parms (tree type);
16696
16697 /* Returns true iff the expression EXPR is one from which a template
16698 argument can be deduced. In other words, if it's an undecorated
16699 use of a template non-type parameter. */
16700
16701 static bool
16702 deducible_expression (tree expr)
16703 {
16704 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
16705 }
16706
16707 /* Returns true iff the array domain DOMAIN uses a template parameter in a
16708 deducible way; that is, if it has a max value of <PARM> - 1. */
16709
16710 static bool
16711 deducible_array_bound (tree domain)
16712 {
16713 if (domain == NULL_TREE)
16714 return false;
16715
16716 tree max = TYPE_MAX_VALUE (domain);
16717 if (TREE_CODE (max) != MINUS_EXPR)
16718 return false;
16719
16720 return deducible_expression (TREE_OPERAND (max, 0));
16721 }
16722
16723 /* Returns true iff the template arguments ARGS use a template parameter
16724 in a deducible way. */
16725
16726 static bool
16727 deducible_template_args (tree args)
16728 {
16729 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
16730 {
16731 bool deducible;
16732 tree elt = TREE_VEC_ELT (args, i);
16733 if (ARGUMENT_PACK_P (elt))
16734 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
16735 else
16736 {
16737 if (PACK_EXPANSION_P (elt))
16738 elt = PACK_EXPANSION_PATTERN (elt);
16739 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
16740 deducible = true;
16741 else if (TYPE_P (elt))
16742 deducible = uses_deducible_template_parms (elt);
16743 else
16744 deducible = deducible_expression (elt);
16745 }
16746 if (deducible)
16747 return true;
16748 }
16749 return false;
16750 }
16751
16752 /* Returns true iff TYPE contains any deducible references to template
16753 parameters, as per 14.8.2.5. */
16754
16755 static bool
16756 uses_deducible_template_parms (tree type)
16757 {
16758 if (PACK_EXPANSION_P (type))
16759 type = PACK_EXPANSION_PATTERN (type);
16760
16761 /* T
16762 cv-list T
16763 TT<T>
16764 TT<i>
16765 TT<> */
16766 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
16767 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
16768 return true;
16769
16770 /* T*
16771 T&
16772 T&& */
16773 if (POINTER_TYPE_P (type))
16774 return uses_deducible_template_parms (TREE_TYPE (type));
16775
16776 /* T[integer-constant ]
16777 type [i] */
16778 if (TREE_CODE (type) == ARRAY_TYPE)
16779 return (uses_deducible_template_parms (TREE_TYPE (type))
16780 || deducible_array_bound (TYPE_DOMAIN (type)));
16781
16782 /* T type ::*
16783 type T::*
16784 T T::*
16785 T (type ::*)()
16786 type (T::*)()
16787 type (type ::*)(T)
16788 type (T::*)(T)
16789 T (type ::*)(T)
16790 T (T::*)()
16791 T (T::*)(T) */
16792 if (TYPE_PTRMEM_P (type))
16793 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
16794 || (uses_deducible_template_parms
16795 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
16796
16797 /* template-name <T> (where template-name refers to a class template)
16798 template-name <i> (where template-name refers to a class template) */
16799 if (CLASS_TYPE_P (type)
16800 && CLASSTYPE_TEMPLATE_INFO (type)
16801 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
16802 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
16803 (CLASSTYPE_TI_ARGS (type)));
16804
16805 /* type (T)
16806 T()
16807 T(T) */
16808 if (TREE_CODE (type) == FUNCTION_TYPE
16809 || TREE_CODE (type) == METHOD_TYPE)
16810 {
16811 if (uses_deducible_template_parms (TREE_TYPE (type)))
16812 return true;
16813 tree parm = TYPE_ARG_TYPES (type);
16814 if (TREE_CODE (type) == METHOD_TYPE)
16815 parm = TREE_CHAIN (parm);
16816 for (; parm; parm = TREE_CHAIN (parm))
16817 if (uses_deducible_template_parms (TREE_VALUE (parm)))
16818 return true;
16819 }
16820
16821 return false;
16822 }
16823
16824 /* Subroutine of type_unification_real and unify_pack_expansion to
16825 handle unification of a single P/A pair. Parameters are as
16826 for those functions. */
16827
16828 static int
16829 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
16830 int subr, unification_kind_t strict,
16831 bool explain_p)
16832 {
16833 tree arg_expr = NULL_TREE;
16834 int arg_strict;
16835
16836 if (arg == error_mark_node || parm == error_mark_node)
16837 return unify_invalid (explain_p);
16838 if (arg == unknown_type_node)
16839 /* We can't deduce anything from this, but we might get all the
16840 template args from other function args. */
16841 return unify_success (explain_p);
16842
16843 /* Implicit conversions (Clause 4) will be performed on a function
16844 argument to convert it to the type of the corresponding function
16845 parameter if the parameter type contains no template-parameters that
16846 participate in template argument deduction. */
16847 if (strict != DEDUCE_EXACT
16848 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
16849 /* For function parameters with no deducible template parameters,
16850 just return. We'll check non-dependent conversions later. */
16851 return unify_success (explain_p);
16852
16853 switch (strict)
16854 {
16855 case DEDUCE_CALL:
16856 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
16857 | UNIFY_ALLOW_MORE_CV_QUAL
16858 | UNIFY_ALLOW_DERIVED);
16859 break;
16860
16861 case DEDUCE_CONV:
16862 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
16863 break;
16864
16865 case DEDUCE_EXACT:
16866 arg_strict = UNIFY_ALLOW_NONE;
16867 break;
16868
16869 default:
16870 gcc_unreachable ();
16871 }
16872
16873 /* We only do these transformations if this is the top-level
16874 parameter_type_list in a call or declaration matching; in other
16875 situations (nested function declarators, template argument lists) we
16876 won't be comparing a type to an expression, and we don't do any type
16877 adjustments. */
16878 if (!subr)
16879 {
16880 if (!TYPE_P (arg))
16881 {
16882 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
16883 if (type_unknown_p (arg))
16884 {
16885 /* [temp.deduct.type] A template-argument can be
16886 deduced from a pointer to function or pointer
16887 to member function argument if the set of
16888 overloaded functions does not contain function
16889 templates and at most one of a set of
16890 overloaded functions provides a unique
16891 match. */
16892
16893 if (resolve_overloaded_unification
16894 (tparms, targs, parm, arg, strict,
16895 arg_strict, explain_p))
16896 return unify_success (explain_p);
16897 return unify_overload_resolution_failure (explain_p, arg);
16898 }
16899
16900 arg_expr = arg;
16901 arg = unlowered_expr_type (arg);
16902 if (arg == error_mark_node)
16903 return unify_invalid (explain_p);
16904 }
16905
16906 arg_strict |=
16907 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
16908 }
16909 else
16910 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
16911 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
16912 return unify_template_argument_mismatch (explain_p, parm, arg);
16913
16914 /* For deduction from an init-list we need the actual list. */
16915 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
16916 arg = arg_expr;
16917 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
16918 }
16919
16920 /* Most parms like fn_type_unification.
16921
16922 If SUBR is 1, we're being called recursively (to unify the
16923 arguments of a function or method parameter of a function
16924 template).
16925
16926 CHECKS is a pointer to a vector of access checks encountered while
16927 substituting default template arguments. */
16928
16929 static int
16930 type_unification_real (tree tparms,
16931 tree targs,
16932 tree xparms,
16933 const tree *xargs,
16934 unsigned int xnargs,
16935 int subr,
16936 unification_kind_t strict,
16937 int flags,
16938 vec<deferred_access_check, va_gc> **checks,
16939 bool explain_p)
16940 {
16941 tree parm, arg;
16942 int i;
16943 int ntparms = TREE_VEC_LENGTH (tparms);
16944 int saw_undeduced = 0;
16945 tree parms;
16946 const tree *args;
16947 unsigned int nargs;
16948 unsigned int ia;
16949
16950 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
16951 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
16952 gcc_assert (ntparms > 0);
16953
16954 /* Reset the number of non-defaulted template arguments contained
16955 in TARGS. */
16956 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
16957
16958 again:
16959 parms = xparms;
16960 args = xargs;
16961 nargs = xnargs;
16962
16963 ia = 0;
16964 while (parms && parms != void_list_node
16965 && ia < nargs)
16966 {
16967 parm = TREE_VALUE (parms);
16968
16969 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
16970 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
16971 /* For a function parameter pack that occurs at the end of the
16972 parameter-declaration-list, the type A of each remaining
16973 argument of the call is compared with the type P of the
16974 declarator-id of the function parameter pack. */
16975 break;
16976
16977 parms = TREE_CHAIN (parms);
16978
16979 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
16980 /* For a function parameter pack that does not occur at the
16981 end of the parameter-declaration-list, the type of the
16982 parameter pack is a non-deduced context. */
16983 continue;
16984
16985 arg = args[ia];
16986 ++ia;
16987
16988 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
16989 explain_p))
16990 return 1;
16991 }
16992
16993 if (parms
16994 && parms != void_list_node
16995 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
16996 {
16997 /* Unify the remaining arguments with the pack expansion type. */
16998 tree argvec;
16999 tree parmvec = make_tree_vec (1);
17000
17001 /* Allocate a TREE_VEC and copy in all of the arguments */
17002 argvec = make_tree_vec (nargs - ia);
17003 for (i = 0; ia < nargs; ++ia, ++i)
17004 TREE_VEC_ELT (argvec, i) = args[ia];
17005
17006 /* Copy the parameter into parmvec. */
17007 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
17008 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
17009 /*subr=*/subr, explain_p))
17010 return 1;
17011
17012 /* Advance to the end of the list of parameters. */
17013 parms = TREE_CHAIN (parms);
17014 }
17015
17016 /* Fail if we've reached the end of the parm list, and more args
17017 are present, and the parm list isn't variadic. */
17018 if (ia < nargs && parms == void_list_node)
17019 return unify_too_many_arguments (explain_p, nargs, ia);
17020 /* Fail if parms are left and they don't have default values and
17021 they aren't all deduced as empty packs (c++/57397). This is
17022 consistent with sufficient_parms_p. */
17023 if (parms && parms != void_list_node
17024 && TREE_PURPOSE (parms) == NULL_TREE)
17025 {
17026 unsigned int count = nargs;
17027 tree p = parms;
17028 bool type_pack_p;
17029 do
17030 {
17031 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
17032 if (!type_pack_p)
17033 count++;
17034 p = TREE_CHAIN (p);
17035 }
17036 while (p && p != void_list_node);
17037 if (count != nargs)
17038 return unify_too_few_arguments (explain_p, ia, count,
17039 type_pack_p);
17040 }
17041
17042 if (!subr)
17043 {
17044 tsubst_flags_t complain = (explain_p
17045 ? tf_warning_or_error
17046 : tf_none);
17047
17048 for (i = 0; i < ntparms; i++)
17049 {
17050 tree targ = TREE_VEC_ELT (targs, i);
17051 tree tparm = TREE_VEC_ELT (tparms, i);
17052
17053 /* Clear the "incomplete" flags on all argument packs now so that
17054 substituting them into later default arguments works. */
17055 if (targ && ARGUMENT_PACK_P (targ))
17056 {
17057 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
17058 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
17059 }
17060
17061 if (targ || tparm == error_mark_node)
17062 continue;
17063 tparm = TREE_VALUE (tparm);
17064
17065 /* If this is an undeduced nontype parameter that depends on
17066 a type parameter, try another pass; its type may have been
17067 deduced from a later argument than the one from which
17068 this parameter can be deduced. */
17069 if (TREE_CODE (tparm) == PARM_DECL
17070 && uses_template_parms (TREE_TYPE (tparm))
17071 && saw_undeduced < 2)
17072 {
17073 saw_undeduced = 1;
17074 continue;
17075 }
17076
17077 /* Core issue #226 (C++0x) [temp.deduct]:
17078
17079 If a template argument has not been deduced, its
17080 default template argument, if any, is used.
17081
17082 When we are in C++98 mode, TREE_PURPOSE will either
17083 be NULL_TREE or ERROR_MARK_NODE, so we do not need
17084 to explicitly check cxx_dialect here. */
17085 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
17086 /* OK, there is a default argument. Wait until after the
17087 conversion check to do substitution. */
17088 continue;
17089
17090 /* If the type parameter is a parameter pack, then it will
17091 be deduced to an empty parameter pack. */
17092 if (template_parameter_pack_p (tparm))
17093 {
17094 tree arg;
17095
17096 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
17097 {
17098 arg = make_node (NONTYPE_ARGUMENT_PACK);
17099 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
17100 TREE_CONSTANT (arg) = 1;
17101 }
17102 else
17103 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
17104
17105 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
17106
17107 TREE_VEC_ELT (targs, i) = arg;
17108 continue;
17109 }
17110
17111 return unify_parameter_deduction_failure (explain_p, tparm);
17112 }
17113
17114 /* DR 1391: All parameters have args, now check non-dependent parms for
17115 convertibility. */
17116 if (saw_undeduced < 2)
17117 for (ia = 0, parms = xparms, args = xargs, nargs = xnargs;
17118 parms && parms != void_list_node && ia < nargs; )
17119 {
17120 parm = TREE_VALUE (parms);
17121
17122 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
17123 && (!TREE_CHAIN (parms)
17124 || TREE_CHAIN (parms) == void_list_node))
17125 /* For a function parameter pack that occurs at the end of the
17126 parameter-declaration-list, the type A of each remaining
17127 argument of the call is compared with the type P of the
17128 declarator-id of the function parameter pack. */
17129 break;
17130
17131 parms = TREE_CHAIN (parms);
17132
17133 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
17134 /* For a function parameter pack that does not occur at the
17135 end of the parameter-declaration-list, the type of the
17136 parameter pack is a non-deduced context. */
17137 continue;
17138
17139 arg = args[ia];
17140 ++ia;
17141
17142 if (uses_template_parms (parm))
17143 continue;
17144 if (check_non_deducible_conversion (parm, arg, strict, flags,
17145 explain_p))
17146 return 1;
17147 }
17148
17149 /* Now substitute into the default template arguments. */
17150 for (i = 0; i < ntparms; i++)
17151 {
17152 tree targ = TREE_VEC_ELT (targs, i);
17153 tree tparm = TREE_VEC_ELT (tparms, i);
17154
17155 if (targ || tparm == error_mark_node)
17156 continue;
17157 tree parm = TREE_VALUE (tparm);
17158
17159 if (TREE_CODE (parm) == PARM_DECL
17160 && uses_template_parms (TREE_TYPE (parm))
17161 && saw_undeduced < 2)
17162 continue;
17163
17164 tree arg = TREE_PURPOSE (tparm);
17165 reopen_deferring_access_checks (*checks);
17166 location_t save_loc = input_location;
17167 if (DECL_P (parm))
17168 input_location = DECL_SOURCE_LOCATION (parm);
17169 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
17170 arg = convert_template_argument (parm, arg, targs, complain,
17171 i, NULL_TREE);
17172 input_location = save_loc;
17173 *checks = get_deferred_access_checks ();
17174 pop_deferring_access_checks ();
17175 if (arg == error_mark_node)
17176 return 1;
17177 else
17178 {
17179 TREE_VEC_ELT (targs, i) = arg;
17180 /* The position of the first default template argument,
17181 is also the number of non-defaulted arguments in TARGS.
17182 Record that. */
17183 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
17184 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
17185 continue;
17186 }
17187 }
17188
17189 if (saw_undeduced++ == 1)
17190 goto again;
17191 }
17192 #ifdef ENABLE_CHECKING
17193 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
17194 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
17195 #endif
17196
17197 return unify_success (explain_p);
17198 }
17199
17200 /* Subroutine of type_unification_real. Args are like the variables
17201 at the call site. ARG is an overloaded function (or template-id);
17202 we try deducing template args from each of the overloads, and if
17203 only one succeeds, we go with that. Modifies TARGS and returns
17204 true on success. */
17205
17206 static bool
17207 resolve_overloaded_unification (tree tparms,
17208 tree targs,
17209 tree parm,
17210 tree arg,
17211 unification_kind_t strict,
17212 int sub_strict,
17213 bool explain_p)
17214 {
17215 tree tempargs = copy_node (targs);
17216 int good = 0;
17217 tree goodfn = NULL_TREE;
17218 bool addr_p;
17219
17220 if (TREE_CODE (arg) == ADDR_EXPR)
17221 {
17222 arg = TREE_OPERAND (arg, 0);
17223 addr_p = true;
17224 }
17225 else
17226 addr_p = false;
17227
17228 if (TREE_CODE (arg) == COMPONENT_REF)
17229 /* Handle `&x' where `x' is some static or non-static member
17230 function name. */
17231 arg = TREE_OPERAND (arg, 1);
17232
17233 if (TREE_CODE (arg) == OFFSET_REF)
17234 arg = TREE_OPERAND (arg, 1);
17235
17236 /* Strip baselink information. */
17237 if (BASELINK_P (arg))
17238 arg = BASELINK_FUNCTIONS (arg);
17239
17240 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
17241 {
17242 /* If we got some explicit template args, we need to plug them into
17243 the affected templates before we try to unify, in case the
17244 explicit args will completely resolve the templates in question. */
17245
17246 int ok = 0;
17247 tree expl_subargs = TREE_OPERAND (arg, 1);
17248 arg = TREE_OPERAND (arg, 0);
17249
17250 for (; arg; arg = OVL_NEXT (arg))
17251 {
17252 tree fn = OVL_CURRENT (arg);
17253 tree subargs, elem;
17254
17255 if (TREE_CODE (fn) != TEMPLATE_DECL)
17256 continue;
17257
17258 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17259 expl_subargs, NULL_TREE, tf_none,
17260 /*require_all_args=*/true,
17261 /*use_default_args=*/true);
17262 if (subargs != error_mark_node
17263 && !any_dependent_template_arguments_p (subargs))
17264 {
17265 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
17266 if (try_one_overload (tparms, targs, tempargs, parm,
17267 elem, strict, sub_strict, addr_p, explain_p)
17268 && (!goodfn || !same_type_p (goodfn, elem)))
17269 {
17270 goodfn = elem;
17271 ++good;
17272 }
17273 }
17274 else if (subargs)
17275 ++ok;
17276 }
17277 /* If no templates (or more than one) are fully resolved by the
17278 explicit arguments, this template-id is a non-deduced context; it
17279 could still be OK if we deduce all template arguments for the
17280 enclosing call through other arguments. */
17281 if (good != 1)
17282 good = ok;
17283 }
17284 else if (TREE_CODE (arg) != OVERLOAD
17285 && TREE_CODE (arg) != FUNCTION_DECL)
17286 /* If ARG is, for example, "(0, &f)" then its type will be unknown
17287 -- but the deduction does not succeed because the expression is
17288 not just the function on its own. */
17289 return false;
17290 else
17291 for (; arg; arg = OVL_NEXT (arg))
17292 if (try_one_overload (tparms, targs, tempargs, parm,
17293 TREE_TYPE (OVL_CURRENT (arg)),
17294 strict, sub_strict, addr_p, explain_p)
17295 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
17296 {
17297 goodfn = OVL_CURRENT (arg);
17298 ++good;
17299 }
17300
17301 /* [temp.deduct.type] A template-argument can be deduced from a pointer
17302 to function or pointer to member function argument if the set of
17303 overloaded functions does not contain function templates and at most
17304 one of a set of overloaded functions provides a unique match.
17305
17306 So if we found multiple possibilities, we return success but don't
17307 deduce anything. */
17308
17309 if (good == 1)
17310 {
17311 int i = TREE_VEC_LENGTH (targs);
17312 for (; i--; )
17313 if (TREE_VEC_ELT (tempargs, i))
17314 {
17315 tree old = TREE_VEC_ELT (targs, i);
17316 tree new_ = TREE_VEC_ELT (tempargs, i);
17317 if (new_ && old && ARGUMENT_PACK_P (old)
17318 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
17319 /* Don't forget explicit template arguments in a pack. */
17320 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
17321 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
17322 TREE_VEC_ELT (targs, i) = new_;
17323 }
17324 }
17325 if (good)
17326 return true;
17327
17328 return false;
17329 }
17330
17331 /* Core DR 115: In contexts where deduction is done and fails, or in
17332 contexts where deduction is not done, if a template argument list is
17333 specified and it, along with any default template arguments, identifies
17334 a single function template specialization, then the template-id is an
17335 lvalue for the function template specialization. */
17336
17337 tree
17338 resolve_nondeduced_context (tree orig_expr)
17339 {
17340 tree expr, offset, baselink;
17341 bool addr;
17342
17343 if (!type_unknown_p (orig_expr))
17344 return orig_expr;
17345
17346 expr = orig_expr;
17347 addr = false;
17348 offset = NULL_TREE;
17349 baselink = NULL_TREE;
17350
17351 if (TREE_CODE (expr) == ADDR_EXPR)
17352 {
17353 expr = TREE_OPERAND (expr, 0);
17354 addr = true;
17355 }
17356 if (TREE_CODE (expr) == OFFSET_REF)
17357 {
17358 offset = expr;
17359 expr = TREE_OPERAND (expr, 1);
17360 }
17361 if (BASELINK_P (expr))
17362 {
17363 baselink = expr;
17364 expr = BASELINK_FUNCTIONS (expr);
17365 }
17366
17367 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
17368 {
17369 int good = 0;
17370 tree goodfn = NULL_TREE;
17371
17372 /* If we got some explicit template args, we need to plug them into
17373 the affected templates before we try to unify, in case the
17374 explicit args will completely resolve the templates in question. */
17375
17376 tree expl_subargs = TREE_OPERAND (expr, 1);
17377 tree arg = TREE_OPERAND (expr, 0);
17378 tree badfn = NULL_TREE;
17379 tree badargs = NULL_TREE;
17380
17381 for (; arg; arg = OVL_NEXT (arg))
17382 {
17383 tree fn = OVL_CURRENT (arg);
17384 tree subargs, elem;
17385
17386 if (TREE_CODE (fn) != TEMPLATE_DECL)
17387 continue;
17388
17389 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17390 expl_subargs, NULL_TREE, tf_none,
17391 /*require_all_args=*/true,
17392 /*use_default_args=*/true);
17393 if (subargs != error_mark_node
17394 && !any_dependent_template_arguments_p (subargs))
17395 {
17396 elem = instantiate_template (fn, subargs, tf_none);
17397 if (elem == error_mark_node)
17398 {
17399 badfn = fn;
17400 badargs = subargs;
17401 }
17402 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
17403 {
17404 goodfn = elem;
17405 ++good;
17406 }
17407 }
17408 }
17409 if (good == 1)
17410 {
17411 mark_used (goodfn);
17412 expr = goodfn;
17413 if (baselink)
17414 expr = build_baselink (BASELINK_BINFO (baselink),
17415 BASELINK_ACCESS_BINFO (baselink),
17416 expr, BASELINK_OPTYPE (baselink));
17417 if (offset)
17418 {
17419 tree base
17420 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
17421 expr = build_offset_ref (base, expr, addr, tf_warning_or_error);
17422 }
17423 if (addr)
17424 expr = cp_build_addr_expr (expr, tf_warning_or_error);
17425 return expr;
17426 }
17427 else if (good == 0 && badargs)
17428 /* There were no good options and at least one bad one, so let the
17429 user know what the problem is. */
17430 instantiate_template (badfn, badargs, tf_warning_or_error);
17431 }
17432 return orig_expr;
17433 }
17434
17435 /* Subroutine of resolve_overloaded_unification; does deduction for a single
17436 overload. Fills TARGS with any deduced arguments, or error_mark_node if
17437 different overloads deduce different arguments for a given parm.
17438 ADDR_P is true if the expression for which deduction is being
17439 performed was of the form "& fn" rather than simply "fn".
17440
17441 Returns 1 on success. */
17442
17443 static int
17444 try_one_overload (tree tparms,
17445 tree orig_targs,
17446 tree targs,
17447 tree parm,
17448 tree arg,
17449 unification_kind_t strict,
17450 int sub_strict,
17451 bool addr_p,
17452 bool explain_p)
17453 {
17454 int nargs;
17455 tree tempargs;
17456 int i;
17457
17458 if (arg == error_mark_node)
17459 return 0;
17460
17461 /* [temp.deduct.type] A template-argument can be deduced from a pointer
17462 to function or pointer to member function argument if the set of
17463 overloaded functions does not contain function templates and at most
17464 one of a set of overloaded functions provides a unique match.
17465
17466 So if this is a template, just return success. */
17467
17468 if (uses_template_parms (arg))
17469 return 1;
17470
17471 if (TREE_CODE (arg) == METHOD_TYPE)
17472 arg = build_ptrmemfunc_type (build_pointer_type (arg));
17473 else if (addr_p)
17474 arg = build_pointer_type (arg);
17475
17476 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
17477
17478 /* We don't copy orig_targs for this because if we have already deduced
17479 some template args from previous args, unify would complain when we
17480 try to deduce a template parameter for the same argument, even though
17481 there isn't really a conflict. */
17482 nargs = TREE_VEC_LENGTH (targs);
17483 tempargs = make_tree_vec (nargs);
17484
17485 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
17486 return 0;
17487
17488 /* First make sure we didn't deduce anything that conflicts with
17489 explicitly specified args. */
17490 for (i = nargs; i--; )
17491 {
17492 tree elt = TREE_VEC_ELT (tempargs, i);
17493 tree oldelt = TREE_VEC_ELT (orig_targs, i);
17494
17495 if (!elt)
17496 /*NOP*/;
17497 else if (uses_template_parms (elt))
17498 /* Since we're unifying against ourselves, we will fill in
17499 template args used in the function parm list with our own
17500 template parms. Discard them. */
17501 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
17502 else if (oldelt && !template_args_equal (oldelt, elt))
17503 return 0;
17504 }
17505
17506 for (i = nargs; i--; )
17507 {
17508 tree elt = TREE_VEC_ELT (tempargs, i);
17509
17510 if (elt)
17511 TREE_VEC_ELT (targs, i) = elt;
17512 }
17513
17514 return 1;
17515 }
17516
17517 /* PARM is a template class (perhaps with unbound template
17518 parameters). ARG is a fully instantiated type. If ARG can be
17519 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
17520 TARGS are as for unify. */
17521
17522 static tree
17523 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
17524 bool explain_p)
17525 {
17526 tree copy_of_targs;
17527
17528 if (!CLASSTYPE_TEMPLATE_INFO (arg)
17529 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
17530 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
17531 return NULL_TREE;
17532
17533 /* We need to make a new template argument vector for the call to
17534 unify. If we used TARGS, we'd clutter it up with the result of
17535 the attempted unification, even if this class didn't work out.
17536 We also don't want to commit ourselves to all the unifications
17537 we've already done, since unification is supposed to be done on
17538 an argument-by-argument basis. In other words, consider the
17539 following pathological case:
17540
17541 template <int I, int J, int K>
17542 struct S {};
17543
17544 template <int I, int J>
17545 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
17546
17547 template <int I, int J, int K>
17548 void f(S<I, J, K>, S<I, I, I>);
17549
17550 void g() {
17551 S<0, 0, 0> s0;
17552 S<0, 1, 2> s2;
17553
17554 f(s0, s2);
17555 }
17556
17557 Now, by the time we consider the unification involving `s2', we
17558 already know that we must have `f<0, 0, 0>'. But, even though
17559 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
17560 because there are two ways to unify base classes of S<0, 1, 2>
17561 with S<I, I, I>. If we kept the already deduced knowledge, we
17562 would reject the possibility I=1. */
17563 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
17564
17565 /* If unification failed, we're done. */
17566 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
17567 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
17568 return NULL_TREE;
17569
17570 return arg;
17571 }
17572
17573 /* Given a template type PARM and a class type ARG, find the unique
17574 base type in ARG that is an instance of PARM. We do not examine
17575 ARG itself; only its base-classes. If there is not exactly one
17576 appropriate base class, return NULL_TREE. PARM may be the type of
17577 a partial specialization, as well as a plain template type. Used
17578 by unify. */
17579
17580 static enum template_base_result
17581 get_template_base (tree tparms, tree targs, tree parm, tree arg,
17582 bool explain_p, tree *result)
17583 {
17584 tree rval = NULL_TREE;
17585 tree binfo;
17586
17587 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
17588
17589 binfo = TYPE_BINFO (complete_type (arg));
17590 if (!binfo)
17591 {
17592 /* The type could not be completed. */
17593 *result = NULL_TREE;
17594 return tbr_incomplete_type;
17595 }
17596
17597 /* Walk in inheritance graph order. The search order is not
17598 important, and this avoids multiple walks of virtual bases. */
17599 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
17600 {
17601 tree r = try_class_unification (tparms, targs, parm,
17602 BINFO_TYPE (binfo), explain_p);
17603
17604 if (r)
17605 {
17606 /* If there is more than one satisfactory baseclass, then:
17607
17608 [temp.deduct.call]
17609
17610 If they yield more than one possible deduced A, the type
17611 deduction fails.
17612
17613 applies. */
17614 if (rval && !same_type_p (r, rval))
17615 {
17616 *result = NULL_TREE;
17617 return tbr_ambiguous_baseclass;
17618 }
17619
17620 rval = r;
17621 }
17622 }
17623
17624 *result = rval;
17625 return tbr_success;
17626 }
17627
17628 /* Returns the level of DECL, which declares a template parameter. */
17629
17630 static int
17631 template_decl_level (tree decl)
17632 {
17633 switch (TREE_CODE (decl))
17634 {
17635 case TYPE_DECL:
17636 case TEMPLATE_DECL:
17637 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
17638
17639 case PARM_DECL:
17640 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
17641
17642 default:
17643 gcc_unreachable ();
17644 }
17645 return 0;
17646 }
17647
17648 /* Decide whether ARG can be unified with PARM, considering only the
17649 cv-qualifiers of each type, given STRICT as documented for unify.
17650 Returns nonzero iff the unification is OK on that basis. */
17651
17652 static int
17653 check_cv_quals_for_unify (int strict, tree arg, tree parm)
17654 {
17655 int arg_quals = cp_type_quals (arg);
17656 int parm_quals = cp_type_quals (parm);
17657
17658 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17659 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
17660 {
17661 /* Although a CVR qualifier is ignored when being applied to a
17662 substituted template parameter ([8.3.2]/1 for example), that
17663 does not allow us to unify "const T" with "int&" because both
17664 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
17665 It is ok when we're allowing additional CV qualifiers
17666 at the outer level [14.8.2.1]/3,1st bullet. */
17667 if ((TREE_CODE (arg) == REFERENCE_TYPE
17668 || TREE_CODE (arg) == FUNCTION_TYPE
17669 || TREE_CODE (arg) == METHOD_TYPE)
17670 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
17671 return 0;
17672
17673 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
17674 && (parm_quals & TYPE_QUAL_RESTRICT))
17675 return 0;
17676 }
17677
17678 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
17679 && (arg_quals & parm_quals) != parm_quals)
17680 return 0;
17681
17682 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
17683 && (parm_quals & arg_quals) != arg_quals)
17684 return 0;
17685
17686 return 1;
17687 }
17688
17689 /* Determines the LEVEL and INDEX for the template parameter PARM. */
17690 void
17691 template_parm_level_and_index (tree parm, int* level, int* index)
17692 {
17693 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17694 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
17695 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
17696 {
17697 *index = TEMPLATE_TYPE_IDX (parm);
17698 *level = TEMPLATE_TYPE_LEVEL (parm);
17699 }
17700 else
17701 {
17702 *index = TEMPLATE_PARM_IDX (parm);
17703 *level = TEMPLATE_PARM_LEVEL (parm);
17704 }
17705 }
17706
17707 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
17708 do { \
17709 if (unify (TP, TA, P, A, S, EP)) \
17710 return 1; \
17711 } while (0);
17712
17713 /* Unifies the remaining arguments in PACKED_ARGS with the pack
17714 expansion at the end of PACKED_PARMS. Returns 0 if the type
17715 deduction succeeds, 1 otherwise. STRICT is the same as in
17716 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
17717 call argument list. We'll need to adjust the arguments to make them
17718 types. SUBR tells us if this is from a recursive call to
17719 type_unification_real, or for comparing two template argument
17720 lists. */
17721
17722 static int
17723 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
17724 tree packed_args, unification_kind_t strict,
17725 bool subr, bool explain_p)
17726 {
17727 tree parm
17728 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
17729 tree pattern = PACK_EXPANSION_PATTERN (parm);
17730 tree pack, packs = NULL_TREE;
17731 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
17732
17733 packed_args = expand_template_argument_pack (packed_args);
17734
17735 int len = TREE_VEC_LENGTH (packed_args);
17736
17737 /* Determine the parameter packs we will be deducing from the
17738 pattern, and record their current deductions. */
17739 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
17740 pack; pack = TREE_CHAIN (pack))
17741 {
17742 tree parm_pack = TREE_VALUE (pack);
17743 int idx, level;
17744
17745 /* Determine the index and level of this parameter pack. */
17746 template_parm_level_and_index (parm_pack, &level, &idx);
17747
17748 /* Keep track of the parameter packs and their corresponding
17749 argument packs. */
17750 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
17751 TREE_TYPE (packs) = make_tree_vec (len - start);
17752 }
17753
17754 /* Loop through all of the arguments that have not yet been
17755 unified and unify each with the pattern. */
17756 for (i = start; i < len; i++)
17757 {
17758 tree parm;
17759 bool any_explicit = false;
17760 tree arg = TREE_VEC_ELT (packed_args, i);
17761
17762 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
17763 or the element of its argument pack at the current index if
17764 this argument was explicitly specified. */
17765 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17766 {
17767 int idx, level;
17768 tree arg, pargs;
17769 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17770
17771 arg = NULL_TREE;
17772 if (TREE_VALUE (pack)
17773 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
17774 && (i - start < TREE_VEC_LENGTH (pargs)))
17775 {
17776 any_explicit = true;
17777 arg = TREE_VEC_ELT (pargs, i - start);
17778 }
17779 TMPL_ARG (targs, level, idx) = arg;
17780 }
17781
17782 /* If we had explicit template arguments, substitute them into the
17783 pattern before deduction. */
17784 if (any_explicit)
17785 {
17786 /* Some arguments might still be unspecified or dependent. */
17787 bool dependent;
17788 ++processing_template_decl;
17789 dependent = any_dependent_template_arguments_p (targs);
17790 if (!dependent)
17791 --processing_template_decl;
17792 parm = tsubst (pattern, targs,
17793 explain_p ? tf_warning_or_error : tf_none,
17794 NULL_TREE);
17795 if (dependent)
17796 --processing_template_decl;
17797 if (parm == error_mark_node)
17798 return 1;
17799 }
17800 else
17801 parm = pattern;
17802
17803 /* Unify the pattern with the current argument. */
17804 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
17805 explain_p))
17806 return 1;
17807
17808 /* For each parameter pack, collect the deduced value. */
17809 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17810 {
17811 int idx, level;
17812 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17813
17814 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
17815 TMPL_ARG (targs, level, idx);
17816 }
17817 }
17818
17819 /* Verify that the results of unification with the parameter packs
17820 produce results consistent with what we've seen before, and make
17821 the deduced argument packs available. */
17822 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17823 {
17824 tree old_pack = TREE_VALUE (pack);
17825 tree new_args = TREE_TYPE (pack);
17826 int i, len = TREE_VEC_LENGTH (new_args);
17827 int idx, level;
17828 bool nondeduced_p = false;
17829
17830 /* By default keep the original deduced argument pack.
17831 If necessary, more specific code is going to update the
17832 resulting deduced argument later down in this function. */
17833 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17834 TMPL_ARG (targs, level, idx) = old_pack;
17835
17836 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
17837 actually deduce anything. */
17838 for (i = 0; i < len && !nondeduced_p; ++i)
17839 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
17840 nondeduced_p = true;
17841 if (nondeduced_p)
17842 continue;
17843
17844 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
17845 {
17846 /* If we had fewer function args than explicit template args,
17847 just use the explicits. */
17848 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
17849 int explicit_len = TREE_VEC_LENGTH (explicit_args);
17850 if (len < explicit_len)
17851 new_args = explicit_args;
17852 }
17853
17854 if (!old_pack)
17855 {
17856 tree result;
17857 /* Build the deduced *_ARGUMENT_PACK. */
17858 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
17859 {
17860 result = make_node (NONTYPE_ARGUMENT_PACK);
17861 TREE_TYPE (result) =
17862 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
17863 TREE_CONSTANT (result) = 1;
17864 }
17865 else
17866 result = cxx_make_type (TYPE_ARGUMENT_PACK);
17867
17868 SET_ARGUMENT_PACK_ARGS (result, new_args);
17869
17870 /* Note the deduced argument packs for this parameter
17871 pack. */
17872 TMPL_ARG (targs, level, idx) = result;
17873 }
17874 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
17875 && (ARGUMENT_PACK_ARGS (old_pack)
17876 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
17877 {
17878 /* We only had the explicitly-provided arguments before, but
17879 now we have a complete set of arguments. */
17880 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
17881
17882 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
17883 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
17884 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
17885 }
17886 else
17887 {
17888 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
17889 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
17890
17891 if (!comp_template_args_with_info (old_args, new_args,
17892 &bad_old_arg, &bad_new_arg))
17893 /* Inconsistent unification of this parameter pack. */
17894 return unify_parameter_pack_inconsistent (explain_p,
17895 bad_old_arg,
17896 bad_new_arg);
17897 }
17898 }
17899
17900 return unify_success (explain_p);
17901 }
17902
17903 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
17904 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
17905 parameters and return value are as for unify. */
17906
17907 static int
17908 unify_array_domain (tree tparms, tree targs,
17909 tree parm_dom, tree arg_dom,
17910 bool explain_p)
17911 {
17912 tree parm_max;
17913 tree arg_max;
17914 bool parm_cst;
17915 bool arg_cst;
17916
17917 /* Our representation of array types uses "N - 1" as the
17918 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
17919 not an integer constant. We cannot unify arbitrarily
17920 complex expressions, so we eliminate the MINUS_EXPRs
17921 here. */
17922 parm_max = TYPE_MAX_VALUE (parm_dom);
17923 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
17924 if (!parm_cst)
17925 {
17926 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
17927 parm_max = TREE_OPERAND (parm_max, 0);
17928 }
17929 arg_max = TYPE_MAX_VALUE (arg_dom);
17930 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
17931 if (!arg_cst)
17932 {
17933 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
17934 trying to unify the type of a variable with the type
17935 of a template parameter. For example:
17936
17937 template <unsigned int N>
17938 void f (char (&) [N]);
17939 int g();
17940 void h(int i) {
17941 char a[g(i)];
17942 f(a);
17943 }
17944
17945 Here, the type of the ARG will be "int [g(i)]", and
17946 may be a SAVE_EXPR, etc. */
17947 if (TREE_CODE (arg_max) != MINUS_EXPR)
17948 return unify_vla_arg (explain_p, arg_dom);
17949 arg_max = TREE_OPERAND (arg_max, 0);
17950 }
17951
17952 /* If only one of the bounds used a MINUS_EXPR, compensate
17953 by adding one to the other bound. */
17954 if (parm_cst && !arg_cst)
17955 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
17956 integer_type_node,
17957 parm_max,
17958 integer_one_node);
17959 else if (arg_cst && !parm_cst)
17960 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
17961 integer_type_node,
17962 arg_max,
17963 integer_one_node);
17964
17965 return unify (tparms, targs, parm_max, arg_max,
17966 UNIFY_ALLOW_INTEGER, explain_p);
17967 }
17968
17969 /* Deduce the value of template parameters. TPARMS is the (innermost)
17970 set of template parameters to a template. TARGS is the bindings
17971 for those template parameters, as determined thus far; TARGS may
17972 include template arguments for outer levels of template parameters
17973 as well. PARM is a parameter to a template function, or a
17974 subcomponent of that parameter; ARG is the corresponding argument.
17975 This function attempts to match PARM with ARG in a manner
17976 consistent with the existing assignments in TARGS. If more values
17977 are deduced, then TARGS is updated.
17978
17979 Returns 0 if the type deduction succeeds, 1 otherwise. The
17980 parameter STRICT is a bitwise or of the following flags:
17981
17982 UNIFY_ALLOW_NONE:
17983 Require an exact match between PARM and ARG.
17984 UNIFY_ALLOW_MORE_CV_QUAL:
17985 Allow the deduced ARG to be more cv-qualified (by qualification
17986 conversion) than ARG.
17987 UNIFY_ALLOW_LESS_CV_QUAL:
17988 Allow the deduced ARG to be less cv-qualified than ARG.
17989 UNIFY_ALLOW_DERIVED:
17990 Allow the deduced ARG to be a template base class of ARG,
17991 or a pointer to a template base class of the type pointed to by
17992 ARG.
17993 UNIFY_ALLOW_INTEGER:
17994 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
17995 case for more information.
17996 UNIFY_ALLOW_OUTER_LEVEL:
17997 This is the outermost level of a deduction. Used to determine validity
17998 of qualification conversions. A valid qualification conversion must
17999 have const qualified pointers leading up to the inner type which
18000 requires additional CV quals, except at the outer level, where const
18001 is not required [conv.qual]. It would be normal to set this flag in
18002 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
18003 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
18004 This is the outermost level of a deduction, and PARM can be more CV
18005 qualified at this point.
18006 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
18007 This is the outermost level of a deduction, and PARM can be less CV
18008 qualified at this point. */
18009
18010 static int
18011 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
18012 bool explain_p)
18013 {
18014 int idx;
18015 tree targ;
18016 tree tparm;
18017 int strict_in = strict;
18018
18019 /* I don't think this will do the right thing with respect to types.
18020 But the only case I've seen it in so far has been array bounds, where
18021 signedness is the only information lost, and I think that will be
18022 okay. */
18023 while (TREE_CODE (parm) == NOP_EXPR)
18024 parm = TREE_OPERAND (parm, 0);
18025
18026 if (arg == error_mark_node)
18027 return unify_invalid (explain_p);
18028 if (arg == unknown_type_node
18029 || arg == init_list_type_node)
18030 /* We can't deduce anything from this, but we might get all the
18031 template args from other function args. */
18032 return unify_success (explain_p);
18033
18034 /* If PARM uses template parameters, then we can't bail out here,
18035 even if ARG == PARM, since we won't record unifications for the
18036 template parameters. We might need them if we're trying to
18037 figure out which of two things is more specialized. */
18038 if (arg == parm && !uses_template_parms (parm))
18039 return unify_success (explain_p);
18040
18041 /* Handle init lists early, so the rest of the function can assume
18042 we're dealing with a type. */
18043 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
18044 {
18045 tree elt, elttype;
18046 unsigned i;
18047 tree orig_parm = parm;
18048
18049 /* Replace T with std::initializer_list<T> for deduction. */
18050 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18051 && flag_deduce_init_list)
18052 parm = listify (parm);
18053
18054 if (!is_std_init_list (parm)
18055 && TREE_CODE (parm) != ARRAY_TYPE)
18056 /* We can only deduce from an initializer list argument if the
18057 parameter is std::initializer_list or an array; otherwise this
18058 is a non-deduced context. */
18059 return unify_success (explain_p);
18060
18061 if (TREE_CODE (parm) == ARRAY_TYPE)
18062 elttype = TREE_TYPE (parm);
18063 else
18064 {
18065 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
18066 /* Deduction is defined in terms of a single type, so just punt
18067 on the (bizarre) std::initializer_list<T...>. */
18068 if (PACK_EXPANSION_P (elttype))
18069 return unify_success (explain_p);
18070 }
18071
18072 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
18073 {
18074 int elt_strict = strict;
18075
18076 if (elt == error_mark_node)
18077 return unify_invalid (explain_p);
18078
18079 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
18080 {
18081 tree type = TREE_TYPE (elt);
18082 if (type == error_mark_node)
18083 return unify_invalid (explain_p);
18084 /* It should only be possible to get here for a call. */
18085 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
18086 elt_strict |= maybe_adjust_types_for_deduction
18087 (DEDUCE_CALL, &elttype, &type, elt);
18088 elt = type;
18089 }
18090
18091 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
18092 explain_p);
18093 }
18094
18095 if (TREE_CODE (parm) == ARRAY_TYPE
18096 && deducible_array_bound (TYPE_DOMAIN (parm)))
18097 {
18098 /* Also deduce from the length of the initializer list. */
18099 tree max = size_int (CONSTRUCTOR_NELTS (arg));
18100 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
18101 if (idx == error_mark_node)
18102 return unify_invalid (explain_p);
18103 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
18104 idx, explain_p);
18105 }
18106
18107 /* If the std::initializer_list<T> deduction worked, replace the
18108 deduced A with std::initializer_list<A>. */
18109 if (orig_parm != parm)
18110 {
18111 idx = TEMPLATE_TYPE_IDX (orig_parm);
18112 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
18113 targ = listify (targ);
18114 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
18115 }
18116 return unify_success (explain_p);
18117 }
18118
18119 /* Immediately reject some pairs that won't unify because of
18120 cv-qualification mismatches. */
18121 if (TREE_CODE (arg) == TREE_CODE (parm)
18122 && TYPE_P (arg)
18123 /* It is the elements of the array which hold the cv quals of an array
18124 type, and the elements might be template type parms. We'll check
18125 when we recurse. */
18126 && TREE_CODE (arg) != ARRAY_TYPE
18127 /* We check the cv-qualifiers when unifying with template type
18128 parameters below. We want to allow ARG `const T' to unify with
18129 PARM `T' for example, when computing which of two templates
18130 is more specialized, for example. */
18131 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
18132 && !check_cv_quals_for_unify (strict_in, arg, parm))
18133 return unify_cv_qual_mismatch (explain_p, parm, arg);
18134
18135 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
18136 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
18137 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
18138 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
18139 strict &= ~UNIFY_ALLOW_DERIVED;
18140 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
18141 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
18142
18143 switch (TREE_CODE (parm))
18144 {
18145 case TYPENAME_TYPE:
18146 case SCOPE_REF:
18147 case UNBOUND_CLASS_TEMPLATE:
18148 /* In a type which contains a nested-name-specifier, template
18149 argument values cannot be deduced for template parameters used
18150 within the nested-name-specifier. */
18151 return unify_success (explain_p);
18152
18153 case TEMPLATE_TYPE_PARM:
18154 case TEMPLATE_TEMPLATE_PARM:
18155 case BOUND_TEMPLATE_TEMPLATE_PARM:
18156 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
18157 if (error_operand_p (tparm))
18158 return unify_invalid (explain_p);
18159
18160 if (TEMPLATE_TYPE_LEVEL (parm)
18161 != template_decl_level (tparm))
18162 /* The PARM is not one we're trying to unify. Just check
18163 to see if it matches ARG. */
18164 {
18165 if (TREE_CODE (arg) == TREE_CODE (parm)
18166 && (is_auto (parm) ? is_auto (arg)
18167 : same_type_p (parm, arg)))
18168 return unify_success (explain_p);
18169 else
18170 return unify_type_mismatch (explain_p, parm, arg);
18171 }
18172 idx = TEMPLATE_TYPE_IDX (parm);
18173 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
18174 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
18175 if (error_operand_p (tparm))
18176 return unify_invalid (explain_p);
18177
18178 /* Check for mixed types and values. */
18179 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18180 && TREE_CODE (tparm) != TYPE_DECL)
18181 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
18182 && TREE_CODE (tparm) != TEMPLATE_DECL))
18183 gcc_unreachable ();
18184
18185 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
18186 {
18187 /* ARG must be constructed from a template class or a template
18188 template parameter. */
18189 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
18190 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
18191 return unify_template_deduction_failure (explain_p, parm, arg);
18192 {
18193 tree parmvec = TYPE_TI_ARGS (parm);
18194 /* An alias template name is never deduced. */
18195 if (TYPE_ALIAS_P (arg))
18196 arg = strip_typedefs (arg);
18197 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
18198 tree full_argvec = add_to_template_args (targs, argvec);
18199 tree parm_parms
18200 = DECL_INNERMOST_TEMPLATE_PARMS
18201 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
18202 int i, len;
18203 int parm_variadic_p = 0;
18204
18205 /* The resolution to DR150 makes clear that default
18206 arguments for an N-argument may not be used to bind T
18207 to a template template parameter with fewer than N
18208 parameters. It is not safe to permit the binding of
18209 default arguments as an extension, as that may change
18210 the meaning of a conforming program. Consider:
18211
18212 struct Dense { static const unsigned int dim = 1; };
18213
18214 template <template <typename> class View,
18215 typename Block>
18216 void operator+(float, View<Block> const&);
18217
18218 template <typename Block,
18219 unsigned int Dim = Block::dim>
18220 struct Lvalue_proxy { operator float() const; };
18221
18222 void
18223 test_1d (void) {
18224 Lvalue_proxy<Dense> p;
18225 float b;
18226 b + p;
18227 }
18228
18229 Here, if Lvalue_proxy is permitted to bind to View, then
18230 the global operator+ will be used; if they are not, the
18231 Lvalue_proxy will be converted to float. */
18232 if (coerce_template_parms (parm_parms,
18233 full_argvec,
18234 TYPE_TI_TEMPLATE (parm),
18235 (explain_p
18236 ? tf_warning_or_error
18237 : tf_none),
18238 /*require_all_args=*/true,
18239 /*use_default_args=*/false)
18240 == error_mark_node)
18241 return 1;
18242
18243 /* Deduce arguments T, i from TT<T> or TT<i>.
18244 We check each element of PARMVEC and ARGVEC individually
18245 rather than the whole TREE_VEC since they can have
18246 different number of elements. */
18247
18248 parmvec = expand_template_argument_pack (parmvec);
18249 argvec = expand_template_argument_pack (argvec);
18250
18251 len = TREE_VEC_LENGTH (parmvec);
18252
18253 /* Check if the parameters end in a pack, making them
18254 variadic. */
18255 if (len > 0
18256 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
18257 parm_variadic_p = 1;
18258
18259 for (i = 0; i < len - parm_variadic_p; ++i)
18260 /* If the template argument list of P contains a pack
18261 expansion that is not the last template argument, the
18262 entire template argument list is a non-deduced
18263 context. */
18264 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
18265 return unify_success (explain_p);
18266
18267 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
18268 return unify_too_few_arguments (explain_p,
18269 TREE_VEC_LENGTH (argvec), len);
18270
18271 for (i = 0; i < len - parm_variadic_p; ++i)
18272 {
18273 RECUR_AND_CHECK_FAILURE (tparms, targs,
18274 TREE_VEC_ELT (parmvec, i),
18275 TREE_VEC_ELT (argvec, i),
18276 UNIFY_ALLOW_NONE, explain_p);
18277 }
18278
18279 if (parm_variadic_p
18280 && unify_pack_expansion (tparms, targs,
18281 parmvec, argvec,
18282 DEDUCE_EXACT,
18283 /*subr=*/true, explain_p))
18284 return 1;
18285 }
18286 arg = TYPE_TI_TEMPLATE (arg);
18287
18288 /* Fall through to deduce template name. */
18289 }
18290
18291 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
18292 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
18293 {
18294 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
18295
18296 /* Simple cases: Value already set, does match or doesn't. */
18297 if (targ != NULL_TREE && template_args_equal (targ, arg))
18298 return unify_success (explain_p);
18299 else if (targ)
18300 return unify_inconsistency (explain_p, parm, targ, arg);
18301 }
18302 else
18303 {
18304 /* If PARM is `const T' and ARG is only `int', we don't have
18305 a match unless we are allowing additional qualification.
18306 If ARG is `const int' and PARM is just `T' that's OK;
18307 that binds `const int' to `T'. */
18308 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
18309 arg, parm))
18310 return unify_cv_qual_mismatch (explain_p, parm, arg);
18311
18312 /* Consider the case where ARG is `const volatile int' and
18313 PARM is `const T'. Then, T should be `volatile int'. */
18314 arg = cp_build_qualified_type_real
18315 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
18316 if (arg == error_mark_node)
18317 return unify_invalid (explain_p);
18318
18319 /* Simple cases: Value already set, does match or doesn't. */
18320 if (targ != NULL_TREE && same_type_p (targ, arg))
18321 return unify_success (explain_p);
18322 else if (targ)
18323 return unify_inconsistency (explain_p, parm, targ, arg);
18324
18325 /* Make sure that ARG is not a variable-sized array. (Note
18326 that were talking about variable-sized arrays (like
18327 `int[n]'), rather than arrays of unknown size (like
18328 `int[]').) We'll get very confused by such a type since
18329 the bound of the array is not constant, and therefore
18330 not mangleable. Besides, such types are not allowed in
18331 ISO C++, so we can do as we please here. We do allow
18332 them for 'auto' deduction, since that isn't ABI-exposed. */
18333 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
18334 return unify_vla_arg (explain_p, arg);
18335
18336 /* Strip typedefs as in convert_template_argument. */
18337 arg = canonicalize_type_argument (arg, tf_none);
18338 }
18339
18340 /* If ARG is a parameter pack or an expansion, we cannot unify
18341 against it unless PARM is also a parameter pack. */
18342 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
18343 && !template_parameter_pack_p (parm))
18344 return unify_parameter_pack_mismatch (explain_p, parm, arg);
18345
18346 /* If the argument deduction results is a METHOD_TYPE,
18347 then there is a problem.
18348 METHOD_TYPE doesn't map to any real C++ type the result of
18349 the deduction can not be of that type. */
18350 if (TREE_CODE (arg) == METHOD_TYPE)
18351 return unify_method_type_error (explain_p, arg);
18352
18353 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
18354 return unify_success (explain_p);
18355
18356 case TEMPLATE_PARM_INDEX:
18357 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
18358 if (error_operand_p (tparm))
18359 return unify_invalid (explain_p);
18360
18361 if (TEMPLATE_PARM_LEVEL (parm)
18362 != template_decl_level (tparm))
18363 {
18364 /* The PARM is not one we're trying to unify. Just check
18365 to see if it matches ARG. */
18366 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
18367 && cp_tree_equal (parm, arg));
18368 if (result)
18369 unify_expression_unequal (explain_p, parm, arg);
18370 return result;
18371 }
18372
18373 idx = TEMPLATE_PARM_IDX (parm);
18374 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
18375
18376 if (targ)
18377 {
18378 int x = !cp_tree_equal (targ, arg);
18379 if (x)
18380 unify_inconsistency (explain_p, parm, targ, arg);
18381 return x;
18382 }
18383
18384 /* [temp.deduct.type] If, in the declaration of a function template
18385 with a non-type template-parameter, the non-type
18386 template-parameter is used in an expression in the function
18387 parameter-list and, if the corresponding template-argument is
18388 deduced, the template-argument type shall match the type of the
18389 template-parameter exactly, except that a template-argument
18390 deduced from an array bound may be of any integral type.
18391 The non-type parameter might use already deduced type parameters. */
18392 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
18393 if (!TREE_TYPE (arg))
18394 /* Template-parameter dependent expression. Just accept it for now.
18395 It will later be processed in convert_template_argument. */
18396 ;
18397 else if (same_type_p (TREE_TYPE (arg), tparm))
18398 /* OK */;
18399 else if ((strict & UNIFY_ALLOW_INTEGER)
18400 && CP_INTEGRAL_TYPE_P (tparm))
18401 /* Convert the ARG to the type of PARM; the deduced non-type
18402 template argument must exactly match the types of the
18403 corresponding parameter. */
18404 arg = fold (build_nop (tparm, arg));
18405 else if (uses_template_parms (tparm))
18406 /* We haven't deduced the type of this parameter yet. Try again
18407 later. */
18408 return unify_success (explain_p);
18409 else
18410 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
18411
18412 /* If ARG is a parameter pack or an expansion, we cannot unify
18413 against it unless PARM is also a parameter pack. */
18414 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
18415 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
18416 return unify_parameter_pack_mismatch (explain_p, parm, arg);
18417
18418 {
18419 bool removed_attr = false;
18420 arg = strip_typedefs_expr (arg, &removed_attr);
18421 }
18422 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
18423 return unify_success (explain_p);
18424
18425 case PTRMEM_CST:
18426 {
18427 /* A pointer-to-member constant can be unified only with
18428 another constant. */
18429 if (TREE_CODE (arg) != PTRMEM_CST)
18430 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
18431
18432 /* Just unify the class member. It would be useless (and possibly
18433 wrong, depending on the strict flags) to unify also
18434 PTRMEM_CST_CLASS, because we want to be sure that both parm and
18435 arg refer to the same variable, even if through different
18436 classes. For instance:
18437
18438 struct A { int x; };
18439 struct B : A { };
18440
18441 Unification of &A::x and &B::x must succeed. */
18442 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
18443 PTRMEM_CST_MEMBER (arg), strict, explain_p);
18444 }
18445
18446 case POINTER_TYPE:
18447 {
18448 if (!TYPE_PTR_P (arg))
18449 return unify_type_mismatch (explain_p, parm, arg);
18450
18451 /* [temp.deduct.call]
18452
18453 A can be another pointer or pointer to member type that can
18454 be converted to the deduced A via a qualification
18455 conversion (_conv.qual_).
18456
18457 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
18458 This will allow for additional cv-qualification of the
18459 pointed-to types if appropriate. */
18460
18461 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
18462 /* The derived-to-base conversion only persists through one
18463 level of pointers. */
18464 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
18465
18466 return unify (tparms, targs, TREE_TYPE (parm),
18467 TREE_TYPE (arg), strict, explain_p);
18468 }
18469
18470 case REFERENCE_TYPE:
18471 if (TREE_CODE (arg) != REFERENCE_TYPE)
18472 return unify_type_mismatch (explain_p, parm, arg);
18473 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18474 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
18475
18476 case ARRAY_TYPE:
18477 if (TREE_CODE (arg) != ARRAY_TYPE)
18478 return unify_type_mismatch (explain_p, parm, arg);
18479 if ((TYPE_DOMAIN (parm) == NULL_TREE)
18480 != (TYPE_DOMAIN (arg) == NULL_TREE))
18481 return unify_type_mismatch (explain_p, parm, arg);
18482 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18483 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
18484 if (TYPE_DOMAIN (parm) != NULL_TREE)
18485 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
18486 TYPE_DOMAIN (arg), explain_p);
18487 return unify_success (explain_p);
18488
18489 case REAL_TYPE:
18490 case COMPLEX_TYPE:
18491 case VECTOR_TYPE:
18492 case INTEGER_TYPE:
18493 case BOOLEAN_TYPE:
18494 case ENUMERAL_TYPE:
18495 case VOID_TYPE:
18496 case NULLPTR_TYPE:
18497 if (TREE_CODE (arg) != TREE_CODE (parm))
18498 return unify_type_mismatch (explain_p, parm, arg);
18499
18500 /* We have already checked cv-qualification at the top of the
18501 function. */
18502 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
18503 return unify_type_mismatch (explain_p, parm, arg);
18504
18505 /* As far as unification is concerned, this wins. Later checks
18506 will invalidate it if necessary. */
18507 return unify_success (explain_p);
18508
18509 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
18510 /* Type INTEGER_CST can come from ordinary constant template args. */
18511 case INTEGER_CST:
18512 while (TREE_CODE (arg) == NOP_EXPR)
18513 arg = TREE_OPERAND (arg, 0);
18514
18515 if (TREE_CODE (arg) != INTEGER_CST)
18516 return unify_template_argument_mismatch (explain_p, parm, arg);
18517 return (tree_int_cst_equal (parm, arg)
18518 ? unify_success (explain_p)
18519 : unify_template_argument_mismatch (explain_p, parm, arg));
18520
18521 case TREE_VEC:
18522 {
18523 int i, len, argslen;
18524 int parm_variadic_p = 0;
18525
18526 if (TREE_CODE (arg) != TREE_VEC)
18527 return unify_template_argument_mismatch (explain_p, parm, arg);
18528
18529 len = TREE_VEC_LENGTH (parm);
18530 argslen = TREE_VEC_LENGTH (arg);
18531
18532 /* Check for pack expansions in the parameters. */
18533 for (i = 0; i < len; ++i)
18534 {
18535 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
18536 {
18537 if (i == len - 1)
18538 /* We can unify against something with a trailing
18539 parameter pack. */
18540 parm_variadic_p = 1;
18541 else
18542 /* [temp.deduct.type]/9: If the template argument list of
18543 P contains a pack expansion that is not the last
18544 template argument, the entire template argument list
18545 is a non-deduced context. */
18546 return unify_success (explain_p);
18547 }
18548 }
18549
18550 /* If we don't have enough arguments to satisfy the parameters
18551 (not counting the pack expression at the end), or we have
18552 too many arguments for a parameter list that doesn't end in
18553 a pack expression, we can't unify. */
18554 if (parm_variadic_p
18555 ? argslen < len - parm_variadic_p
18556 : argslen != len)
18557 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
18558
18559 /* Unify all of the parameters that precede the (optional)
18560 pack expression. */
18561 for (i = 0; i < len - parm_variadic_p; ++i)
18562 {
18563 RECUR_AND_CHECK_FAILURE (tparms, targs,
18564 TREE_VEC_ELT (parm, i),
18565 TREE_VEC_ELT (arg, i),
18566 UNIFY_ALLOW_NONE, explain_p);
18567 }
18568 if (parm_variadic_p)
18569 return unify_pack_expansion (tparms, targs, parm, arg,
18570 DEDUCE_EXACT,
18571 /*subr=*/true, explain_p);
18572 return unify_success (explain_p);
18573 }
18574
18575 case RECORD_TYPE:
18576 case UNION_TYPE:
18577 if (TREE_CODE (arg) != TREE_CODE (parm))
18578 return unify_type_mismatch (explain_p, parm, arg);
18579
18580 if (TYPE_PTRMEMFUNC_P (parm))
18581 {
18582 if (!TYPE_PTRMEMFUNC_P (arg))
18583 return unify_type_mismatch (explain_p, parm, arg);
18584
18585 return unify (tparms, targs,
18586 TYPE_PTRMEMFUNC_FN_TYPE (parm),
18587 TYPE_PTRMEMFUNC_FN_TYPE (arg),
18588 strict, explain_p);
18589 }
18590 else if (TYPE_PTRMEMFUNC_P (arg))
18591 return unify_type_mismatch (explain_p, parm, arg);
18592
18593 if (CLASSTYPE_TEMPLATE_INFO (parm))
18594 {
18595 tree t = NULL_TREE;
18596
18597 if (strict_in & UNIFY_ALLOW_DERIVED)
18598 {
18599 /* First, we try to unify the PARM and ARG directly. */
18600 t = try_class_unification (tparms, targs,
18601 parm, arg, explain_p);
18602
18603 if (!t)
18604 {
18605 /* Fallback to the special case allowed in
18606 [temp.deduct.call]:
18607
18608 If P is a class, and P has the form
18609 template-id, then A can be a derived class of
18610 the deduced A. Likewise, if P is a pointer to
18611 a class of the form template-id, A can be a
18612 pointer to a derived class pointed to by the
18613 deduced A. */
18614 enum template_base_result r;
18615 r = get_template_base (tparms, targs, parm, arg,
18616 explain_p, &t);
18617
18618 if (!t)
18619 return unify_no_common_base (explain_p, r, parm, arg);
18620 }
18621 }
18622 else if (CLASSTYPE_TEMPLATE_INFO (arg)
18623 && (CLASSTYPE_TI_TEMPLATE (parm)
18624 == CLASSTYPE_TI_TEMPLATE (arg)))
18625 /* Perhaps PARM is something like S<U> and ARG is S<int>.
18626 Then, we should unify `int' and `U'. */
18627 t = arg;
18628 else
18629 /* There's no chance of unification succeeding. */
18630 return unify_type_mismatch (explain_p, parm, arg);
18631
18632 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
18633 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
18634 }
18635 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
18636 return unify_type_mismatch (explain_p, parm, arg);
18637 return unify_success (explain_p);
18638
18639 case METHOD_TYPE:
18640 case FUNCTION_TYPE:
18641 {
18642 unsigned int nargs;
18643 tree *args;
18644 tree a;
18645 unsigned int i;
18646
18647 if (TREE_CODE (arg) != TREE_CODE (parm))
18648 return unify_type_mismatch (explain_p, parm, arg);
18649
18650 /* CV qualifications for methods can never be deduced, they must
18651 match exactly. We need to check them explicitly here,
18652 because type_unification_real treats them as any other
18653 cv-qualified parameter. */
18654 if (TREE_CODE (parm) == METHOD_TYPE
18655 && (!check_cv_quals_for_unify
18656 (UNIFY_ALLOW_NONE,
18657 class_of_this_parm (arg),
18658 class_of_this_parm (parm))))
18659 return unify_cv_qual_mismatch (explain_p, parm, arg);
18660
18661 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
18662 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
18663
18664 nargs = list_length (TYPE_ARG_TYPES (arg));
18665 args = XALLOCAVEC (tree, nargs);
18666 for (a = TYPE_ARG_TYPES (arg), i = 0;
18667 a != NULL_TREE && a != void_list_node;
18668 a = TREE_CHAIN (a), ++i)
18669 args[i] = TREE_VALUE (a);
18670 nargs = i;
18671
18672 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
18673 args, nargs, 1, DEDUCE_EXACT,
18674 LOOKUP_NORMAL, NULL, explain_p);
18675 }
18676
18677 case OFFSET_TYPE:
18678 /* Unify a pointer to member with a pointer to member function, which
18679 deduces the type of the member as a function type. */
18680 if (TYPE_PTRMEMFUNC_P (arg))
18681 {
18682 /* Check top-level cv qualifiers */
18683 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
18684 return unify_cv_qual_mismatch (explain_p, parm, arg);
18685
18686 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
18687 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
18688 UNIFY_ALLOW_NONE, explain_p);
18689
18690 /* Determine the type of the function we are unifying against. */
18691 tree fntype = static_fn_type (arg);
18692
18693 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
18694 }
18695
18696 if (TREE_CODE (arg) != OFFSET_TYPE)
18697 return unify_type_mismatch (explain_p, parm, arg);
18698 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
18699 TYPE_OFFSET_BASETYPE (arg),
18700 UNIFY_ALLOW_NONE, explain_p);
18701 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18702 strict, explain_p);
18703
18704 case CONST_DECL:
18705 if (DECL_TEMPLATE_PARM_P (parm))
18706 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
18707 if (arg != scalar_constant_value (parm))
18708 return unify_template_argument_mismatch (explain_p, parm, arg);
18709 return unify_success (explain_p);
18710
18711 case FIELD_DECL:
18712 case TEMPLATE_DECL:
18713 /* Matched cases are handled by the ARG == PARM test above. */
18714 return unify_template_argument_mismatch (explain_p, parm, arg);
18715
18716 case VAR_DECL:
18717 /* A non-type template parameter that is a variable should be a
18718 an integral constant, in which case, it whould have been
18719 folded into its (constant) value. So we should not be getting
18720 a variable here. */
18721 gcc_unreachable ();
18722
18723 case TYPE_ARGUMENT_PACK:
18724 case NONTYPE_ARGUMENT_PACK:
18725 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
18726 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
18727
18728 case TYPEOF_TYPE:
18729 case DECLTYPE_TYPE:
18730 case UNDERLYING_TYPE:
18731 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
18732 or UNDERLYING_TYPE nodes. */
18733 return unify_success (explain_p);
18734
18735 case ERROR_MARK:
18736 /* Unification fails if we hit an error node. */
18737 return unify_invalid (explain_p);
18738
18739 case INDIRECT_REF:
18740 if (REFERENCE_REF_P (parm))
18741 {
18742 if (REFERENCE_REF_P (arg))
18743 arg = TREE_OPERAND (arg, 0);
18744 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
18745 strict, explain_p);
18746 }
18747 /* FALLTHRU */
18748
18749 default:
18750 /* An unresolved overload is a nondeduced context. */
18751 if (is_overloaded_fn (parm) || type_unknown_p (parm))
18752 return unify_success (explain_p);
18753 gcc_assert (EXPR_P (parm));
18754
18755 /* We must be looking at an expression. This can happen with
18756 something like:
18757
18758 template <int I>
18759 void foo(S<I>, S<I + 2>);
18760
18761 This is a "nondeduced context":
18762
18763 [deduct.type]
18764
18765 The nondeduced contexts are:
18766
18767 --A type that is a template-id in which one or more of
18768 the template-arguments is an expression that references
18769 a template-parameter.
18770
18771 In these cases, we assume deduction succeeded, but don't
18772 actually infer any unifications. */
18773
18774 if (!uses_template_parms (parm)
18775 && !template_args_equal (parm, arg))
18776 return unify_expression_unequal (explain_p, parm, arg);
18777 else
18778 return unify_success (explain_p);
18779 }
18780 }
18781 #undef RECUR_AND_CHECK_FAILURE
18782 \f
18783 /* Note that DECL can be defined in this translation unit, if
18784 required. */
18785
18786 static void
18787 mark_definable (tree decl)
18788 {
18789 tree clone;
18790 DECL_NOT_REALLY_EXTERN (decl) = 1;
18791 FOR_EACH_CLONE (clone, decl)
18792 DECL_NOT_REALLY_EXTERN (clone) = 1;
18793 }
18794
18795 /* Called if RESULT is explicitly instantiated, or is a member of an
18796 explicitly instantiated class. */
18797
18798 void
18799 mark_decl_instantiated (tree result, int extern_p)
18800 {
18801 SET_DECL_EXPLICIT_INSTANTIATION (result);
18802
18803 /* If this entity has already been written out, it's too late to
18804 make any modifications. */
18805 if (TREE_ASM_WRITTEN (result))
18806 return;
18807
18808 /* For anonymous namespace we don't need to do anything. */
18809 if (decl_anon_ns_mem_p (result))
18810 {
18811 gcc_assert (!TREE_PUBLIC (result));
18812 return;
18813 }
18814
18815 if (TREE_CODE (result) != FUNCTION_DECL)
18816 /* The TREE_PUBLIC flag for function declarations will have been
18817 set correctly by tsubst. */
18818 TREE_PUBLIC (result) = 1;
18819
18820 /* This might have been set by an earlier implicit instantiation. */
18821 DECL_COMDAT (result) = 0;
18822
18823 if (extern_p)
18824 DECL_NOT_REALLY_EXTERN (result) = 0;
18825 else
18826 {
18827 mark_definable (result);
18828 mark_needed (result);
18829 /* Always make artificials weak. */
18830 if (DECL_ARTIFICIAL (result) && flag_weak)
18831 comdat_linkage (result);
18832 /* For WIN32 we also want to put explicit instantiations in
18833 linkonce sections. */
18834 else if (TREE_PUBLIC (result))
18835 maybe_make_one_only (result);
18836 }
18837
18838 /* If EXTERN_P, then this function will not be emitted -- unless
18839 followed by an explicit instantiation, at which point its linkage
18840 will be adjusted. If !EXTERN_P, then this function will be
18841 emitted here. In neither circumstance do we want
18842 import_export_decl to adjust the linkage. */
18843 DECL_INTERFACE_KNOWN (result) = 1;
18844 }
18845
18846 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
18847 important template arguments. If any are missing, we check whether
18848 they're important by using error_mark_node for substituting into any
18849 args that were used for partial ordering (the ones between ARGS and END)
18850 and seeing if it bubbles up. */
18851
18852 static bool
18853 check_undeduced_parms (tree targs, tree args, tree end)
18854 {
18855 bool found = false;
18856 int i;
18857 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
18858 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
18859 {
18860 found = true;
18861 TREE_VEC_ELT (targs, i) = error_mark_node;
18862 }
18863 if (found)
18864 {
18865 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
18866 if (substed == error_mark_node)
18867 return true;
18868 }
18869 return false;
18870 }
18871
18872 /* Given two function templates PAT1 and PAT2, return:
18873
18874 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
18875 -1 if PAT2 is more specialized than PAT1.
18876 0 if neither is more specialized.
18877
18878 LEN indicates the number of parameters we should consider
18879 (defaulted parameters should not be considered).
18880
18881 The 1998 std underspecified function template partial ordering, and
18882 DR214 addresses the issue. We take pairs of arguments, one from
18883 each of the templates, and deduce them against each other. One of
18884 the templates will be more specialized if all the *other*
18885 template's arguments deduce against its arguments and at least one
18886 of its arguments *does* *not* deduce against the other template's
18887 corresponding argument. Deduction is done as for class templates.
18888 The arguments used in deduction have reference and top level cv
18889 qualifiers removed. Iff both arguments were originally reference
18890 types *and* deduction succeeds in both directions, an lvalue reference
18891 wins against an rvalue reference and otherwise the template
18892 with the more cv-qualified argument wins for that pairing (if
18893 neither is more cv-qualified, they both are equal). Unlike regular
18894 deduction, after all the arguments have been deduced in this way,
18895 we do *not* verify the deduced template argument values can be
18896 substituted into non-deduced contexts.
18897
18898 The logic can be a bit confusing here, because we look at deduce1 and
18899 targs1 to see if pat2 is at least as specialized, and vice versa; if we
18900 can find template arguments for pat1 to make arg1 look like arg2, that
18901 means that arg2 is at least as specialized as arg1. */
18902
18903 int
18904 more_specialized_fn (tree pat1, tree pat2, int len)
18905 {
18906 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
18907 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
18908 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
18909 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
18910 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
18911 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
18912 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
18913 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
18914 tree origs1, origs2;
18915 bool lose1 = false;
18916 bool lose2 = false;
18917
18918 /* Remove the this parameter from non-static member functions. If
18919 one is a non-static member function and the other is not a static
18920 member function, remove the first parameter from that function
18921 also. This situation occurs for operator functions where we
18922 locate both a member function (with this pointer) and non-member
18923 operator (with explicit first operand). */
18924 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
18925 {
18926 len--; /* LEN is the number of significant arguments for DECL1 */
18927 args1 = TREE_CHAIN (args1);
18928 if (!DECL_STATIC_FUNCTION_P (decl2))
18929 args2 = TREE_CHAIN (args2);
18930 }
18931 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
18932 {
18933 args2 = TREE_CHAIN (args2);
18934 if (!DECL_STATIC_FUNCTION_P (decl1))
18935 {
18936 len--;
18937 args1 = TREE_CHAIN (args1);
18938 }
18939 }
18940
18941 /* If only one is a conversion operator, they are unordered. */
18942 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
18943 return 0;
18944
18945 /* Consider the return type for a conversion function */
18946 if (DECL_CONV_FN_P (decl1))
18947 {
18948 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
18949 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
18950 len++;
18951 }
18952
18953 processing_template_decl++;
18954
18955 origs1 = args1;
18956 origs2 = args2;
18957
18958 while (len--
18959 /* Stop when an ellipsis is seen. */
18960 && args1 != NULL_TREE && args2 != NULL_TREE)
18961 {
18962 tree arg1 = TREE_VALUE (args1);
18963 tree arg2 = TREE_VALUE (args2);
18964 int deduce1, deduce2;
18965 int quals1 = -1;
18966 int quals2 = -1;
18967 int ref1 = 0;
18968 int ref2 = 0;
18969
18970 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
18971 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18972 {
18973 /* When both arguments are pack expansions, we need only
18974 unify the patterns themselves. */
18975 arg1 = PACK_EXPANSION_PATTERN (arg1);
18976 arg2 = PACK_EXPANSION_PATTERN (arg2);
18977
18978 /* This is the last comparison we need to do. */
18979 len = 0;
18980 }
18981
18982 if (TREE_CODE (arg1) == REFERENCE_TYPE)
18983 {
18984 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
18985 arg1 = TREE_TYPE (arg1);
18986 quals1 = cp_type_quals (arg1);
18987 }
18988
18989 if (TREE_CODE (arg2) == REFERENCE_TYPE)
18990 {
18991 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
18992 arg2 = TREE_TYPE (arg2);
18993 quals2 = cp_type_quals (arg2);
18994 }
18995
18996 arg1 = TYPE_MAIN_VARIANT (arg1);
18997 arg2 = TYPE_MAIN_VARIANT (arg2);
18998
18999 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
19000 {
19001 int i, len2 = list_length (args2);
19002 tree parmvec = make_tree_vec (1);
19003 tree argvec = make_tree_vec (len2);
19004 tree ta = args2;
19005
19006 /* Setup the parameter vector, which contains only ARG1. */
19007 TREE_VEC_ELT (parmvec, 0) = arg1;
19008
19009 /* Setup the argument vector, which contains the remaining
19010 arguments. */
19011 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
19012 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
19013
19014 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
19015 argvec, DEDUCE_EXACT,
19016 /*subr=*/true, /*explain_p=*/false)
19017 == 0);
19018
19019 /* We cannot deduce in the other direction, because ARG1 is
19020 a pack expansion but ARG2 is not. */
19021 deduce2 = 0;
19022 }
19023 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
19024 {
19025 int i, len1 = list_length (args1);
19026 tree parmvec = make_tree_vec (1);
19027 tree argvec = make_tree_vec (len1);
19028 tree ta = args1;
19029
19030 /* Setup the parameter vector, which contains only ARG1. */
19031 TREE_VEC_ELT (parmvec, 0) = arg2;
19032
19033 /* Setup the argument vector, which contains the remaining
19034 arguments. */
19035 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
19036 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
19037
19038 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
19039 argvec, DEDUCE_EXACT,
19040 /*subr=*/true, /*explain_p=*/false)
19041 == 0);
19042
19043 /* We cannot deduce in the other direction, because ARG2 is
19044 a pack expansion but ARG1 is not.*/
19045 deduce1 = 0;
19046 }
19047
19048 else
19049 {
19050 /* The normal case, where neither argument is a pack
19051 expansion. */
19052 deduce1 = (unify (tparms1, targs1, arg1, arg2,
19053 UNIFY_ALLOW_NONE, /*explain_p=*/false)
19054 == 0);
19055 deduce2 = (unify (tparms2, targs2, arg2, arg1,
19056 UNIFY_ALLOW_NONE, /*explain_p=*/false)
19057 == 0);
19058 }
19059
19060 /* If we couldn't deduce arguments for tparms1 to make arg1 match
19061 arg2, then arg2 is not as specialized as arg1. */
19062 if (!deduce1)
19063 lose2 = true;
19064 if (!deduce2)
19065 lose1 = true;
19066
19067 /* "If, for a given type, deduction succeeds in both directions
19068 (i.e., the types are identical after the transformations above)
19069 and both P and A were reference types (before being replaced with
19070 the type referred to above):
19071 - if the type from the argument template was an lvalue reference and
19072 the type from the parameter template was not, the argument type is
19073 considered to be more specialized than the other; otherwise,
19074 - if the type from the argument template is more cv-qualified
19075 than the type from the parameter template (as described above),
19076 the argument type is considered to be more specialized than the other;
19077 otherwise,
19078 - neither type is more specialized than the other." */
19079
19080 if (deduce1 && deduce2)
19081 {
19082 if (ref1 && ref2 && ref1 != ref2)
19083 {
19084 if (ref1 > ref2)
19085 lose1 = true;
19086 else
19087 lose2 = true;
19088 }
19089 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
19090 {
19091 if ((quals1 & quals2) == quals2)
19092 lose2 = true;
19093 if ((quals1 & quals2) == quals1)
19094 lose1 = true;
19095 }
19096 }
19097
19098 if (lose1 && lose2)
19099 /* We've failed to deduce something in either direction.
19100 These must be unordered. */
19101 break;
19102
19103 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
19104 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
19105 /* We have already processed all of the arguments in our
19106 handing of the pack expansion type. */
19107 len = 0;
19108
19109 args1 = TREE_CHAIN (args1);
19110 args2 = TREE_CHAIN (args2);
19111 }
19112
19113 /* "In most cases, all template parameters must have values in order for
19114 deduction to succeed, but for partial ordering purposes a template
19115 parameter may remain without a value provided it is not used in the
19116 types being used for partial ordering."
19117
19118 Thus, if we are missing any of the targs1 we need to substitute into
19119 origs1, then pat2 is not as specialized as pat1. This can happen when
19120 there is a nondeduced context. */
19121 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
19122 lose2 = true;
19123 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
19124 lose1 = true;
19125
19126 processing_template_decl--;
19127
19128 /* All things being equal, if the next argument is a pack expansion
19129 for one function but not for the other, prefer the
19130 non-variadic function. FIXME this is bogus; see c++/41958. */
19131 if (lose1 == lose2
19132 && args1 && TREE_VALUE (args1)
19133 && args2 && TREE_VALUE (args2))
19134 {
19135 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
19136 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
19137 }
19138
19139 if (lose1 == lose2)
19140 return 0;
19141 else if (!lose1)
19142 return 1;
19143 else
19144 return -1;
19145 }
19146
19147 /* Determine which of two partial specializations of TMPL is more
19148 specialized.
19149
19150 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
19151 to the first partial specialization. The TREE_PURPOSE is the
19152 innermost set of template parameters for the partial
19153 specialization. PAT2 is similar, but for the second template.
19154
19155 Return 1 if the first partial specialization is more specialized;
19156 -1 if the second is more specialized; 0 if neither is more
19157 specialized.
19158
19159 See [temp.class.order] for information about determining which of
19160 two templates is more specialized. */
19161
19162 static int
19163 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
19164 {
19165 tree targs;
19166 int winner = 0;
19167 bool any_deductions = false;
19168
19169 tree tmpl1 = TREE_VALUE (pat1);
19170 tree tmpl2 = TREE_VALUE (pat2);
19171 tree parms1 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl1);
19172 tree parms2 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl2);
19173 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
19174 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
19175
19176 /* Just like what happens for functions, if we are ordering between
19177 different template specializations, we may encounter dependent
19178 types in the arguments, and we need our dependency check functions
19179 to behave correctly. */
19180 ++processing_template_decl;
19181 targs = get_partial_spec_bindings (tmpl, parms1, specargs1, specargs2);
19182 if (targs)
19183 {
19184 --winner;
19185 any_deductions = true;
19186 }
19187
19188 targs = get_partial_spec_bindings (tmpl, parms2, specargs2, specargs1);
19189 if (targs)
19190 {
19191 ++winner;
19192 any_deductions = true;
19193 }
19194 --processing_template_decl;
19195
19196 /* In the case of a tie where at least one of the templates
19197 has a parameter pack at the end, the template with the most
19198 non-packed parameters wins. */
19199 if (winner == 0
19200 && any_deductions
19201 && (template_args_variadic_p (TREE_PURPOSE (pat1))
19202 || template_args_variadic_p (TREE_PURPOSE (pat2))))
19203 {
19204 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
19205 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
19206 int len1 = TREE_VEC_LENGTH (args1);
19207 int len2 = TREE_VEC_LENGTH (args2);
19208
19209 /* We don't count the pack expansion at the end. */
19210 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
19211 --len1;
19212 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
19213 --len2;
19214
19215 if (len1 > len2)
19216 return 1;
19217 else if (len1 < len2)
19218 return -1;
19219 }
19220
19221 return winner;
19222 }
19223
19224 /* Return the template arguments that will produce the function signature
19225 DECL from the function template FN, with the explicit template
19226 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
19227 also match. Return NULL_TREE if no satisfactory arguments could be
19228 found. */
19229
19230 static tree
19231 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
19232 {
19233 int ntparms = DECL_NTPARMS (fn);
19234 tree targs = make_tree_vec (ntparms);
19235 tree decl_type = TREE_TYPE (decl);
19236 tree decl_arg_types;
19237 tree *args;
19238 unsigned int nargs, ix;
19239 tree arg;
19240
19241 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
19242
19243 /* Never do unification on the 'this' parameter. */
19244 decl_arg_types = skip_artificial_parms_for (decl,
19245 TYPE_ARG_TYPES (decl_type));
19246
19247 nargs = list_length (decl_arg_types);
19248 args = XALLOCAVEC (tree, nargs);
19249 for (arg = decl_arg_types, ix = 0;
19250 arg != NULL_TREE && arg != void_list_node;
19251 arg = TREE_CHAIN (arg), ++ix)
19252 args[ix] = TREE_VALUE (arg);
19253
19254 if (fn_type_unification (fn, explicit_args, targs,
19255 args, ix,
19256 (check_rettype || DECL_CONV_FN_P (fn)
19257 ? TREE_TYPE (decl_type) : NULL_TREE),
19258 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
19259 /*decltype*/false)
19260 == error_mark_node)
19261 return NULL_TREE;
19262
19263 return targs;
19264 }
19265
19266 /* Return the innermost template arguments that, when applied to a partial
19267 specialization of TMPL whose innermost template parameters are
19268 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
19269 ARGS.
19270
19271 For example, suppose we have:
19272
19273 template <class T, class U> struct S {};
19274 template <class T> struct S<T*, int> {};
19275
19276 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
19277 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
19278 int}. The resulting vector will be {double}, indicating that `T'
19279 is bound to `double'. */
19280
19281 static tree
19282 get_partial_spec_bindings (tree tmpl, tree tparms, tree spec_args, tree args)
19283 {
19284 int i, ntparms = TREE_VEC_LENGTH (tparms);
19285 tree deduced_args;
19286 tree innermost_deduced_args;
19287
19288 innermost_deduced_args = make_tree_vec (ntparms);
19289 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
19290 {
19291 deduced_args = copy_node (args);
19292 SET_TMPL_ARGS_LEVEL (deduced_args,
19293 TMPL_ARGS_DEPTH (deduced_args),
19294 innermost_deduced_args);
19295 }
19296 else
19297 deduced_args = innermost_deduced_args;
19298
19299 if (unify (tparms, deduced_args,
19300 INNERMOST_TEMPLATE_ARGS (spec_args),
19301 INNERMOST_TEMPLATE_ARGS (args),
19302 UNIFY_ALLOW_NONE, /*explain_p=*/false))
19303 return NULL_TREE;
19304
19305 for (i = 0; i < ntparms; ++i)
19306 if (! TREE_VEC_ELT (innermost_deduced_args, i))
19307 return NULL_TREE;
19308
19309 /* Verify that nondeduced template arguments agree with the type
19310 obtained from argument deduction.
19311
19312 For example:
19313
19314 struct A { typedef int X; };
19315 template <class T, class U> struct C {};
19316 template <class T> struct C<T, typename T::X> {};
19317
19318 Then with the instantiation `C<A, int>', we can deduce that
19319 `T' is `A' but unify () does not check whether `typename T::X'
19320 is `int'. */
19321 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
19322 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
19323 spec_args, tmpl,
19324 tf_none, false, false);
19325 if (spec_args == error_mark_node
19326 /* We only need to check the innermost arguments; the other
19327 arguments will always agree. */
19328 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
19329 INNERMOST_TEMPLATE_ARGS (args)))
19330 return NULL_TREE;
19331
19332 /* Now that we have bindings for all of the template arguments,
19333 ensure that the arguments deduced for the template template
19334 parameters have compatible template parameter lists. See the use
19335 of template_template_parm_bindings_ok_p in fn_type_unification
19336 for more information. */
19337 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
19338 return NULL_TREE;
19339
19340 return deduced_args;
19341 }
19342
19343 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
19344 Return the TREE_LIST node with the most specialized template, if
19345 any. If there is no most specialized template, the error_mark_node
19346 is returned.
19347
19348 Note that this function does not look at, or modify, the
19349 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
19350 returned is one of the elements of INSTANTIATIONS, callers may
19351 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
19352 and retrieve it from the value returned. */
19353
19354 tree
19355 most_specialized_instantiation (tree templates)
19356 {
19357 tree fn, champ;
19358
19359 ++processing_template_decl;
19360
19361 champ = templates;
19362 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
19363 {
19364 int fate = 0;
19365
19366 if (get_bindings (TREE_VALUE (champ),
19367 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
19368 NULL_TREE, /*check_ret=*/true))
19369 fate--;
19370
19371 if (get_bindings (TREE_VALUE (fn),
19372 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
19373 NULL_TREE, /*check_ret=*/true))
19374 fate++;
19375
19376 if (fate == -1)
19377 champ = fn;
19378 else if (!fate)
19379 {
19380 /* Equally specialized, move to next function. If there
19381 is no next function, nothing's most specialized. */
19382 fn = TREE_CHAIN (fn);
19383 champ = fn;
19384 if (!fn)
19385 break;
19386 }
19387 }
19388
19389 if (champ)
19390 /* Now verify that champ is better than everything earlier in the
19391 instantiation list. */
19392 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn))
19393 if (get_bindings (TREE_VALUE (champ),
19394 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
19395 NULL_TREE, /*check_ret=*/true)
19396 || !get_bindings (TREE_VALUE (fn),
19397 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
19398 NULL_TREE, /*check_ret=*/true))
19399 {
19400 champ = NULL_TREE;
19401 break;
19402 }
19403
19404 processing_template_decl--;
19405
19406 if (!champ)
19407 return error_mark_node;
19408
19409 return champ;
19410 }
19411
19412 /* If DECL is a specialization of some template, return the most
19413 general such template. Otherwise, returns NULL_TREE.
19414
19415 For example, given:
19416
19417 template <class T> struct S { template <class U> void f(U); };
19418
19419 if TMPL is `template <class U> void S<int>::f(U)' this will return
19420 the full template. This function will not trace past partial
19421 specializations, however. For example, given in addition:
19422
19423 template <class T> struct S<T*> { template <class U> void f(U); };
19424
19425 if TMPL is `template <class U> void S<int*>::f(U)' this will return
19426 `template <class T> template <class U> S<T*>::f(U)'. */
19427
19428 tree
19429 most_general_template (tree decl)
19430 {
19431 if (TREE_CODE (decl) != TEMPLATE_DECL)
19432 {
19433 if (tree tinfo = get_template_info (decl))
19434 decl = TI_TEMPLATE (tinfo);
19435 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
19436 template friend, or a FIELD_DECL for a capture pack. */
19437 if (TREE_CODE (decl) != TEMPLATE_DECL)
19438 return NULL_TREE;
19439 }
19440
19441 /* Look for more and more general templates. */
19442 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
19443 {
19444 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
19445 (See cp-tree.h for details.) */
19446 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
19447 break;
19448
19449 if (CLASS_TYPE_P (TREE_TYPE (decl))
19450 && !TYPE_DECL_ALIAS_P (TYPE_NAME (TREE_TYPE (decl)))
19451 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
19452 break;
19453
19454 /* Stop if we run into an explicitly specialized class template. */
19455 if (!DECL_NAMESPACE_SCOPE_P (decl)
19456 && DECL_CONTEXT (decl)
19457 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
19458 break;
19459
19460 decl = DECL_TI_TEMPLATE (decl);
19461 }
19462
19463 return decl;
19464 }
19465
19466 /* Return the most specialized of the template partial specializations
19467 which can produce TARGET, a specialization of some class or variable
19468 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
19469 a TEMPLATE_DECL node corresponding to the partial specialization, while
19470 the TREE_PURPOSE is the set of template arguments that must be
19471 substituted into the template pattern in order to generate TARGET.
19472
19473 If the choice of partial specialization is ambiguous, a diagnostic
19474 is issued, and the error_mark_node is returned. If there are no
19475 partial specializations matching TARGET, then NULL_TREE is
19476 returned, indicating that the primary template should be used. */
19477
19478 static tree
19479 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
19480 {
19481 tree list = NULL_TREE;
19482 tree t;
19483 tree champ;
19484 int fate;
19485 bool ambiguous_p;
19486 tree outer_args = NULL_TREE;
19487 tree tmpl, args;
19488
19489 if (TYPE_P (target))
19490 {
19491 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
19492 tmpl = TI_TEMPLATE (tinfo);
19493 args = TI_ARGS (tinfo);
19494 }
19495 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
19496 {
19497 tmpl = TREE_OPERAND (target, 0);
19498 args = TREE_OPERAND (target, 1);
19499 }
19500 else if (VAR_P (target))
19501 {
19502 tree tinfo = DECL_TEMPLATE_INFO (target);
19503 tmpl = TI_TEMPLATE (tinfo);
19504 args = TI_ARGS (tinfo);
19505 }
19506 else
19507 gcc_unreachable ();
19508
19509 tree main_tmpl = most_general_template (tmpl);
19510
19511 /* For determining which partial specialization to use, only the
19512 innermost args are interesting. */
19513 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
19514 {
19515 outer_args = strip_innermost_template_args (args, 1);
19516 args = INNERMOST_TEMPLATE_ARGS (args);
19517 }
19518
19519 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
19520 {
19521 tree partial_spec_args;
19522 tree spec_args;
19523 tree spec_tmpl = TREE_VALUE (t);
19524
19525 partial_spec_args = TREE_PURPOSE (t);
19526
19527 ++processing_template_decl;
19528
19529 if (outer_args)
19530 {
19531 /* Discard the outer levels of args, and then substitute in the
19532 template args from the enclosing class. */
19533 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
19534 partial_spec_args = tsubst_template_args
19535 (partial_spec_args, outer_args, tf_none, NULL_TREE);
19536
19537 /* And the same for the partial specialization TEMPLATE_DECL. */
19538 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
19539 }
19540
19541 partial_spec_args =
19542 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
19543 partial_spec_args,
19544 tmpl, tf_none,
19545 /*require_all_args=*/true,
19546 /*use_default_args=*/true);
19547
19548 --processing_template_decl;
19549
19550 if (partial_spec_args == error_mark_node)
19551 return error_mark_node;
19552 if (spec_tmpl == error_mark_node)
19553 return error_mark_node;
19554
19555 tree parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
19556 spec_args = get_partial_spec_bindings (tmpl, parms,
19557 partial_spec_args,
19558 args);
19559 if (spec_args)
19560 {
19561 if (outer_args)
19562 spec_args = add_to_template_args (outer_args, spec_args);
19563 list = tree_cons (spec_args, TREE_VALUE (t), list);
19564 TREE_TYPE (list) = TREE_TYPE (t);
19565 }
19566 }
19567
19568 if (! list)
19569 return NULL_TREE;
19570
19571 ambiguous_p = false;
19572 t = list;
19573 champ = t;
19574 t = TREE_CHAIN (t);
19575 for (; t; t = TREE_CHAIN (t))
19576 {
19577 fate = more_specialized_partial_spec (tmpl, champ, t);
19578 if (fate == 1)
19579 ;
19580 else
19581 {
19582 if (fate == 0)
19583 {
19584 t = TREE_CHAIN (t);
19585 if (! t)
19586 {
19587 ambiguous_p = true;
19588 break;
19589 }
19590 }
19591 champ = t;
19592 }
19593 }
19594
19595 if (!ambiguous_p)
19596 for (t = list; t && t != champ; t = TREE_CHAIN (t))
19597 {
19598 fate = more_specialized_partial_spec (tmpl, champ, t);
19599 if (fate != 1)
19600 {
19601 ambiguous_p = true;
19602 break;
19603 }
19604 }
19605
19606 if (ambiguous_p)
19607 {
19608 const char *str;
19609 char *spaces = NULL;
19610 if (!(complain & tf_error))
19611 return error_mark_node;
19612 if (TYPE_P (target))
19613 error ("ambiguous template instantiation for %q#T", target);
19614 else
19615 error ("ambiguous template instantiation for %q#D", target);
19616 str = ngettext ("candidate is:", "candidates are:", list_length (list));
19617 for (t = list; t; t = TREE_CHAIN (t))
19618 {
19619 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
19620 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
19621 "%s %#S", spaces ? spaces : str, subst);
19622 spaces = spaces ? spaces : get_spaces (str);
19623 }
19624 free (spaces);
19625 return error_mark_node;
19626 }
19627
19628 return champ;
19629 }
19630
19631 /* Explicitly instantiate DECL. */
19632
19633 void
19634 do_decl_instantiation (tree decl, tree storage)
19635 {
19636 tree result = NULL_TREE;
19637 int extern_p = 0;
19638
19639 if (!decl || decl == error_mark_node)
19640 /* An error occurred, for which grokdeclarator has already issued
19641 an appropriate message. */
19642 return;
19643 else if (! DECL_LANG_SPECIFIC (decl))
19644 {
19645 error ("explicit instantiation of non-template %q#D", decl);
19646 return;
19647 }
19648
19649 bool var_templ = (DECL_TEMPLATE_INFO (decl)
19650 && variable_template_p (DECL_TI_TEMPLATE (decl)));
19651
19652 if (VAR_P (decl) && !var_templ)
19653 {
19654 /* There is an asymmetry here in the way VAR_DECLs and
19655 FUNCTION_DECLs are handled by grokdeclarator. In the case of
19656 the latter, the DECL we get back will be marked as a
19657 template instantiation, and the appropriate
19658 DECL_TEMPLATE_INFO will be set up. This does not happen for
19659 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
19660 should handle VAR_DECLs as it currently handles
19661 FUNCTION_DECLs. */
19662 if (!DECL_CLASS_SCOPE_P (decl))
19663 {
19664 error ("%qD is not a static data member of a class template", decl);
19665 return;
19666 }
19667 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
19668 if (!result || !VAR_P (result))
19669 {
19670 error ("no matching template for %qD found", decl);
19671 return;
19672 }
19673 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
19674 {
19675 error ("type %qT for explicit instantiation %qD does not match "
19676 "declared type %qT", TREE_TYPE (result), decl,
19677 TREE_TYPE (decl));
19678 return;
19679 }
19680 }
19681 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
19682 {
19683 error ("explicit instantiation of %q#D", decl);
19684 return;
19685 }
19686 else
19687 result = decl;
19688
19689 /* Check for various error cases. Note that if the explicit
19690 instantiation is valid the RESULT will currently be marked as an
19691 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
19692 until we get here. */
19693
19694 if (DECL_TEMPLATE_SPECIALIZATION (result))
19695 {
19696 /* DR 259 [temp.spec].
19697
19698 Both an explicit instantiation and a declaration of an explicit
19699 specialization shall not appear in a program unless the explicit
19700 instantiation follows a declaration of the explicit specialization.
19701
19702 For a given set of template parameters, if an explicit
19703 instantiation of a template appears after a declaration of an
19704 explicit specialization for that template, the explicit
19705 instantiation has no effect. */
19706 return;
19707 }
19708 else if (DECL_EXPLICIT_INSTANTIATION (result))
19709 {
19710 /* [temp.spec]
19711
19712 No program shall explicitly instantiate any template more
19713 than once.
19714
19715 We check DECL_NOT_REALLY_EXTERN so as not to complain when
19716 the first instantiation was `extern' and the second is not,
19717 and EXTERN_P for the opposite case. */
19718 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
19719 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
19720 /* If an "extern" explicit instantiation follows an ordinary
19721 explicit instantiation, the template is instantiated. */
19722 if (extern_p)
19723 return;
19724 }
19725 else if (!DECL_IMPLICIT_INSTANTIATION (result))
19726 {
19727 error ("no matching template for %qD found", result);
19728 return;
19729 }
19730 else if (!DECL_TEMPLATE_INFO (result))
19731 {
19732 permerror (input_location, "explicit instantiation of non-template %q#D", result);
19733 return;
19734 }
19735
19736 if (storage == NULL_TREE)
19737 ;
19738 else if (storage == ridpointers[(int) RID_EXTERN])
19739 {
19740 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
19741 pedwarn (input_location, OPT_Wpedantic,
19742 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
19743 "instantiations");
19744 extern_p = 1;
19745 }
19746 else
19747 error ("storage class %qD applied to template instantiation", storage);
19748
19749 check_explicit_instantiation_namespace (result);
19750 mark_decl_instantiated (result, extern_p);
19751 if (! extern_p)
19752 instantiate_decl (result, /*defer_ok=*/1,
19753 /*expl_inst_class_mem_p=*/false);
19754 }
19755
19756 static void
19757 mark_class_instantiated (tree t, int extern_p)
19758 {
19759 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
19760 SET_CLASSTYPE_INTERFACE_KNOWN (t);
19761 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
19762 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
19763 if (! extern_p)
19764 {
19765 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
19766 rest_of_type_compilation (t, 1);
19767 }
19768 }
19769
19770 /* Called from do_type_instantiation through binding_table_foreach to
19771 do recursive instantiation for the type bound in ENTRY. */
19772 static void
19773 bt_instantiate_type_proc (binding_entry entry, void *data)
19774 {
19775 tree storage = *(tree *) data;
19776
19777 if (MAYBE_CLASS_TYPE_P (entry->type)
19778 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
19779 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
19780 }
19781
19782 /* Called from do_type_instantiation to instantiate a member
19783 (a member function or a static member variable) of an
19784 explicitly instantiated class template. */
19785 static void
19786 instantiate_class_member (tree decl, int extern_p)
19787 {
19788 mark_decl_instantiated (decl, extern_p);
19789 if (! extern_p)
19790 instantiate_decl (decl, /*defer_ok=*/1,
19791 /*expl_inst_class_mem_p=*/true);
19792 }
19793
19794 /* Perform an explicit instantiation of template class T. STORAGE, if
19795 non-null, is the RID for extern, inline or static. COMPLAIN is
19796 nonzero if this is called from the parser, zero if called recursively,
19797 since the standard is unclear (as detailed below). */
19798
19799 void
19800 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
19801 {
19802 int extern_p = 0;
19803 int nomem_p = 0;
19804 int static_p = 0;
19805 int previous_instantiation_extern_p = 0;
19806
19807 if (TREE_CODE (t) == TYPE_DECL)
19808 t = TREE_TYPE (t);
19809
19810 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
19811 {
19812 tree tmpl =
19813 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
19814 if (tmpl)
19815 error ("explicit instantiation of non-class template %qD", tmpl);
19816 else
19817 error ("explicit instantiation of non-template type %qT", t);
19818 return;
19819 }
19820
19821 complete_type (t);
19822
19823 if (!COMPLETE_TYPE_P (t))
19824 {
19825 if (complain & tf_error)
19826 error ("explicit instantiation of %q#T before definition of template",
19827 t);
19828 return;
19829 }
19830
19831 if (storage != NULL_TREE)
19832 {
19833 if (!in_system_header_at (input_location))
19834 {
19835 if (storage == ridpointers[(int) RID_EXTERN])
19836 {
19837 if (cxx_dialect == cxx98)
19838 pedwarn (input_location, OPT_Wpedantic,
19839 "ISO C++ 1998 forbids the use of %<extern%> on "
19840 "explicit instantiations");
19841 }
19842 else
19843 pedwarn (input_location, OPT_Wpedantic,
19844 "ISO C++ forbids the use of %qE"
19845 " on explicit instantiations", storage);
19846 }
19847
19848 if (storage == ridpointers[(int) RID_INLINE])
19849 nomem_p = 1;
19850 else if (storage == ridpointers[(int) RID_EXTERN])
19851 extern_p = 1;
19852 else if (storage == ridpointers[(int) RID_STATIC])
19853 static_p = 1;
19854 else
19855 {
19856 error ("storage class %qD applied to template instantiation",
19857 storage);
19858 extern_p = 0;
19859 }
19860 }
19861
19862 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
19863 {
19864 /* DR 259 [temp.spec].
19865
19866 Both an explicit instantiation and a declaration of an explicit
19867 specialization shall not appear in a program unless the explicit
19868 instantiation follows a declaration of the explicit specialization.
19869
19870 For a given set of template parameters, if an explicit
19871 instantiation of a template appears after a declaration of an
19872 explicit specialization for that template, the explicit
19873 instantiation has no effect. */
19874 return;
19875 }
19876 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
19877 {
19878 /* [temp.spec]
19879
19880 No program shall explicitly instantiate any template more
19881 than once.
19882
19883 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
19884 instantiation was `extern'. If EXTERN_P then the second is.
19885 These cases are OK. */
19886 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
19887
19888 if (!previous_instantiation_extern_p && !extern_p
19889 && (complain & tf_error))
19890 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
19891
19892 /* If we've already instantiated the template, just return now. */
19893 if (!CLASSTYPE_INTERFACE_ONLY (t))
19894 return;
19895 }
19896
19897 check_explicit_instantiation_namespace (TYPE_NAME (t));
19898 mark_class_instantiated (t, extern_p);
19899
19900 if (nomem_p)
19901 return;
19902
19903 {
19904 tree tmp;
19905
19906 /* In contrast to implicit instantiation, where only the
19907 declarations, and not the definitions, of members are
19908 instantiated, we have here:
19909
19910 [temp.explicit]
19911
19912 The explicit instantiation of a class template specialization
19913 implies the instantiation of all of its members not
19914 previously explicitly specialized in the translation unit
19915 containing the explicit instantiation.
19916
19917 Of course, we can't instantiate member template classes, since
19918 we don't have any arguments for them. Note that the standard
19919 is unclear on whether the instantiation of the members are
19920 *explicit* instantiations or not. However, the most natural
19921 interpretation is that it should be an explicit instantiation. */
19922
19923 if (! static_p)
19924 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
19925 if (TREE_CODE (tmp) == FUNCTION_DECL
19926 && DECL_TEMPLATE_INSTANTIATION (tmp))
19927 instantiate_class_member (tmp, extern_p);
19928
19929 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
19930 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
19931 instantiate_class_member (tmp, extern_p);
19932
19933 if (CLASSTYPE_NESTED_UTDS (t))
19934 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
19935 bt_instantiate_type_proc, &storage);
19936 }
19937 }
19938
19939 /* Given a function DECL, which is a specialization of TMPL, modify
19940 DECL to be a re-instantiation of TMPL with the same template
19941 arguments. TMPL should be the template into which tsubst'ing
19942 should occur for DECL, not the most general template.
19943
19944 One reason for doing this is a scenario like this:
19945
19946 template <class T>
19947 void f(const T&, int i);
19948
19949 void g() { f(3, 7); }
19950
19951 template <class T>
19952 void f(const T& t, const int i) { }
19953
19954 Note that when the template is first instantiated, with
19955 instantiate_template, the resulting DECL will have no name for the
19956 first parameter, and the wrong type for the second. So, when we go
19957 to instantiate the DECL, we regenerate it. */
19958
19959 static void
19960 regenerate_decl_from_template (tree decl, tree tmpl)
19961 {
19962 /* The arguments used to instantiate DECL, from the most general
19963 template. */
19964 tree args;
19965 tree code_pattern;
19966
19967 args = DECL_TI_ARGS (decl);
19968 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
19969
19970 /* Make sure that we can see identifiers, and compute access
19971 correctly. */
19972 push_access_scope (decl);
19973
19974 if (TREE_CODE (decl) == FUNCTION_DECL)
19975 {
19976 tree decl_parm;
19977 tree pattern_parm;
19978 tree specs;
19979 int args_depth;
19980 int parms_depth;
19981
19982 args_depth = TMPL_ARGS_DEPTH (args);
19983 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
19984 if (args_depth > parms_depth)
19985 args = get_innermost_template_args (args, parms_depth);
19986
19987 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
19988 args, tf_error, NULL_TREE,
19989 /*defer_ok*/false);
19990 if (specs && specs != error_mark_node)
19991 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
19992 specs);
19993
19994 /* Merge parameter declarations. */
19995 decl_parm = skip_artificial_parms_for (decl,
19996 DECL_ARGUMENTS (decl));
19997 pattern_parm
19998 = skip_artificial_parms_for (code_pattern,
19999 DECL_ARGUMENTS (code_pattern));
20000 while (decl_parm && !DECL_PACK_P (pattern_parm))
20001 {
20002 tree parm_type;
20003 tree attributes;
20004
20005 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
20006 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
20007 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
20008 NULL_TREE);
20009 parm_type = type_decays_to (parm_type);
20010 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
20011 TREE_TYPE (decl_parm) = parm_type;
20012 attributes = DECL_ATTRIBUTES (pattern_parm);
20013 if (DECL_ATTRIBUTES (decl_parm) != attributes)
20014 {
20015 DECL_ATTRIBUTES (decl_parm) = attributes;
20016 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
20017 }
20018 decl_parm = DECL_CHAIN (decl_parm);
20019 pattern_parm = DECL_CHAIN (pattern_parm);
20020 }
20021 /* Merge any parameters that match with the function parameter
20022 pack. */
20023 if (pattern_parm && DECL_PACK_P (pattern_parm))
20024 {
20025 int i, len;
20026 tree expanded_types;
20027 /* Expand the TYPE_PACK_EXPANSION that provides the types for
20028 the parameters in this function parameter pack. */
20029 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
20030 args, tf_error, NULL_TREE);
20031 len = TREE_VEC_LENGTH (expanded_types);
20032 for (i = 0; i < len; i++)
20033 {
20034 tree parm_type;
20035 tree attributes;
20036
20037 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
20038 /* Rename the parameter to include the index. */
20039 DECL_NAME (decl_parm) =
20040 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
20041 parm_type = TREE_VEC_ELT (expanded_types, i);
20042 parm_type = type_decays_to (parm_type);
20043 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
20044 TREE_TYPE (decl_parm) = parm_type;
20045 attributes = DECL_ATTRIBUTES (pattern_parm);
20046 if (DECL_ATTRIBUTES (decl_parm) != attributes)
20047 {
20048 DECL_ATTRIBUTES (decl_parm) = attributes;
20049 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
20050 }
20051 decl_parm = DECL_CHAIN (decl_parm);
20052 }
20053 }
20054 /* Merge additional specifiers from the CODE_PATTERN. */
20055 if (DECL_DECLARED_INLINE_P (code_pattern)
20056 && !DECL_DECLARED_INLINE_P (decl))
20057 DECL_DECLARED_INLINE_P (decl) = 1;
20058 }
20059 else if (VAR_P (decl))
20060 {
20061 DECL_INITIAL (decl) =
20062 tsubst_expr (DECL_INITIAL (code_pattern), args,
20063 tf_error, DECL_TI_TEMPLATE (decl),
20064 /*integral_constant_expression_p=*/false);
20065 if (VAR_HAD_UNKNOWN_BOUND (decl))
20066 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
20067 tf_error, DECL_TI_TEMPLATE (decl));
20068 }
20069 else
20070 gcc_unreachable ();
20071
20072 pop_access_scope (decl);
20073 }
20074
20075 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
20076 substituted to get DECL. */
20077
20078 tree
20079 template_for_substitution (tree decl)
20080 {
20081 tree tmpl = DECL_TI_TEMPLATE (decl);
20082
20083 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
20084 for the instantiation. This is not always the most general
20085 template. Consider, for example:
20086
20087 template <class T>
20088 struct S { template <class U> void f();
20089 template <> void f<int>(); };
20090
20091 and an instantiation of S<double>::f<int>. We want TD to be the
20092 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
20093 while (/* An instantiation cannot have a definition, so we need a
20094 more general template. */
20095 DECL_TEMPLATE_INSTANTIATION (tmpl)
20096 /* We must also deal with friend templates. Given:
20097
20098 template <class T> struct S {
20099 template <class U> friend void f() {};
20100 };
20101
20102 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
20103 so far as the language is concerned, but that's still
20104 where we get the pattern for the instantiation from. On
20105 other hand, if the definition comes outside the class, say:
20106
20107 template <class T> struct S {
20108 template <class U> friend void f();
20109 };
20110 template <class U> friend void f() {}
20111
20112 we don't need to look any further. That's what the check for
20113 DECL_INITIAL is for. */
20114 || (TREE_CODE (decl) == FUNCTION_DECL
20115 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
20116 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
20117 {
20118 /* The present template, TD, should not be a definition. If it
20119 were a definition, we should be using it! Note that we
20120 cannot restructure the loop to just keep going until we find
20121 a template with a definition, since that might go too far if
20122 a specialization was declared, but not defined. */
20123
20124 /* Fetch the more general template. */
20125 tmpl = DECL_TI_TEMPLATE (tmpl);
20126 }
20127
20128 return tmpl;
20129 }
20130
20131 /* Returns true if we need to instantiate this template instance even if we
20132 know we aren't going to emit it.. */
20133
20134 bool
20135 always_instantiate_p (tree decl)
20136 {
20137 /* We always instantiate inline functions so that we can inline them. An
20138 explicit instantiation declaration prohibits implicit instantiation of
20139 non-inline functions. With high levels of optimization, we would
20140 normally inline non-inline functions -- but we're not allowed to do
20141 that for "extern template" functions. Therefore, we check
20142 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
20143 return ((TREE_CODE (decl) == FUNCTION_DECL
20144 && (DECL_DECLARED_INLINE_P (decl)
20145 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
20146 /* And we need to instantiate static data members so that
20147 their initializers are available in integral constant
20148 expressions. */
20149 || (VAR_P (decl)
20150 && decl_maybe_constant_var_p (decl)));
20151 }
20152
20153 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
20154 instantiate it now, modifying TREE_TYPE (fn). */
20155
20156 void
20157 maybe_instantiate_noexcept (tree fn)
20158 {
20159 tree fntype, spec, noex, clone;
20160
20161 /* Don't instantiate a noexcept-specification from template context. */
20162 if (processing_template_decl)
20163 return;
20164
20165 if (DECL_CLONED_FUNCTION_P (fn))
20166 fn = DECL_CLONED_FUNCTION (fn);
20167 fntype = TREE_TYPE (fn);
20168 spec = TYPE_RAISES_EXCEPTIONS (fntype);
20169
20170 if (!spec || !TREE_PURPOSE (spec))
20171 return;
20172
20173 noex = TREE_PURPOSE (spec);
20174
20175 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
20176 {
20177 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
20178 spec = get_defaulted_eh_spec (fn);
20179 else if (push_tinst_level (fn))
20180 {
20181 push_access_scope (fn);
20182 push_deferring_access_checks (dk_no_deferred);
20183 input_location = DECL_SOURCE_LOCATION (fn);
20184 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
20185 DEFERRED_NOEXCEPT_ARGS (noex),
20186 tf_warning_or_error, fn,
20187 /*function_p=*/false,
20188 /*integral_constant_expression_p=*/true);
20189 pop_deferring_access_checks ();
20190 pop_access_scope (fn);
20191 pop_tinst_level ();
20192 spec = build_noexcept_spec (noex, tf_warning_or_error);
20193 if (spec == error_mark_node)
20194 spec = noexcept_false_spec;
20195 }
20196 else
20197 spec = noexcept_false_spec;
20198
20199 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
20200 }
20201
20202 FOR_EACH_CLONE (clone, fn)
20203 {
20204 if (TREE_TYPE (clone) == fntype)
20205 TREE_TYPE (clone) = TREE_TYPE (fn);
20206 else
20207 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
20208 }
20209 }
20210
20211 /* Produce the definition of D, a _DECL generated from a template. If
20212 DEFER_OK is nonzero, then we don't have to actually do the
20213 instantiation now; we just have to do it sometime. Normally it is
20214 an error if this is an explicit instantiation but D is undefined.
20215 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
20216 explicitly instantiated class template. */
20217
20218 tree
20219 instantiate_decl (tree d, int defer_ok,
20220 bool expl_inst_class_mem_p)
20221 {
20222 tree tmpl = DECL_TI_TEMPLATE (d);
20223 tree gen_args;
20224 tree args;
20225 tree td;
20226 tree code_pattern;
20227 tree spec;
20228 tree gen_tmpl;
20229 bool pattern_defined;
20230 location_t saved_loc = input_location;
20231 int saved_unevaluated_operand = cp_unevaluated_operand;
20232 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
20233 bool external_p;
20234 bool deleted_p;
20235 tree fn_context;
20236 bool nested;
20237
20238 /* This function should only be used to instantiate templates for
20239 functions and static member variables. */
20240 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
20241
20242 /* Variables are never deferred; if instantiation is required, they
20243 are instantiated right away. That allows for better code in the
20244 case that an expression refers to the value of the variable --
20245 if the variable has a constant value the referring expression can
20246 take advantage of that fact. */
20247 if (VAR_P (d)
20248 || DECL_DECLARED_CONSTEXPR_P (d))
20249 defer_ok = 0;
20250
20251 /* Don't instantiate cloned functions. Instead, instantiate the
20252 functions they cloned. */
20253 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
20254 d = DECL_CLONED_FUNCTION (d);
20255
20256 if (DECL_TEMPLATE_INSTANTIATED (d)
20257 || (TREE_CODE (d) == FUNCTION_DECL
20258 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
20259 || DECL_TEMPLATE_SPECIALIZATION (d))
20260 /* D has already been instantiated or explicitly specialized, so
20261 there's nothing for us to do here.
20262
20263 It might seem reasonable to check whether or not D is an explicit
20264 instantiation, and, if so, stop here. But when an explicit
20265 instantiation is deferred until the end of the compilation,
20266 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
20267 the instantiation. */
20268 return d;
20269
20270 /* Check to see whether we know that this template will be
20271 instantiated in some other file, as with "extern template"
20272 extension. */
20273 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
20274
20275 /* In general, we do not instantiate such templates. */
20276 if (external_p && !always_instantiate_p (d))
20277 return d;
20278
20279 gen_tmpl = most_general_template (tmpl);
20280 gen_args = DECL_TI_ARGS (d);
20281
20282 if (tmpl != gen_tmpl)
20283 /* We should already have the extra args. */
20284 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
20285 == TMPL_ARGS_DEPTH (gen_args));
20286 /* And what's in the hash table should match D. */
20287 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
20288 || spec == NULL_TREE);
20289
20290 /* This needs to happen before any tsubsting. */
20291 if (! push_tinst_level (d))
20292 return d;
20293
20294 timevar_push (TV_TEMPLATE_INST);
20295
20296 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
20297 for the instantiation. */
20298 td = template_for_substitution (d);
20299 code_pattern = DECL_TEMPLATE_RESULT (td);
20300
20301 /* We should never be trying to instantiate a member of a class
20302 template or partial specialization. */
20303 gcc_assert (d != code_pattern);
20304
20305 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
20306 || DECL_TEMPLATE_SPECIALIZATION (td))
20307 /* In the case of a friend template whose definition is provided
20308 outside the class, we may have too many arguments. Drop the
20309 ones we don't need. The same is true for specializations. */
20310 args = get_innermost_template_args
20311 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
20312 else
20313 args = gen_args;
20314
20315 if (TREE_CODE (d) == FUNCTION_DECL)
20316 {
20317 deleted_p = DECL_DELETED_FN (code_pattern);
20318 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
20319 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
20320 || deleted_p);
20321 }
20322 else
20323 {
20324 deleted_p = false;
20325 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
20326 }
20327
20328 /* We may be in the middle of deferred access check. Disable it now. */
20329 push_deferring_access_checks (dk_no_deferred);
20330
20331 /* Unless an explicit instantiation directive has already determined
20332 the linkage of D, remember that a definition is available for
20333 this entity. */
20334 if (pattern_defined
20335 && !DECL_INTERFACE_KNOWN (d)
20336 && !DECL_NOT_REALLY_EXTERN (d))
20337 mark_definable (d);
20338
20339 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
20340 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
20341 input_location = DECL_SOURCE_LOCATION (d);
20342
20343 /* If D is a member of an explicitly instantiated class template,
20344 and no definition is available, treat it like an implicit
20345 instantiation. */
20346 if (!pattern_defined && expl_inst_class_mem_p
20347 && DECL_EXPLICIT_INSTANTIATION (d))
20348 {
20349 /* Leave linkage flags alone on instantiations with anonymous
20350 visibility. */
20351 if (TREE_PUBLIC (d))
20352 {
20353 DECL_NOT_REALLY_EXTERN (d) = 0;
20354 DECL_INTERFACE_KNOWN (d) = 0;
20355 }
20356 SET_DECL_IMPLICIT_INSTANTIATION (d);
20357 }
20358
20359 /* Defer all other templates, unless we have been explicitly
20360 forbidden from doing so. */
20361 if (/* If there is no definition, we cannot instantiate the
20362 template. */
20363 ! pattern_defined
20364 /* If it's OK to postpone instantiation, do so. */
20365 || defer_ok
20366 /* If this is a static data member that will be defined
20367 elsewhere, we don't want to instantiate the entire data
20368 member, but we do want to instantiate the initializer so that
20369 we can substitute that elsewhere. */
20370 || (external_p && VAR_P (d))
20371 /* Handle here a deleted function too, avoid generating
20372 its body (c++/61080). */
20373 || deleted_p)
20374 {
20375 /* The definition of the static data member is now required so
20376 we must substitute the initializer. */
20377 if (VAR_P (d)
20378 && !DECL_INITIAL (d)
20379 && DECL_INITIAL (code_pattern))
20380 {
20381 tree ns;
20382 tree init;
20383 bool const_init = false;
20384 bool enter_context = DECL_CLASS_SCOPE_P (d);
20385
20386 ns = decl_namespace_context (d);
20387 push_nested_namespace (ns);
20388 if (enter_context)
20389 push_nested_class (DECL_CONTEXT (d));
20390 init = tsubst_expr (DECL_INITIAL (code_pattern),
20391 args,
20392 tf_warning_or_error, NULL_TREE,
20393 /*integral_constant_expression_p=*/false);
20394 /* If instantiating the initializer involved instantiating this
20395 again, don't call cp_finish_decl twice. */
20396 if (!DECL_INITIAL (d))
20397 {
20398 /* Make sure the initializer is still constant, in case of
20399 circular dependency (template/instantiate6.C). */
20400 const_init
20401 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
20402 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
20403 /*asmspec_tree=*/NULL_TREE,
20404 LOOKUP_ONLYCONVERTING);
20405 }
20406 if (enter_context)
20407 pop_nested_class ();
20408 pop_nested_namespace (ns);
20409 }
20410
20411 /* We restore the source position here because it's used by
20412 add_pending_template. */
20413 input_location = saved_loc;
20414
20415 if (at_eof && !pattern_defined
20416 && DECL_EXPLICIT_INSTANTIATION (d)
20417 && DECL_NOT_REALLY_EXTERN (d))
20418 /* [temp.explicit]
20419
20420 The definition of a non-exported function template, a
20421 non-exported member function template, or a non-exported
20422 member function or static data member of a class template
20423 shall be present in every translation unit in which it is
20424 explicitly instantiated. */
20425 permerror (input_location, "explicit instantiation of %qD "
20426 "but no definition available", d);
20427
20428 /* If we're in unevaluated context, we just wanted to get the
20429 constant value; this isn't an odr use, so don't queue
20430 a full instantiation. */
20431 if (cp_unevaluated_operand != 0)
20432 goto out;
20433 /* ??? Historically, we have instantiated inline functions, even
20434 when marked as "extern template". */
20435 if (!(external_p && VAR_P (d)))
20436 add_pending_template (d);
20437 goto out;
20438 }
20439 /* Tell the repository that D is available in this translation unit
20440 -- and see if it is supposed to be instantiated here. */
20441 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
20442 {
20443 /* In a PCH file, despite the fact that the repository hasn't
20444 requested instantiation in the PCH it is still possible that
20445 an instantiation will be required in a file that includes the
20446 PCH. */
20447 if (pch_file)
20448 add_pending_template (d);
20449 /* Instantiate inline functions so that the inliner can do its
20450 job, even though we'll not be emitting a copy of this
20451 function. */
20452 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
20453 goto out;
20454 }
20455
20456 fn_context = decl_function_context (d);
20457 nested = (current_function_decl != NULL_TREE);
20458 if (!fn_context)
20459 push_to_top_level ();
20460 else
20461 {
20462 if (nested)
20463 push_function_context ();
20464 cp_unevaluated_operand = 0;
20465 c_inhibit_evaluation_warnings = 0;
20466 }
20467
20468 /* Mark D as instantiated so that recursive calls to
20469 instantiate_decl do not try to instantiate it again. */
20470 DECL_TEMPLATE_INSTANTIATED (d) = 1;
20471
20472 /* Regenerate the declaration in case the template has been modified
20473 by a subsequent redeclaration. */
20474 regenerate_decl_from_template (d, td);
20475
20476 /* We already set the file and line above. Reset them now in case
20477 they changed as a result of calling regenerate_decl_from_template. */
20478 input_location = DECL_SOURCE_LOCATION (d);
20479
20480 if (VAR_P (d))
20481 {
20482 tree init;
20483 bool const_init = false;
20484
20485 /* Clear out DECL_RTL; whatever was there before may not be right
20486 since we've reset the type of the declaration. */
20487 SET_DECL_RTL (d, NULL);
20488 DECL_IN_AGGR_P (d) = 0;
20489
20490 /* The initializer is placed in DECL_INITIAL by
20491 regenerate_decl_from_template so we don't need to
20492 push/pop_access_scope again here. Pull it out so that
20493 cp_finish_decl can process it. */
20494 init = DECL_INITIAL (d);
20495 DECL_INITIAL (d) = NULL_TREE;
20496 DECL_INITIALIZED_P (d) = 0;
20497
20498 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
20499 initializer. That function will defer actual emission until
20500 we have a chance to determine linkage. */
20501 DECL_EXTERNAL (d) = 0;
20502
20503 /* Enter the scope of D so that access-checking works correctly. */
20504 bool enter_context = DECL_CLASS_SCOPE_P (d);
20505 if (enter_context)
20506 push_nested_class (DECL_CONTEXT (d));
20507
20508 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
20509 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
20510
20511 if (enter_context)
20512 pop_nested_class ();
20513
20514 if (variable_template_p (td))
20515 note_variable_template_instantiation (d);
20516 }
20517 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
20518 synthesize_method (d);
20519 else if (TREE_CODE (d) == FUNCTION_DECL)
20520 {
20521 hash_map<tree, tree> *saved_local_specializations;
20522 tree subst_decl;
20523 tree tmpl_parm;
20524 tree spec_parm;
20525 tree block = NULL_TREE;
20526
20527 /* Save away the current list, in case we are instantiating one
20528 template from within the body of another. */
20529 saved_local_specializations = local_specializations;
20530
20531 /* Set up the list of local specializations. */
20532 local_specializations = new hash_map<tree, tree>;
20533
20534 /* Set up context. */
20535 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
20536 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
20537 block = push_stmt_list ();
20538 else
20539 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
20540
20541 /* Some typedefs referenced from within the template code need to be
20542 access checked at template instantiation time, i.e now. These
20543 types were added to the template at parsing time. Let's get those
20544 and perform the access checks then. */
20545 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
20546 gen_args);
20547
20548 /* Create substitution entries for the parameters. */
20549 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
20550 tmpl_parm = DECL_ARGUMENTS (subst_decl);
20551 spec_parm = DECL_ARGUMENTS (d);
20552 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
20553 {
20554 register_local_specialization (spec_parm, tmpl_parm);
20555 spec_parm = skip_artificial_parms_for (d, spec_parm);
20556 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
20557 }
20558 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
20559 {
20560 if (!DECL_PACK_P (tmpl_parm))
20561 {
20562 register_local_specialization (spec_parm, tmpl_parm);
20563 spec_parm = DECL_CHAIN (spec_parm);
20564 }
20565 else
20566 {
20567 /* Register the (value) argument pack as a specialization of
20568 TMPL_PARM, then move on. */
20569 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
20570 register_local_specialization (argpack, tmpl_parm);
20571 }
20572 }
20573 gcc_assert (!spec_parm);
20574
20575 /* Substitute into the body of the function. */
20576 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
20577 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
20578 tf_warning_or_error, tmpl);
20579 else
20580 {
20581 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
20582 tf_warning_or_error, tmpl,
20583 /*integral_constant_expression_p=*/false);
20584
20585 /* Set the current input_location to the end of the function
20586 so that finish_function knows where we are. */
20587 input_location
20588 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
20589
20590 /* Remember if we saw an infinite loop in the template. */
20591 current_function_infinite_loop
20592 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
20593 }
20594
20595 /* We don't need the local specializations any more. */
20596 delete local_specializations;
20597 local_specializations = saved_local_specializations;
20598
20599 /* Finish the function. */
20600 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
20601 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
20602 DECL_SAVED_TREE (d) = pop_stmt_list (block);
20603 else
20604 {
20605 d = finish_function (0);
20606 expand_or_defer_fn (d);
20607 }
20608
20609 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
20610 cp_check_omp_declare_reduction (d);
20611 }
20612
20613 /* We're not deferring instantiation any more. */
20614 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
20615
20616 if (!fn_context)
20617 pop_from_top_level ();
20618 else if (nested)
20619 pop_function_context ();
20620
20621 out:
20622 input_location = saved_loc;
20623 cp_unevaluated_operand = saved_unevaluated_operand;
20624 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
20625 pop_deferring_access_checks ();
20626 pop_tinst_level ();
20627
20628 timevar_pop (TV_TEMPLATE_INST);
20629
20630 return d;
20631 }
20632
20633 /* Run through the list of templates that we wish we could
20634 instantiate, and instantiate any we can. RETRIES is the
20635 number of times we retry pending template instantiation. */
20636
20637 void
20638 instantiate_pending_templates (int retries)
20639 {
20640 int reconsider;
20641 location_t saved_loc = input_location;
20642
20643 /* Instantiating templates may trigger vtable generation. This in turn
20644 may require further template instantiations. We place a limit here
20645 to avoid infinite loop. */
20646 if (pending_templates && retries >= max_tinst_depth)
20647 {
20648 tree decl = pending_templates->tinst->decl;
20649
20650 fatal_error (input_location,
20651 "template instantiation depth exceeds maximum of %d"
20652 " instantiating %q+D, possibly from virtual table generation"
20653 " (use -ftemplate-depth= to increase the maximum)",
20654 max_tinst_depth, decl);
20655 if (TREE_CODE (decl) == FUNCTION_DECL)
20656 /* Pretend that we defined it. */
20657 DECL_INITIAL (decl) = error_mark_node;
20658 return;
20659 }
20660
20661 do
20662 {
20663 struct pending_template **t = &pending_templates;
20664 struct pending_template *last = NULL;
20665 reconsider = 0;
20666 while (*t)
20667 {
20668 tree instantiation = reopen_tinst_level ((*t)->tinst);
20669 bool complete = false;
20670
20671 if (TYPE_P (instantiation))
20672 {
20673 tree fn;
20674
20675 if (!COMPLETE_TYPE_P (instantiation))
20676 {
20677 instantiate_class_template (instantiation);
20678 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
20679 for (fn = TYPE_METHODS (instantiation);
20680 fn;
20681 fn = TREE_CHAIN (fn))
20682 if (! DECL_ARTIFICIAL (fn))
20683 instantiate_decl (fn,
20684 /*defer_ok=*/0,
20685 /*expl_inst_class_mem_p=*/false);
20686 if (COMPLETE_TYPE_P (instantiation))
20687 reconsider = 1;
20688 }
20689
20690 complete = COMPLETE_TYPE_P (instantiation);
20691 }
20692 else
20693 {
20694 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
20695 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
20696 {
20697 instantiation
20698 = instantiate_decl (instantiation,
20699 /*defer_ok=*/0,
20700 /*expl_inst_class_mem_p=*/false);
20701 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
20702 reconsider = 1;
20703 }
20704
20705 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
20706 || DECL_TEMPLATE_INSTANTIATED (instantiation));
20707 }
20708
20709 if (complete)
20710 /* If INSTANTIATION has been instantiated, then we don't
20711 need to consider it again in the future. */
20712 *t = (*t)->next;
20713 else
20714 {
20715 last = *t;
20716 t = &(*t)->next;
20717 }
20718 tinst_depth = 0;
20719 current_tinst_level = NULL;
20720 }
20721 last_pending_template = last;
20722 }
20723 while (reconsider);
20724
20725 input_location = saved_loc;
20726 }
20727
20728 /* Substitute ARGVEC into T, which is a list of initializers for
20729 either base class or a non-static data member. The TREE_PURPOSEs
20730 are DECLs, and the TREE_VALUEs are the initializer values. Used by
20731 instantiate_decl. */
20732
20733 static tree
20734 tsubst_initializer_list (tree t, tree argvec)
20735 {
20736 tree inits = NULL_TREE;
20737
20738 for (; t; t = TREE_CHAIN (t))
20739 {
20740 tree decl;
20741 tree init;
20742 tree expanded_bases = NULL_TREE;
20743 tree expanded_arguments = NULL_TREE;
20744 int i, len = 1;
20745
20746 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
20747 {
20748 tree expr;
20749 tree arg;
20750
20751 /* Expand the base class expansion type into separate base
20752 classes. */
20753 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
20754 tf_warning_or_error,
20755 NULL_TREE);
20756 if (expanded_bases == error_mark_node)
20757 continue;
20758
20759 /* We'll be building separate TREE_LISTs of arguments for
20760 each base. */
20761 len = TREE_VEC_LENGTH (expanded_bases);
20762 expanded_arguments = make_tree_vec (len);
20763 for (i = 0; i < len; i++)
20764 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
20765
20766 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
20767 expand each argument in the TREE_VALUE of t. */
20768 expr = make_node (EXPR_PACK_EXPANSION);
20769 PACK_EXPANSION_LOCAL_P (expr) = true;
20770 PACK_EXPANSION_PARAMETER_PACKS (expr) =
20771 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
20772
20773 if (TREE_VALUE (t) == void_type_node)
20774 /* VOID_TYPE_NODE is used to indicate
20775 value-initialization. */
20776 {
20777 for (i = 0; i < len; i++)
20778 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
20779 }
20780 else
20781 {
20782 /* Substitute parameter packs into each argument in the
20783 TREE_LIST. */
20784 in_base_initializer = 1;
20785 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
20786 {
20787 tree expanded_exprs;
20788
20789 /* Expand the argument. */
20790 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
20791 expanded_exprs
20792 = tsubst_pack_expansion (expr, argvec,
20793 tf_warning_or_error,
20794 NULL_TREE);
20795 if (expanded_exprs == error_mark_node)
20796 continue;
20797
20798 /* Prepend each of the expanded expressions to the
20799 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
20800 for (i = 0; i < len; i++)
20801 {
20802 TREE_VEC_ELT (expanded_arguments, i) =
20803 tree_cons (NULL_TREE,
20804 TREE_VEC_ELT (expanded_exprs, i),
20805 TREE_VEC_ELT (expanded_arguments, i));
20806 }
20807 }
20808 in_base_initializer = 0;
20809
20810 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
20811 since we built them backwards. */
20812 for (i = 0; i < len; i++)
20813 {
20814 TREE_VEC_ELT (expanded_arguments, i) =
20815 nreverse (TREE_VEC_ELT (expanded_arguments, i));
20816 }
20817 }
20818 }
20819
20820 for (i = 0; i < len; ++i)
20821 {
20822 if (expanded_bases)
20823 {
20824 decl = TREE_VEC_ELT (expanded_bases, i);
20825 decl = expand_member_init (decl);
20826 init = TREE_VEC_ELT (expanded_arguments, i);
20827 }
20828 else
20829 {
20830 tree tmp;
20831 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
20832 tf_warning_or_error, NULL_TREE);
20833
20834 decl = expand_member_init (decl);
20835 if (decl && !DECL_P (decl))
20836 in_base_initializer = 1;
20837
20838 init = TREE_VALUE (t);
20839 tmp = init;
20840 if (init != void_type_node)
20841 init = tsubst_expr (init, argvec,
20842 tf_warning_or_error, NULL_TREE,
20843 /*integral_constant_expression_p=*/false);
20844 if (init == NULL_TREE && tmp != NULL_TREE)
20845 /* If we had an initializer but it instantiated to nothing,
20846 value-initialize the object. This will only occur when
20847 the initializer was a pack expansion where the parameter
20848 packs used in that expansion were of length zero. */
20849 init = void_type_node;
20850 in_base_initializer = 0;
20851 }
20852
20853 if (decl)
20854 {
20855 init = build_tree_list (decl, init);
20856 TREE_CHAIN (init) = inits;
20857 inits = init;
20858 }
20859 }
20860 }
20861 return inits;
20862 }
20863
20864 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
20865
20866 static void
20867 set_current_access_from_decl (tree decl)
20868 {
20869 if (TREE_PRIVATE (decl))
20870 current_access_specifier = access_private_node;
20871 else if (TREE_PROTECTED (decl))
20872 current_access_specifier = access_protected_node;
20873 else
20874 current_access_specifier = access_public_node;
20875 }
20876
20877 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
20878 is the instantiation (which should have been created with
20879 start_enum) and ARGS are the template arguments to use. */
20880
20881 static void
20882 tsubst_enum (tree tag, tree newtag, tree args)
20883 {
20884 tree e;
20885
20886 if (SCOPED_ENUM_P (newtag))
20887 begin_scope (sk_scoped_enum, newtag);
20888
20889 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
20890 {
20891 tree value;
20892 tree decl;
20893
20894 decl = TREE_VALUE (e);
20895 /* Note that in a template enum, the TREE_VALUE is the
20896 CONST_DECL, not the corresponding INTEGER_CST. */
20897 value = tsubst_expr (DECL_INITIAL (decl),
20898 args, tf_warning_or_error, NULL_TREE,
20899 /*integral_constant_expression_p=*/true);
20900
20901 /* Give this enumeration constant the correct access. */
20902 set_current_access_from_decl (decl);
20903
20904 /* Actually build the enumerator itself. Here we're assuming that
20905 enumerators can't have dependent attributes. */
20906 build_enumerator (DECL_NAME (decl), value, newtag,
20907 DECL_ATTRIBUTES (decl), DECL_SOURCE_LOCATION (decl));
20908 }
20909
20910 if (SCOPED_ENUM_P (newtag))
20911 finish_scope ();
20912
20913 finish_enum_value_list (newtag);
20914 finish_enum (newtag);
20915
20916 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
20917 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
20918 }
20919
20920 /* DECL is a FUNCTION_DECL that is a template specialization. Return
20921 its type -- but without substituting the innermost set of template
20922 arguments. So, innermost set of template parameters will appear in
20923 the type. */
20924
20925 tree
20926 get_mostly_instantiated_function_type (tree decl)
20927 {
20928 /* For a function, DECL_TI_TEMPLATE is partially instantiated. */
20929 return TREE_TYPE (DECL_TI_TEMPLATE (decl));
20930 }
20931
20932 /* Return truthvalue if we're processing a template different from
20933 the last one involved in diagnostics. */
20934 bool
20935 problematic_instantiation_changed (void)
20936 {
20937 return current_tinst_level != last_error_tinst_level;
20938 }
20939
20940 /* Remember current template involved in diagnostics. */
20941 void
20942 record_last_problematic_instantiation (void)
20943 {
20944 last_error_tinst_level = current_tinst_level;
20945 }
20946
20947 struct tinst_level *
20948 current_instantiation (void)
20949 {
20950 return current_tinst_level;
20951 }
20952
20953 /* Return TRUE if current_function_decl is being instantiated, false
20954 otherwise. */
20955
20956 bool
20957 instantiating_current_function_p (void)
20958 {
20959 return (current_instantiation ()
20960 && current_instantiation ()->decl == current_function_decl);
20961 }
20962
20963 /* [temp.param] Check that template non-type parm TYPE is of an allowable
20964 type. Return zero for ok, nonzero for disallowed. Issue error and
20965 warning messages under control of COMPLAIN. */
20966
20967 static int
20968 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
20969 {
20970 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
20971 return 0;
20972 else if (POINTER_TYPE_P (type))
20973 return 0;
20974 else if (TYPE_PTRMEM_P (type))
20975 return 0;
20976 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
20977 return 0;
20978 else if (TREE_CODE (type) == TYPENAME_TYPE)
20979 return 0;
20980 else if (TREE_CODE (type) == DECLTYPE_TYPE)
20981 return 0;
20982 else if (TREE_CODE (type) == NULLPTR_TYPE)
20983 return 0;
20984
20985 if (complain & tf_error)
20986 {
20987 if (type == error_mark_node)
20988 inform (input_location, "invalid template non-type parameter");
20989 else
20990 error ("%q#T is not a valid type for a template non-type parameter",
20991 type);
20992 }
20993 return 1;
20994 }
20995
20996 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
20997 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
20998
20999 static bool
21000 dependent_type_p_r (tree type)
21001 {
21002 tree scope;
21003
21004 /* [temp.dep.type]
21005
21006 A type is dependent if it is:
21007
21008 -- a template parameter. Template template parameters are types
21009 for us (since TYPE_P holds true for them) so we handle
21010 them here. */
21011 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
21012 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
21013 return true;
21014 /* -- a qualified-id with a nested-name-specifier which contains a
21015 class-name that names a dependent type or whose unqualified-id
21016 names a dependent type. */
21017 if (TREE_CODE (type) == TYPENAME_TYPE)
21018 return true;
21019
21020 /* An alias template specialization can be dependent even if the
21021 resulting type is not. */
21022 if (dependent_alias_template_spec_p (type))
21023 return true;
21024
21025 /* -- a cv-qualified type where the cv-unqualified type is
21026 dependent.
21027 No code is necessary for this bullet; the code below handles
21028 cv-qualified types, and we don't want to strip aliases with
21029 TYPE_MAIN_VARIANT because of DR 1558. */
21030 /* -- a compound type constructed from any dependent type. */
21031 if (TYPE_PTRMEM_P (type))
21032 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
21033 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
21034 (type)));
21035 else if (TYPE_PTR_P (type)
21036 || TREE_CODE (type) == REFERENCE_TYPE)
21037 return dependent_type_p (TREE_TYPE (type));
21038 else if (TREE_CODE (type) == FUNCTION_TYPE
21039 || TREE_CODE (type) == METHOD_TYPE)
21040 {
21041 tree arg_type;
21042
21043 if (dependent_type_p (TREE_TYPE (type)))
21044 return true;
21045 for (arg_type = TYPE_ARG_TYPES (type);
21046 arg_type;
21047 arg_type = TREE_CHAIN (arg_type))
21048 if (dependent_type_p (TREE_VALUE (arg_type)))
21049 return true;
21050 return false;
21051 }
21052 /* -- an array type constructed from any dependent type or whose
21053 size is specified by a constant expression that is
21054 value-dependent.
21055
21056 We checked for type- and value-dependence of the bounds in
21057 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
21058 if (TREE_CODE (type) == ARRAY_TYPE)
21059 {
21060 if (TYPE_DOMAIN (type)
21061 && dependent_type_p (TYPE_DOMAIN (type)))
21062 return true;
21063 return dependent_type_p (TREE_TYPE (type));
21064 }
21065
21066 /* -- a template-id in which either the template name is a template
21067 parameter ... */
21068 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
21069 return true;
21070 /* ... or any of the template arguments is a dependent type or
21071 an expression that is type-dependent or value-dependent. */
21072 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
21073 && (any_dependent_template_arguments_p
21074 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
21075 return true;
21076
21077 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
21078 dependent; if the argument of the `typeof' expression is not
21079 type-dependent, then it should already been have resolved. */
21080 if (TREE_CODE (type) == TYPEOF_TYPE
21081 || TREE_CODE (type) == DECLTYPE_TYPE
21082 || TREE_CODE (type) == UNDERLYING_TYPE)
21083 return true;
21084
21085 /* A template argument pack is dependent if any of its packed
21086 arguments are. */
21087 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
21088 {
21089 tree args = ARGUMENT_PACK_ARGS (type);
21090 int i, len = TREE_VEC_LENGTH (args);
21091 for (i = 0; i < len; ++i)
21092 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
21093 return true;
21094 }
21095
21096 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
21097 be template parameters. */
21098 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
21099 return true;
21100
21101 /* The standard does not specifically mention types that are local
21102 to template functions or local classes, but they should be
21103 considered dependent too. For example:
21104
21105 template <int I> void f() {
21106 enum E { a = I };
21107 S<sizeof (E)> s;
21108 }
21109
21110 The size of `E' cannot be known until the value of `I' has been
21111 determined. Therefore, `E' must be considered dependent. */
21112 scope = TYPE_CONTEXT (type);
21113 if (scope && TYPE_P (scope))
21114 return dependent_type_p (scope);
21115 /* Don't use type_dependent_expression_p here, as it can lead
21116 to infinite recursion trying to determine whether a lambda
21117 nested in a lambda is dependent (c++/47687). */
21118 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
21119 && DECL_LANG_SPECIFIC (scope)
21120 && DECL_TEMPLATE_INFO (scope)
21121 && (any_dependent_template_arguments_p
21122 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
21123 return true;
21124
21125 /* Other types are non-dependent. */
21126 return false;
21127 }
21128
21129 /* Returns TRUE if TYPE is dependent, in the sense of
21130 [temp.dep.type]. Note that a NULL type is considered dependent. */
21131
21132 bool
21133 dependent_type_p (tree type)
21134 {
21135 /* If there are no template parameters in scope, then there can't be
21136 any dependent types. */
21137 if (!processing_template_decl)
21138 {
21139 /* If we are not processing a template, then nobody should be
21140 providing us with a dependent type. */
21141 gcc_assert (type);
21142 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
21143 return false;
21144 }
21145
21146 /* If the type is NULL, we have not computed a type for the entity
21147 in question; in that case, the type is dependent. */
21148 if (!type)
21149 return true;
21150
21151 /* Erroneous types can be considered non-dependent. */
21152 if (type == error_mark_node)
21153 return false;
21154
21155 /* If we have not already computed the appropriate value for TYPE,
21156 do so now. */
21157 if (!TYPE_DEPENDENT_P_VALID (type))
21158 {
21159 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
21160 TYPE_DEPENDENT_P_VALID (type) = 1;
21161 }
21162
21163 return TYPE_DEPENDENT_P (type);
21164 }
21165
21166 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
21167 lookup. In other words, a dependent type that is not the current
21168 instantiation. */
21169
21170 bool
21171 dependent_scope_p (tree scope)
21172 {
21173 return (scope && TYPE_P (scope) && dependent_type_p (scope)
21174 && !currently_open_class (scope));
21175 }
21176
21177 /* T is a SCOPE_REF; return whether we need to consider it
21178 instantiation-dependent so that we can check access at instantiation
21179 time even though we know which member it resolves to. */
21180
21181 static bool
21182 instantiation_dependent_scope_ref_p (tree t)
21183 {
21184 if (DECL_P (TREE_OPERAND (t, 1))
21185 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
21186 && accessible_in_template_p (TREE_OPERAND (t, 0),
21187 TREE_OPERAND (t, 1)))
21188 return false;
21189 else
21190 return true;
21191 }
21192
21193 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
21194 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
21195 expression. */
21196
21197 /* Note that this predicate is not appropriate for general expressions;
21198 only constant expressions (that satisfy potential_constant_expression)
21199 can be tested for value dependence. */
21200
21201 bool
21202 value_dependent_expression_p (tree expression)
21203 {
21204 if (!processing_template_decl)
21205 return false;
21206
21207 /* A name declared with a dependent type. */
21208 if (DECL_P (expression) && type_dependent_expression_p (expression))
21209 return true;
21210
21211 switch (TREE_CODE (expression))
21212 {
21213 case IDENTIFIER_NODE:
21214 /* A name that has not been looked up -- must be dependent. */
21215 return true;
21216
21217 case TEMPLATE_PARM_INDEX:
21218 /* A non-type template parm. */
21219 return true;
21220
21221 case CONST_DECL:
21222 /* A non-type template parm. */
21223 if (DECL_TEMPLATE_PARM_P (expression))
21224 return true;
21225 return value_dependent_expression_p (DECL_INITIAL (expression));
21226
21227 case VAR_DECL:
21228 /* A constant with literal type and is initialized
21229 with an expression that is value-dependent.
21230
21231 Note that a non-dependent parenthesized initializer will have
21232 already been replaced with its constant value, so if we see
21233 a TREE_LIST it must be dependent. */
21234 if (DECL_INITIAL (expression)
21235 && decl_constant_var_p (expression)
21236 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
21237 /* cp_finish_decl doesn't fold reference initializers. */
21238 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
21239 || value_dependent_expression_p (DECL_INITIAL (expression))))
21240 return true;
21241 return false;
21242
21243 case DYNAMIC_CAST_EXPR:
21244 case STATIC_CAST_EXPR:
21245 case CONST_CAST_EXPR:
21246 case REINTERPRET_CAST_EXPR:
21247 case CAST_EXPR:
21248 /* These expressions are value-dependent if the type to which
21249 the cast occurs is dependent or the expression being casted
21250 is value-dependent. */
21251 {
21252 tree type = TREE_TYPE (expression);
21253
21254 if (dependent_type_p (type))
21255 return true;
21256
21257 /* A functional cast has a list of operands. */
21258 expression = TREE_OPERAND (expression, 0);
21259 if (!expression)
21260 {
21261 /* If there are no operands, it must be an expression such
21262 as "int()". This should not happen for aggregate types
21263 because it would form non-constant expressions. */
21264 gcc_assert (cxx_dialect >= cxx11
21265 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
21266
21267 return false;
21268 }
21269
21270 if (TREE_CODE (expression) == TREE_LIST)
21271 return any_value_dependent_elements_p (expression);
21272
21273 return value_dependent_expression_p (expression);
21274 }
21275
21276 case SIZEOF_EXPR:
21277 if (SIZEOF_EXPR_TYPE_P (expression))
21278 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
21279 /* FALLTHRU */
21280 case ALIGNOF_EXPR:
21281 case TYPEID_EXPR:
21282 /* A `sizeof' expression is value-dependent if the operand is
21283 type-dependent or is a pack expansion. */
21284 expression = TREE_OPERAND (expression, 0);
21285 if (PACK_EXPANSION_P (expression))
21286 return true;
21287 else if (TYPE_P (expression))
21288 return dependent_type_p (expression);
21289 return instantiation_dependent_expression_p (expression);
21290
21291 case AT_ENCODE_EXPR:
21292 /* An 'encode' expression is value-dependent if the operand is
21293 type-dependent. */
21294 expression = TREE_OPERAND (expression, 0);
21295 return dependent_type_p (expression);
21296
21297 case NOEXCEPT_EXPR:
21298 expression = TREE_OPERAND (expression, 0);
21299 return instantiation_dependent_expression_p (expression);
21300
21301 case SCOPE_REF:
21302 /* All instantiation-dependent expressions should also be considered
21303 value-dependent. */
21304 return instantiation_dependent_scope_ref_p (expression);
21305
21306 case COMPONENT_REF:
21307 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
21308 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
21309
21310 case NONTYPE_ARGUMENT_PACK:
21311 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
21312 is value-dependent. */
21313 {
21314 tree values = ARGUMENT_PACK_ARGS (expression);
21315 int i, len = TREE_VEC_LENGTH (values);
21316
21317 for (i = 0; i < len; ++i)
21318 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
21319 return true;
21320
21321 return false;
21322 }
21323
21324 case TRAIT_EXPR:
21325 {
21326 tree type2 = TRAIT_EXPR_TYPE2 (expression);
21327 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
21328 || (type2 ? dependent_type_p (type2) : false));
21329 }
21330
21331 case MODOP_EXPR:
21332 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
21333 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
21334
21335 case ARRAY_REF:
21336 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
21337 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
21338
21339 case ADDR_EXPR:
21340 {
21341 tree op = TREE_OPERAND (expression, 0);
21342 return (value_dependent_expression_p (op)
21343 || has_value_dependent_address (op));
21344 }
21345
21346 case CALL_EXPR:
21347 {
21348 tree fn = get_callee_fndecl (expression);
21349 int i, nargs;
21350 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
21351 return true;
21352 nargs = call_expr_nargs (expression);
21353 for (i = 0; i < nargs; ++i)
21354 {
21355 tree op = CALL_EXPR_ARG (expression, i);
21356 /* In a call to a constexpr member function, look through the
21357 implicit ADDR_EXPR on the object argument so that it doesn't
21358 cause the call to be considered value-dependent. We also
21359 look through it in potential_constant_expression. */
21360 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
21361 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
21362 && TREE_CODE (op) == ADDR_EXPR)
21363 op = TREE_OPERAND (op, 0);
21364 if (value_dependent_expression_p (op))
21365 return true;
21366 }
21367 return false;
21368 }
21369
21370 case TEMPLATE_ID_EXPR:
21371 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
21372 type-dependent. */
21373 return type_dependent_expression_p (expression);
21374
21375 case CONSTRUCTOR:
21376 {
21377 unsigned ix;
21378 tree val;
21379 if (dependent_type_p (TREE_TYPE (expression)))
21380 return true;
21381 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
21382 if (value_dependent_expression_p (val))
21383 return true;
21384 return false;
21385 }
21386
21387 case STMT_EXPR:
21388 /* Treat a GNU statement expression as dependent to avoid crashing
21389 under instantiate_non_dependent_expr; it can't be constant. */
21390 return true;
21391
21392 default:
21393 /* A constant expression is value-dependent if any subexpression is
21394 value-dependent. */
21395 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
21396 {
21397 case tcc_reference:
21398 case tcc_unary:
21399 case tcc_comparison:
21400 case tcc_binary:
21401 case tcc_expression:
21402 case tcc_vl_exp:
21403 {
21404 int i, len = cp_tree_operand_length (expression);
21405
21406 for (i = 0; i < len; i++)
21407 {
21408 tree t = TREE_OPERAND (expression, i);
21409
21410 /* In some cases, some of the operands may be missing.l
21411 (For example, in the case of PREDECREMENT_EXPR, the
21412 amount to increment by may be missing.) That doesn't
21413 make the expression dependent. */
21414 if (t && value_dependent_expression_p (t))
21415 return true;
21416 }
21417 }
21418 break;
21419 default:
21420 break;
21421 }
21422 break;
21423 }
21424
21425 /* The expression is not value-dependent. */
21426 return false;
21427 }
21428
21429 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
21430 [temp.dep.expr]. Note that an expression with no type is
21431 considered dependent. Other parts of the compiler arrange for an
21432 expression with type-dependent subexpressions to have no type, so
21433 this function doesn't have to be fully recursive. */
21434
21435 bool
21436 type_dependent_expression_p (tree expression)
21437 {
21438 if (!processing_template_decl)
21439 return false;
21440
21441 if (expression == NULL_TREE || expression == error_mark_node)
21442 return false;
21443
21444 /* An unresolved name is always dependent. */
21445 if (identifier_p (expression) || TREE_CODE (expression) == USING_DECL)
21446 return true;
21447
21448 /* Some expression forms are never type-dependent. */
21449 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
21450 || TREE_CODE (expression) == SIZEOF_EXPR
21451 || TREE_CODE (expression) == ALIGNOF_EXPR
21452 || TREE_CODE (expression) == AT_ENCODE_EXPR
21453 || TREE_CODE (expression) == NOEXCEPT_EXPR
21454 || TREE_CODE (expression) == TRAIT_EXPR
21455 || TREE_CODE (expression) == TYPEID_EXPR
21456 || TREE_CODE (expression) == DELETE_EXPR
21457 || TREE_CODE (expression) == VEC_DELETE_EXPR
21458 || TREE_CODE (expression) == THROW_EXPR)
21459 return false;
21460
21461 /* The types of these expressions depends only on the type to which
21462 the cast occurs. */
21463 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
21464 || TREE_CODE (expression) == STATIC_CAST_EXPR
21465 || TREE_CODE (expression) == CONST_CAST_EXPR
21466 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
21467 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
21468 || TREE_CODE (expression) == CAST_EXPR)
21469 return dependent_type_p (TREE_TYPE (expression));
21470
21471 /* The types of these expressions depends only on the type created
21472 by the expression. */
21473 if (TREE_CODE (expression) == NEW_EXPR
21474 || TREE_CODE (expression) == VEC_NEW_EXPR)
21475 {
21476 /* For NEW_EXPR tree nodes created inside a template, either
21477 the object type itself or a TREE_LIST may appear as the
21478 operand 1. */
21479 tree type = TREE_OPERAND (expression, 1);
21480 if (TREE_CODE (type) == TREE_LIST)
21481 /* This is an array type. We need to check array dimensions
21482 as well. */
21483 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
21484 || value_dependent_expression_p
21485 (TREE_OPERAND (TREE_VALUE (type), 1));
21486 else
21487 return dependent_type_p (type);
21488 }
21489
21490 if (TREE_CODE (expression) == SCOPE_REF)
21491 {
21492 tree scope = TREE_OPERAND (expression, 0);
21493 tree name = TREE_OPERAND (expression, 1);
21494
21495 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
21496 contains an identifier associated by name lookup with one or more
21497 declarations declared with a dependent type, or...a
21498 nested-name-specifier or qualified-id that names a member of an
21499 unknown specialization. */
21500 return (type_dependent_expression_p (name)
21501 || dependent_scope_p (scope));
21502 }
21503
21504 if (TREE_CODE (expression) == FUNCTION_DECL
21505 && DECL_LANG_SPECIFIC (expression)
21506 && DECL_TEMPLATE_INFO (expression)
21507 && (any_dependent_template_arguments_p
21508 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
21509 return true;
21510
21511 if (TREE_CODE (expression) == TEMPLATE_DECL
21512 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
21513 return false;
21514
21515 if (TREE_CODE (expression) == STMT_EXPR)
21516 expression = stmt_expr_value_expr (expression);
21517
21518 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
21519 {
21520 tree elt;
21521 unsigned i;
21522
21523 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
21524 {
21525 if (type_dependent_expression_p (elt))
21526 return true;
21527 }
21528 return false;
21529 }
21530
21531 /* A static data member of the current instantiation with incomplete
21532 array type is type-dependent, as the definition and specializations
21533 can have different bounds. */
21534 if (VAR_P (expression)
21535 && DECL_CLASS_SCOPE_P (expression)
21536 && dependent_type_p (DECL_CONTEXT (expression))
21537 && VAR_HAD_UNKNOWN_BOUND (expression))
21538 return true;
21539
21540 /* An array of unknown bound depending on a variadic parameter, eg:
21541
21542 template<typename... Args>
21543 void foo (Args... args)
21544 {
21545 int arr[] = { args... };
21546 }
21547
21548 template<int... vals>
21549 void bar ()
21550 {
21551 int arr[] = { vals... };
21552 }
21553
21554 If the array has no length and has an initializer, it must be that
21555 we couldn't determine its length in cp_complete_array_type because
21556 it is dependent. */
21557 if (VAR_P (expression)
21558 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
21559 && !TYPE_DOMAIN (TREE_TYPE (expression))
21560 && DECL_INITIAL (expression))
21561 return true;
21562
21563 /* A variable template specialization is type-dependent if it has any
21564 dependent template arguments. */
21565 if (VAR_P (expression)
21566 && DECL_LANG_SPECIFIC (expression)
21567 && DECL_TEMPLATE_INFO (expression)
21568 && variable_template_p (DECL_TI_TEMPLATE (expression)))
21569 return any_dependent_template_arguments_p (DECL_TI_ARGS (expression));
21570
21571 /* Always dependent, on the number of arguments if nothing else. */
21572 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
21573 return true;
21574
21575 if (TREE_TYPE (expression) == unknown_type_node)
21576 {
21577 if (TREE_CODE (expression) == ADDR_EXPR)
21578 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
21579 if (TREE_CODE (expression) == COMPONENT_REF
21580 || TREE_CODE (expression) == OFFSET_REF)
21581 {
21582 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
21583 return true;
21584 expression = TREE_OPERAND (expression, 1);
21585 if (identifier_p (expression))
21586 return false;
21587 }
21588 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
21589 if (TREE_CODE (expression) == SCOPE_REF)
21590 return false;
21591
21592 if (BASELINK_P (expression))
21593 {
21594 if (BASELINK_OPTYPE (expression)
21595 && dependent_type_p (BASELINK_OPTYPE (expression)))
21596 return true;
21597 expression = BASELINK_FUNCTIONS (expression);
21598 }
21599
21600 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
21601 {
21602 if (any_dependent_template_arguments_p
21603 (TREE_OPERAND (expression, 1)))
21604 return true;
21605 expression = TREE_OPERAND (expression, 0);
21606 }
21607 gcc_assert (TREE_CODE (expression) == OVERLOAD
21608 || TREE_CODE (expression) == FUNCTION_DECL);
21609
21610 while (expression)
21611 {
21612 if (type_dependent_expression_p (OVL_CURRENT (expression)))
21613 return true;
21614 expression = OVL_NEXT (expression);
21615 }
21616 return false;
21617 }
21618
21619 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
21620
21621 return (dependent_type_p (TREE_TYPE (expression)));
21622 }
21623
21624 /* walk_tree callback function for instantiation_dependent_expression_p,
21625 below. Returns non-zero if a dependent subexpression is found. */
21626
21627 static tree
21628 instantiation_dependent_r (tree *tp, int *walk_subtrees,
21629 void * /*data*/)
21630 {
21631 if (TYPE_P (*tp))
21632 {
21633 /* We don't have to worry about decltype currently because decltype
21634 of an instantiation-dependent expr is a dependent type. This
21635 might change depending on the resolution of DR 1172. */
21636 *walk_subtrees = false;
21637 return NULL_TREE;
21638 }
21639 enum tree_code code = TREE_CODE (*tp);
21640 switch (code)
21641 {
21642 /* Don't treat an argument list as dependent just because it has no
21643 TREE_TYPE. */
21644 case TREE_LIST:
21645 case TREE_VEC:
21646 return NULL_TREE;
21647
21648 case VAR_DECL:
21649 case CONST_DECL:
21650 /* A constant with a dependent initializer is dependent. */
21651 if (value_dependent_expression_p (*tp))
21652 return *tp;
21653 break;
21654
21655 case TEMPLATE_PARM_INDEX:
21656 return *tp;
21657
21658 /* Handle expressions with type operands. */
21659 case SIZEOF_EXPR:
21660 case ALIGNOF_EXPR:
21661 case TYPEID_EXPR:
21662 case AT_ENCODE_EXPR:
21663 {
21664 tree op = TREE_OPERAND (*tp, 0);
21665 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
21666 op = TREE_TYPE (op);
21667 if (TYPE_P (op))
21668 {
21669 if (dependent_type_p (op))
21670 return *tp;
21671 else
21672 {
21673 *walk_subtrees = false;
21674 return NULL_TREE;
21675 }
21676 }
21677 break;
21678 }
21679
21680 case TRAIT_EXPR:
21681 if (dependent_type_p (TRAIT_EXPR_TYPE1 (*tp))
21682 || (TRAIT_EXPR_TYPE2 (*tp)
21683 && dependent_type_p (TRAIT_EXPR_TYPE2 (*tp))))
21684 return *tp;
21685 *walk_subtrees = false;
21686 return NULL_TREE;
21687
21688 case COMPONENT_REF:
21689 if (identifier_p (TREE_OPERAND (*tp, 1)))
21690 /* In a template, finish_class_member_access_expr creates a
21691 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
21692 type-dependent, so that we can check access control at
21693 instantiation time (PR 42277). See also Core issue 1273. */
21694 return *tp;
21695 break;
21696
21697 case SCOPE_REF:
21698 if (instantiation_dependent_scope_ref_p (*tp))
21699 return *tp;
21700 else
21701 break;
21702
21703 /* Treat statement-expressions as dependent. */
21704 case BIND_EXPR:
21705 return *tp;
21706
21707 default:
21708 break;
21709 }
21710
21711 if (type_dependent_expression_p (*tp))
21712 return *tp;
21713 else
21714 return NULL_TREE;
21715 }
21716
21717 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
21718 sense defined by the ABI:
21719
21720 "An expression is instantiation-dependent if it is type-dependent
21721 or value-dependent, or it has a subexpression that is type-dependent
21722 or value-dependent." */
21723
21724 bool
21725 instantiation_dependent_expression_p (tree expression)
21726 {
21727 tree result;
21728
21729 if (!processing_template_decl)
21730 return false;
21731
21732 if (expression == error_mark_node)
21733 return false;
21734
21735 result = cp_walk_tree_without_duplicates (&expression,
21736 instantiation_dependent_r, NULL);
21737 return result != NULL_TREE;
21738 }
21739
21740 /* Like type_dependent_expression_p, but it also works while not processing
21741 a template definition, i.e. during substitution or mangling. */
21742
21743 bool
21744 type_dependent_expression_p_push (tree expr)
21745 {
21746 bool b;
21747 ++processing_template_decl;
21748 b = type_dependent_expression_p (expr);
21749 --processing_template_decl;
21750 return b;
21751 }
21752
21753 /* Returns TRUE if ARGS contains a type-dependent expression. */
21754
21755 bool
21756 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
21757 {
21758 unsigned int i;
21759 tree arg;
21760
21761 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
21762 {
21763 if (type_dependent_expression_p (arg))
21764 return true;
21765 }
21766 return false;
21767 }
21768
21769 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
21770 expressions) contains any type-dependent expressions. */
21771
21772 bool
21773 any_type_dependent_elements_p (const_tree list)
21774 {
21775 for (; list; list = TREE_CHAIN (list))
21776 if (type_dependent_expression_p (TREE_VALUE (list)))
21777 return true;
21778
21779 return false;
21780 }
21781
21782 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
21783 expressions) contains any value-dependent expressions. */
21784
21785 bool
21786 any_value_dependent_elements_p (const_tree list)
21787 {
21788 for (; list; list = TREE_CHAIN (list))
21789 if (value_dependent_expression_p (TREE_VALUE (list)))
21790 return true;
21791
21792 return false;
21793 }
21794
21795 /* Returns TRUE if the ARG (a template argument) is dependent. */
21796
21797 bool
21798 dependent_template_arg_p (tree arg)
21799 {
21800 if (!processing_template_decl)
21801 return false;
21802
21803 /* Assume a template argument that was wrongly written by the user
21804 is dependent. This is consistent with what
21805 any_dependent_template_arguments_p [that calls this function]
21806 does. */
21807 if (!arg || arg == error_mark_node)
21808 return true;
21809
21810 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
21811 arg = ARGUMENT_PACK_SELECT_ARG (arg);
21812
21813 if (TREE_CODE (arg) == TEMPLATE_DECL
21814 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
21815 return dependent_template_p (arg);
21816 else if (ARGUMENT_PACK_P (arg))
21817 {
21818 tree args = ARGUMENT_PACK_ARGS (arg);
21819 int i, len = TREE_VEC_LENGTH (args);
21820 for (i = 0; i < len; ++i)
21821 {
21822 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
21823 return true;
21824 }
21825
21826 return false;
21827 }
21828 else if (TYPE_P (arg))
21829 return dependent_type_p (arg);
21830 else
21831 return (type_dependent_expression_p (arg)
21832 || value_dependent_expression_p (arg));
21833 }
21834
21835 /* Returns true if ARGS (a collection of template arguments) contains
21836 any types that require structural equality testing. */
21837
21838 bool
21839 any_template_arguments_need_structural_equality_p (tree args)
21840 {
21841 int i;
21842 int j;
21843
21844 if (!args)
21845 return false;
21846 if (args == error_mark_node)
21847 return true;
21848
21849 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
21850 {
21851 tree level = TMPL_ARGS_LEVEL (args, i + 1);
21852 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
21853 {
21854 tree arg = TREE_VEC_ELT (level, j);
21855 tree packed_args = NULL_TREE;
21856 int k, len = 1;
21857
21858 if (ARGUMENT_PACK_P (arg))
21859 {
21860 /* Look inside the argument pack. */
21861 packed_args = ARGUMENT_PACK_ARGS (arg);
21862 len = TREE_VEC_LENGTH (packed_args);
21863 }
21864
21865 for (k = 0; k < len; ++k)
21866 {
21867 if (packed_args)
21868 arg = TREE_VEC_ELT (packed_args, k);
21869
21870 if (error_operand_p (arg))
21871 return true;
21872 else if (TREE_CODE (arg) == TEMPLATE_DECL)
21873 continue;
21874 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
21875 return true;
21876 else if (!TYPE_P (arg) && TREE_TYPE (arg)
21877 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
21878 return true;
21879 }
21880 }
21881 }
21882
21883 return false;
21884 }
21885
21886 /* Returns true if ARGS (a collection of template arguments) contains
21887 any dependent arguments. */
21888
21889 bool
21890 any_dependent_template_arguments_p (const_tree args)
21891 {
21892 int i;
21893 int j;
21894
21895 if (!args)
21896 return false;
21897 if (args == error_mark_node)
21898 return true;
21899
21900 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
21901 {
21902 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
21903 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
21904 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
21905 return true;
21906 }
21907
21908 return false;
21909 }
21910
21911 /* Returns TRUE if the template TMPL is dependent. */
21912
21913 bool
21914 dependent_template_p (tree tmpl)
21915 {
21916 if (TREE_CODE (tmpl) == OVERLOAD)
21917 {
21918 while (tmpl)
21919 {
21920 if (dependent_template_p (OVL_CURRENT (tmpl)))
21921 return true;
21922 tmpl = OVL_NEXT (tmpl);
21923 }
21924 return false;
21925 }
21926
21927 /* Template template parameters are dependent. */
21928 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
21929 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
21930 return true;
21931 /* So are names that have not been looked up. */
21932 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
21933 return true;
21934 /* So are member templates of dependent classes. */
21935 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
21936 return dependent_type_p (DECL_CONTEXT (tmpl));
21937 return false;
21938 }
21939
21940 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
21941
21942 bool
21943 dependent_template_id_p (tree tmpl, tree args)
21944 {
21945 return (dependent_template_p (tmpl)
21946 || any_dependent_template_arguments_p (args));
21947 }
21948
21949 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
21950 is dependent. */
21951
21952 bool
21953 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
21954 {
21955 int i;
21956
21957 if (!processing_template_decl)
21958 return false;
21959
21960 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
21961 {
21962 tree decl = TREE_VEC_ELT (declv, i);
21963 tree init = TREE_VEC_ELT (initv, i);
21964 tree cond = TREE_VEC_ELT (condv, i);
21965 tree incr = TREE_VEC_ELT (incrv, i);
21966
21967 if (type_dependent_expression_p (decl))
21968 return true;
21969
21970 if (init && type_dependent_expression_p (init))
21971 return true;
21972
21973 if (type_dependent_expression_p (cond))
21974 return true;
21975
21976 if (COMPARISON_CLASS_P (cond)
21977 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
21978 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
21979 return true;
21980
21981 if (TREE_CODE (incr) == MODOP_EXPR)
21982 {
21983 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
21984 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
21985 return true;
21986 }
21987 else if (type_dependent_expression_p (incr))
21988 return true;
21989 else if (TREE_CODE (incr) == MODIFY_EXPR)
21990 {
21991 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
21992 return true;
21993 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
21994 {
21995 tree t = TREE_OPERAND (incr, 1);
21996 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
21997 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
21998 return true;
21999 }
22000 }
22001 }
22002
22003 return false;
22004 }
22005
22006 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
22007 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
22008 no such TYPE can be found. Note that this function peers inside
22009 uninstantiated templates and therefore should be used only in
22010 extremely limited situations. ONLY_CURRENT_P restricts this
22011 peering to the currently open classes hierarchy (which is required
22012 when comparing types). */
22013
22014 tree
22015 resolve_typename_type (tree type, bool only_current_p)
22016 {
22017 tree scope;
22018 tree name;
22019 tree decl;
22020 int quals;
22021 tree pushed_scope;
22022 tree result;
22023
22024 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
22025
22026 scope = TYPE_CONTEXT (type);
22027 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
22028 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
22029 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
22030 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
22031 identifier of the TYPENAME_TYPE anymore.
22032 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
22033 TYPENAME_TYPE instead, we avoid messing up with a possible
22034 typedef variant case. */
22035 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
22036
22037 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
22038 it first before we can figure out what NAME refers to. */
22039 if (TREE_CODE (scope) == TYPENAME_TYPE)
22040 {
22041 if (TYPENAME_IS_RESOLVING_P (scope))
22042 /* Given a class template A with a dependent base with nested type C,
22043 typedef typename A::C::C C will land us here, as trying to resolve
22044 the initial A::C leads to the local C typedef, which leads back to
22045 A::C::C. So we break the recursion now. */
22046 return type;
22047 else
22048 scope = resolve_typename_type (scope, only_current_p);
22049 }
22050 /* If we don't know what SCOPE refers to, then we cannot resolve the
22051 TYPENAME_TYPE. */
22052 if (TREE_CODE (scope) == TYPENAME_TYPE)
22053 return type;
22054 /* If the SCOPE is a template type parameter, we have no way of
22055 resolving the name. */
22056 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
22057 return type;
22058 /* If the SCOPE is not the current instantiation, there's no reason
22059 to look inside it. */
22060 if (only_current_p && !currently_open_class (scope))
22061 return type;
22062 /* If this is a typedef, we don't want to look inside (c++/11987). */
22063 if (typedef_variant_p (type))
22064 return type;
22065 /* If SCOPE isn't the template itself, it will not have a valid
22066 TYPE_FIELDS list. */
22067 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
22068 /* scope is either the template itself or a compatible instantiation
22069 like X<T>, so look up the name in the original template. */
22070 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
22071 else
22072 /* scope is a partial instantiation, so we can't do the lookup or we
22073 will lose the template arguments. */
22074 return type;
22075 /* Enter the SCOPE so that name lookup will be resolved as if we
22076 were in the class definition. In particular, SCOPE will no
22077 longer be considered a dependent type. */
22078 pushed_scope = push_scope (scope);
22079 /* Look up the declaration. */
22080 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
22081 tf_warning_or_error);
22082
22083 result = NULL_TREE;
22084
22085 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
22086 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
22087 if (!decl)
22088 /*nop*/;
22089 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
22090 && TREE_CODE (decl) == TYPE_DECL)
22091 {
22092 result = TREE_TYPE (decl);
22093 if (result == error_mark_node)
22094 result = NULL_TREE;
22095 }
22096 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
22097 && DECL_CLASS_TEMPLATE_P (decl))
22098 {
22099 tree tmpl;
22100 tree args;
22101 /* Obtain the template and the arguments. */
22102 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
22103 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
22104 /* Instantiate the template. */
22105 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
22106 /*entering_scope=*/0,
22107 tf_error | tf_user);
22108 if (result == error_mark_node)
22109 result = NULL_TREE;
22110 }
22111
22112 /* Leave the SCOPE. */
22113 if (pushed_scope)
22114 pop_scope (pushed_scope);
22115
22116 /* If we failed to resolve it, return the original typename. */
22117 if (!result)
22118 return type;
22119
22120 /* If lookup found a typename type, resolve that too. */
22121 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
22122 {
22123 /* Ill-formed programs can cause infinite recursion here, so we
22124 must catch that. */
22125 TYPENAME_IS_RESOLVING_P (type) = 1;
22126 result = resolve_typename_type (result, only_current_p);
22127 TYPENAME_IS_RESOLVING_P (type) = 0;
22128 }
22129
22130 /* Qualify the resulting type. */
22131 quals = cp_type_quals (type);
22132 if (quals)
22133 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
22134
22135 return result;
22136 }
22137
22138 /* EXPR is an expression which is not type-dependent. Return a proxy
22139 for EXPR that can be used to compute the types of larger
22140 expressions containing EXPR. */
22141
22142 tree
22143 build_non_dependent_expr (tree expr)
22144 {
22145 tree inner_expr;
22146
22147 #ifdef ENABLE_CHECKING
22148 /* Try to get a constant value for all non-dependent expressions in
22149 order to expose bugs in *_dependent_expression_p and constexpr. */
22150 if (cxx_dialect >= cxx11)
22151 fold_non_dependent_expr (expr);
22152 #endif
22153
22154 /* Preserve OVERLOADs; the functions must be available to resolve
22155 types. */
22156 inner_expr = expr;
22157 if (TREE_CODE (inner_expr) == STMT_EXPR)
22158 inner_expr = stmt_expr_value_expr (inner_expr);
22159 if (TREE_CODE (inner_expr) == ADDR_EXPR)
22160 inner_expr = TREE_OPERAND (inner_expr, 0);
22161 if (TREE_CODE (inner_expr) == COMPONENT_REF)
22162 inner_expr = TREE_OPERAND (inner_expr, 1);
22163 if (is_overloaded_fn (inner_expr)
22164 || TREE_CODE (inner_expr) == OFFSET_REF)
22165 return expr;
22166 /* There is no need to return a proxy for a variable. */
22167 if (VAR_P (expr))
22168 return expr;
22169 /* Preserve string constants; conversions from string constants to
22170 "char *" are allowed, even though normally a "const char *"
22171 cannot be used to initialize a "char *". */
22172 if (TREE_CODE (expr) == STRING_CST)
22173 return expr;
22174 /* Preserve void and arithmetic constants, as an optimization -- there is no
22175 reason to create a new node. */
22176 if (TREE_CODE (expr) == VOID_CST
22177 || TREE_CODE (expr) == INTEGER_CST
22178 || TREE_CODE (expr) == REAL_CST)
22179 return expr;
22180 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
22181 There is at least one place where we want to know that a
22182 particular expression is a throw-expression: when checking a ?:
22183 expression, there are special rules if the second or third
22184 argument is a throw-expression. */
22185 if (TREE_CODE (expr) == THROW_EXPR)
22186 return expr;
22187
22188 /* Don't wrap an initializer list, we need to be able to look inside. */
22189 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
22190 return expr;
22191
22192 /* Don't wrap a dummy object, we need to be able to test for it. */
22193 if (is_dummy_object (expr))
22194 return expr;
22195
22196 if (TREE_CODE (expr) == COND_EXPR)
22197 return build3 (COND_EXPR,
22198 TREE_TYPE (expr),
22199 TREE_OPERAND (expr, 0),
22200 (TREE_OPERAND (expr, 1)
22201 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
22202 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
22203 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
22204 if (TREE_CODE (expr) == COMPOUND_EXPR
22205 && !COMPOUND_EXPR_OVERLOADED (expr))
22206 return build2 (COMPOUND_EXPR,
22207 TREE_TYPE (expr),
22208 TREE_OPERAND (expr, 0),
22209 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
22210
22211 /* If the type is unknown, it can't really be non-dependent */
22212 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
22213
22214 /* Otherwise, build a NON_DEPENDENT_EXPR. */
22215 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
22216 }
22217
22218 /* ARGS is a vector of expressions as arguments to a function call.
22219 Replace the arguments with equivalent non-dependent expressions.
22220 This modifies ARGS in place. */
22221
22222 void
22223 make_args_non_dependent (vec<tree, va_gc> *args)
22224 {
22225 unsigned int ix;
22226 tree arg;
22227
22228 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
22229 {
22230 tree newarg = build_non_dependent_expr (arg);
22231 if (newarg != arg)
22232 (*args)[ix] = newarg;
22233 }
22234 }
22235
22236 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
22237 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
22238 parms. */
22239
22240 static tree
22241 make_auto_1 (tree name)
22242 {
22243 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
22244 TYPE_NAME (au) = build_decl (input_location,
22245 TYPE_DECL, name, au);
22246 TYPE_STUB_DECL (au) = TYPE_NAME (au);
22247 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
22248 (0, processing_template_decl + 1, processing_template_decl + 1,
22249 TYPE_NAME (au), NULL_TREE);
22250 TYPE_CANONICAL (au) = canonical_type_parameter (au);
22251 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
22252 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
22253
22254 return au;
22255 }
22256
22257 tree
22258 make_decltype_auto (void)
22259 {
22260 return make_auto_1 (get_identifier ("decltype(auto)"));
22261 }
22262
22263 tree
22264 make_auto (void)
22265 {
22266 return make_auto_1 (get_identifier ("auto"));
22267 }
22268
22269 /* Given type ARG, return std::initializer_list<ARG>. */
22270
22271 static tree
22272 listify (tree arg)
22273 {
22274 tree std_init_list = namespace_binding
22275 (get_identifier ("initializer_list"), std_node);
22276 tree argvec;
22277 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
22278 {
22279 error ("deducing from brace-enclosed initializer list requires "
22280 "#include <initializer_list>");
22281 return error_mark_node;
22282 }
22283 argvec = make_tree_vec (1);
22284 TREE_VEC_ELT (argvec, 0) = arg;
22285 return lookup_template_class (std_init_list, argvec, NULL_TREE,
22286 NULL_TREE, 0, tf_warning_or_error);
22287 }
22288
22289 /* Replace auto in TYPE with std::initializer_list<auto>. */
22290
22291 static tree
22292 listify_autos (tree type, tree auto_node)
22293 {
22294 tree init_auto = listify (auto_node);
22295 tree argvec = make_tree_vec (1);
22296 TREE_VEC_ELT (argvec, 0) = init_auto;
22297 if (processing_template_decl)
22298 argvec = add_to_template_args (current_template_args (), argvec);
22299 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
22300 }
22301
22302 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
22303 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
22304
22305 tree
22306 do_auto_deduction (tree type, tree init, tree auto_node)
22307 {
22308 tree targs;
22309
22310 if (init == error_mark_node)
22311 return error_mark_node;
22312
22313 if (type_dependent_expression_p (init))
22314 /* Defining a subset of type-dependent expressions that we can deduce
22315 from ahead of time isn't worth the trouble. */
22316 return type;
22317
22318 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
22319 with either a new invented type template parameter U or, if the
22320 initializer is a braced-init-list (8.5.4), with
22321 std::initializer_list<U>. */
22322 if (BRACE_ENCLOSED_INITIALIZER_P (init))
22323 {
22324 if (!DIRECT_LIST_INIT_P (init))
22325 type = listify_autos (type, auto_node);
22326 else if (CONSTRUCTOR_NELTS (init) == 1)
22327 init = CONSTRUCTOR_ELT (init, 0)->value;
22328 else
22329 {
22330 if (permerror (input_location, "direct-list-initialization of "
22331 "%<auto%> requires exactly one element"))
22332 inform (input_location,
22333 "for deduction to %<std::initializer_list%>, use copy-"
22334 "list-initialization (i.e. add %<=%> before the %<{%>)");
22335 type = listify_autos (type, auto_node);
22336 }
22337 }
22338
22339 init = resolve_nondeduced_context (init);
22340
22341 targs = make_tree_vec (1);
22342 if (AUTO_IS_DECLTYPE (auto_node))
22343 {
22344 bool id = (DECL_P (init) || (TREE_CODE (init) == COMPONENT_REF
22345 && !REF_PARENTHESIZED_P (init)));
22346 TREE_VEC_ELT (targs, 0)
22347 = finish_decltype_type (init, id, tf_warning_or_error);
22348 if (type != auto_node)
22349 {
22350 error ("%qT as type rather than plain %<decltype(auto)%>", type);
22351 return error_mark_node;
22352 }
22353 }
22354 else
22355 {
22356 tree parms = build_tree_list (NULL_TREE, type);
22357 tree tparms = make_tree_vec (1);
22358 int val;
22359
22360 TREE_VEC_ELT (tparms, 0)
22361 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
22362 val = type_unification_real (tparms, targs, parms, &init, 1, 0,
22363 DEDUCE_CALL, LOOKUP_NORMAL,
22364 NULL, /*explain_p=*/false);
22365 if (val > 0)
22366 {
22367 if (processing_template_decl)
22368 /* Try again at instantiation time. */
22369 return type;
22370 if (type && type != error_mark_node)
22371 /* If type is error_mark_node a diagnostic must have been
22372 emitted by now. Also, having a mention to '<type error>'
22373 in the diagnostic is not really useful to the user. */
22374 {
22375 if (cfun && auto_node == current_function_auto_return_pattern
22376 && LAMBDA_FUNCTION_P (current_function_decl))
22377 error ("unable to deduce lambda return type from %qE", init);
22378 else
22379 error ("unable to deduce %qT from %qE", type, init);
22380 }
22381 return error_mark_node;
22382 }
22383 }
22384
22385 /* If the list of declarators contains more than one declarator, the type
22386 of each declared variable is determined as described above. If the
22387 type deduced for the template parameter U is not the same in each
22388 deduction, the program is ill-formed. */
22389 if (TREE_TYPE (auto_node)
22390 && !same_type_p (TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0)))
22391 {
22392 if (cfun && auto_node == current_function_auto_return_pattern
22393 && LAMBDA_FUNCTION_P (current_function_decl))
22394 error ("inconsistent types %qT and %qT deduced for "
22395 "lambda return type", TREE_TYPE (auto_node),
22396 TREE_VEC_ELT (targs, 0));
22397 else
22398 error ("inconsistent deduction for %qT: %qT and then %qT",
22399 auto_node, TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0));
22400 return error_mark_node;
22401 }
22402 TREE_TYPE (auto_node) = TREE_VEC_ELT (targs, 0);
22403
22404 if (processing_template_decl)
22405 targs = add_to_template_args (current_template_args (), targs);
22406 return tsubst (type, targs, tf_warning_or_error, NULL_TREE);
22407 }
22408
22409 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
22410 result. */
22411
22412 tree
22413 splice_late_return_type (tree type, tree late_return_type)
22414 {
22415 tree argvec;
22416
22417 if (late_return_type == NULL_TREE)
22418 return type;
22419 argvec = make_tree_vec (1);
22420 TREE_VEC_ELT (argvec, 0) = late_return_type;
22421 if (processing_template_parmlist)
22422 /* For a late-specified return type in a template type-parameter, we
22423 need to add a dummy argument level for its parmlist. */
22424 argvec = add_to_template_args
22425 (make_tree_vec (processing_template_parmlist), argvec);
22426 if (current_template_parms)
22427 argvec = add_to_template_args (current_template_args (), argvec);
22428 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
22429 }
22430
22431 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
22432 'decltype(auto)'. */
22433
22434 bool
22435 is_auto (const_tree type)
22436 {
22437 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
22438 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
22439 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
22440 return true;
22441 else
22442 return false;
22443 }
22444
22445 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
22446 a use of `auto'. Returns NULL_TREE otherwise. */
22447
22448 tree
22449 type_uses_auto (tree type)
22450 {
22451 return find_type_usage (type, is_auto);
22452 }
22453
22454 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
22455 'decltype(auto)' or a concept. */
22456
22457 bool
22458 is_auto_or_concept (const_tree type)
22459 {
22460 return is_auto (type); // or concept
22461 }
22462
22463 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
22464 a concept identifier) iff TYPE contains a use of a generic type. Returns
22465 NULL_TREE otherwise. */
22466
22467 tree
22468 type_uses_auto_or_concept (tree type)
22469 {
22470 return find_type_usage (type, is_auto_or_concept);
22471 }
22472
22473
22474 /* For a given template T, return the vector of typedefs referenced
22475 in T for which access check is needed at T instantiation time.
22476 T is either a FUNCTION_DECL or a RECORD_TYPE.
22477 Those typedefs were added to T by the function
22478 append_type_to_template_for_access_check. */
22479
22480 vec<qualified_typedef_usage_t, va_gc> *
22481 get_types_needing_access_check (tree t)
22482 {
22483 tree ti;
22484 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
22485
22486 if (!t || t == error_mark_node)
22487 return NULL;
22488
22489 if (!(ti = get_template_info (t)))
22490 return NULL;
22491
22492 if (CLASS_TYPE_P (t)
22493 || TREE_CODE (t) == FUNCTION_DECL)
22494 {
22495 if (!TI_TEMPLATE (ti))
22496 return NULL;
22497
22498 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
22499 }
22500
22501 return result;
22502 }
22503
22504 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
22505 tied to T. That list of typedefs will be access checked at
22506 T instantiation time.
22507 T is either a FUNCTION_DECL or a RECORD_TYPE.
22508 TYPE_DECL is a TYPE_DECL node representing a typedef.
22509 SCOPE is the scope through which TYPE_DECL is accessed.
22510 LOCATION is the location of the usage point of TYPE_DECL.
22511
22512 This function is a subroutine of
22513 append_type_to_template_for_access_check. */
22514
22515 static void
22516 append_type_to_template_for_access_check_1 (tree t,
22517 tree type_decl,
22518 tree scope,
22519 location_t location)
22520 {
22521 qualified_typedef_usage_t typedef_usage;
22522 tree ti;
22523
22524 if (!t || t == error_mark_node)
22525 return;
22526
22527 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
22528 || CLASS_TYPE_P (t))
22529 && type_decl
22530 && TREE_CODE (type_decl) == TYPE_DECL
22531 && scope);
22532
22533 if (!(ti = get_template_info (t)))
22534 return;
22535
22536 gcc_assert (TI_TEMPLATE (ti));
22537
22538 typedef_usage.typedef_decl = type_decl;
22539 typedef_usage.context = scope;
22540 typedef_usage.locus = location;
22541
22542 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
22543 }
22544
22545 /* Append TYPE_DECL to the template TEMPL.
22546 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
22547 At TEMPL instanciation time, TYPE_DECL will be checked to see
22548 if it can be accessed through SCOPE.
22549 LOCATION is the location of the usage point of TYPE_DECL.
22550
22551 e.g. consider the following code snippet:
22552
22553 class C
22554 {
22555 typedef int myint;
22556 };
22557
22558 template<class U> struct S
22559 {
22560 C::myint mi; // <-- usage point of the typedef C::myint
22561 };
22562
22563 S<char> s;
22564
22565 At S<char> instantiation time, we need to check the access of C::myint
22566 In other words, we need to check the access of the myint typedef through
22567 the C scope. For that purpose, this function will add the myint typedef
22568 and the scope C through which its being accessed to a list of typedefs
22569 tied to the template S. That list will be walked at template instantiation
22570 time and access check performed on each typedefs it contains.
22571 Note that this particular code snippet should yield an error because
22572 myint is private to C. */
22573
22574 void
22575 append_type_to_template_for_access_check (tree templ,
22576 tree type_decl,
22577 tree scope,
22578 location_t location)
22579 {
22580 qualified_typedef_usage_t *iter;
22581 unsigned i;
22582
22583 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
22584
22585 /* Make sure we don't append the type to the template twice. */
22586 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
22587 if (iter->typedef_decl == type_decl && scope == iter->context)
22588 return;
22589
22590 append_type_to_template_for_access_check_1 (templ, type_decl,
22591 scope, location);
22592 }
22593
22594 /* Convert the generic type parameters in PARM that match the types given in the
22595 range [START_IDX, END_IDX) from the current_template_parms into generic type
22596 packs. */
22597
22598 tree
22599 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
22600 {
22601 tree current = current_template_parms;
22602 int depth = TMPL_PARMS_DEPTH (current);
22603 current = INNERMOST_TEMPLATE_PARMS (current);
22604 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
22605
22606 for (int i = 0; i < start_idx; ++i)
22607 TREE_VEC_ELT (replacement, i)
22608 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
22609
22610 for (int i = start_idx; i < end_idx; ++i)
22611 {
22612 /* Create a distinct parameter pack type from the current parm and add it
22613 to the replacement args to tsubst below into the generic function
22614 parameter. */
22615
22616 tree o = TREE_TYPE (TREE_VALUE
22617 (TREE_VEC_ELT (current, i)));
22618 tree t = copy_type (o);
22619 TEMPLATE_TYPE_PARM_INDEX (t)
22620 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
22621 o, 0, 0, tf_none);
22622 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
22623 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
22624 TYPE_MAIN_VARIANT (t) = t;
22625 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
22626 TYPE_CANONICAL (t) = canonical_type_parameter (t);
22627 TREE_VEC_ELT (replacement, i) = t;
22628 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
22629 }
22630
22631 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
22632 TREE_VEC_ELT (replacement, i)
22633 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
22634
22635 /* If there are more levels then build up the replacement with the outer
22636 template parms. */
22637 if (depth > 1)
22638 replacement = add_to_template_args (template_parms_to_args
22639 (TREE_CHAIN (current_template_parms)),
22640 replacement);
22641
22642 return tsubst (parm, replacement, tf_none, NULL_TREE);
22643 }
22644
22645
22646 /* Set up the hash tables for template instantiations. */
22647
22648 void
22649 init_template_processing (void)
22650 {
22651 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
22652 type_specializations = hash_table<spec_hasher>::create_ggc (37);
22653 }
22654
22655 /* Print stats about the template hash tables for -fstats. */
22656
22657 void
22658 print_template_statistics (void)
22659 {
22660 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
22661 "%f collisions\n", (long) decl_specializations->size (),
22662 (long) decl_specializations->elements (),
22663 decl_specializations->collisions ());
22664 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
22665 "%f collisions\n", (long) type_specializations->size (),
22666 (long) type_specializations->elements (),
22667 type_specializations->collisions ());
22668 }
22669
22670 #include "gt-cp-pt.h"