cp-tree.h (TAGGED_TYPE_P): Remove.
[gcc.git] / gcc / cp / pt.c
1 /* Handle parameterized types (templates) for GNU C++.
2 Copyright (C) 1992-2013 Free Software Foundation, Inc.
3 Written by Ken Raeburn (raeburn@cygnus.com) while at Watchmaker Computing.
4 Rewritten by Jason Merrill (jason@cygnus.com).
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 /* Known bugs or deficiencies include:
23
24 all methods must be provided in header files; can't use a source
25 file that contains only the method templates and "just win". */
26
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "tree.h"
32 #include "intl.h"
33 #include "pointer-set.h"
34 #include "flags.h"
35 #include "cp-tree.h"
36 #include "c-family/c-common.h"
37 #include "c-family/c-objc.h"
38 #include "cp-objcp-common.h"
39 #include "tree-inline.h"
40 #include "decl.h"
41 #include "toplev.h"
42 #include "timevar.h"
43 #include "tree-iterator.h"
44
45 /* The type of functions taking a tree, and some additional data, and
46 returning an int. */
47 typedef int (*tree_fn_t) (tree, void*);
48
49 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
50 instantiations have been deferred, either because their definitions
51 were not yet available, or because we were putting off doing the work. */
52 struct GTY ((chain_next ("%h.next"))) pending_template {
53 struct pending_template *next;
54 struct tinst_level *tinst;
55 };
56
57 static GTY(()) struct pending_template *pending_templates;
58 static GTY(()) struct pending_template *last_pending_template;
59
60 int processing_template_parmlist;
61 static int template_header_count;
62
63 static GTY(()) tree saved_trees;
64 static vec<int> inline_parm_levels;
65
66 static GTY(()) struct tinst_level *current_tinst_level;
67
68 static GTY(()) tree saved_access_scope;
69
70 /* Live only within one (recursive) call to tsubst_expr. We use
71 this to pass the statement expression node from the STMT_EXPR
72 to the EXPR_STMT that is its result. */
73 static tree cur_stmt_expr;
74
75 /* A map from local variable declarations in the body of the template
76 presently being instantiated to the corresponding instantiated
77 local variables. */
78 static struct pointer_map_t *local_specializations;
79
80 /* True if we've recursed into fn_type_unification too many times. */
81 static bool excessive_deduction_depth;
82
83 typedef struct GTY(()) spec_entry
84 {
85 tree tmpl;
86 tree args;
87 tree spec;
88 } spec_entry;
89
90 static GTY ((param_is (spec_entry)))
91 htab_t decl_specializations;
92
93 static GTY ((param_is (spec_entry)))
94 htab_t type_specializations;
95
96 /* Contains canonical template parameter types. The vector is indexed by
97 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
98 TREE_LIST, whose TREE_VALUEs contain the canonical template
99 parameters of various types and levels. */
100 static GTY(()) vec<tree, va_gc> *canonical_template_parms;
101
102 #define UNIFY_ALLOW_NONE 0
103 #define UNIFY_ALLOW_MORE_CV_QUAL 1
104 #define UNIFY_ALLOW_LESS_CV_QUAL 2
105 #define UNIFY_ALLOW_DERIVED 4
106 #define UNIFY_ALLOW_INTEGER 8
107 #define UNIFY_ALLOW_OUTER_LEVEL 16
108 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
109 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
110
111 enum template_base_result {
112 tbr_incomplete_type,
113 tbr_ambiguous_baseclass,
114 tbr_success
115 };
116
117 static void push_access_scope (tree);
118 static void pop_access_scope (tree);
119 static bool resolve_overloaded_unification (tree, tree, tree, tree,
120 unification_kind_t, int,
121 bool);
122 static int try_one_overload (tree, tree, tree, tree, tree,
123 unification_kind_t, int, bool, bool);
124 static int unify (tree, tree, tree, tree, int, bool);
125 static void add_pending_template (tree);
126 static tree reopen_tinst_level (struct tinst_level *);
127 static tree tsubst_initializer_list (tree, tree);
128 static tree get_class_bindings (tree, tree, tree, tree);
129 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
130 bool, bool);
131 static tree coerce_innermost_template_parms (tree, tree, tree, tsubst_flags_t,
132 bool, bool);
133 static void tsubst_enum (tree, tree, tree);
134 static tree add_to_template_args (tree, tree);
135 static tree add_outermost_template_args (tree, tree);
136 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
137 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
138 tree);
139 static int type_unification_real (tree, tree, tree, const tree *,
140 unsigned int, int, unification_kind_t, int,
141 bool);
142 static void note_template_header (int);
143 static tree convert_nontype_argument_function (tree, tree);
144 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
145 static tree convert_template_argument (tree, tree, tree,
146 tsubst_flags_t, int, tree);
147 static int for_each_template_parm (tree, tree_fn_t, void*,
148 struct pointer_set_t*, bool);
149 static tree expand_template_argument_pack (tree);
150 static tree build_template_parm_index (int, int, int, tree, tree);
151 static bool inline_needs_template_parms (tree);
152 static void push_inline_template_parms_recursive (tree, int);
153 static tree retrieve_local_specialization (tree);
154 static void register_local_specialization (tree, tree);
155 static hashval_t hash_specialization (const void *p);
156 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
157 static int mark_template_parm (tree, void *);
158 static int template_parm_this_level_p (tree, void *);
159 static tree tsubst_friend_function (tree, tree);
160 static tree tsubst_friend_class (tree, tree);
161 static int can_complete_type_without_circularity (tree);
162 static tree get_bindings (tree, tree, tree, bool);
163 static int template_decl_level (tree);
164 static int check_cv_quals_for_unify (int, tree, tree);
165 static void template_parm_level_and_index (tree, int*, int*);
166 static int unify_pack_expansion (tree, tree, tree,
167 tree, unification_kind_t, bool, bool);
168 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
169 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
170 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
171 static void regenerate_decl_from_template (tree, tree);
172 static tree most_specialized_class (tree, tree, tsubst_flags_t);
173 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
174 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
175 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
176 static bool check_specialization_scope (void);
177 static tree process_partial_specialization (tree);
178 static void set_current_access_from_decl (tree);
179 static enum template_base_result get_template_base (tree, tree, tree, tree,
180 bool , tree *);
181 static tree try_class_unification (tree, tree, tree, tree, bool);
182 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
183 tree, tree);
184 static bool template_template_parm_bindings_ok_p (tree, tree);
185 static int template_args_equal (tree, tree);
186 static void tsubst_default_arguments (tree);
187 static tree for_each_template_parm_r (tree *, int *, void *);
188 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
189 static void copy_default_args_to_explicit_spec (tree);
190 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
191 static bool dependent_template_arg_p (tree);
192 static bool any_template_arguments_need_structural_equality_p (tree);
193 static bool dependent_type_p_r (tree);
194 static tree tsubst_expr (tree, tree, tsubst_flags_t, tree, bool);
195 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
196 static tree tsubst_pack_expansion (tree, tree, tsubst_flags_t, tree);
197 static tree tsubst_decl (tree, tree, tsubst_flags_t);
198 static void perform_typedefs_access_check (tree tmpl, tree targs);
199 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
200 location_t);
201 static tree listify (tree);
202 static tree listify_autos (tree, tree);
203 static tree template_parm_to_arg (tree t);
204 static tree current_template_args (void);
205 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
206 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
207
208 /* Make the current scope suitable for access checking when we are
209 processing T. T can be FUNCTION_DECL for instantiated function
210 template, VAR_DECL for static member variable, or TYPE_DECL for
211 alias template (needed by instantiate_decl). */
212
213 static void
214 push_access_scope (tree t)
215 {
216 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
217 || TREE_CODE (t) == TYPE_DECL);
218
219 if (DECL_FRIEND_CONTEXT (t))
220 push_nested_class (DECL_FRIEND_CONTEXT (t));
221 else if (DECL_CLASS_SCOPE_P (t))
222 push_nested_class (DECL_CONTEXT (t));
223 else
224 push_to_top_level ();
225
226 if (TREE_CODE (t) == FUNCTION_DECL)
227 {
228 saved_access_scope = tree_cons
229 (NULL_TREE, current_function_decl, saved_access_scope);
230 current_function_decl = t;
231 }
232 }
233
234 /* Restore the scope set up by push_access_scope. T is the node we
235 are processing. */
236
237 static void
238 pop_access_scope (tree t)
239 {
240 if (TREE_CODE (t) == FUNCTION_DECL)
241 {
242 current_function_decl = TREE_VALUE (saved_access_scope);
243 saved_access_scope = TREE_CHAIN (saved_access_scope);
244 }
245
246 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
247 pop_nested_class ();
248 else
249 pop_from_top_level ();
250 }
251
252 /* Do any processing required when DECL (a member template
253 declaration) is finished. Returns the TEMPLATE_DECL corresponding
254 to DECL, unless it is a specialization, in which case the DECL
255 itself is returned. */
256
257 tree
258 finish_member_template_decl (tree decl)
259 {
260 if (decl == error_mark_node)
261 return error_mark_node;
262
263 gcc_assert (DECL_P (decl));
264
265 if (TREE_CODE (decl) == TYPE_DECL)
266 {
267 tree type;
268
269 type = TREE_TYPE (decl);
270 if (type == error_mark_node)
271 return error_mark_node;
272 if (MAYBE_CLASS_TYPE_P (type)
273 && CLASSTYPE_TEMPLATE_INFO (type)
274 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
275 {
276 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
277 check_member_template (tmpl);
278 return tmpl;
279 }
280 return NULL_TREE;
281 }
282 else if (TREE_CODE (decl) == FIELD_DECL)
283 error ("data member %qD cannot be a member template", decl);
284 else if (DECL_TEMPLATE_INFO (decl))
285 {
286 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
287 {
288 check_member_template (DECL_TI_TEMPLATE (decl));
289 return DECL_TI_TEMPLATE (decl);
290 }
291 else
292 return decl;
293 }
294 else
295 error ("invalid member template declaration %qD", decl);
296
297 return error_mark_node;
298 }
299
300 /* Create a template info node. */
301
302 tree
303 build_template_info (tree template_decl, tree template_args)
304 {
305 tree result = make_node (TEMPLATE_INFO);
306 TI_TEMPLATE (result) = template_decl;
307 TI_ARGS (result) = template_args;
308 return result;
309 }
310
311 /* Return the template info node corresponding to T, whatever T is. */
312
313 tree
314 get_template_info (const_tree t)
315 {
316 tree tinfo = NULL_TREE;
317
318 if (!t || t == error_mark_node)
319 return NULL;
320
321 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
322 tinfo = DECL_TEMPLATE_INFO (t);
323
324 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
325 t = TREE_TYPE (t);
326
327 if (OVERLOAD_TYPE_P (t))
328 tinfo = TYPE_TEMPLATE_INFO (t);
329 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
330 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
331
332 return tinfo;
333 }
334
335 /* Returns the template nesting level of the indicated class TYPE.
336
337 For example, in:
338 template <class T>
339 struct A
340 {
341 template <class U>
342 struct B {};
343 };
344
345 A<T>::B<U> has depth two, while A<T> has depth one.
346 Both A<T>::B<int> and A<int>::B<U> have depth one, if
347 they are instantiations, not specializations.
348
349 This function is guaranteed to return 0 if passed NULL_TREE so
350 that, for example, `template_class_depth (current_class_type)' is
351 always safe. */
352
353 int
354 template_class_depth (tree type)
355 {
356 int depth;
357
358 for (depth = 0;
359 type && TREE_CODE (type) != NAMESPACE_DECL;
360 type = (TREE_CODE (type) == FUNCTION_DECL)
361 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
362 {
363 tree tinfo = get_template_info (type);
364
365 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
366 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
367 ++depth;
368 }
369
370 return depth;
371 }
372
373 /* Subroutine of maybe_begin_member_template_processing.
374 Returns true if processing DECL needs us to push template parms. */
375
376 static bool
377 inline_needs_template_parms (tree decl)
378 {
379 if (! DECL_TEMPLATE_INFO (decl))
380 return false;
381
382 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
383 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
384 }
385
386 /* Subroutine of maybe_begin_member_template_processing.
387 Push the template parms in PARMS, starting from LEVELS steps into the
388 chain, and ending at the beginning, since template parms are listed
389 innermost first. */
390
391 static void
392 push_inline_template_parms_recursive (tree parmlist, int levels)
393 {
394 tree parms = TREE_VALUE (parmlist);
395 int i;
396
397 if (levels > 1)
398 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
399
400 ++processing_template_decl;
401 current_template_parms
402 = tree_cons (size_int (processing_template_decl),
403 parms, current_template_parms);
404 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
405
406 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
407 NULL);
408 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
409 {
410 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
411
412 if (parm == error_mark_node)
413 continue;
414
415 gcc_assert (DECL_P (parm));
416
417 switch (TREE_CODE (parm))
418 {
419 case TYPE_DECL:
420 case TEMPLATE_DECL:
421 pushdecl (parm);
422 break;
423
424 case PARM_DECL:
425 {
426 /* Make a CONST_DECL as is done in process_template_parm.
427 It is ugly that we recreate this here; the original
428 version built in process_template_parm is no longer
429 available. */
430 tree decl = build_decl (DECL_SOURCE_LOCATION (parm),
431 CONST_DECL, DECL_NAME (parm),
432 TREE_TYPE (parm));
433 DECL_ARTIFICIAL (decl) = 1;
434 TREE_CONSTANT (decl) = 1;
435 TREE_READONLY (decl) = 1;
436 DECL_INITIAL (decl) = DECL_INITIAL (parm);
437 SET_DECL_TEMPLATE_PARM_P (decl);
438 pushdecl (decl);
439 }
440 break;
441
442 default:
443 gcc_unreachable ();
444 }
445 }
446 }
447
448 /* Restore the template parameter context for a member template or
449 a friend template defined in a class definition. */
450
451 void
452 maybe_begin_member_template_processing (tree decl)
453 {
454 tree parms;
455 int levels = 0;
456
457 if (inline_needs_template_parms (decl))
458 {
459 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
460 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
461
462 if (DECL_TEMPLATE_SPECIALIZATION (decl))
463 {
464 --levels;
465 parms = TREE_CHAIN (parms);
466 }
467
468 push_inline_template_parms_recursive (parms, levels);
469 }
470
471 /* Remember how many levels of template parameters we pushed so that
472 we can pop them later. */
473 inline_parm_levels.safe_push (levels);
474 }
475
476 /* Undo the effects of maybe_begin_member_template_processing. */
477
478 void
479 maybe_end_member_template_processing (void)
480 {
481 int i;
482 int last;
483
484 if (inline_parm_levels.length () == 0)
485 return;
486
487 last = inline_parm_levels.pop ();
488 for (i = 0; i < last; ++i)
489 {
490 --processing_template_decl;
491 current_template_parms = TREE_CHAIN (current_template_parms);
492 poplevel (0, 0, 0);
493 }
494 }
495
496 /* Return a new template argument vector which contains all of ARGS,
497 but has as its innermost set of arguments the EXTRA_ARGS. */
498
499 static tree
500 add_to_template_args (tree args, tree extra_args)
501 {
502 tree new_args;
503 int extra_depth;
504 int i;
505 int j;
506
507 if (args == NULL_TREE || extra_args == error_mark_node)
508 return extra_args;
509
510 extra_depth = TMPL_ARGS_DEPTH (extra_args);
511 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
512
513 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
514 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
515
516 for (j = 1; j <= extra_depth; ++j, ++i)
517 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
518
519 return new_args;
520 }
521
522 /* Like add_to_template_args, but only the outermost ARGS are added to
523 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
524 (EXTRA_ARGS) levels are added. This function is used to combine
525 the template arguments from a partial instantiation with the
526 template arguments used to attain the full instantiation from the
527 partial instantiation. */
528
529 static tree
530 add_outermost_template_args (tree args, tree extra_args)
531 {
532 tree new_args;
533
534 /* If there are more levels of EXTRA_ARGS than there are ARGS,
535 something very fishy is going on. */
536 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
537
538 /* If *all* the new arguments will be the EXTRA_ARGS, just return
539 them. */
540 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
541 return extra_args;
542
543 /* For the moment, we make ARGS look like it contains fewer levels. */
544 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
545
546 new_args = add_to_template_args (args, extra_args);
547
548 /* Now, we restore ARGS to its full dimensions. */
549 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
550
551 return new_args;
552 }
553
554 /* Return the N levels of innermost template arguments from the ARGS. */
555
556 tree
557 get_innermost_template_args (tree args, int n)
558 {
559 tree new_args;
560 int extra_levels;
561 int i;
562
563 gcc_assert (n >= 0);
564
565 /* If N is 1, just return the innermost set of template arguments. */
566 if (n == 1)
567 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
568
569 /* If we're not removing anything, just return the arguments we were
570 given. */
571 extra_levels = TMPL_ARGS_DEPTH (args) - n;
572 gcc_assert (extra_levels >= 0);
573 if (extra_levels == 0)
574 return args;
575
576 /* Make a new set of arguments, not containing the outer arguments. */
577 new_args = make_tree_vec (n);
578 for (i = 1; i <= n; ++i)
579 SET_TMPL_ARGS_LEVEL (new_args, i,
580 TMPL_ARGS_LEVEL (args, i + extra_levels));
581
582 return new_args;
583 }
584
585 /* The inverse of get_innermost_template_args: Return all but the innermost
586 EXTRA_LEVELS levels of template arguments from the ARGS. */
587
588 static tree
589 strip_innermost_template_args (tree args, int extra_levels)
590 {
591 tree new_args;
592 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
593 int i;
594
595 gcc_assert (n >= 0);
596
597 /* If N is 1, just return the outermost set of template arguments. */
598 if (n == 1)
599 return TMPL_ARGS_LEVEL (args, 1);
600
601 /* If we're not removing anything, just return the arguments we were
602 given. */
603 gcc_assert (extra_levels >= 0);
604 if (extra_levels == 0)
605 return args;
606
607 /* Make a new set of arguments, not containing the inner arguments. */
608 new_args = make_tree_vec (n);
609 for (i = 1; i <= n; ++i)
610 SET_TMPL_ARGS_LEVEL (new_args, i,
611 TMPL_ARGS_LEVEL (args, i));
612
613 return new_args;
614 }
615
616 /* We've got a template header coming up; push to a new level for storing
617 the parms. */
618
619 void
620 begin_template_parm_list (void)
621 {
622 /* We use a non-tag-transparent scope here, which causes pushtag to
623 put tags in this scope, rather than in the enclosing class or
624 namespace scope. This is the right thing, since we want
625 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
626 global template class, push_template_decl handles putting the
627 TEMPLATE_DECL into top-level scope. For a nested template class,
628 e.g.:
629
630 template <class T> struct S1 {
631 template <class T> struct S2 {};
632 };
633
634 pushtag contains special code to call pushdecl_with_scope on the
635 TEMPLATE_DECL for S2. */
636 begin_scope (sk_template_parms, NULL);
637 ++processing_template_decl;
638 ++processing_template_parmlist;
639 note_template_header (0);
640 }
641
642 /* This routine is called when a specialization is declared. If it is
643 invalid to declare a specialization here, an error is reported and
644 false is returned, otherwise this routine will return true. */
645
646 static bool
647 check_specialization_scope (void)
648 {
649 tree scope = current_scope ();
650
651 /* [temp.expl.spec]
652
653 An explicit specialization shall be declared in the namespace of
654 which the template is a member, or, for member templates, in the
655 namespace of which the enclosing class or enclosing class
656 template is a member. An explicit specialization of a member
657 function, member class or static data member of a class template
658 shall be declared in the namespace of which the class template
659 is a member. */
660 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
661 {
662 error ("explicit specialization in non-namespace scope %qD", scope);
663 return false;
664 }
665
666 /* [temp.expl.spec]
667
668 In an explicit specialization declaration for a member of a class
669 template or a member template that appears in namespace scope,
670 the member template and some of its enclosing class templates may
671 remain unspecialized, except that the declaration shall not
672 explicitly specialize a class member template if its enclosing
673 class templates are not explicitly specialized as well. */
674 if (current_template_parms)
675 {
676 error ("enclosing class templates are not explicitly specialized");
677 return false;
678 }
679
680 return true;
681 }
682
683 /* We've just seen template <>. */
684
685 bool
686 begin_specialization (void)
687 {
688 begin_scope (sk_template_spec, NULL);
689 note_template_header (1);
690 return check_specialization_scope ();
691 }
692
693 /* Called at then end of processing a declaration preceded by
694 template<>. */
695
696 void
697 end_specialization (void)
698 {
699 finish_scope ();
700 reset_specialization ();
701 }
702
703 /* Any template <>'s that we have seen thus far are not referring to a
704 function specialization. */
705
706 void
707 reset_specialization (void)
708 {
709 processing_specialization = 0;
710 template_header_count = 0;
711 }
712
713 /* We've just seen a template header. If SPECIALIZATION is nonzero,
714 it was of the form template <>. */
715
716 static void
717 note_template_header (int specialization)
718 {
719 processing_specialization = specialization;
720 template_header_count++;
721 }
722
723 /* We're beginning an explicit instantiation. */
724
725 void
726 begin_explicit_instantiation (void)
727 {
728 gcc_assert (!processing_explicit_instantiation);
729 processing_explicit_instantiation = true;
730 }
731
732
733 void
734 end_explicit_instantiation (void)
735 {
736 gcc_assert (processing_explicit_instantiation);
737 processing_explicit_instantiation = false;
738 }
739
740 /* An explicit specialization or partial specialization of TMPL is being
741 declared. Check that the namespace in which the specialization is
742 occurring is permissible. Returns false iff it is invalid to
743 specialize TMPL in the current namespace. */
744
745 static bool
746 check_specialization_namespace (tree tmpl)
747 {
748 tree tpl_ns = decl_namespace_context (tmpl);
749
750 /* [tmpl.expl.spec]
751
752 An explicit specialization shall be declared in the namespace of
753 which the template is a member, or, for member templates, in the
754 namespace of which the enclosing class or enclosing class
755 template is a member. An explicit specialization of a member
756 function, member class or static data member of a class template
757 shall be declared in the namespace of which the class template is
758 a member. */
759 if (current_scope() != DECL_CONTEXT (tmpl)
760 && !at_namespace_scope_p ())
761 {
762 error ("specialization of %qD must appear at namespace scope", tmpl);
763 return false;
764 }
765 if (is_associated_namespace (current_namespace, tpl_ns))
766 /* Same or super-using namespace. */
767 return true;
768 else
769 {
770 permerror (input_location, "specialization of %qD in different namespace", tmpl);
771 permerror (input_location, " from definition of %q+#D", tmpl);
772 return false;
773 }
774 }
775
776 /* SPEC is an explicit instantiation. Check that it is valid to
777 perform this explicit instantiation in the current namespace. */
778
779 static void
780 check_explicit_instantiation_namespace (tree spec)
781 {
782 tree ns;
783
784 /* DR 275: An explicit instantiation shall appear in an enclosing
785 namespace of its template. */
786 ns = decl_namespace_context (spec);
787 if (!is_ancestor (current_namespace, ns))
788 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
789 "(which does not enclose namespace %qD)",
790 spec, current_namespace, ns);
791 }
792
793 /* The TYPE is being declared. If it is a template type, that means it
794 is a partial specialization. Do appropriate error-checking. */
795
796 tree
797 maybe_process_partial_specialization (tree type)
798 {
799 tree context;
800
801 if (type == error_mark_node)
802 return error_mark_node;
803
804 /* A lambda that appears in specialization context is not itself a
805 specialization. */
806 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
807 return type;
808
809 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
810 {
811 error ("name of class shadows template template parameter %qD",
812 TYPE_NAME (type));
813 return error_mark_node;
814 }
815
816 context = TYPE_CONTEXT (type);
817
818 if (TYPE_ALIAS_P (type))
819 {
820 if (TYPE_TEMPLATE_INFO (type)
821 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
822 error ("specialization of alias template %qD",
823 TYPE_TI_TEMPLATE (type));
824 else
825 error ("explicit specialization of non-template %qT", type);
826 return error_mark_node;
827 }
828 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
829 {
830 /* This is for ordinary explicit specialization and partial
831 specialization of a template class such as:
832
833 template <> class C<int>;
834
835 or:
836
837 template <class T> class C<T*>;
838
839 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
840
841 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type)
842 && !COMPLETE_TYPE_P (type))
843 {
844 check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (type));
845 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
846 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
847 if (processing_template_decl)
848 {
849 if (push_template_decl (TYPE_MAIN_DECL (type))
850 == error_mark_node)
851 return error_mark_node;
852 }
853 }
854 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
855 error ("specialization of %qT after instantiation", type);
856 else if (errorcount && !processing_specialization
857 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
858 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
859 /* Trying to define a specialization either without a template<> header
860 or in an inappropriate place. We've already given an error, so just
861 bail now so we don't actually define the specialization. */
862 return error_mark_node;
863 }
864 else if (CLASS_TYPE_P (type)
865 && !CLASSTYPE_USE_TEMPLATE (type)
866 && CLASSTYPE_TEMPLATE_INFO (type)
867 && context && CLASS_TYPE_P (context)
868 && CLASSTYPE_TEMPLATE_INFO (context))
869 {
870 /* This is for an explicit specialization of member class
871 template according to [temp.expl.spec/18]:
872
873 template <> template <class U> class C<int>::D;
874
875 The context `C<int>' must be an implicit instantiation.
876 Otherwise this is just a member class template declared
877 earlier like:
878
879 template <> class C<int> { template <class U> class D; };
880 template <> template <class U> class C<int>::D;
881
882 In the first case, `C<int>::D' is a specialization of `C<T>::D'
883 while in the second case, `C<int>::D' is a primary template
884 and `C<T>::D' may not exist. */
885
886 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
887 && !COMPLETE_TYPE_P (type))
888 {
889 tree t;
890 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
891
892 if (current_namespace
893 != decl_namespace_context (tmpl))
894 {
895 permerror (input_location, "specializing %q#T in different namespace", type);
896 permerror (input_location, " from definition of %q+#D", tmpl);
897 }
898
899 /* Check for invalid specialization after instantiation:
900
901 template <> template <> class C<int>::D<int>;
902 template <> template <class U> class C<int>::D; */
903
904 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
905 t; t = TREE_CHAIN (t))
906 {
907 tree inst = TREE_VALUE (t);
908 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst))
909 {
910 /* We already have a full specialization of this partial
911 instantiation. Reassign it to the new member
912 specialization template. */
913 spec_entry elt;
914 spec_entry *entry;
915 void **slot;
916
917 elt.tmpl = most_general_template (tmpl);
918 elt.args = CLASSTYPE_TI_ARGS (inst);
919 elt.spec = inst;
920
921 htab_remove_elt (type_specializations, &elt);
922
923 elt.tmpl = tmpl;
924 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
925
926 slot = htab_find_slot (type_specializations, &elt, INSERT);
927 entry = ggc_alloc_spec_entry ();
928 *entry = elt;
929 *slot = entry;
930 }
931 else if (COMPLETE_OR_OPEN_TYPE_P (inst))
932 /* But if we've had an implicit instantiation, that's a
933 problem ([temp.expl.spec]/6). */
934 error ("specialization %qT after instantiation %qT",
935 type, inst);
936 }
937
938 /* Mark TYPE as a specialization. And as a result, we only
939 have one level of template argument for the innermost
940 class template. */
941 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
942 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
943 CLASSTYPE_TI_ARGS (type)
944 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
945 }
946 }
947 else if (processing_specialization)
948 {
949 /* Someday C++0x may allow for enum template specialization. */
950 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
951 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
952 pedwarn (input_location, OPT_Wpedantic, "template specialization "
953 "of %qD not allowed by ISO C++", type);
954 else
955 {
956 error ("explicit specialization of non-template %qT", type);
957 return error_mark_node;
958 }
959 }
960
961 return type;
962 }
963
964 /* Returns nonzero if we can optimize the retrieval of specializations
965 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
966 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
967
968 static inline bool
969 optimize_specialization_lookup_p (tree tmpl)
970 {
971 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
972 && DECL_CLASS_SCOPE_P (tmpl)
973 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
974 parameter. */
975 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
976 /* The optimized lookup depends on the fact that the
977 template arguments for the member function template apply
978 purely to the containing class, which is not true if the
979 containing class is an explicit or partial
980 specialization. */
981 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
982 && !DECL_MEMBER_TEMPLATE_P (tmpl)
983 && !DECL_CONV_FN_P (tmpl)
984 /* It is possible to have a template that is not a member
985 template and is not a member of a template class:
986
987 template <typename T>
988 struct S { friend A::f(); };
989
990 Here, the friend function is a template, but the context does
991 not have template information. The optimized lookup relies
992 on having ARGS be the template arguments for both the class
993 and the function template. */
994 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
995 }
996
997 /* Retrieve the specialization (in the sense of [temp.spec] - a
998 specialization is either an instantiation or an explicit
999 specialization) of TMPL for the given template ARGS. If there is
1000 no such specialization, return NULL_TREE. The ARGS are a vector of
1001 arguments, or a vector of vectors of arguments, in the case of
1002 templates with more than one level of parameters.
1003
1004 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1005 then we search for a partial specialization matching ARGS. This
1006 parameter is ignored if TMPL is not a class template. */
1007
1008 static tree
1009 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1010 {
1011 if (tmpl == NULL_TREE)
1012 return NULL_TREE;
1013
1014 if (args == error_mark_node)
1015 return NULL_TREE;
1016
1017 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
1018
1019 /* There should be as many levels of arguments as there are
1020 levels of parameters. */
1021 gcc_assert (TMPL_ARGS_DEPTH (args)
1022 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)));
1023
1024 if (optimize_specialization_lookup_p (tmpl))
1025 {
1026 tree class_template;
1027 tree class_specialization;
1028 vec<tree, va_gc> *methods;
1029 tree fns;
1030 int idx;
1031
1032 /* The template arguments actually apply to the containing
1033 class. Find the class specialization with those
1034 arguments. */
1035 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1036 class_specialization
1037 = retrieve_specialization (class_template, args, 0);
1038 if (!class_specialization)
1039 return NULL_TREE;
1040 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1041 for the specialization. */
1042 idx = class_method_index_for_fn (class_specialization, tmpl);
1043 if (idx == -1)
1044 return NULL_TREE;
1045 /* Iterate through the methods with the indicated name, looking
1046 for the one that has an instance of TMPL. */
1047 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1048 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1049 {
1050 tree fn = OVL_CURRENT (fns);
1051 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1052 /* using-declarations can add base methods to the method vec,
1053 and we don't want those here. */
1054 && DECL_CONTEXT (fn) == class_specialization)
1055 return fn;
1056 }
1057 return NULL_TREE;
1058 }
1059 else
1060 {
1061 spec_entry *found;
1062 spec_entry elt;
1063 htab_t specializations;
1064
1065 elt.tmpl = tmpl;
1066 elt.args = args;
1067 elt.spec = NULL_TREE;
1068
1069 if (DECL_CLASS_TEMPLATE_P (tmpl))
1070 specializations = type_specializations;
1071 else
1072 specializations = decl_specializations;
1073
1074 if (hash == 0)
1075 hash = hash_specialization (&elt);
1076 found = (spec_entry *) htab_find_with_hash (specializations, &elt, hash);
1077 if (found)
1078 return found->spec;
1079 }
1080
1081 return NULL_TREE;
1082 }
1083
1084 /* Like retrieve_specialization, but for local declarations. */
1085
1086 static tree
1087 retrieve_local_specialization (tree tmpl)
1088 {
1089 void **slot;
1090
1091 if (local_specializations == NULL)
1092 return NULL_TREE;
1093
1094 slot = pointer_map_contains (local_specializations, tmpl);
1095 return slot ? (tree) *slot : NULL_TREE;
1096 }
1097
1098 /* Returns nonzero iff DECL is a specialization of TMPL. */
1099
1100 int
1101 is_specialization_of (tree decl, tree tmpl)
1102 {
1103 tree t;
1104
1105 if (TREE_CODE (decl) == FUNCTION_DECL)
1106 {
1107 for (t = decl;
1108 t != NULL_TREE;
1109 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1110 if (t == tmpl)
1111 return 1;
1112 }
1113 else
1114 {
1115 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1116
1117 for (t = TREE_TYPE (decl);
1118 t != NULL_TREE;
1119 t = CLASSTYPE_USE_TEMPLATE (t)
1120 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1121 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1122 return 1;
1123 }
1124
1125 return 0;
1126 }
1127
1128 /* Returns nonzero iff DECL is a specialization of friend declaration
1129 FRIEND_DECL according to [temp.friend]. */
1130
1131 bool
1132 is_specialization_of_friend (tree decl, tree friend_decl)
1133 {
1134 bool need_template = true;
1135 int template_depth;
1136
1137 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1138 || TREE_CODE (decl) == TYPE_DECL);
1139
1140 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1141 of a template class, we want to check if DECL is a specialization
1142 if this. */
1143 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1144 && DECL_TEMPLATE_INFO (friend_decl)
1145 && !DECL_USE_TEMPLATE (friend_decl))
1146 {
1147 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1148 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1149 need_template = false;
1150 }
1151 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1152 && !PRIMARY_TEMPLATE_P (friend_decl))
1153 need_template = false;
1154
1155 /* There is nothing to do if this is not a template friend. */
1156 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1157 return false;
1158
1159 if (is_specialization_of (decl, friend_decl))
1160 return true;
1161
1162 /* [temp.friend/6]
1163 A member of a class template may be declared to be a friend of a
1164 non-template class. In this case, the corresponding member of
1165 every specialization of the class template is a friend of the
1166 class granting friendship.
1167
1168 For example, given a template friend declaration
1169
1170 template <class T> friend void A<T>::f();
1171
1172 the member function below is considered a friend
1173
1174 template <> struct A<int> {
1175 void f();
1176 };
1177
1178 For this type of template friend, TEMPLATE_DEPTH below will be
1179 nonzero. To determine if DECL is a friend of FRIEND, we first
1180 check if the enclosing class is a specialization of another. */
1181
1182 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1183 if (template_depth
1184 && DECL_CLASS_SCOPE_P (decl)
1185 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1186 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1187 {
1188 /* Next, we check the members themselves. In order to handle
1189 a few tricky cases, such as when FRIEND_DECL's are
1190
1191 template <class T> friend void A<T>::g(T t);
1192 template <class T> template <T t> friend void A<T>::h();
1193
1194 and DECL's are
1195
1196 void A<int>::g(int);
1197 template <int> void A<int>::h();
1198
1199 we need to figure out ARGS, the template arguments from
1200 the context of DECL. This is required for template substitution
1201 of `T' in the function parameter of `g' and template parameter
1202 of `h' in the above examples. Here ARGS corresponds to `int'. */
1203
1204 tree context = DECL_CONTEXT (decl);
1205 tree args = NULL_TREE;
1206 int current_depth = 0;
1207
1208 while (current_depth < template_depth)
1209 {
1210 if (CLASSTYPE_TEMPLATE_INFO (context))
1211 {
1212 if (current_depth == 0)
1213 args = TYPE_TI_ARGS (context);
1214 else
1215 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1216 current_depth++;
1217 }
1218 context = TYPE_CONTEXT (context);
1219 }
1220
1221 if (TREE_CODE (decl) == FUNCTION_DECL)
1222 {
1223 bool is_template;
1224 tree friend_type;
1225 tree decl_type;
1226 tree friend_args_type;
1227 tree decl_args_type;
1228
1229 /* Make sure that both DECL and FRIEND_DECL are templates or
1230 non-templates. */
1231 is_template = DECL_TEMPLATE_INFO (decl)
1232 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1233 if (need_template ^ is_template)
1234 return false;
1235 else if (is_template)
1236 {
1237 /* If both are templates, check template parameter list. */
1238 tree friend_parms
1239 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1240 args, tf_none);
1241 if (!comp_template_parms
1242 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1243 friend_parms))
1244 return false;
1245
1246 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1247 }
1248 else
1249 decl_type = TREE_TYPE (decl);
1250
1251 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1252 tf_none, NULL_TREE);
1253 if (friend_type == error_mark_node)
1254 return false;
1255
1256 /* Check if return types match. */
1257 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1258 return false;
1259
1260 /* Check if function parameter types match, ignoring the
1261 `this' parameter. */
1262 friend_args_type = TYPE_ARG_TYPES (friend_type);
1263 decl_args_type = TYPE_ARG_TYPES (decl_type);
1264 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1265 friend_args_type = TREE_CHAIN (friend_args_type);
1266 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1267 decl_args_type = TREE_CHAIN (decl_args_type);
1268
1269 return compparms (decl_args_type, friend_args_type);
1270 }
1271 else
1272 {
1273 /* DECL is a TYPE_DECL */
1274 bool is_template;
1275 tree decl_type = TREE_TYPE (decl);
1276
1277 /* Make sure that both DECL and FRIEND_DECL are templates or
1278 non-templates. */
1279 is_template
1280 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1281 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1282
1283 if (need_template ^ is_template)
1284 return false;
1285 else if (is_template)
1286 {
1287 tree friend_parms;
1288 /* If both are templates, check the name of the two
1289 TEMPLATE_DECL's first because is_friend didn't. */
1290 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1291 != DECL_NAME (friend_decl))
1292 return false;
1293
1294 /* Now check template parameter list. */
1295 friend_parms
1296 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1297 args, tf_none);
1298 return comp_template_parms
1299 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1300 friend_parms);
1301 }
1302 else
1303 return (DECL_NAME (decl)
1304 == DECL_NAME (friend_decl));
1305 }
1306 }
1307 return false;
1308 }
1309
1310 /* Register the specialization SPEC as a specialization of TMPL with
1311 the indicated ARGS. IS_FRIEND indicates whether the specialization
1312 is actually just a friend declaration. Returns SPEC, or an
1313 equivalent prior declaration, if available. */
1314
1315 static tree
1316 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1317 hashval_t hash)
1318 {
1319 tree fn;
1320 void **slot = NULL;
1321 spec_entry elt;
1322
1323 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec));
1324
1325 if (TREE_CODE (spec) == FUNCTION_DECL
1326 && uses_template_parms (DECL_TI_ARGS (spec)))
1327 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1328 register it; we want the corresponding TEMPLATE_DECL instead.
1329 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1330 the more obvious `uses_template_parms (spec)' to avoid problems
1331 with default function arguments. In particular, given
1332 something like this:
1333
1334 template <class T> void f(T t1, T t = T())
1335
1336 the default argument expression is not substituted for in an
1337 instantiation unless and until it is actually needed. */
1338 return spec;
1339
1340 if (optimize_specialization_lookup_p (tmpl))
1341 /* We don't put these specializations in the hash table, but we might
1342 want to give an error about a mismatch. */
1343 fn = retrieve_specialization (tmpl, args, 0);
1344 else
1345 {
1346 elt.tmpl = tmpl;
1347 elt.args = args;
1348 elt.spec = spec;
1349
1350 if (hash == 0)
1351 hash = hash_specialization (&elt);
1352
1353 slot =
1354 htab_find_slot_with_hash (decl_specializations, &elt, hash, INSERT);
1355 if (*slot)
1356 fn = ((spec_entry *) *slot)->spec;
1357 else
1358 fn = NULL_TREE;
1359 }
1360
1361 /* We can sometimes try to re-register a specialization that we've
1362 already got. In particular, regenerate_decl_from_template calls
1363 duplicate_decls which will update the specialization list. But,
1364 we'll still get called again here anyhow. It's more convenient
1365 to simply allow this than to try to prevent it. */
1366 if (fn == spec)
1367 return spec;
1368 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1369 {
1370 if (DECL_TEMPLATE_INSTANTIATION (fn))
1371 {
1372 if (DECL_ODR_USED (fn)
1373 || DECL_EXPLICIT_INSTANTIATION (fn))
1374 {
1375 error ("specialization of %qD after instantiation",
1376 fn);
1377 return error_mark_node;
1378 }
1379 else
1380 {
1381 tree clone;
1382 /* This situation should occur only if the first
1383 specialization is an implicit instantiation, the
1384 second is an explicit specialization, and the
1385 implicit instantiation has not yet been used. That
1386 situation can occur if we have implicitly
1387 instantiated a member function and then specialized
1388 it later.
1389
1390 We can also wind up here if a friend declaration that
1391 looked like an instantiation turns out to be a
1392 specialization:
1393
1394 template <class T> void foo(T);
1395 class S { friend void foo<>(int) };
1396 template <> void foo(int);
1397
1398 We transform the existing DECL in place so that any
1399 pointers to it become pointers to the updated
1400 declaration.
1401
1402 If there was a definition for the template, but not
1403 for the specialization, we want this to look as if
1404 there were no definition, and vice versa. */
1405 DECL_INITIAL (fn) = NULL_TREE;
1406 duplicate_decls (spec, fn, is_friend);
1407 /* The call to duplicate_decls will have applied
1408 [temp.expl.spec]:
1409
1410 An explicit specialization of a function template
1411 is inline only if it is explicitly declared to be,
1412 and independently of whether its function template
1413 is.
1414
1415 to the primary function; now copy the inline bits to
1416 the various clones. */
1417 FOR_EACH_CLONE (clone, fn)
1418 {
1419 DECL_DECLARED_INLINE_P (clone)
1420 = DECL_DECLARED_INLINE_P (fn);
1421 DECL_SOURCE_LOCATION (clone)
1422 = DECL_SOURCE_LOCATION (fn);
1423 }
1424 check_specialization_namespace (tmpl);
1425
1426 return fn;
1427 }
1428 }
1429 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1430 {
1431 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1432 /* Dup decl failed, but this is a new definition. Set the
1433 line number so any errors match this new
1434 definition. */
1435 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1436
1437 return fn;
1438 }
1439 }
1440 else if (fn)
1441 return duplicate_decls (spec, fn, is_friend);
1442
1443 /* A specialization must be declared in the same namespace as the
1444 template it is specializing. */
1445 if (DECL_TEMPLATE_SPECIALIZATION (spec)
1446 && !check_specialization_namespace (tmpl))
1447 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1448
1449 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1450 {
1451 spec_entry *entry = ggc_alloc_spec_entry ();
1452 gcc_assert (tmpl && args && spec);
1453 *entry = elt;
1454 *slot = entry;
1455 if (TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1456 && PRIMARY_TEMPLATE_P (tmpl)
1457 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1458 /* TMPL is a forward declaration of a template function; keep a list
1459 of all specializations in case we need to reassign them to a friend
1460 template later in tsubst_friend_function. */
1461 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1462 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1463 }
1464
1465 return spec;
1466 }
1467
1468 /* Returns true iff two spec_entry nodes are equivalent. Only compares the
1469 TMPL and ARGS members, ignores SPEC. */
1470
1471 int comparing_specializations;
1472
1473 static int
1474 eq_specializations (const void *p1, const void *p2)
1475 {
1476 const spec_entry *e1 = (const spec_entry *)p1;
1477 const spec_entry *e2 = (const spec_entry *)p2;
1478 int equal;
1479
1480 ++comparing_specializations;
1481 equal = (e1->tmpl == e2->tmpl
1482 && comp_template_args (e1->args, e2->args));
1483 --comparing_specializations;
1484
1485 return equal;
1486 }
1487
1488 /* Returns a hash for a template TMPL and template arguments ARGS. */
1489
1490 static hashval_t
1491 hash_tmpl_and_args (tree tmpl, tree args)
1492 {
1493 hashval_t val = DECL_UID (tmpl);
1494 return iterative_hash_template_arg (args, val);
1495 }
1496
1497 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1498 ignoring SPEC. */
1499
1500 static hashval_t
1501 hash_specialization (const void *p)
1502 {
1503 const spec_entry *e = (const spec_entry *)p;
1504 return hash_tmpl_and_args (e->tmpl, e->args);
1505 }
1506
1507 /* Recursively calculate a hash value for a template argument ARG, for use
1508 in the hash tables of template specializations. */
1509
1510 hashval_t
1511 iterative_hash_template_arg (tree arg, hashval_t val)
1512 {
1513 unsigned HOST_WIDE_INT i;
1514 enum tree_code code;
1515 char tclass;
1516
1517 if (arg == NULL_TREE)
1518 return iterative_hash_object (arg, val);
1519
1520 if (!TYPE_P (arg))
1521 STRIP_NOPS (arg);
1522
1523 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1524 /* We can get one of these when re-hashing a previous entry in the middle
1525 of substituting into a pack expansion. Just look through it. */
1526 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1527
1528 code = TREE_CODE (arg);
1529 tclass = TREE_CODE_CLASS (code);
1530
1531 val = iterative_hash_object (code, val);
1532
1533 switch (code)
1534 {
1535 case ERROR_MARK:
1536 return val;
1537
1538 case IDENTIFIER_NODE:
1539 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1540
1541 case TREE_VEC:
1542 {
1543 int i, len = TREE_VEC_LENGTH (arg);
1544 for (i = 0; i < len; ++i)
1545 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1546 return val;
1547 }
1548
1549 case TYPE_PACK_EXPANSION:
1550 case EXPR_PACK_EXPANSION:
1551 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1552 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1553
1554 case TYPE_ARGUMENT_PACK:
1555 case NONTYPE_ARGUMENT_PACK:
1556 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1557
1558 case TREE_LIST:
1559 for (; arg; arg = TREE_CHAIN (arg))
1560 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1561 return val;
1562
1563 case OVERLOAD:
1564 for (; arg; arg = OVL_NEXT (arg))
1565 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1566 return val;
1567
1568 case CONSTRUCTOR:
1569 {
1570 tree field, value;
1571 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1572 {
1573 val = iterative_hash_template_arg (field, val);
1574 val = iterative_hash_template_arg (value, val);
1575 }
1576 return val;
1577 }
1578
1579 case PARM_DECL:
1580 if (!DECL_ARTIFICIAL (arg))
1581 {
1582 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1583 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1584 }
1585 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1586
1587 case TARGET_EXPR:
1588 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1589
1590 case PTRMEM_CST:
1591 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1592 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1593
1594 case TEMPLATE_PARM_INDEX:
1595 val = iterative_hash_template_arg
1596 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1597 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1598 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1599
1600 case TRAIT_EXPR:
1601 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1602 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1603 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1604
1605 case BASELINK:
1606 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1607 val);
1608 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1609 val);
1610
1611 case MODOP_EXPR:
1612 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1613 code = TREE_CODE (TREE_OPERAND (arg, 1));
1614 val = iterative_hash_object (code, val);
1615 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1616
1617 case LAMBDA_EXPR:
1618 /* A lambda can't appear in a template arg, but don't crash on
1619 erroneous input. */
1620 gcc_assert (seen_error ());
1621 return val;
1622
1623 case CAST_EXPR:
1624 case IMPLICIT_CONV_EXPR:
1625 case STATIC_CAST_EXPR:
1626 case REINTERPRET_CAST_EXPR:
1627 case CONST_CAST_EXPR:
1628 case DYNAMIC_CAST_EXPR:
1629 case NEW_EXPR:
1630 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1631 /* Now hash operands as usual. */
1632 break;
1633
1634 default:
1635 break;
1636 }
1637
1638 switch (tclass)
1639 {
1640 case tcc_type:
1641 if (TYPE_CANONICAL (arg))
1642 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1643 val);
1644 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1645 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1646 /* Otherwise just compare the types during lookup. */
1647 return val;
1648
1649 case tcc_declaration:
1650 case tcc_constant:
1651 return iterative_hash_expr (arg, val);
1652
1653 default:
1654 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1655 {
1656 unsigned n = cp_tree_operand_length (arg);
1657 for (i = 0; i < n; ++i)
1658 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1659 return val;
1660 }
1661 }
1662 gcc_unreachable ();
1663 return 0;
1664 }
1665
1666 /* Unregister the specialization SPEC as a specialization of TMPL.
1667 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1668 if the SPEC was listed as a specialization of TMPL.
1669
1670 Note that SPEC has been ggc_freed, so we can't look inside it. */
1671
1672 bool
1673 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1674 {
1675 spec_entry *entry;
1676 spec_entry elt;
1677
1678 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1679 elt.args = TI_ARGS (tinfo);
1680 elt.spec = NULL_TREE;
1681
1682 entry = (spec_entry *) htab_find (decl_specializations, &elt);
1683 if (entry != NULL)
1684 {
1685 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1686 gcc_assert (new_spec != NULL_TREE);
1687 entry->spec = new_spec;
1688 return 1;
1689 }
1690
1691 return 0;
1692 }
1693
1694 /* Like register_specialization, but for local declarations. We are
1695 registering SPEC, an instantiation of TMPL. */
1696
1697 static void
1698 register_local_specialization (tree spec, tree tmpl)
1699 {
1700 void **slot;
1701
1702 slot = pointer_map_insert (local_specializations, tmpl);
1703 *slot = spec;
1704 }
1705
1706 /* TYPE is a class type. Returns true if TYPE is an explicitly
1707 specialized class. */
1708
1709 bool
1710 explicit_class_specialization_p (tree type)
1711 {
1712 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1713 return false;
1714 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1715 }
1716
1717 /* Print the list of functions at FNS, going through all the overloads
1718 for each element of the list. Alternatively, FNS can not be a
1719 TREE_LIST, in which case it will be printed together with all the
1720 overloads.
1721
1722 MORE and *STR should respectively be FALSE and NULL when the function
1723 is called from the outside. They are used internally on recursive
1724 calls. print_candidates manages the two parameters and leaves NULL
1725 in *STR when it ends. */
1726
1727 static void
1728 print_candidates_1 (tree fns, bool more, const char **str)
1729 {
1730 tree fn, fn2;
1731 char *spaces = NULL;
1732
1733 for (fn = fns; fn; fn = OVL_NEXT (fn))
1734 if (TREE_CODE (fn) == TREE_LIST)
1735 {
1736 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1737 print_candidates_1 (TREE_VALUE (fn2),
1738 TREE_CHAIN (fn2) || more, str);
1739 }
1740 else
1741 {
1742 tree cand = OVL_CURRENT (fn);
1743 if (!*str)
1744 {
1745 /* Pick the prefix string. */
1746 if (!more && !OVL_NEXT (fns))
1747 {
1748 inform (DECL_SOURCE_LOCATION (cand),
1749 "candidate is: %#D", cand);
1750 continue;
1751 }
1752
1753 *str = _("candidates are:");
1754 spaces = get_spaces (*str);
1755 }
1756 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1757 *str = spaces ? spaces : *str;
1758 }
1759
1760 if (!more)
1761 {
1762 free (spaces);
1763 *str = NULL;
1764 }
1765 }
1766
1767 /* Print the list of candidate FNS in an error message. FNS can also
1768 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1769
1770 void
1771 print_candidates (tree fns)
1772 {
1773 const char *str = NULL;
1774 print_candidates_1 (fns, false, &str);
1775 gcc_assert (str == NULL);
1776 }
1777
1778 /* Returns the template (one of the functions given by TEMPLATE_ID)
1779 which can be specialized to match the indicated DECL with the
1780 explicit template args given in TEMPLATE_ID. The DECL may be
1781 NULL_TREE if none is available. In that case, the functions in
1782 TEMPLATE_ID are non-members.
1783
1784 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
1785 specialization of a member template.
1786
1787 The TEMPLATE_COUNT is the number of references to qualifying
1788 template classes that appeared in the name of the function. See
1789 check_explicit_specialization for a more accurate description.
1790
1791 TSK indicates what kind of template declaration (if any) is being
1792 declared. TSK_TEMPLATE indicates that the declaration given by
1793 DECL, though a FUNCTION_DECL, has template parameters, and is
1794 therefore a template function.
1795
1796 The template args (those explicitly specified and those deduced)
1797 are output in a newly created vector *TARGS_OUT.
1798
1799 If it is impossible to determine the result, an error message is
1800 issued. The error_mark_node is returned to indicate failure. */
1801
1802 static tree
1803 determine_specialization (tree template_id,
1804 tree decl,
1805 tree* targs_out,
1806 int need_member_template,
1807 int template_count,
1808 tmpl_spec_kind tsk)
1809 {
1810 tree fns;
1811 tree targs;
1812 tree explicit_targs;
1813 tree candidates = NULL_TREE;
1814 /* A TREE_LIST of templates of which DECL may be a specialization.
1815 The TREE_VALUE of each node is a TEMPLATE_DECL. The
1816 corresponding TREE_PURPOSE is the set of template arguments that,
1817 when used to instantiate the template, would produce a function
1818 with the signature of DECL. */
1819 tree templates = NULL_TREE;
1820 int header_count;
1821 cp_binding_level *b;
1822
1823 *targs_out = NULL_TREE;
1824
1825 if (template_id == error_mark_node || decl == error_mark_node)
1826 return error_mark_node;
1827
1828 /* We shouldn't be specializing a member template of an
1829 unspecialized class template; we already gave an error in
1830 check_specialization_scope, now avoid crashing. */
1831 if (template_count && DECL_CLASS_SCOPE_P (decl)
1832 && template_class_depth (DECL_CONTEXT (decl)) > 0)
1833 {
1834 gcc_assert (errorcount);
1835 return error_mark_node;
1836 }
1837
1838 fns = TREE_OPERAND (template_id, 0);
1839 explicit_targs = TREE_OPERAND (template_id, 1);
1840
1841 if (fns == error_mark_node)
1842 return error_mark_node;
1843
1844 /* Check for baselinks. */
1845 if (BASELINK_P (fns))
1846 fns = BASELINK_FUNCTIONS (fns);
1847
1848 if (!is_overloaded_fn (fns))
1849 {
1850 error ("%qD is not a function template", fns);
1851 return error_mark_node;
1852 }
1853
1854 /* Count the number of template headers specified for this
1855 specialization. */
1856 header_count = 0;
1857 for (b = current_binding_level;
1858 b->kind == sk_template_parms;
1859 b = b->level_chain)
1860 ++header_count;
1861
1862 for (; fns; fns = OVL_NEXT (fns))
1863 {
1864 tree fn = OVL_CURRENT (fns);
1865
1866 if (TREE_CODE (fn) == TEMPLATE_DECL)
1867 {
1868 tree decl_arg_types;
1869 tree fn_arg_types;
1870 tree insttype;
1871
1872 /* In case of explicit specialization, we need to check if
1873 the number of template headers appearing in the specialization
1874 is correct. This is usually done in check_explicit_specialization,
1875 but the check done there cannot be exhaustive when specializing
1876 member functions. Consider the following code:
1877
1878 template <> void A<int>::f(int);
1879 template <> template <> void A<int>::f(int);
1880
1881 Assuming that A<int> is not itself an explicit specialization
1882 already, the first line specializes "f" which is a non-template
1883 member function, whilst the second line specializes "f" which
1884 is a template member function. So both lines are syntactically
1885 correct, and check_explicit_specialization does not reject
1886 them.
1887
1888 Here, we can do better, as we are matching the specialization
1889 against the declarations. We count the number of template
1890 headers, and we check if they match TEMPLATE_COUNT + 1
1891 (TEMPLATE_COUNT is the number of qualifying template classes,
1892 plus there must be another header for the member template
1893 itself).
1894
1895 Notice that if header_count is zero, this is not a
1896 specialization but rather a template instantiation, so there
1897 is no check we can perform here. */
1898 if (header_count && header_count != template_count + 1)
1899 continue;
1900
1901 /* Check that the number of template arguments at the
1902 innermost level for DECL is the same as for FN. */
1903 if (current_binding_level->kind == sk_template_parms
1904 && !current_binding_level->explicit_spec_p
1905 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
1906 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
1907 (current_template_parms))))
1908 continue;
1909
1910 /* DECL might be a specialization of FN. */
1911 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1912 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
1913
1914 /* For a non-static member function, we need to make sure
1915 that the const qualification is the same. Since
1916 get_bindings does not try to merge the "this" parameter,
1917 we must do the comparison explicitly. */
1918 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1919 && !same_type_p (TREE_VALUE (fn_arg_types),
1920 TREE_VALUE (decl_arg_types)))
1921 continue;
1922
1923 /* Skip the "this" parameter and, for constructors of
1924 classes with virtual bases, the VTT parameter. A
1925 full specialization of a constructor will have a VTT
1926 parameter, but a template never will. */
1927 decl_arg_types
1928 = skip_artificial_parms_for (decl, decl_arg_types);
1929 fn_arg_types
1930 = skip_artificial_parms_for (fn, fn_arg_types);
1931
1932 /* Function templates cannot be specializations; there are
1933 no partial specializations of functions. Therefore, if
1934 the type of DECL does not match FN, there is no
1935 match. */
1936 if (tsk == tsk_template)
1937 {
1938 if (compparms (fn_arg_types, decl_arg_types))
1939 candidates = tree_cons (NULL_TREE, fn, candidates);
1940 continue;
1941 }
1942
1943 /* See whether this function might be a specialization of this
1944 template. Suppress access control because we might be trying
1945 to make this specialization a friend, and we have already done
1946 access control for the declaration of the specialization. */
1947 push_deferring_access_checks (dk_no_check);
1948 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
1949 pop_deferring_access_checks ();
1950
1951 if (!targs)
1952 /* We cannot deduce template arguments that when used to
1953 specialize TMPL will produce DECL. */
1954 continue;
1955
1956 /* Make sure that the deduced arguments actually work. */
1957 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
1958 if (insttype == error_mark_node)
1959 continue;
1960 fn_arg_types
1961 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
1962 if (!compparms (fn_arg_types, decl_arg_types))
1963 continue;
1964
1965 /* Save this template, and the arguments deduced. */
1966 templates = tree_cons (targs, fn, templates);
1967 }
1968 else if (need_member_template)
1969 /* FN is an ordinary member function, and we need a
1970 specialization of a member template. */
1971 ;
1972 else if (TREE_CODE (fn) != FUNCTION_DECL)
1973 /* We can get IDENTIFIER_NODEs here in certain erroneous
1974 cases. */
1975 ;
1976 else if (!DECL_FUNCTION_MEMBER_P (fn))
1977 /* This is just an ordinary non-member function. Nothing can
1978 be a specialization of that. */
1979 ;
1980 else if (DECL_ARTIFICIAL (fn))
1981 /* Cannot specialize functions that are created implicitly. */
1982 ;
1983 else
1984 {
1985 tree decl_arg_types;
1986
1987 /* This is an ordinary member function. However, since
1988 we're here, we can assume it's enclosing class is a
1989 template class. For example,
1990
1991 template <typename T> struct S { void f(); };
1992 template <> void S<int>::f() {}
1993
1994 Here, S<int>::f is a non-template, but S<int> is a
1995 template class. If FN has the same type as DECL, we
1996 might be in business. */
1997
1998 if (!DECL_TEMPLATE_INFO (fn))
1999 /* Its enclosing class is an explicit specialization
2000 of a template class. This is not a candidate. */
2001 continue;
2002
2003 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2004 TREE_TYPE (TREE_TYPE (fn))))
2005 /* The return types differ. */
2006 continue;
2007
2008 /* Adjust the type of DECL in case FN is a static member. */
2009 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2010 if (DECL_STATIC_FUNCTION_P (fn)
2011 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2012 decl_arg_types = TREE_CHAIN (decl_arg_types);
2013
2014 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2015 decl_arg_types))
2016 /* They match! */
2017 candidates = tree_cons (NULL_TREE, fn, candidates);
2018 }
2019 }
2020
2021 if (templates && TREE_CHAIN (templates))
2022 {
2023 /* We have:
2024
2025 [temp.expl.spec]
2026
2027 It is possible for a specialization with a given function
2028 signature to be instantiated from more than one function
2029 template. In such cases, explicit specification of the
2030 template arguments must be used to uniquely identify the
2031 function template specialization being specialized.
2032
2033 Note that here, there's no suggestion that we're supposed to
2034 determine which of the candidate templates is most
2035 specialized. However, we, also have:
2036
2037 [temp.func.order]
2038
2039 Partial ordering of overloaded function template
2040 declarations is used in the following contexts to select
2041 the function template to which a function template
2042 specialization refers:
2043
2044 -- when an explicit specialization refers to a function
2045 template.
2046
2047 So, we do use the partial ordering rules, at least for now.
2048 This extension can only serve to make invalid programs valid,
2049 so it's safe. And, there is strong anecdotal evidence that
2050 the committee intended the partial ordering rules to apply;
2051 the EDG front end has that behavior, and John Spicer claims
2052 that the committee simply forgot to delete the wording in
2053 [temp.expl.spec]. */
2054 tree tmpl = most_specialized_instantiation (templates);
2055 if (tmpl != error_mark_node)
2056 {
2057 templates = tmpl;
2058 TREE_CHAIN (templates) = NULL_TREE;
2059 }
2060 }
2061
2062 if (templates == NULL_TREE && candidates == NULL_TREE)
2063 {
2064 error ("template-id %qD for %q+D does not match any template "
2065 "declaration", template_id, decl);
2066 if (header_count && header_count != template_count + 1)
2067 inform (input_location, "saw %d %<template<>%>, need %d for "
2068 "specializing a member function template",
2069 header_count, template_count + 1);
2070 return error_mark_node;
2071 }
2072 else if ((templates && TREE_CHAIN (templates))
2073 || (candidates && TREE_CHAIN (candidates))
2074 || (templates && candidates))
2075 {
2076 error ("ambiguous template specialization %qD for %q+D",
2077 template_id, decl);
2078 candidates = chainon (candidates, templates);
2079 print_candidates (candidates);
2080 return error_mark_node;
2081 }
2082
2083 /* We have one, and exactly one, match. */
2084 if (candidates)
2085 {
2086 tree fn = TREE_VALUE (candidates);
2087 *targs_out = copy_node (DECL_TI_ARGS (fn));
2088 /* DECL is a re-declaration or partial instantiation of a template
2089 function. */
2090 if (TREE_CODE (fn) == TEMPLATE_DECL)
2091 return fn;
2092 /* It was a specialization of an ordinary member function in a
2093 template class. */
2094 return DECL_TI_TEMPLATE (fn);
2095 }
2096
2097 /* It was a specialization of a template. */
2098 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2099 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2100 {
2101 *targs_out = copy_node (targs);
2102 SET_TMPL_ARGS_LEVEL (*targs_out,
2103 TMPL_ARGS_DEPTH (*targs_out),
2104 TREE_PURPOSE (templates));
2105 }
2106 else
2107 *targs_out = TREE_PURPOSE (templates);
2108 return TREE_VALUE (templates);
2109 }
2110
2111 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2112 but with the default argument values filled in from those in the
2113 TMPL_TYPES. */
2114
2115 static tree
2116 copy_default_args_to_explicit_spec_1 (tree spec_types,
2117 tree tmpl_types)
2118 {
2119 tree new_spec_types;
2120
2121 if (!spec_types)
2122 return NULL_TREE;
2123
2124 if (spec_types == void_list_node)
2125 return void_list_node;
2126
2127 /* Substitute into the rest of the list. */
2128 new_spec_types =
2129 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2130 TREE_CHAIN (tmpl_types));
2131
2132 /* Add the default argument for this parameter. */
2133 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2134 TREE_VALUE (spec_types),
2135 new_spec_types);
2136 }
2137
2138 /* DECL is an explicit specialization. Replicate default arguments
2139 from the template it specializes. (That way, code like:
2140
2141 template <class T> void f(T = 3);
2142 template <> void f(double);
2143 void g () { f (); }
2144
2145 works, as required.) An alternative approach would be to look up
2146 the correct default arguments at the call-site, but this approach
2147 is consistent with how implicit instantiations are handled. */
2148
2149 static void
2150 copy_default_args_to_explicit_spec (tree decl)
2151 {
2152 tree tmpl;
2153 tree spec_types;
2154 tree tmpl_types;
2155 tree new_spec_types;
2156 tree old_type;
2157 tree new_type;
2158 tree t;
2159 tree object_type = NULL_TREE;
2160 tree in_charge = NULL_TREE;
2161 tree vtt = NULL_TREE;
2162
2163 /* See if there's anything we need to do. */
2164 tmpl = DECL_TI_TEMPLATE (decl);
2165 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2166 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2167 if (TREE_PURPOSE (t))
2168 break;
2169 if (!t)
2170 return;
2171
2172 old_type = TREE_TYPE (decl);
2173 spec_types = TYPE_ARG_TYPES (old_type);
2174
2175 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2176 {
2177 /* Remove the this pointer, but remember the object's type for
2178 CV quals. */
2179 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2180 spec_types = TREE_CHAIN (spec_types);
2181 tmpl_types = TREE_CHAIN (tmpl_types);
2182
2183 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2184 {
2185 /* DECL may contain more parameters than TMPL due to the extra
2186 in-charge parameter in constructors and destructors. */
2187 in_charge = spec_types;
2188 spec_types = TREE_CHAIN (spec_types);
2189 }
2190 if (DECL_HAS_VTT_PARM_P (decl))
2191 {
2192 vtt = spec_types;
2193 spec_types = TREE_CHAIN (spec_types);
2194 }
2195 }
2196
2197 /* Compute the merged default arguments. */
2198 new_spec_types =
2199 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2200
2201 /* Compute the new FUNCTION_TYPE. */
2202 if (object_type)
2203 {
2204 if (vtt)
2205 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2206 TREE_VALUE (vtt),
2207 new_spec_types);
2208
2209 if (in_charge)
2210 /* Put the in-charge parameter back. */
2211 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2212 TREE_VALUE (in_charge),
2213 new_spec_types);
2214
2215 new_type = build_method_type_directly (object_type,
2216 TREE_TYPE (old_type),
2217 new_spec_types);
2218 }
2219 else
2220 new_type = build_function_type (TREE_TYPE (old_type),
2221 new_spec_types);
2222 new_type = cp_build_type_attribute_variant (new_type,
2223 TYPE_ATTRIBUTES (old_type));
2224 new_type = build_exception_variant (new_type,
2225 TYPE_RAISES_EXCEPTIONS (old_type));
2226 TREE_TYPE (decl) = new_type;
2227 }
2228
2229 /* Return the number of template headers we expect to see for a definition
2230 or specialization of CTYPE or one of its non-template members. */
2231
2232 int
2233 num_template_headers_for_class (tree ctype)
2234 {
2235 int num_templates = 0;
2236
2237 while (ctype && CLASS_TYPE_P (ctype))
2238 {
2239 /* You're supposed to have one `template <...>' for every
2240 template class, but you don't need one for a full
2241 specialization. For example:
2242
2243 template <class T> struct S{};
2244 template <> struct S<int> { void f(); };
2245 void S<int>::f () {}
2246
2247 is correct; there shouldn't be a `template <>' for the
2248 definition of `S<int>::f'. */
2249 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2250 /* If CTYPE does not have template information of any
2251 kind, then it is not a template, nor is it nested
2252 within a template. */
2253 break;
2254 if (explicit_class_specialization_p (ctype))
2255 break;
2256 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2257 ++num_templates;
2258
2259 ctype = TYPE_CONTEXT (ctype);
2260 }
2261
2262 return num_templates;
2263 }
2264
2265 /* Do a simple sanity check on the template headers that precede the
2266 variable declaration DECL. */
2267
2268 void
2269 check_template_variable (tree decl)
2270 {
2271 tree ctx = CP_DECL_CONTEXT (decl);
2272 int wanted = num_template_headers_for_class (ctx);
2273 if (!TYPE_P (ctx) || !CLASSTYPE_TEMPLATE_INFO (ctx))
2274 permerror (DECL_SOURCE_LOCATION (decl),
2275 "%qD is not a static data member of a class template", decl);
2276 else if (template_header_count > wanted)
2277 {
2278 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2279 "too many template headers for %D (should be %d)",
2280 decl, wanted);
2281 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2282 inform (DECL_SOURCE_LOCATION (decl),
2283 "members of an explicitly specialized class are defined "
2284 "without a template header");
2285 }
2286 }
2287
2288 /* Check to see if the function just declared, as indicated in
2289 DECLARATOR, and in DECL, is a specialization of a function
2290 template. We may also discover that the declaration is an explicit
2291 instantiation at this point.
2292
2293 Returns DECL, or an equivalent declaration that should be used
2294 instead if all goes well. Issues an error message if something is
2295 amiss. Returns error_mark_node if the error is not easily
2296 recoverable.
2297
2298 FLAGS is a bitmask consisting of the following flags:
2299
2300 2: The function has a definition.
2301 4: The function is a friend.
2302
2303 The TEMPLATE_COUNT is the number of references to qualifying
2304 template classes that appeared in the name of the function. For
2305 example, in
2306
2307 template <class T> struct S { void f(); };
2308 void S<int>::f();
2309
2310 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2311 classes are not counted in the TEMPLATE_COUNT, so that in
2312
2313 template <class T> struct S {};
2314 template <> struct S<int> { void f(); }
2315 template <> void S<int>::f();
2316
2317 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2318 invalid; there should be no template <>.)
2319
2320 If the function is a specialization, it is marked as such via
2321 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2322 is set up correctly, and it is added to the list of specializations
2323 for that template. */
2324
2325 tree
2326 check_explicit_specialization (tree declarator,
2327 tree decl,
2328 int template_count,
2329 int flags)
2330 {
2331 int have_def = flags & 2;
2332 int is_friend = flags & 4;
2333 int specialization = 0;
2334 int explicit_instantiation = 0;
2335 int member_specialization = 0;
2336 tree ctype = DECL_CLASS_CONTEXT (decl);
2337 tree dname = DECL_NAME (decl);
2338 tmpl_spec_kind tsk;
2339
2340 if (is_friend)
2341 {
2342 if (!processing_specialization)
2343 tsk = tsk_none;
2344 else
2345 tsk = tsk_excessive_parms;
2346 }
2347 else
2348 tsk = current_tmpl_spec_kind (template_count);
2349
2350 switch (tsk)
2351 {
2352 case tsk_none:
2353 if (processing_specialization)
2354 {
2355 specialization = 1;
2356 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2357 }
2358 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2359 {
2360 if (is_friend)
2361 /* This could be something like:
2362
2363 template <class T> void f(T);
2364 class S { friend void f<>(int); } */
2365 specialization = 1;
2366 else
2367 {
2368 /* This case handles bogus declarations like template <>
2369 template <class T> void f<int>(); */
2370
2371 error ("template-id %qD in declaration of primary template",
2372 declarator);
2373 return decl;
2374 }
2375 }
2376 break;
2377
2378 case tsk_invalid_member_spec:
2379 /* The error has already been reported in
2380 check_specialization_scope. */
2381 return error_mark_node;
2382
2383 case tsk_invalid_expl_inst:
2384 error ("template parameter list used in explicit instantiation");
2385
2386 /* Fall through. */
2387
2388 case tsk_expl_inst:
2389 if (have_def)
2390 error ("definition provided for explicit instantiation");
2391
2392 explicit_instantiation = 1;
2393 break;
2394
2395 case tsk_excessive_parms:
2396 case tsk_insufficient_parms:
2397 if (tsk == tsk_excessive_parms)
2398 error ("too many template parameter lists in declaration of %qD",
2399 decl);
2400 else if (template_header_count)
2401 error("too few template parameter lists in declaration of %qD", decl);
2402 else
2403 error("explicit specialization of %qD must be introduced by "
2404 "%<template <>%>", decl);
2405
2406 /* Fall through. */
2407 case tsk_expl_spec:
2408 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2409 if (ctype)
2410 member_specialization = 1;
2411 else
2412 specialization = 1;
2413 break;
2414
2415 case tsk_template:
2416 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2417 {
2418 /* This case handles bogus declarations like template <>
2419 template <class T> void f<int>(); */
2420
2421 if (uses_template_parms (declarator))
2422 error ("function template partial specialization %qD "
2423 "is not allowed", declarator);
2424 else
2425 error ("template-id %qD in declaration of primary template",
2426 declarator);
2427 return decl;
2428 }
2429
2430 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2431 /* This is a specialization of a member template, without
2432 specialization the containing class. Something like:
2433
2434 template <class T> struct S {
2435 template <class U> void f (U);
2436 };
2437 template <> template <class U> void S<int>::f(U) {}
2438
2439 That's a specialization -- but of the entire template. */
2440 specialization = 1;
2441 break;
2442
2443 default:
2444 gcc_unreachable ();
2445 }
2446
2447 if (specialization || member_specialization)
2448 {
2449 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2450 for (; t; t = TREE_CHAIN (t))
2451 if (TREE_PURPOSE (t))
2452 {
2453 permerror (input_location,
2454 "default argument specified in explicit specialization");
2455 break;
2456 }
2457 }
2458
2459 if (specialization || member_specialization || explicit_instantiation)
2460 {
2461 tree tmpl = NULL_TREE;
2462 tree targs = NULL_TREE;
2463
2464 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2465 if (TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2466 {
2467 tree fns;
2468
2469 gcc_assert (identifier_p (declarator));
2470 if (ctype)
2471 fns = dname;
2472 else
2473 {
2474 /* If there is no class context, the explicit instantiation
2475 must be at namespace scope. */
2476 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2477
2478 /* Find the namespace binding, using the declaration
2479 context. */
2480 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2481 false, true);
2482 if (fns == error_mark_node || !is_overloaded_fn (fns))
2483 {
2484 error ("%qD is not a template function", dname);
2485 fns = error_mark_node;
2486 }
2487 else
2488 {
2489 tree fn = OVL_CURRENT (fns);
2490 if (!is_associated_namespace (CP_DECL_CONTEXT (decl),
2491 CP_DECL_CONTEXT (fn)))
2492 error ("%qD is not declared in %qD",
2493 decl, current_namespace);
2494 }
2495 }
2496
2497 declarator = lookup_template_function (fns, NULL_TREE);
2498 }
2499
2500 if (declarator == error_mark_node)
2501 return error_mark_node;
2502
2503 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2504 {
2505 if (!explicit_instantiation)
2506 /* A specialization in class scope. This is invalid,
2507 but the error will already have been flagged by
2508 check_specialization_scope. */
2509 return error_mark_node;
2510 else
2511 {
2512 /* It's not valid to write an explicit instantiation in
2513 class scope, e.g.:
2514
2515 class C { template void f(); }
2516
2517 This case is caught by the parser. However, on
2518 something like:
2519
2520 template class C { void f(); };
2521
2522 (which is invalid) we can get here. The error will be
2523 issued later. */
2524 ;
2525 }
2526
2527 return decl;
2528 }
2529 else if (ctype != NULL_TREE
2530 && (identifier_p (TREE_OPERAND (declarator, 0))))
2531 {
2532 /* Find the list of functions in ctype that have the same
2533 name as the declared function. */
2534 tree name = TREE_OPERAND (declarator, 0);
2535 tree fns = NULL_TREE;
2536 int idx;
2537
2538 if (constructor_name_p (name, ctype))
2539 {
2540 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2541
2542 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2543 : !CLASSTYPE_DESTRUCTORS (ctype))
2544 {
2545 /* From [temp.expl.spec]:
2546
2547 If such an explicit specialization for the member
2548 of a class template names an implicitly-declared
2549 special member function (clause _special_), the
2550 program is ill-formed.
2551
2552 Similar language is found in [temp.explicit]. */
2553 error ("specialization of implicitly-declared special member function");
2554 return error_mark_node;
2555 }
2556
2557 name = is_constructor ? ctor_identifier : dtor_identifier;
2558 }
2559
2560 if (!DECL_CONV_FN_P (decl))
2561 {
2562 idx = lookup_fnfields_1 (ctype, name);
2563 if (idx >= 0)
2564 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2565 }
2566 else
2567 {
2568 vec<tree, va_gc> *methods;
2569 tree ovl;
2570
2571 /* For a type-conversion operator, we cannot do a
2572 name-based lookup. We might be looking for `operator
2573 int' which will be a specialization of `operator T'.
2574 So, we find *all* the conversion operators, and then
2575 select from them. */
2576 fns = NULL_TREE;
2577
2578 methods = CLASSTYPE_METHOD_VEC (ctype);
2579 if (methods)
2580 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2581 methods->iterate (idx, &ovl);
2582 ++idx)
2583 {
2584 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2585 /* There are no more conversion functions. */
2586 break;
2587
2588 /* Glue all these conversion functions together
2589 with those we already have. */
2590 for (; ovl; ovl = OVL_NEXT (ovl))
2591 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2592 }
2593 }
2594
2595 if (fns == NULL_TREE)
2596 {
2597 error ("no member function %qD declared in %qT", name, ctype);
2598 return error_mark_node;
2599 }
2600 else
2601 TREE_OPERAND (declarator, 0) = fns;
2602 }
2603
2604 /* Figure out what exactly is being specialized at this point.
2605 Note that for an explicit instantiation, even one for a
2606 member function, we cannot tell apriori whether the
2607 instantiation is for a member template, or just a member
2608 function of a template class. Even if a member template is
2609 being instantiated, the member template arguments may be
2610 elided if they can be deduced from the rest of the
2611 declaration. */
2612 tmpl = determine_specialization (declarator, decl,
2613 &targs,
2614 member_specialization,
2615 template_count,
2616 tsk);
2617
2618 if (!tmpl || tmpl == error_mark_node)
2619 /* We couldn't figure out what this declaration was
2620 specializing. */
2621 return error_mark_node;
2622 else
2623 {
2624 tree gen_tmpl = most_general_template (tmpl);
2625
2626 if (explicit_instantiation)
2627 {
2628 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2629 is done by do_decl_instantiation later. */
2630
2631 int arg_depth = TMPL_ARGS_DEPTH (targs);
2632 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2633
2634 if (arg_depth > parm_depth)
2635 {
2636 /* If TMPL is not the most general template (for
2637 example, if TMPL is a friend template that is
2638 injected into namespace scope), then there will
2639 be too many levels of TARGS. Remove some of them
2640 here. */
2641 int i;
2642 tree new_targs;
2643
2644 new_targs = make_tree_vec (parm_depth);
2645 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2646 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2647 = TREE_VEC_ELT (targs, i);
2648 targs = new_targs;
2649 }
2650
2651 return instantiate_template (tmpl, targs, tf_error);
2652 }
2653
2654 /* If we thought that the DECL was a member function, but it
2655 turns out to be specializing a static member function,
2656 make DECL a static member function as well. */
2657 if (DECL_STATIC_FUNCTION_P (tmpl)
2658 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2659 revert_static_member_fn (decl);
2660
2661 /* If this is a specialization of a member template of a
2662 template class, we want to return the TEMPLATE_DECL, not
2663 the specialization of it. */
2664 if (tsk == tsk_template)
2665 {
2666 tree result = DECL_TEMPLATE_RESULT (tmpl);
2667 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2668 DECL_INITIAL (result) = NULL_TREE;
2669 if (have_def)
2670 {
2671 tree parm;
2672 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
2673 DECL_SOURCE_LOCATION (result)
2674 = DECL_SOURCE_LOCATION (decl);
2675 /* We want to use the argument list specified in the
2676 definition, not in the original declaration. */
2677 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
2678 for (parm = DECL_ARGUMENTS (result); parm;
2679 parm = DECL_CHAIN (parm))
2680 DECL_CONTEXT (parm) = result;
2681 }
2682 return register_specialization (tmpl, gen_tmpl, targs,
2683 is_friend, 0);
2684 }
2685
2686 /* Set up the DECL_TEMPLATE_INFO for DECL. */
2687 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
2688
2689 /* Inherit default function arguments from the template
2690 DECL is specializing. */
2691 copy_default_args_to_explicit_spec (decl);
2692
2693 /* This specialization has the same protection as the
2694 template it specializes. */
2695 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
2696 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
2697
2698 /* 7.1.1-1 [dcl.stc]
2699
2700 A storage-class-specifier shall not be specified in an
2701 explicit specialization...
2702
2703 The parser rejects these, so unless action is taken here,
2704 explicit function specializations will always appear with
2705 global linkage.
2706
2707 The action recommended by the C++ CWG in response to C++
2708 defect report 605 is to make the storage class and linkage
2709 of the explicit specialization match the templated function:
2710
2711 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
2712 */
2713 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
2714 {
2715 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
2716 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
2717
2718 /* This specialization has the same linkage and visibility as
2719 the function template it specializes. */
2720 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
2721 if (! TREE_PUBLIC (decl))
2722 {
2723 DECL_INTERFACE_KNOWN (decl) = 1;
2724 DECL_NOT_REALLY_EXTERN (decl) = 1;
2725 }
2726 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
2727 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
2728 {
2729 DECL_VISIBILITY_SPECIFIED (decl) = 1;
2730 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
2731 }
2732 }
2733
2734 /* If DECL is a friend declaration, declared using an
2735 unqualified name, the namespace associated with DECL may
2736 have been set incorrectly. For example, in:
2737
2738 template <typename T> void f(T);
2739 namespace N {
2740 struct S { friend void f<int>(int); }
2741 }
2742
2743 we will have set the DECL_CONTEXT for the friend
2744 declaration to N, rather than to the global namespace. */
2745 if (DECL_NAMESPACE_SCOPE_P (decl))
2746 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
2747
2748 if (is_friend && !have_def)
2749 /* This is not really a declaration of a specialization.
2750 It's just the name of an instantiation. But, it's not
2751 a request for an instantiation, either. */
2752 SET_DECL_IMPLICIT_INSTANTIATION (decl);
2753 else if (DECL_CONSTRUCTOR_P (decl) || DECL_DESTRUCTOR_P (decl))
2754 /* This is indeed a specialization. In case of constructors
2755 and destructors, we need in-charge and not-in-charge
2756 versions in V3 ABI. */
2757 clone_function_decl (decl, /*update_method_vec_p=*/0);
2758
2759 /* Register this specialization so that we can find it
2760 again. */
2761 decl = register_specialization (decl, gen_tmpl, targs, is_friend, 0);
2762 }
2763 }
2764
2765 return decl;
2766 }
2767
2768 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
2769 parameters. These are represented in the same format used for
2770 DECL_TEMPLATE_PARMS. */
2771
2772 int
2773 comp_template_parms (const_tree parms1, const_tree parms2)
2774 {
2775 const_tree p1;
2776 const_tree p2;
2777
2778 if (parms1 == parms2)
2779 return 1;
2780
2781 for (p1 = parms1, p2 = parms2;
2782 p1 != NULL_TREE && p2 != NULL_TREE;
2783 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
2784 {
2785 tree t1 = TREE_VALUE (p1);
2786 tree t2 = TREE_VALUE (p2);
2787 int i;
2788
2789 gcc_assert (TREE_CODE (t1) == TREE_VEC);
2790 gcc_assert (TREE_CODE (t2) == TREE_VEC);
2791
2792 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2793 return 0;
2794
2795 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
2796 {
2797 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
2798 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
2799
2800 /* If either of the template parameters are invalid, assume
2801 they match for the sake of error recovery. */
2802 if (parm1 == error_mark_node || parm2 == error_mark_node)
2803 return 1;
2804
2805 if (TREE_CODE (parm1) != TREE_CODE (parm2))
2806 return 0;
2807
2808 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
2809 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
2810 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
2811 continue;
2812 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
2813 return 0;
2814 }
2815 }
2816
2817 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
2818 /* One set of parameters has more parameters lists than the
2819 other. */
2820 return 0;
2821
2822 return 1;
2823 }
2824
2825 /* Determine whether PARM is a parameter pack. */
2826
2827 bool
2828 template_parameter_pack_p (const_tree parm)
2829 {
2830 /* Determine if we have a non-type template parameter pack. */
2831 if (TREE_CODE (parm) == PARM_DECL)
2832 return (DECL_TEMPLATE_PARM_P (parm)
2833 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
2834 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
2835 return TEMPLATE_PARM_PARAMETER_PACK (parm);
2836
2837 /* If this is a list of template parameters, we could get a
2838 TYPE_DECL or a TEMPLATE_DECL. */
2839 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
2840 parm = TREE_TYPE (parm);
2841
2842 /* Otherwise it must be a type template parameter. */
2843 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
2844 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
2845 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
2846 }
2847
2848 /* Determine if T is a function parameter pack. */
2849
2850 bool
2851 function_parameter_pack_p (const_tree t)
2852 {
2853 if (t && TREE_CODE (t) == PARM_DECL)
2854 return FUNCTION_PARAMETER_PACK_P (t);
2855 return false;
2856 }
2857
2858 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
2859 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
2860
2861 tree
2862 get_function_template_decl (const_tree primary_func_tmpl_inst)
2863 {
2864 if (! primary_func_tmpl_inst
2865 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
2866 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
2867 return NULL;
2868
2869 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
2870 }
2871
2872 /* Return true iff the function parameter PARAM_DECL was expanded
2873 from the function parameter pack PACK. */
2874
2875 bool
2876 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
2877 {
2878 if (DECL_ARTIFICIAL (param_decl)
2879 || !function_parameter_pack_p (pack))
2880 return false;
2881
2882 /* The parameter pack and its pack arguments have the same
2883 DECL_PARM_INDEX. */
2884 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
2885 }
2886
2887 /* Determine whether ARGS describes a variadic template args list,
2888 i.e., one that is terminated by a template argument pack. */
2889
2890 static bool
2891 template_args_variadic_p (tree args)
2892 {
2893 int nargs;
2894 tree last_parm;
2895
2896 if (args == NULL_TREE)
2897 return false;
2898
2899 args = INNERMOST_TEMPLATE_ARGS (args);
2900 nargs = TREE_VEC_LENGTH (args);
2901
2902 if (nargs == 0)
2903 return false;
2904
2905 last_parm = TREE_VEC_ELT (args, nargs - 1);
2906
2907 return ARGUMENT_PACK_P (last_parm);
2908 }
2909
2910 /* Generate a new name for the parameter pack name NAME (an
2911 IDENTIFIER_NODE) that incorporates its */
2912
2913 static tree
2914 make_ith_pack_parameter_name (tree name, int i)
2915 {
2916 /* Munge the name to include the parameter index. */
2917 #define NUMBUF_LEN 128
2918 char numbuf[NUMBUF_LEN];
2919 char* newname;
2920 int newname_len;
2921
2922 if (name == NULL_TREE)
2923 return name;
2924 snprintf (numbuf, NUMBUF_LEN, "%i", i);
2925 newname_len = IDENTIFIER_LENGTH (name)
2926 + strlen (numbuf) + 2;
2927 newname = (char*)alloca (newname_len);
2928 snprintf (newname, newname_len,
2929 "%s#%i", IDENTIFIER_POINTER (name), i);
2930 return get_identifier (newname);
2931 }
2932
2933 /* Return true if T is a primary function, class or alias template
2934 instantiation. */
2935
2936 bool
2937 primary_template_instantiation_p (const_tree t)
2938 {
2939 if (!t)
2940 return false;
2941
2942 if (TREE_CODE (t) == FUNCTION_DECL)
2943 return DECL_LANG_SPECIFIC (t)
2944 && DECL_TEMPLATE_INSTANTIATION (t)
2945 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
2946 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
2947 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
2948 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
2949 else if (alias_template_specialization_p (t))
2950 return true;
2951 return false;
2952 }
2953
2954 /* Return true if PARM is a template template parameter. */
2955
2956 bool
2957 template_template_parameter_p (const_tree parm)
2958 {
2959 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
2960 }
2961
2962 /* Return true iff PARM is a DECL representing a type template
2963 parameter. */
2964
2965 bool
2966 template_type_parameter_p (const_tree parm)
2967 {
2968 return (parm
2969 && (TREE_CODE (parm) == TYPE_DECL
2970 || TREE_CODE (parm) == TEMPLATE_DECL)
2971 && DECL_TEMPLATE_PARM_P (parm));
2972 }
2973
2974 /* Return the template parameters of T if T is a
2975 primary template instantiation, NULL otherwise. */
2976
2977 tree
2978 get_primary_template_innermost_parameters (const_tree t)
2979 {
2980 tree parms = NULL, template_info = NULL;
2981
2982 if ((template_info = get_template_info (t))
2983 && primary_template_instantiation_p (t))
2984 parms = INNERMOST_TEMPLATE_PARMS
2985 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
2986
2987 return parms;
2988 }
2989
2990 /* Return the template parameters of the LEVELth level from the full list
2991 of template parameters PARMS. */
2992
2993 tree
2994 get_template_parms_at_level (tree parms, int level)
2995 {
2996 tree p;
2997 if (!parms
2998 || TREE_CODE (parms) != TREE_LIST
2999 || level > TMPL_PARMS_DEPTH (parms))
3000 return NULL_TREE;
3001
3002 for (p = parms; p; p = TREE_CHAIN (p))
3003 if (TMPL_PARMS_DEPTH (p) == level)
3004 return p;
3005
3006 return NULL_TREE;
3007 }
3008
3009 /* Returns the template arguments of T if T is a template instantiation,
3010 NULL otherwise. */
3011
3012 tree
3013 get_template_innermost_arguments (const_tree t)
3014 {
3015 tree args = NULL, template_info = NULL;
3016
3017 if ((template_info = get_template_info (t))
3018 && TI_ARGS (template_info))
3019 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3020
3021 return args;
3022 }
3023
3024 /* Return the argument pack elements of T if T is a template argument pack,
3025 NULL otherwise. */
3026
3027 tree
3028 get_template_argument_pack_elems (const_tree t)
3029 {
3030 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3031 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3032 return NULL;
3033
3034 return ARGUMENT_PACK_ARGS (t);
3035 }
3036
3037 /* Structure used to track the progress of find_parameter_packs_r. */
3038 struct find_parameter_pack_data
3039 {
3040 /* TREE_LIST that will contain all of the parameter packs found by
3041 the traversal. */
3042 tree* parameter_packs;
3043
3044 /* Set of AST nodes that have been visited by the traversal. */
3045 struct pointer_set_t *visited;
3046 };
3047
3048 /* Identifies all of the argument packs that occur in a template
3049 argument and appends them to the TREE_LIST inside DATA, which is a
3050 find_parameter_pack_data structure. This is a subroutine of
3051 make_pack_expansion and uses_parameter_packs. */
3052 static tree
3053 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3054 {
3055 tree t = *tp;
3056 struct find_parameter_pack_data* ppd =
3057 (struct find_parameter_pack_data*)data;
3058 bool parameter_pack_p = false;
3059
3060 /* Handle type aliases/typedefs. */
3061 if (TYPE_P (t)
3062 && TYPE_NAME (t)
3063 && TREE_CODE (TYPE_NAME (t)) == TYPE_DECL
3064 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3065 {
3066 if (TYPE_TEMPLATE_INFO (t))
3067 cp_walk_tree (&TYPE_TI_ARGS (t),
3068 &find_parameter_packs_r,
3069 ppd, ppd->visited);
3070 *walk_subtrees = 0;
3071 return NULL_TREE;
3072 }
3073
3074 /* Identify whether this is a parameter pack or not. */
3075 switch (TREE_CODE (t))
3076 {
3077 case TEMPLATE_PARM_INDEX:
3078 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3079 parameter_pack_p = true;
3080 break;
3081
3082 case TEMPLATE_TYPE_PARM:
3083 t = TYPE_MAIN_VARIANT (t);
3084 case TEMPLATE_TEMPLATE_PARM:
3085 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3086 parameter_pack_p = true;
3087 break;
3088
3089 case PARM_DECL:
3090 if (FUNCTION_PARAMETER_PACK_P (t))
3091 {
3092 /* We don't want to walk into the type of a PARM_DECL,
3093 because we don't want to see the type parameter pack. */
3094 *walk_subtrees = 0;
3095 parameter_pack_p = true;
3096 }
3097 break;
3098
3099 case BASES:
3100 parameter_pack_p = true;
3101 break;
3102 default:
3103 /* Not a parameter pack. */
3104 break;
3105 }
3106
3107 if (parameter_pack_p)
3108 {
3109 /* Add this parameter pack to the list. */
3110 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3111 }
3112
3113 if (TYPE_P (t))
3114 cp_walk_tree (&TYPE_CONTEXT (t),
3115 &find_parameter_packs_r, ppd, ppd->visited);
3116
3117 /* This switch statement will return immediately if we don't find a
3118 parameter pack. */
3119 switch (TREE_CODE (t))
3120 {
3121 case TEMPLATE_PARM_INDEX:
3122 return NULL_TREE;
3123
3124 case BOUND_TEMPLATE_TEMPLATE_PARM:
3125 /* Check the template itself. */
3126 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3127 &find_parameter_packs_r, ppd, ppd->visited);
3128 /* Check the template arguments. */
3129 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3130 ppd->visited);
3131 *walk_subtrees = 0;
3132 return NULL_TREE;
3133
3134 case TEMPLATE_TYPE_PARM:
3135 case TEMPLATE_TEMPLATE_PARM:
3136 return NULL_TREE;
3137
3138 case PARM_DECL:
3139 return NULL_TREE;
3140
3141 case RECORD_TYPE:
3142 if (TYPE_PTRMEMFUNC_P (t))
3143 return NULL_TREE;
3144 /* Fall through. */
3145
3146 case UNION_TYPE:
3147 case ENUMERAL_TYPE:
3148 if (TYPE_TEMPLATE_INFO (t))
3149 cp_walk_tree (&TI_ARGS (TYPE_TEMPLATE_INFO (t)),
3150 &find_parameter_packs_r, ppd, ppd->visited);
3151
3152 *walk_subtrees = 0;
3153 return NULL_TREE;
3154
3155 case CONSTRUCTOR:
3156 case TEMPLATE_DECL:
3157 cp_walk_tree (&TREE_TYPE (t),
3158 &find_parameter_packs_r, ppd, ppd->visited);
3159 return NULL_TREE;
3160
3161 case TYPENAME_TYPE:
3162 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3163 ppd, ppd->visited);
3164 *walk_subtrees = 0;
3165 return NULL_TREE;
3166
3167 case TYPE_PACK_EXPANSION:
3168 case EXPR_PACK_EXPANSION:
3169 *walk_subtrees = 0;
3170 return NULL_TREE;
3171
3172 case INTEGER_TYPE:
3173 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3174 ppd, ppd->visited);
3175 *walk_subtrees = 0;
3176 return NULL_TREE;
3177
3178 case IDENTIFIER_NODE:
3179 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3180 ppd->visited);
3181 *walk_subtrees = 0;
3182 return NULL_TREE;
3183
3184 default:
3185 return NULL_TREE;
3186 }
3187
3188 return NULL_TREE;
3189 }
3190
3191 /* Determines if the expression or type T uses any parameter packs. */
3192 bool
3193 uses_parameter_packs (tree t)
3194 {
3195 tree parameter_packs = NULL_TREE;
3196 struct find_parameter_pack_data ppd;
3197 ppd.parameter_packs = &parameter_packs;
3198 ppd.visited = pointer_set_create ();
3199 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3200 pointer_set_destroy (ppd.visited);
3201 return parameter_packs != NULL_TREE;
3202 }
3203
3204 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3205 representation a base-class initializer into a parameter pack
3206 expansion. If all goes well, the resulting node will be an
3207 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3208 respectively. */
3209 tree
3210 make_pack_expansion (tree arg)
3211 {
3212 tree result;
3213 tree parameter_packs = NULL_TREE;
3214 bool for_types = false;
3215 struct find_parameter_pack_data ppd;
3216
3217 if (!arg || arg == error_mark_node)
3218 return arg;
3219
3220 if (TREE_CODE (arg) == TREE_LIST)
3221 {
3222 /* The only time we will see a TREE_LIST here is for a base
3223 class initializer. In this case, the TREE_PURPOSE will be a
3224 _TYPE node (representing the base class expansion we're
3225 initializing) and the TREE_VALUE will be a TREE_LIST
3226 containing the initialization arguments.
3227
3228 The resulting expansion looks somewhat different from most
3229 expansions. Rather than returning just one _EXPANSION, we
3230 return a TREE_LIST whose TREE_PURPOSE is a
3231 TYPE_PACK_EXPANSION containing the bases that will be
3232 initialized. The TREE_VALUE will be identical to the
3233 original TREE_VALUE, which is a list of arguments that will
3234 be passed to each base. We do not introduce any new pack
3235 expansion nodes into the TREE_VALUE (although it is possible
3236 that some already exist), because the TREE_PURPOSE and
3237 TREE_VALUE all need to be expanded together with the same
3238 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3239 resulting TREE_PURPOSE will mention the parameter packs in
3240 both the bases and the arguments to the bases. */
3241 tree purpose;
3242 tree value;
3243 tree parameter_packs = NULL_TREE;
3244
3245 /* Determine which parameter packs will be used by the base
3246 class expansion. */
3247 ppd.visited = pointer_set_create ();
3248 ppd.parameter_packs = &parameter_packs;
3249 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3250 &ppd, ppd.visited);
3251
3252 if (parameter_packs == NULL_TREE)
3253 {
3254 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3255 pointer_set_destroy (ppd.visited);
3256 return error_mark_node;
3257 }
3258
3259 if (TREE_VALUE (arg) != void_type_node)
3260 {
3261 /* Collect the sets of parameter packs used in each of the
3262 initialization arguments. */
3263 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3264 {
3265 /* Determine which parameter packs will be expanded in this
3266 argument. */
3267 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3268 &ppd, ppd.visited);
3269 }
3270 }
3271
3272 pointer_set_destroy (ppd.visited);
3273
3274 /* Create the pack expansion type for the base type. */
3275 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3276 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3277 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3278
3279 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3280 they will rarely be compared to anything. */
3281 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3282
3283 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3284 }
3285
3286 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3287 for_types = true;
3288
3289 /* Build the PACK_EXPANSION_* node. */
3290 result = for_types
3291 ? cxx_make_type (TYPE_PACK_EXPANSION)
3292 : make_node (EXPR_PACK_EXPANSION);
3293 SET_PACK_EXPANSION_PATTERN (result, arg);
3294 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3295 {
3296 /* Propagate type and const-expression information. */
3297 TREE_TYPE (result) = TREE_TYPE (arg);
3298 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3299 }
3300 else
3301 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3302 they will rarely be compared to anything. */
3303 SET_TYPE_STRUCTURAL_EQUALITY (result);
3304
3305 /* Determine which parameter packs will be expanded. */
3306 ppd.parameter_packs = &parameter_packs;
3307 ppd.visited = pointer_set_create ();
3308 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3309 pointer_set_destroy (ppd.visited);
3310
3311 /* Make sure we found some parameter packs. */
3312 if (parameter_packs == NULL_TREE)
3313 {
3314 if (TYPE_P (arg))
3315 error ("expansion pattern %<%T%> contains no argument packs", arg);
3316 else
3317 error ("expansion pattern %<%E%> contains no argument packs", arg);
3318 return error_mark_node;
3319 }
3320 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3321
3322 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3323
3324 return result;
3325 }
3326
3327 /* Checks T for any "bare" parameter packs, which have not yet been
3328 expanded, and issues an error if any are found. This operation can
3329 only be done on full expressions or types (e.g., an expression
3330 statement, "if" condition, etc.), because we could have expressions like:
3331
3332 foo(f(g(h(args)))...)
3333
3334 where "args" is a parameter pack. check_for_bare_parameter_packs
3335 should not be called for the subexpressions args, h(args),
3336 g(h(args)), or f(g(h(args))), because we would produce erroneous
3337 error messages.
3338
3339 Returns TRUE and emits an error if there were bare parameter packs,
3340 returns FALSE otherwise. */
3341 bool
3342 check_for_bare_parameter_packs (tree t)
3343 {
3344 tree parameter_packs = NULL_TREE;
3345 struct find_parameter_pack_data ppd;
3346
3347 if (!processing_template_decl || !t || t == error_mark_node)
3348 return false;
3349
3350 if (TREE_CODE (t) == TYPE_DECL)
3351 t = TREE_TYPE (t);
3352
3353 ppd.parameter_packs = &parameter_packs;
3354 ppd.visited = pointer_set_create ();
3355 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3356 pointer_set_destroy (ppd.visited);
3357
3358 if (parameter_packs)
3359 {
3360 error ("parameter packs not expanded with %<...%>:");
3361 while (parameter_packs)
3362 {
3363 tree pack = TREE_VALUE (parameter_packs);
3364 tree name = NULL_TREE;
3365
3366 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3367 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3368 name = TYPE_NAME (pack);
3369 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3370 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3371 else
3372 name = DECL_NAME (pack);
3373
3374 if (name)
3375 inform (input_location, " %qD", name);
3376 else
3377 inform (input_location, " <anonymous>");
3378
3379 parameter_packs = TREE_CHAIN (parameter_packs);
3380 }
3381
3382 return true;
3383 }
3384
3385 return false;
3386 }
3387
3388 /* Expand any parameter packs that occur in the template arguments in
3389 ARGS. */
3390 tree
3391 expand_template_argument_pack (tree args)
3392 {
3393 tree result_args = NULL_TREE;
3394 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3395 int num_result_args = -1;
3396 int non_default_args_count = -1;
3397
3398 /* First, determine if we need to expand anything, and the number of
3399 slots we'll need. */
3400 for (in_arg = 0; in_arg < nargs; ++in_arg)
3401 {
3402 tree arg = TREE_VEC_ELT (args, in_arg);
3403 if (arg == NULL_TREE)
3404 return args;
3405 if (ARGUMENT_PACK_P (arg))
3406 {
3407 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3408 if (num_result_args < 0)
3409 num_result_args = in_arg + num_packed;
3410 else
3411 num_result_args += num_packed;
3412 }
3413 else
3414 {
3415 if (num_result_args >= 0)
3416 num_result_args++;
3417 }
3418 }
3419
3420 /* If no expansion is necessary, we're done. */
3421 if (num_result_args < 0)
3422 return args;
3423
3424 /* Expand arguments. */
3425 result_args = make_tree_vec (num_result_args);
3426 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3427 non_default_args_count =
3428 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3429 for (in_arg = 0; in_arg < nargs; ++in_arg)
3430 {
3431 tree arg = TREE_VEC_ELT (args, in_arg);
3432 if (ARGUMENT_PACK_P (arg))
3433 {
3434 tree packed = ARGUMENT_PACK_ARGS (arg);
3435 int i, num_packed = TREE_VEC_LENGTH (packed);
3436 for (i = 0; i < num_packed; ++i, ++out_arg)
3437 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3438 if (non_default_args_count > 0)
3439 non_default_args_count += num_packed;
3440 }
3441 else
3442 {
3443 TREE_VEC_ELT (result_args, out_arg) = arg;
3444 ++out_arg;
3445 }
3446 }
3447 if (non_default_args_count >= 0)
3448 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3449 return result_args;
3450 }
3451
3452 /* Checks if DECL shadows a template parameter.
3453
3454 [temp.local]: A template-parameter shall not be redeclared within its
3455 scope (including nested scopes).
3456
3457 Emits an error and returns TRUE if the DECL shadows a parameter,
3458 returns FALSE otherwise. */
3459
3460 bool
3461 check_template_shadow (tree decl)
3462 {
3463 tree olddecl;
3464
3465 /* If we're not in a template, we can't possibly shadow a template
3466 parameter. */
3467 if (!current_template_parms)
3468 return true;
3469
3470 /* Figure out what we're shadowing. */
3471 if (TREE_CODE (decl) == OVERLOAD)
3472 decl = OVL_CURRENT (decl);
3473 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3474
3475 /* If there's no previous binding for this name, we're not shadowing
3476 anything, let alone a template parameter. */
3477 if (!olddecl)
3478 return true;
3479
3480 /* If we're not shadowing a template parameter, we're done. Note
3481 that OLDDECL might be an OVERLOAD (or perhaps even an
3482 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3483 node. */
3484 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3485 return true;
3486
3487 /* We check for decl != olddecl to avoid bogus errors for using a
3488 name inside a class. We check TPFI to avoid duplicate errors for
3489 inline member templates. */
3490 if (decl == olddecl
3491 || TEMPLATE_PARMS_FOR_INLINE (current_template_parms))
3492 return true;
3493
3494 error ("declaration of %q+#D", decl);
3495 error (" shadows template parm %q+#D", olddecl);
3496 return false;
3497 }
3498
3499 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3500 ORIG_LEVEL, DECL, and TYPE. */
3501
3502 static tree
3503 build_template_parm_index (int index,
3504 int level,
3505 int orig_level,
3506 tree decl,
3507 tree type)
3508 {
3509 tree t = make_node (TEMPLATE_PARM_INDEX);
3510 TEMPLATE_PARM_IDX (t) = index;
3511 TEMPLATE_PARM_LEVEL (t) = level;
3512 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3513 TEMPLATE_PARM_DECL (t) = decl;
3514 TREE_TYPE (t) = type;
3515 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3516 TREE_READONLY (t) = TREE_READONLY (decl);
3517
3518 return t;
3519 }
3520
3521 /* Find the canonical type parameter for the given template type
3522 parameter. Returns the canonical type parameter, which may be TYPE
3523 if no such parameter existed. */
3524
3525 static tree
3526 canonical_type_parameter (tree type)
3527 {
3528 tree list;
3529 int idx = TEMPLATE_TYPE_IDX (type);
3530 if (!canonical_template_parms)
3531 vec_alloc (canonical_template_parms, idx+1);
3532
3533 while (canonical_template_parms->length () <= (unsigned)idx)
3534 vec_safe_push (canonical_template_parms, NULL_TREE);
3535
3536 list = (*canonical_template_parms)[idx];
3537 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3538 list = TREE_CHAIN (list);
3539
3540 if (list)
3541 return TREE_VALUE (list);
3542 else
3543 {
3544 (*canonical_template_parms)[idx]
3545 = tree_cons (NULL_TREE, type,
3546 (*canonical_template_parms)[idx]);
3547 return type;
3548 }
3549 }
3550
3551 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3552 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3553 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3554 new one is created. */
3555
3556 static tree
3557 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3558 tsubst_flags_t complain)
3559 {
3560 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3561 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3562 != TEMPLATE_PARM_LEVEL (index) - levels)
3563 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3564 {
3565 tree orig_decl = TEMPLATE_PARM_DECL (index);
3566 tree decl, t;
3567
3568 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3569 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3570 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3571 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3572 DECL_ARTIFICIAL (decl) = 1;
3573 SET_DECL_TEMPLATE_PARM_P (decl);
3574
3575 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3576 TEMPLATE_PARM_LEVEL (index) - levels,
3577 TEMPLATE_PARM_ORIG_LEVEL (index),
3578 decl, type);
3579 TEMPLATE_PARM_DESCENDANTS (index) = t;
3580 TEMPLATE_PARM_PARAMETER_PACK (t)
3581 = TEMPLATE_PARM_PARAMETER_PACK (index);
3582
3583 /* Template template parameters need this. */
3584 if (TREE_CODE (decl) == TEMPLATE_DECL)
3585 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3586 (DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index)),
3587 args, complain);
3588 }
3589
3590 return TEMPLATE_PARM_DESCENDANTS (index);
3591 }
3592
3593 /* Process information from new template parameter PARM and append it
3594 to the LIST being built. This new parameter is a non-type
3595 parameter iff IS_NON_TYPE is true. This new parameter is a
3596 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
3597 is in PARM_LOC. NUM_TEMPLATE_PARMS is the size of the template
3598 parameter list PARM belongs to. This is used used to create a
3599 proper canonical type for the type of PARM that is to be created,
3600 iff PARM is a type. If the size is not known, this parameter shall
3601 be set to 0. */
3602
3603 tree
3604 process_template_parm (tree list, location_t parm_loc, tree parm,
3605 bool is_non_type, bool is_parameter_pack)
3606 {
3607 tree decl = 0;
3608 tree defval;
3609 tree err_parm_list;
3610 int idx = 0;
3611
3612 gcc_assert (TREE_CODE (parm) == TREE_LIST);
3613 defval = TREE_PURPOSE (parm);
3614
3615 if (list)
3616 {
3617 tree p = tree_last (list);
3618
3619 if (p && TREE_VALUE (p) != error_mark_node)
3620 {
3621 p = TREE_VALUE (p);
3622 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
3623 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
3624 else
3625 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
3626 }
3627
3628 ++idx;
3629 }
3630 else
3631 idx = 0;
3632
3633 if (is_non_type)
3634 {
3635 parm = TREE_VALUE (parm);
3636
3637 SET_DECL_TEMPLATE_PARM_P (parm);
3638
3639 if (TREE_TYPE (parm) == error_mark_node)
3640 {
3641 err_parm_list = build_tree_list (defval, parm);
3642 TREE_VALUE (err_parm_list) = error_mark_node;
3643 return chainon (list, err_parm_list);
3644 }
3645 else
3646 {
3647 /* [temp.param]
3648
3649 The top-level cv-qualifiers on the template-parameter are
3650 ignored when determining its type. */
3651 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
3652 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
3653 {
3654 err_parm_list = build_tree_list (defval, parm);
3655 TREE_VALUE (err_parm_list) = error_mark_node;
3656 return chainon (list, err_parm_list);
3657 }
3658
3659 if (uses_parameter_packs (TREE_TYPE (parm)) && !is_parameter_pack)
3660 {
3661 /* This template parameter is not a parameter pack, but it
3662 should be. Complain about "bare" parameter packs. */
3663 check_for_bare_parameter_packs (TREE_TYPE (parm));
3664
3665 /* Recover by calling this a parameter pack. */
3666 is_parameter_pack = true;
3667 }
3668 }
3669
3670 /* A template parameter is not modifiable. */
3671 TREE_CONSTANT (parm) = 1;
3672 TREE_READONLY (parm) = 1;
3673 decl = build_decl (parm_loc,
3674 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
3675 TREE_CONSTANT (decl) = 1;
3676 TREE_READONLY (decl) = 1;
3677 DECL_INITIAL (parm) = DECL_INITIAL (decl)
3678 = build_template_parm_index (idx, processing_template_decl,
3679 processing_template_decl,
3680 decl, TREE_TYPE (parm));
3681
3682 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
3683 = is_parameter_pack;
3684 }
3685 else
3686 {
3687 tree t;
3688 parm = TREE_VALUE (TREE_VALUE (parm));
3689
3690 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
3691 {
3692 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
3693 /* This is for distinguishing between real templates and template
3694 template parameters */
3695 TREE_TYPE (parm) = t;
3696 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
3697 decl = parm;
3698 }
3699 else
3700 {
3701 t = cxx_make_type (TEMPLATE_TYPE_PARM);
3702 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
3703 decl = build_decl (parm_loc,
3704 TYPE_DECL, parm, t);
3705 }
3706
3707 TYPE_NAME (t) = decl;
3708 TYPE_STUB_DECL (t) = decl;
3709 parm = decl;
3710 TEMPLATE_TYPE_PARM_INDEX (t)
3711 = build_template_parm_index (idx, processing_template_decl,
3712 processing_template_decl,
3713 decl, TREE_TYPE (parm));
3714 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
3715 TYPE_CANONICAL (t) = canonical_type_parameter (t);
3716 }
3717 DECL_ARTIFICIAL (decl) = 1;
3718 SET_DECL_TEMPLATE_PARM_P (decl);
3719 pushdecl (decl);
3720 parm = build_tree_list (defval, parm);
3721 return chainon (list, parm);
3722 }
3723
3724 /* The end of a template parameter list has been reached. Process the
3725 tree list into a parameter vector, converting each parameter into a more
3726 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
3727 as PARM_DECLs. */
3728
3729 tree
3730 end_template_parm_list (tree parms)
3731 {
3732 int nparms;
3733 tree parm, next;
3734 tree saved_parmlist = make_tree_vec (list_length (parms));
3735
3736 current_template_parms
3737 = tree_cons (size_int (processing_template_decl),
3738 saved_parmlist, current_template_parms);
3739
3740 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
3741 {
3742 next = TREE_CHAIN (parm);
3743 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
3744 TREE_CHAIN (parm) = NULL_TREE;
3745 }
3746
3747 --processing_template_parmlist;
3748
3749 return saved_parmlist;
3750 }
3751
3752 /* end_template_decl is called after a template declaration is seen. */
3753
3754 void
3755 end_template_decl (void)
3756 {
3757 reset_specialization ();
3758
3759 if (! processing_template_decl)
3760 return;
3761
3762 /* This matches the pushlevel in begin_template_parm_list. */
3763 finish_scope ();
3764
3765 --processing_template_decl;
3766 current_template_parms = TREE_CHAIN (current_template_parms);
3767 }
3768
3769 /* Takes a TREE_LIST representing a template parameter and convert it
3770 into an argument suitable to be passed to the type substitution
3771 functions. Note that If the TREE_LIST contains an error_mark
3772 node, the returned argument is error_mark_node. */
3773
3774 static tree
3775 template_parm_to_arg (tree t)
3776 {
3777
3778 if (t == NULL_TREE
3779 || TREE_CODE (t) != TREE_LIST)
3780 return t;
3781
3782 if (error_operand_p (TREE_VALUE (t)))
3783 return error_mark_node;
3784
3785 t = TREE_VALUE (t);
3786
3787 if (TREE_CODE (t) == TYPE_DECL
3788 || TREE_CODE (t) == TEMPLATE_DECL)
3789 {
3790 t = TREE_TYPE (t);
3791
3792 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3793 {
3794 /* Turn this argument into a TYPE_ARGUMENT_PACK
3795 with a single element, which expands T. */
3796 tree vec = make_tree_vec (1);
3797 #ifdef ENABLE_CHECKING
3798 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3799 (vec, TREE_VEC_LENGTH (vec));
3800 #endif
3801 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3802
3803 t = cxx_make_type (TYPE_ARGUMENT_PACK);
3804 SET_ARGUMENT_PACK_ARGS (t, vec);
3805 }
3806 }
3807 else
3808 {
3809 t = DECL_INITIAL (t);
3810
3811 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3812 {
3813 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
3814 with a single element, which expands T. */
3815 tree vec = make_tree_vec (1);
3816 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
3817 #ifdef ENABLE_CHECKING
3818 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3819 (vec, TREE_VEC_LENGTH (vec));
3820 #endif
3821 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3822
3823 t = make_node (NONTYPE_ARGUMENT_PACK);
3824 SET_ARGUMENT_PACK_ARGS (t, vec);
3825 TREE_TYPE (t) = type;
3826 }
3827 }
3828 return t;
3829 }
3830
3831 /* Given a set of template parameters, return them as a set of template
3832 arguments. The template parameters are represented as a TREE_VEC, in
3833 the form documented in cp-tree.h for template arguments. */
3834
3835 static tree
3836 template_parms_to_args (tree parms)
3837 {
3838 tree header;
3839 tree args = NULL_TREE;
3840 int length = TMPL_PARMS_DEPTH (parms);
3841 int l = length;
3842
3843 /* If there is only one level of template parameters, we do not
3844 create a TREE_VEC of TREE_VECs. Instead, we return a single
3845 TREE_VEC containing the arguments. */
3846 if (length > 1)
3847 args = make_tree_vec (length);
3848
3849 for (header = parms; header; header = TREE_CHAIN (header))
3850 {
3851 tree a = copy_node (TREE_VALUE (header));
3852 int i;
3853
3854 TREE_TYPE (a) = NULL_TREE;
3855 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
3856 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
3857
3858 #ifdef ENABLE_CHECKING
3859 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
3860 #endif
3861
3862 if (length > 1)
3863 TREE_VEC_ELT (args, --l) = a;
3864 else
3865 args = a;
3866 }
3867
3868 if (length > 1 && TREE_VEC_ELT (args, 0) == NULL_TREE)
3869 /* This can happen for template parms of a template template
3870 parameter, e.g:
3871
3872 template<template<class T, class U> class TT> struct S;
3873
3874 Consider the level of the parms of TT; T and U both have
3875 level 2; TT has no template parm of level 1. So in this case
3876 the first element of full_template_args is NULL_TREE. If we
3877 leave it like this TMPL_ARGS_DEPTH on args returns 1 instead
3878 of 2. This will make tsubst wrongly consider that T and U
3879 have level 1. Instead, let's create a dummy vector as the
3880 first element of full_template_args so that TMPL_ARGS_DEPTH
3881 returns the correct depth for args. */
3882 TREE_VEC_ELT (args, 0) = make_tree_vec (1);
3883 return args;
3884 }
3885
3886 /* Within the declaration of a template, return the currently active
3887 template parameters as an argument TREE_VEC. */
3888
3889 static tree
3890 current_template_args (void)
3891 {
3892 return template_parms_to_args (current_template_parms);
3893 }
3894
3895 /* Update the declared TYPE by doing any lookups which were thought to be
3896 dependent, but are not now that we know the SCOPE of the declarator. */
3897
3898 tree
3899 maybe_update_decl_type (tree orig_type, tree scope)
3900 {
3901 tree type = orig_type;
3902
3903 if (type == NULL_TREE)
3904 return type;
3905
3906 if (TREE_CODE (orig_type) == TYPE_DECL)
3907 type = TREE_TYPE (type);
3908
3909 if (scope && TYPE_P (scope) && dependent_type_p (scope)
3910 && dependent_type_p (type)
3911 /* Don't bother building up the args in this case. */
3912 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
3913 {
3914 /* tsubst in the args corresponding to the template parameters,
3915 including auto if present. Most things will be unchanged, but
3916 make_typename_type and tsubst_qualified_id will resolve
3917 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
3918 tree args = current_template_args ();
3919 tree auto_node = type_uses_auto (type);
3920 tree pushed;
3921 if (auto_node)
3922 {
3923 tree auto_vec = make_tree_vec (1);
3924 TREE_VEC_ELT (auto_vec, 0) = auto_node;
3925 args = add_to_template_args (args, auto_vec);
3926 }
3927 pushed = push_scope (scope);
3928 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
3929 if (pushed)
3930 pop_scope (scope);
3931 }
3932
3933 if (type == error_mark_node)
3934 return orig_type;
3935
3936 if (TREE_CODE (orig_type) == TYPE_DECL)
3937 {
3938 if (same_type_p (type, TREE_TYPE (orig_type)))
3939 type = orig_type;
3940 else
3941 type = TYPE_NAME (type);
3942 }
3943 return type;
3944 }
3945
3946 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
3947 template PARMS. If MEMBER_TEMPLATE_P is true, the new template is
3948 a member template. Used by push_template_decl below. */
3949
3950 static tree
3951 build_template_decl (tree decl, tree parms, bool member_template_p)
3952 {
3953 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
3954 DECL_TEMPLATE_PARMS (tmpl) = parms;
3955 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
3956 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
3957 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
3958
3959 return tmpl;
3960 }
3961
3962 struct template_parm_data
3963 {
3964 /* The level of the template parameters we are currently
3965 processing. */
3966 int level;
3967
3968 /* The index of the specialization argument we are currently
3969 processing. */
3970 int current_arg;
3971
3972 /* An array whose size is the number of template parameters. The
3973 elements are nonzero if the parameter has been used in any one
3974 of the arguments processed so far. */
3975 int* parms;
3976
3977 /* An array whose size is the number of template arguments. The
3978 elements are nonzero if the argument makes use of template
3979 parameters of this level. */
3980 int* arg_uses_template_parms;
3981 };
3982
3983 /* Subroutine of push_template_decl used to see if each template
3984 parameter in a partial specialization is used in the explicit
3985 argument list. If T is of the LEVEL given in DATA (which is
3986 treated as a template_parm_data*), then DATA->PARMS is marked
3987 appropriately. */
3988
3989 static int
3990 mark_template_parm (tree t, void* data)
3991 {
3992 int level;
3993 int idx;
3994 struct template_parm_data* tpd = (struct template_parm_data*) data;
3995
3996 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
3997 {
3998 level = TEMPLATE_PARM_LEVEL (t);
3999 idx = TEMPLATE_PARM_IDX (t);
4000 }
4001 else
4002 {
4003 level = TEMPLATE_TYPE_LEVEL (t);
4004 idx = TEMPLATE_TYPE_IDX (t);
4005 }
4006
4007 if (level == tpd->level)
4008 {
4009 tpd->parms[idx] = 1;
4010 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4011 }
4012
4013 /* Return zero so that for_each_template_parm will continue the
4014 traversal of the tree; we want to mark *every* template parm. */
4015 return 0;
4016 }
4017
4018 /* Process the partial specialization DECL. */
4019
4020 static tree
4021 process_partial_specialization (tree decl)
4022 {
4023 tree type = TREE_TYPE (decl);
4024 tree maintmpl = CLASSTYPE_TI_TEMPLATE (type);
4025 tree specargs = CLASSTYPE_TI_ARGS (type);
4026 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4027 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4028 tree inner_parms;
4029 tree inst;
4030 int nargs = TREE_VEC_LENGTH (inner_args);
4031 int ntparms;
4032 int i;
4033 bool did_error_intro = false;
4034 struct template_parm_data tpd;
4035 struct template_parm_data tpd2;
4036
4037 gcc_assert (current_template_parms);
4038
4039 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4040 ntparms = TREE_VEC_LENGTH (inner_parms);
4041
4042 /* We check that each of the template parameters given in the
4043 partial specialization is used in the argument list to the
4044 specialization. For example:
4045
4046 template <class T> struct S;
4047 template <class T> struct S<T*>;
4048
4049 The second declaration is OK because `T*' uses the template
4050 parameter T, whereas
4051
4052 template <class T> struct S<int>;
4053
4054 is no good. Even trickier is:
4055
4056 template <class T>
4057 struct S1
4058 {
4059 template <class U>
4060 struct S2;
4061 template <class U>
4062 struct S2<T>;
4063 };
4064
4065 The S2<T> declaration is actually invalid; it is a
4066 full-specialization. Of course,
4067
4068 template <class U>
4069 struct S2<T (*)(U)>;
4070
4071 or some such would have been OK. */
4072 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4073 tpd.parms = XALLOCAVEC (int, ntparms);
4074 memset (tpd.parms, 0, sizeof (int) * ntparms);
4075
4076 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4077 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4078 for (i = 0; i < nargs; ++i)
4079 {
4080 tpd.current_arg = i;
4081 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4082 &mark_template_parm,
4083 &tpd,
4084 NULL,
4085 /*include_nondeduced_p=*/false);
4086 }
4087 for (i = 0; i < ntparms; ++i)
4088 if (tpd.parms[i] == 0)
4089 {
4090 /* One of the template parms was not used in the
4091 specialization. */
4092 if (!did_error_intro)
4093 {
4094 error ("template parameters not used in partial specialization:");
4095 did_error_intro = true;
4096 }
4097
4098 error (" %qD", TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4099 }
4100
4101 if (did_error_intro)
4102 return error_mark_node;
4103
4104 /* [temp.class.spec]
4105
4106 The argument list of the specialization shall not be identical to
4107 the implicit argument list of the primary template. */
4108 if (comp_template_args
4109 (inner_args,
4110 INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE
4111 (maintmpl)))))
4112 error ("partial specialization %qT does not specialize any template arguments", type);
4113
4114 /* A partial specialization that replaces multiple parameters of the
4115 primary template with a pack expansion is less specialized for those
4116 parameters. */
4117 if (nargs < DECL_NTPARMS (maintmpl))
4118 {
4119 error ("partial specialization is not more specialized than the "
4120 "primary template because it replaces multiple parameters "
4121 "with a pack expansion");
4122 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4123 return decl;
4124 }
4125
4126 /* [temp.class.spec]
4127
4128 A partially specialized non-type argument expression shall not
4129 involve template parameters of the partial specialization except
4130 when the argument expression is a simple identifier.
4131
4132 The type of a template parameter corresponding to a specialized
4133 non-type argument shall not be dependent on a parameter of the
4134 specialization.
4135
4136 Also, we verify that pack expansions only occur at the
4137 end of the argument list. */
4138 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4139 tpd2.parms = 0;
4140 for (i = 0; i < nargs; ++i)
4141 {
4142 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4143 tree arg = TREE_VEC_ELT (inner_args, i);
4144 tree packed_args = NULL_TREE;
4145 int j, len = 1;
4146
4147 if (ARGUMENT_PACK_P (arg))
4148 {
4149 /* Extract the arguments from the argument pack. We'll be
4150 iterating over these in the following loop. */
4151 packed_args = ARGUMENT_PACK_ARGS (arg);
4152 len = TREE_VEC_LENGTH (packed_args);
4153 }
4154
4155 for (j = 0; j < len; j++)
4156 {
4157 if (packed_args)
4158 /* Get the Jth argument in the parameter pack. */
4159 arg = TREE_VEC_ELT (packed_args, j);
4160
4161 if (PACK_EXPANSION_P (arg))
4162 {
4163 /* Pack expansions must come at the end of the
4164 argument list. */
4165 if ((packed_args && j < len - 1)
4166 || (!packed_args && i < nargs - 1))
4167 {
4168 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4169 error ("parameter pack argument %qE must be at the "
4170 "end of the template argument list", arg);
4171 else
4172 error ("parameter pack argument %qT must be at the "
4173 "end of the template argument list", arg);
4174 }
4175 }
4176
4177 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4178 /* We only care about the pattern. */
4179 arg = PACK_EXPANSION_PATTERN (arg);
4180
4181 if (/* These first two lines are the `non-type' bit. */
4182 !TYPE_P (arg)
4183 && TREE_CODE (arg) != TEMPLATE_DECL
4184 /* This next line is the `argument expression is not just a
4185 simple identifier' condition and also the `specialized
4186 non-type argument' bit. */
4187 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX)
4188 {
4189 if ((!packed_args && tpd.arg_uses_template_parms[i])
4190 || (packed_args && uses_template_parms (arg)))
4191 error ("template argument %qE involves template parameter(s)",
4192 arg);
4193 else
4194 {
4195 /* Look at the corresponding template parameter,
4196 marking which template parameters its type depends
4197 upon. */
4198 tree type = TREE_TYPE (parm);
4199
4200 if (!tpd2.parms)
4201 {
4202 /* We haven't yet initialized TPD2. Do so now. */
4203 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4204 /* The number of parameters here is the number in the
4205 main template, which, as checked in the assertion
4206 above, is NARGS. */
4207 tpd2.parms = XALLOCAVEC (int, nargs);
4208 tpd2.level =
4209 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4210 }
4211
4212 /* Mark the template parameters. But this time, we're
4213 looking for the template parameters of the main
4214 template, not in the specialization. */
4215 tpd2.current_arg = i;
4216 tpd2.arg_uses_template_parms[i] = 0;
4217 memset (tpd2.parms, 0, sizeof (int) * nargs);
4218 for_each_template_parm (type,
4219 &mark_template_parm,
4220 &tpd2,
4221 NULL,
4222 /*include_nondeduced_p=*/false);
4223
4224 if (tpd2.arg_uses_template_parms [i])
4225 {
4226 /* The type depended on some template parameters.
4227 If they are fully specialized in the
4228 specialization, that's OK. */
4229 int j;
4230 int count = 0;
4231 for (j = 0; j < nargs; ++j)
4232 if (tpd2.parms[j] != 0
4233 && tpd.arg_uses_template_parms [j])
4234 ++count;
4235 if (count != 0)
4236 error_n (input_location, count,
4237 "type %qT of template argument %qE depends "
4238 "on a template parameter",
4239 "type %qT of template argument %qE depends "
4240 "on template parameters",
4241 type,
4242 arg);
4243 }
4244 }
4245 }
4246 }
4247 }
4248
4249 /* We should only get here once. */
4250 gcc_assert (!COMPLETE_TYPE_P (type));
4251
4252 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4253 = tree_cons (specargs, inner_parms,
4254 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4255 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4256
4257 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4258 inst = TREE_CHAIN (inst))
4259 {
4260 tree inst_type = TREE_VALUE (inst);
4261 if (COMPLETE_TYPE_P (inst_type)
4262 && CLASSTYPE_IMPLICIT_INSTANTIATION (inst_type))
4263 {
4264 tree spec = most_specialized_class (inst_type, maintmpl, tf_none);
4265 if (spec && TREE_TYPE (spec) == type)
4266 permerror (input_location,
4267 "partial specialization of %qT after instantiation "
4268 "of %qT", type, inst_type);
4269 }
4270 }
4271
4272 return decl;
4273 }
4274
4275 /* Check that a template declaration's use of default arguments and
4276 parameter packs is not invalid. Here, PARMS are the template
4277 parameters. IS_PRIMARY is true if DECL is the thing declared by
4278 a primary template. IS_PARTIAL is true if DECL is a partial
4279 specialization.
4280
4281 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4282 declaration (but not a definition); 1 indicates a declaration, 2
4283 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4284 emitted for extraneous default arguments.
4285
4286 Returns TRUE if there were no errors found, FALSE otherwise. */
4287
4288 bool
4289 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4290 bool is_partial, int is_friend_decl)
4291 {
4292 const char *msg;
4293 int last_level_to_check;
4294 tree parm_level;
4295 bool no_errors = true;
4296
4297 /* [temp.param]
4298
4299 A default template-argument shall not be specified in a
4300 function template declaration or a function template definition, nor
4301 in the template-parameter-list of the definition of a member of a
4302 class template. */
4303
4304 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL)
4305 /* You can't have a function template declaration in a local
4306 scope, nor you can you define a member of a class template in a
4307 local scope. */
4308 return true;
4309
4310 if (TREE_CODE (decl) == TYPE_DECL
4311 && TREE_TYPE (decl)
4312 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4313 /* A lambda doesn't have an explicit declaration; don't complain
4314 about the parms of the enclosing class. */
4315 return true;
4316
4317 if (current_class_type
4318 && !TYPE_BEING_DEFINED (current_class_type)
4319 && DECL_LANG_SPECIFIC (decl)
4320 && DECL_DECLARES_FUNCTION_P (decl)
4321 /* If this is either a friend defined in the scope of the class
4322 or a member function. */
4323 && (DECL_FUNCTION_MEMBER_P (decl)
4324 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4325 : DECL_FRIEND_CONTEXT (decl)
4326 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4327 : false)
4328 /* And, if it was a member function, it really was defined in
4329 the scope of the class. */
4330 && (!DECL_FUNCTION_MEMBER_P (decl)
4331 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4332 /* We already checked these parameters when the template was
4333 declared, so there's no need to do it again now. This function
4334 was defined in class scope, but we're processing it's body now
4335 that the class is complete. */
4336 return true;
4337
4338 /* Core issue 226 (C++0x only): the following only applies to class
4339 templates. */
4340 if (is_primary
4341 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4342 {
4343 /* [temp.param]
4344
4345 If a template-parameter has a default template-argument, all
4346 subsequent template-parameters shall have a default
4347 template-argument supplied. */
4348 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4349 {
4350 tree inner_parms = TREE_VALUE (parm_level);
4351 int ntparms = TREE_VEC_LENGTH (inner_parms);
4352 int seen_def_arg_p = 0;
4353 int i;
4354
4355 for (i = 0; i < ntparms; ++i)
4356 {
4357 tree parm = TREE_VEC_ELT (inner_parms, i);
4358
4359 if (parm == error_mark_node)
4360 continue;
4361
4362 if (TREE_PURPOSE (parm))
4363 seen_def_arg_p = 1;
4364 else if (seen_def_arg_p
4365 && !template_parameter_pack_p (TREE_VALUE (parm)))
4366 {
4367 error ("no default argument for %qD", TREE_VALUE (parm));
4368 /* For better subsequent error-recovery, we indicate that
4369 there should have been a default argument. */
4370 TREE_PURPOSE (parm) = error_mark_node;
4371 no_errors = false;
4372 }
4373 else if (!is_partial
4374 && !is_friend_decl
4375 /* Don't complain about an enclosing partial
4376 specialization. */
4377 && parm_level == parms
4378 && TREE_CODE (decl) == TYPE_DECL
4379 && i < ntparms - 1
4380 && template_parameter_pack_p (TREE_VALUE (parm)))
4381 {
4382 /* A primary class template can only have one
4383 parameter pack, at the end of the template
4384 parameter list. */
4385
4386 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL)
4387 error ("parameter pack %qE must be at the end of the"
4388 " template parameter list", TREE_VALUE (parm));
4389 else
4390 error ("parameter pack %qT must be at the end of the"
4391 " template parameter list",
4392 TREE_TYPE (TREE_VALUE (parm)));
4393
4394 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4395 = error_mark_node;
4396 no_errors = false;
4397 }
4398 }
4399 }
4400 }
4401
4402 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4403 || is_partial
4404 || !is_primary
4405 || is_friend_decl)
4406 /* For an ordinary class template, default template arguments are
4407 allowed at the innermost level, e.g.:
4408 template <class T = int>
4409 struct S {};
4410 but, in a partial specialization, they're not allowed even
4411 there, as we have in [temp.class.spec]:
4412
4413 The template parameter list of a specialization shall not
4414 contain default template argument values.
4415
4416 So, for a partial specialization, or for a function template
4417 (in C++98/C++03), we look at all of them. */
4418 ;
4419 else
4420 /* But, for a primary class template that is not a partial
4421 specialization we look at all template parameters except the
4422 innermost ones. */
4423 parms = TREE_CHAIN (parms);
4424
4425 /* Figure out what error message to issue. */
4426 if (is_friend_decl == 2)
4427 msg = G_("default template arguments may not be used in function template "
4428 "friend re-declaration");
4429 else if (is_friend_decl)
4430 msg = G_("default template arguments may not be used in function template "
4431 "friend declarations");
4432 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4433 msg = G_("default template arguments may not be used in function templates "
4434 "without -std=c++11 or -std=gnu++11");
4435 else if (is_partial)
4436 msg = G_("default template arguments may not be used in "
4437 "partial specializations");
4438 else
4439 msg = G_("default argument for template parameter for class enclosing %qD");
4440
4441 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4442 /* If we're inside a class definition, there's no need to
4443 examine the parameters to the class itself. On the one
4444 hand, they will be checked when the class is defined, and,
4445 on the other, default arguments are valid in things like:
4446 template <class T = double>
4447 struct S { template <class U> void f(U); };
4448 Here the default argument for `S' has no bearing on the
4449 declaration of `f'. */
4450 last_level_to_check = template_class_depth (current_class_type) + 1;
4451 else
4452 /* Check everything. */
4453 last_level_to_check = 0;
4454
4455 for (parm_level = parms;
4456 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4457 parm_level = TREE_CHAIN (parm_level))
4458 {
4459 tree inner_parms = TREE_VALUE (parm_level);
4460 int i;
4461 int ntparms;
4462
4463 ntparms = TREE_VEC_LENGTH (inner_parms);
4464 for (i = 0; i < ntparms; ++i)
4465 {
4466 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4467 continue;
4468
4469 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4470 {
4471 if (msg)
4472 {
4473 no_errors = false;
4474 if (is_friend_decl == 2)
4475 return no_errors;
4476
4477 error (msg, decl);
4478 msg = 0;
4479 }
4480
4481 /* Clear out the default argument so that we are not
4482 confused later. */
4483 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
4484 }
4485 }
4486
4487 /* At this point, if we're still interested in issuing messages,
4488 they must apply to classes surrounding the object declared. */
4489 if (msg)
4490 msg = G_("default argument for template parameter for class "
4491 "enclosing %qD");
4492 }
4493
4494 return no_errors;
4495 }
4496
4497 /* Worker for push_template_decl_real, called via
4498 for_each_template_parm. DATA is really an int, indicating the
4499 level of the parameters we are interested in. If T is a template
4500 parameter of that level, return nonzero. */
4501
4502 static int
4503 template_parm_this_level_p (tree t, void* data)
4504 {
4505 int this_level = *(int *)data;
4506 int level;
4507
4508 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
4509 level = TEMPLATE_PARM_LEVEL (t);
4510 else
4511 level = TEMPLATE_TYPE_LEVEL (t);
4512 return level == this_level;
4513 }
4514
4515 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
4516 parameters given by current_template_args, or reuses a
4517 previously existing one, if appropriate. Returns the DECL, or an
4518 equivalent one, if it is replaced via a call to duplicate_decls.
4519
4520 If IS_FRIEND is true, DECL is a friend declaration. */
4521
4522 tree
4523 push_template_decl_real (tree decl, bool is_friend)
4524 {
4525 tree tmpl;
4526 tree args;
4527 tree info;
4528 tree ctx;
4529 bool is_primary;
4530 bool is_partial;
4531 int new_template_p = 0;
4532 /* True if the template is a member template, in the sense of
4533 [temp.mem]. */
4534 bool member_template_p = false;
4535
4536 if (decl == error_mark_node || !current_template_parms)
4537 return error_mark_node;
4538
4539 /* See if this is a partial specialization. */
4540 is_partial = (DECL_IMPLICIT_TYPEDEF_P (decl)
4541 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
4542 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)));
4543
4544 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
4545 is_friend = true;
4546
4547 if (is_friend)
4548 /* For a friend, we want the context of the friend function, not
4549 the type of which it is a friend. */
4550 ctx = CP_DECL_CONTEXT (decl);
4551 else if (CP_DECL_CONTEXT (decl)
4552 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
4553 /* In the case of a virtual function, we want the class in which
4554 it is defined. */
4555 ctx = CP_DECL_CONTEXT (decl);
4556 else
4557 /* Otherwise, if we're currently defining some class, the DECL
4558 is assumed to be a member of the class. */
4559 ctx = current_scope ();
4560
4561 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
4562 ctx = NULL_TREE;
4563
4564 if (!DECL_CONTEXT (decl))
4565 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
4566
4567 /* See if this is a primary template. */
4568 if (is_friend && ctx)
4569 /* A friend template that specifies a class context, i.e.
4570 template <typename T> friend void A<T>::f();
4571 is not primary. */
4572 is_primary = false;
4573 else
4574 is_primary = template_parm_scope_p ();
4575
4576 if (is_primary)
4577 {
4578 if (DECL_CLASS_SCOPE_P (decl))
4579 member_template_p = true;
4580 if (TREE_CODE (decl) == TYPE_DECL
4581 && ANON_AGGRNAME_P (DECL_NAME (decl)))
4582 {
4583 error ("template class without a name");
4584 return error_mark_node;
4585 }
4586 else if (TREE_CODE (decl) == FUNCTION_DECL)
4587 {
4588 if (DECL_DESTRUCTOR_P (decl))
4589 {
4590 /* [temp.mem]
4591
4592 A destructor shall not be a member template. */
4593 error ("destructor %qD declared as member template", decl);
4594 return error_mark_node;
4595 }
4596 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
4597 && (!prototype_p (TREE_TYPE (decl))
4598 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
4599 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
4600 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
4601 == void_list_node)))
4602 {
4603 /* [basic.stc.dynamic.allocation]
4604
4605 An allocation function can be a function
4606 template. ... Template allocation functions shall
4607 have two or more parameters. */
4608 error ("invalid template declaration of %qD", decl);
4609 return error_mark_node;
4610 }
4611 }
4612 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4613 && CLASS_TYPE_P (TREE_TYPE (decl)))
4614 /* OK */;
4615 else if (TREE_CODE (decl) == TYPE_DECL
4616 && TYPE_DECL_ALIAS_P (decl))
4617 /* alias-declaration */
4618 gcc_assert (!DECL_ARTIFICIAL (decl));
4619 else
4620 {
4621 error ("template declaration of %q#D", decl);
4622 return error_mark_node;
4623 }
4624 }
4625
4626 /* Check to see that the rules regarding the use of default
4627 arguments are not being violated. */
4628 check_default_tmpl_args (decl, current_template_parms,
4629 is_primary, is_partial, /*is_friend_decl=*/0);
4630
4631 /* Ensure that there are no parameter packs in the type of this
4632 declaration that have not been expanded. */
4633 if (TREE_CODE (decl) == FUNCTION_DECL)
4634 {
4635 /* Check each of the arguments individually to see if there are
4636 any bare parameter packs. */
4637 tree type = TREE_TYPE (decl);
4638 tree arg = DECL_ARGUMENTS (decl);
4639 tree argtype = TYPE_ARG_TYPES (type);
4640
4641 while (arg && argtype)
4642 {
4643 if (!FUNCTION_PARAMETER_PACK_P (arg)
4644 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
4645 {
4646 /* This is a PARM_DECL that contains unexpanded parameter
4647 packs. We have already complained about this in the
4648 check_for_bare_parameter_packs call, so just replace
4649 these types with ERROR_MARK_NODE. */
4650 TREE_TYPE (arg) = error_mark_node;
4651 TREE_VALUE (argtype) = error_mark_node;
4652 }
4653
4654 arg = DECL_CHAIN (arg);
4655 argtype = TREE_CHAIN (argtype);
4656 }
4657
4658 /* Check for bare parameter packs in the return type and the
4659 exception specifiers. */
4660 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
4661 /* Errors were already issued, set return type to int
4662 as the frontend doesn't expect error_mark_node as
4663 the return type. */
4664 TREE_TYPE (type) = integer_type_node;
4665 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
4666 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
4667 }
4668 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
4669 && TYPE_DECL_ALIAS_P (decl))
4670 ? DECL_ORIGINAL_TYPE (decl)
4671 : TREE_TYPE (decl)))
4672 {
4673 TREE_TYPE (decl) = error_mark_node;
4674 return error_mark_node;
4675 }
4676
4677 if (is_partial)
4678 return process_partial_specialization (decl);
4679
4680 args = current_template_args ();
4681
4682 if (!ctx
4683 || TREE_CODE (ctx) == FUNCTION_DECL
4684 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
4685 || (TREE_CODE (decl) == TYPE_DECL
4686 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4687 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
4688 {
4689 if (DECL_LANG_SPECIFIC (decl)
4690 && DECL_TEMPLATE_INFO (decl)
4691 && DECL_TI_TEMPLATE (decl))
4692 tmpl = DECL_TI_TEMPLATE (decl);
4693 /* If DECL is a TYPE_DECL for a class-template, then there won't
4694 be DECL_LANG_SPECIFIC. The information equivalent to
4695 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
4696 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4697 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
4698 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
4699 {
4700 /* Since a template declaration already existed for this
4701 class-type, we must be redeclaring it here. Make sure
4702 that the redeclaration is valid. */
4703 redeclare_class_template (TREE_TYPE (decl),
4704 current_template_parms);
4705 /* We don't need to create a new TEMPLATE_DECL; just use the
4706 one we already had. */
4707 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
4708 }
4709 else
4710 {
4711 tmpl = build_template_decl (decl, current_template_parms,
4712 member_template_p);
4713 new_template_p = 1;
4714
4715 if (DECL_LANG_SPECIFIC (decl)
4716 && DECL_TEMPLATE_SPECIALIZATION (decl))
4717 {
4718 /* A specialization of a member template of a template
4719 class. */
4720 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4721 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
4722 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
4723 }
4724 }
4725 }
4726 else
4727 {
4728 tree a, t, current, parms;
4729 int i;
4730 tree tinfo = get_template_info (decl);
4731
4732 if (!tinfo)
4733 {
4734 error ("template definition of non-template %q#D", decl);
4735 return error_mark_node;
4736 }
4737
4738 tmpl = TI_TEMPLATE (tinfo);
4739
4740 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
4741 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
4742 && DECL_TEMPLATE_SPECIALIZATION (decl)
4743 && DECL_MEMBER_TEMPLATE_P (tmpl))
4744 {
4745 tree new_tmpl;
4746
4747 /* The declaration is a specialization of a member
4748 template, declared outside the class. Therefore, the
4749 innermost template arguments will be NULL, so we
4750 replace them with the arguments determined by the
4751 earlier call to check_explicit_specialization. */
4752 args = DECL_TI_ARGS (decl);
4753
4754 new_tmpl
4755 = build_template_decl (decl, current_template_parms,
4756 member_template_p);
4757 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
4758 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
4759 DECL_TI_TEMPLATE (decl) = new_tmpl;
4760 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
4761 DECL_TEMPLATE_INFO (new_tmpl)
4762 = build_template_info (tmpl, args);
4763
4764 register_specialization (new_tmpl,
4765 most_general_template (tmpl),
4766 args,
4767 is_friend, 0);
4768 return decl;
4769 }
4770
4771 /* Make sure the template headers we got make sense. */
4772
4773 parms = DECL_TEMPLATE_PARMS (tmpl);
4774 i = TMPL_PARMS_DEPTH (parms);
4775 if (TMPL_ARGS_DEPTH (args) != i)
4776 {
4777 error ("expected %d levels of template parms for %q#D, got %d",
4778 i, decl, TMPL_ARGS_DEPTH (args));
4779 }
4780 else
4781 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
4782 {
4783 a = TMPL_ARGS_LEVEL (args, i);
4784 t = INNERMOST_TEMPLATE_PARMS (parms);
4785
4786 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
4787 {
4788 if (current == decl)
4789 error ("got %d template parameters for %q#D",
4790 TREE_VEC_LENGTH (a), decl);
4791 else
4792 error ("got %d template parameters for %q#T",
4793 TREE_VEC_LENGTH (a), current);
4794 error (" but %d required", TREE_VEC_LENGTH (t));
4795 /* Avoid crash in import_export_decl. */
4796 DECL_INTERFACE_KNOWN (decl) = 1;
4797 return error_mark_node;
4798 }
4799
4800 if (current == decl)
4801 current = ctx;
4802 else if (current == NULL_TREE)
4803 /* Can happen in erroneous input. */
4804 break;
4805 else
4806 current = get_containing_scope (current);
4807 }
4808
4809 /* Check that the parms are used in the appropriate qualifying scopes
4810 in the declarator. */
4811 if (!comp_template_args
4812 (TI_ARGS (tinfo),
4813 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
4814 {
4815 error ("\
4816 template arguments to %qD do not match original template %qD",
4817 decl, DECL_TEMPLATE_RESULT (tmpl));
4818 if (!uses_template_parms (TI_ARGS (tinfo)))
4819 inform (input_location, "use template<> for an explicit specialization");
4820 /* Avoid crash in import_export_decl. */
4821 DECL_INTERFACE_KNOWN (decl) = 1;
4822 return error_mark_node;
4823 }
4824 }
4825
4826 DECL_TEMPLATE_RESULT (tmpl) = decl;
4827 TREE_TYPE (tmpl) = TREE_TYPE (decl);
4828
4829 /* Push template declarations for global functions and types. Note
4830 that we do not try to push a global template friend declared in a
4831 template class; such a thing may well depend on the template
4832 parameters of the class. */
4833 if (new_template_p && !ctx
4834 && !(is_friend && template_class_depth (current_class_type) > 0))
4835 {
4836 tmpl = pushdecl_namespace_level (tmpl, is_friend);
4837 if (tmpl == error_mark_node)
4838 return error_mark_node;
4839
4840 /* Hide template friend classes that haven't been declared yet. */
4841 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
4842 {
4843 DECL_ANTICIPATED (tmpl) = 1;
4844 DECL_FRIEND_P (tmpl) = 1;
4845 }
4846 }
4847
4848 if (is_primary)
4849 {
4850 tree parms = DECL_TEMPLATE_PARMS (tmpl);
4851 int i;
4852
4853 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
4854 if (DECL_CONV_FN_P (tmpl))
4855 {
4856 int depth = TMPL_PARMS_DEPTH (parms);
4857
4858 /* It is a conversion operator. See if the type converted to
4859 depends on innermost template operands. */
4860
4861 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
4862 depth))
4863 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
4864 }
4865
4866 /* Give template template parms a DECL_CONTEXT of the template
4867 for which they are a parameter. */
4868 parms = INNERMOST_TEMPLATE_PARMS (parms);
4869 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
4870 {
4871 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
4872 if (TREE_CODE (parm) == TEMPLATE_DECL)
4873 DECL_CONTEXT (parm) = tmpl;
4874 }
4875 }
4876
4877 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
4878 back to its most general template. If TMPL is a specialization,
4879 ARGS may only have the innermost set of arguments. Add the missing
4880 argument levels if necessary. */
4881 if (DECL_TEMPLATE_INFO (tmpl))
4882 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
4883
4884 info = build_template_info (tmpl, args);
4885
4886 if (DECL_IMPLICIT_TYPEDEF_P (decl))
4887 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
4888 else
4889 {
4890 if (is_primary && !DECL_LANG_SPECIFIC (decl))
4891 retrofit_lang_decl (decl);
4892 if (DECL_LANG_SPECIFIC (decl))
4893 DECL_TEMPLATE_INFO (decl) = info;
4894 }
4895
4896 return DECL_TEMPLATE_RESULT (tmpl);
4897 }
4898
4899 tree
4900 push_template_decl (tree decl)
4901 {
4902 return push_template_decl_real (decl, false);
4903 }
4904
4905 /* FN is an inheriting constructor that inherits from the constructor
4906 template INHERITED; turn FN into a constructor template with a matching
4907 template header. */
4908
4909 tree
4910 add_inherited_template_parms (tree fn, tree inherited)
4911 {
4912 tree inner_parms
4913 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
4914 inner_parms = copy_node (inner_parms);
4915 tree parms
4916 = tree_cons (size_int (processing_template_decl + 1),
4917 inner_parms, current_template_parms);
4918 tree tmpl = build_template_decl (fn, parms, /*member*/true);
4919 tree args = template_parms_to_args (parms);
4920 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
4921 TREE_TYPE (tmpl) = TREE_TYPE (fn);
4922 DECL_TEMPLATE_RESULT (tmpl) = fn;
4923 DECL_ARTIFICIAL (tmpl) = true;
4924 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
4925 return tmpl;
4926 }
4927
4928 /* Called when a class template TYPE is redeclared with the indicated
4929 template PARMS, e.g.:
4930
4931 template <class T> struct S;
4932 template <class T> struct S {}; */
4933
4934 bool
4935 redeclare_class_template (tree type, tree parms)
4936 {
4937 tree tmpl;
4938 tree tmpl_parms;
4939 int i;
4940
4941 if (!TYPE_TEMPLATE_INFO (type))
4942 {
4943 error ("%qT is not a template type", type);
4944 return false;
4945 }
4946
4947 tmpl = TYPE_TI_TEMPLATE (type);
4948 if (!PRIMARY_TEMPLATE_P (tmpl))
4949 /* The type is nested in some template class. Nothing to worry
4950 about here; there are no new template parameters for the nested
4951 type. */
4952 return true;
4953
4954 if (!parms)
4955 {
4956 error ("template specifiers not specified in declaration of %qD",
4957 tmpl);
4958 return false;
4959 }
4960
4961 parms = INNERMOST_TEMPLATE_PARMS (parms);
4962 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
4963
4964 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
4965 {
4966 error_n (input_location, TREE_VEC_LENGTH (parms),
4967 "redeclared with %d template parameter",
4968 "redeclared with %d template parameters",
4969 TREE_VEC_LENGTH (parms));
4970 inform_n (input_location, TREE_VEC_LENGTH (tmpl_parms),
4971 "previous declaration %q+D used %d template parameter",
4972 "previous declaration %q+D used %d template parameters",
4973 tmpl, TREE_VEC_LENGTH (tmpl_parms));
4974 return false;
4975 }
4976
4977 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
4978 {
4979 tree tmpl_parm;
4980 tree parm;
4981 tree tmpl_default;
4982 tree parm_default;
4983
4984 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
4985 || TREE_VEC_ELT (parms, i) == error_mark_node)
4986 continue;
4987
4988 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
4989 if (tmpl_parm == error_mark_node)
4990 return false;
4991
4992 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
4993 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
4994 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
4995
4996 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
4997 TEMPLATE_DECL. */
4998 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
4999 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5000 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5001 || (TREE_CODE (tmpl_parm) != PARM_DECL
5002 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5003 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5004 || (TREE_CODE (tmpl_parm) == PARM_DECL
5005 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5006 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5007 {
5008 error ("template parameter %q+#D", tmpl_parm);
5009 error ("redeclared here as %q#D", parm);
5010 return false;
5011 }
5012
5013 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5014 {
5015 /* We have in [temp.param]:
5016
5017 A template-parameter may not be given default arguments
5018 by two different declarations in the same scope. */
5019 error_at (input_location, "redefinition of default argument for %q#D", parm);
5020 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5021 "original definition appeared here");
5022 return false;
5023 }
5024
5025 if (parm_default != NULL_TREE)
5026 /* Update the previous template parameters (which are the ones
5027 that will really count) with the new default value. */
5028 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5029 else if (tmpl_default != NULL_TREE)
5030 /* Update the new parameters, too; they'll be used as the
5031 parameters for any members. */
5032 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5033 }
5034
5035 return true;
5036 }
5037
5038 /* Simplify EXPR if it is a non-dependent expression. Returns the
5039 (possibly simplified) expression. */
5040
5041 tree
5042 fold_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5043 {
5044 if (expr == NULL_TREE)
5045 return NULL_TREE;
5046
5047 /* If we're in a template, but EXPR isn't value dependent, simplify
5048 it. We're supposed to treat:
5049
5050 template <typename T> void f(T[1 + 1]);
5051 template <typename T> void f(T[2]);
5052
5053 as two declarations of the same function, for example. */
5054 if (processing_template_decl
5055 && !instantiation_dependent_expression_p (expr)
5056 && potential_constant_expression (expr))
5057 {
5058 HOST_WIDE_INT saved_processing_template_decl;
5059
5060 saved_processing_template_decl = processing_template_decl;
5061 processing_template_decl = 0;
5062 expr = tsubst_copy_and_build (expr,
5063 /*args=*/NULL_TREE,
5064 complain,
5065 /*in_decl=*/NULL_TREE,
5066 /*function_p=*/false,
5067 /*integral_constant_expression_p=*/true);
5068 processing_template_decl = saved_processing_template_decl;
5069 }
5070 return expr;
5071 }
5072
5073 tree
5074 fold_non_dependent_expr (tree expr)
5075 {
5076 return fold_non_dependent_expr_sfinae (expr, tf_error);
5077 }
5078
5079 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5080 template declaration, or a TYPE_DECL for an alias declaration. */
5081
5082 bool
5083 alias_type_or_template_p (tree t)
5084 {
5085 if (t == NULL_TREE)
5086 return false;
5087 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5088 || (TYPE_P (t)
5089 && TYPE_NAME (t)
5090 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5091 || DECL_ALIAS_TEMPLATE_P (t));
5092 }
5093
5094 /* Return TRUE iff is a specialization of an alias template. */
5095
5096 bool
5097 alias_template_specialization_p (const_tree t)
5098 {
5099 if (t == NULL_TREE)
5100 return false;
5101
5102 return (TYPE_P (t)
5103 && TYPE_TEMPLATE_INFO (t)
5104 && PRIMARY_TEMPLATE_P (TYPE_TI_TEMPLATE (t))
5105 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (t)));
5106 }
5107
5108 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5109 must be a function or a pointer-to-function type, as specified
5110 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5111 and check that the resulting function has external linkage. */
5112
5113 static tree
5114 convert_nontype_argument_function (tree type, tree expr)
5115 {
5116 tree fns = expr;
5117 tree fn, fn_no_ptr;
5118 linkage_kind linkage;
5119
5120 fn = instantiate_type (type, fns, tf_none);
5121 if (fn == error_mark_node)
5122 return error_mark_node;
5123
5124 fn_no_ptr = fn;
5125 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5126 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5127 if (BASELINK_P (fn_no_ptr))
5128 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5129
5130 /* [temp.arg.nontype]/1
5131
5132 A template-argument for a non-type, non-template template-parameter
5133 shall be one of:
5134 [...]
5135 -- the address of an object or function with external [C++11: or
5136 internal] linkage. */
5137
5138 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5139 {
5140 error ("%qE is not a valid template argument for type %qT", expr, type);
5141 if (TYPE_PTR_P (type))
5142 error ("it must be the address of a function with external linkage");
5143 else
5144 error ("it must be the name of a function with external linkage");
5145 return NULL_TREE;
5146 }
5147
5148 linkage = decl_linkage (fn_no_ptr);
5149 if (cxx_dialect >= cxx0x ? linkage == lk_none : linkage != lk_external)
5150 {
5151 if (cxx_dialect >= cxx0x)
5152 error ("%qE is not a valid template argument for type %qT "
5153 "because %qD has no linkage",
5154 expr, type, fn_no_ptr);
5155 else
5156 error ("%qE is not a valid template argument for type %qT "
5157 "because %qD does not have external linkage",
5158 expr, type, fn_no_ptr);
5159 return NULL_TREE;
5160 }
5161
5162 return fn;
5163 }
5164
5165 /* Subroutine of convert_nontype_argument.
5166 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5167 Emit an error otherwise. */
5168
5169 static bool
5170 check_valid_ptrmem_cst_expr (tree type, tree expr,
5171 tsubst_flags_t complain)
5172 {
5173 STRIP_NOPS (expr);
5174 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5175 return true;
5176 if (cxx_dialect >= cxx0x && null_member_pointer_value_p (expr))
5177 return true;
5178 if (complain & tf_error)
5179 {
5180 error ("%qE is not a valid template argument for type %qT",
5181 expr, type);
5182 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5183 }
5184 return false;
5185 }
5186
5187 /* Returns TRUE iff the address of OP is value-dependent.
5188
5189 14.6.2.4 [temp.dep.temp]:
5190 A non-integral non-type template-argument is dependent if its type is
5191 dependent or it has either of the following forms
5192 qualified-id
5193 & qualified-id
5194 and contains a nested-name-specifier which specifies a class-name that
5195 names a dependent type.
5196
5197 We generalize this to just say that the address of a member of a
5198 dependent class is value-dependent; the above doesn't cover the
5199 address of a static data member named with an unqualified-id. */
5200
5201 static bool
5202 has_value_dependent_address (tree op)
5203 {
5204 /* We could use get_inner_reference here, but there's no need;
5205 this is only relevant for template non-type arguments, which
5206 can only be expressed as &id-expression. */
5207 if (DECL_P (op))
5208 {
5209 tree ctx = CP_DECL_CONTEXT (op);
5210 if (TYPE_P (ctx) && dependent_type_p (ctx))
5211 return true;
5212 }
5213
5214 return false;
5215 }
5216
5217 /* The next set of functions are used for providing helpful explanatory
5218 diagnostics for failed overload resolution. Their messages should be
5219 indented by two spaces for consistency with the messages in
5220 call.c */
5221
5222 static int
5223 unify_success (bool /*explain_p*/)
5224 {
5225 return 0;
5226 }
5227
5228 static int
5229 unify_parameter_deduction_failure (bool explain_p, tree parm)
5230 {
5231 if (explain_p)
5232 inform (input_location,
5233 " couldn't deduce template parameter %qD", parm);
5234 return 1;
5235 }
5236
5237 static int
5238 unify_invalid (bool /*explain_p*/)
5239 {
5240 return 1;
5241 }
5242
5243 static int
5244 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5245 {
5246 if (explain_p)
5247 inform (input_location,
5248 " types %qT and %qT have incompatible cv-qualifiers",
5249 parm, arg);
5250 return 1;
5251 }
5252
5253 static int
5254 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5255 {
5256 if (explain_p)
5257 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5258 return 1;
5259 }
5260
5261 static int
5262 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
5263 {
5264 if (explain_p)
5265 inform (input_location,
5266 " template parameter %qD is not a parameter pack, but "
5267 "argument %qD is",
5268 parm, arg);
5269 return 1;
5270 }
5271
5272 static int
5273 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
5274 {
5275 if (explain_p)
5276 inform (input_location,
5277 " template argument %qE does not match "
5278 "pointer-to-member constant %qE",
5279 arg, parm);
5280 return 1;
5281 }
5282
5283 static int
5284 unify_expression_unequal (bool explain_p, tree parm, tree arg)
5285 {
5286 if (explain_p)
5287 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
5288 return 1;
5289 }
5290
5291 static int
5292 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
5293 {
5294 if (explain_p)
5295 inform (input_location,
5296 " inconsistent parameter pack deduction with %qT and %qT",
5297 old_arg, new_arg);
5298 return 1;
5299 }
5300
5301 static int
5302 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
5303 {
5304 if (explain_p)
5305 {
5306 if (TYPE_P (parm))
5307 inform (input_location,
5308 " deduced conflicting types for parameter %qT (%qT and %qT)",
5309 parm, first, second);
5310 else
5311 inform (input_location,
5312 " deduced conflicting values for non-type parameter "
5313 "%qE (%qE and %qE)", parm, first, second);
5314 }
5315 return 1;
5316 }
5317
5318 static int
5319 unify_vla_arg (bool explain_p, tree arg)
5320 {
5321 if (explain_p)
5322 inform (input_location,
5323 " variable-sized array type %qT is not "
5324 "a valid template argument",
5325 arg);
5326 return 1;
5327 }
5328
5329 static int
5330 unify_method_type_error (bool explain_p, tree arg)
5331 {
5332 if (explain_p)
5333 inform (input_location,
5334 " member function type %qT is not a valid template argument",
5335 arg);
5336 return 1;
5337 }
5338
5339 static int
5340 unify_arity (bool explain_p, int have, int wanted)
5341 {
5342 if (explain_p)
5343 inform_n (input_location, wanted,
5344 " candidate expects %d argument, %d provided",
5345 " candidate expects %d arguments, %d provided",
5346 wanted, have);
5347 return 1;
5348 }
5349
5350 static int
5351 unify_too_many_arguments (bool explain_p, int have, int wanted)
5352 {
5353 return unify_arity (explain_p, have, wanted);
5354 }
5355
5356 static int
5357 unify_too_few_arguments (bool explain_p, int have, int wanted)
5358 {
5359 return unify_arity (explain_p, have, wanted);
5360 }
5361
5362 static int
5363 unify_arg_conversion (bool explain_p, tree to_type,
5364 tree from_type, tree arg)
5365 {
5366 if (explain_p)
5367 inform (input_location, " cannot convert %qE (type %qT) to type %qT",
5368 arg, from_type, to_type);
5369 return 1;
5370 }
5371
5372 static int
5373 unify_no_common_base (bool explain_p, enum template_base_result r,
5374 tree parm, tree arg)
5375 {
5376 if (explain_p)
5377 switch (r)
5378 {
5379 case tbr_ambiguous_baseclass:
5380 inform (input_location, " %qT is an ambiguous base class of %qT",
5381 arg, parm);
5382 break;
5383 default:
5384 inform (input_location, " %qT is not derived from %qT", arg, parm);
5385 break;
5386 }
5387 return 1;
5388 }
5389
5390 static int
5391 unify_inconsistent_template_template_parameters (bool explain_p)
5392 {
5393 if (explain_p)
5394 inform (input_location,
5395 " template parameters of a template template argument are "
5396 "inconsistent with other deduced template arguments");
5397 return 1;
5398 }
5399
5400 static int
5401 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
5402 {
5403 if (explain_p)
5404 inform (input_location,
5405 " can't deduce a template for %qT from non-template type %qT",
5406 parm, arg);
5407 return 1;
5408 }
5409
5410 static int
5411 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
5412 {
5413 if (explain_p)
5414 inform (input_location,
5415 " template argument %qE does not match %qD", arg, parm);
5416 return 1;
5417 }
5418
5419 static int
5420 unify_overload_resolution_failure (bool explain_p, tree arg)
5421 {
5422 if (explain_p)
5423 inform (input_location,
5424 " could not resolve address from overloaded function %qE",
5425 arg);
5426 return 1;
5427 }
5428
5429 /* Attempt to convert the non-type template parameter EXPR to the
5430 indicated TYPE. If the conversion is successful, return the
5431 converted value. If the conversion is unsuccessful, return
5432 NULL_TREE if we issued an error message, or error_mark_node if we
5433 did not. We issue error messages for out-and-out bad template
5434 parameters, but not simply because the conversion failed, since we
5435 might be just trying to do argument deduction. Both TYPE and EXPR
5436 must be non-dependent.
5437
5438 The conversion follows the special rules described in
5439 [temp.arg.nontype], and it is much more strict than an implicit
5440 conversion.
5441
5442 This function is called twice for each template argument (see
5443 lookup_template_class for a more accurate description of this
5444 problem). This means that we need to handle expressions which
5445 are not valid in a C++ source, but can be created from the
5446 first call (for instance, casts to perform conversions). These
5447 hacks can go away after we fix the double coercion problem. */
5448
5449 static tree
5450 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
5451 {
5452 tree expr_type;
5453
5454 /* Detect immediately string literals as invalid non-type argument.
5455 This special-case is not needed for correctness (we would easily
5456 catch this later), but only to provide better diagnostic for this
5457 common user mistake. As suggested by DR 100, we do not mention
5458 linkage issues in the diagnostic as this is not the point. */
5459 /* FIXME we're making this OK. */
5460 if (TREE_CODE (expr) == STRING_CST)
5461 {
5462 if (complain & tf_error)
5463 error ("%qE is not a valid template argument for type %qT "
5464 "because string literals can never be used in this context",
5465 expr, type);
5466 return NULL_TREE;
5467 }
5468
5469 /* Add the ADDR_EXPR now for the benefit of
5470 value_dependent_expression_p. */
5471 if (TYPE_PTROBV_P (type)
5472 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
5473 {
5474 expr = decay_conversion (expr, complain);
5475 if (expr == error_mark_node)
5476 return error_mark_node;
5477 }
5478
5479 /* If we are in a template, EXPR may be non-dependent, but still
5480 have a syntactic, rather than semantic, form. For example, EXPR
5481 might be a SCOPE_REF, rather than the VAR_DECL to which the
5482 SCOPE_REF refers. Preserving the qualifying scope is necessary
5483 so that access checking can be performed when the template is
5484 instantiated -- but here we need the resolved form so that we can
5485 convert the argument. */
5486 if (TYPE_REF_OBJ_P (type)
5487 && has_value_dependent_address (expr))
5488 /* If we want the address and it's value-dependent, don't fold. */;
5489 else if (!type_unknown_p (expr))
5490 expr = fold_non_dependent_expr_sfinae (expr, complain);
5491 if (error_operand_p (expr))
5492 return error_mark_node;
5493 expr_type = TREE_TYPE (expr);
5494 if (TREE_CODE (type) == REFERENCE_TYPE)
5495 expr = mark_lvalue_use (expr);
5496 else
5497 expr = mark_rvalue_use (expr);
5498
5499 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
5500 to a non-type argument of "nullptr". */
5501 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
5502 expr = convert (type, expr);
5503
5504 /* In C++11, integral or enumeration non-type template arguments can be
5505 arbitrary constant expressions. Pointer and pointer to
5506 member arguments can be general constant expressions that evaluate
5507 to a null value, but otherwise still need to be of a specific form. */
5508 if (cxx_dialect >= cxx0x)
5509 {
5510 if (TREE_CODE (expr) == PTRMEM_CST)
5511 /* A PTRMEM_CST is already constant, and a valid template
5512 argument for a parameter of pointer to member type, we just want
5513 to leave it in that form rather than lower it to a
5514 CONSTRUCTOR. */;
5515 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5516 expr = maybe_constant_value (expr);
5517 else if (TYPE_PTR_OR_PTRMEM_P (type))
5518 {
5519 tree folded = maybe_constant_value (expr);
5520 if (TYPE_PTR_P (type) ? integer_zerop (folded)
5521 : null_member_pointer_value_p (folded))
5522 expr = folded;
5523 }
5524 }
5525
5526 /* HACK: Due to double coercion, we can get a
5527 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
5528 which is the tree that we built on the first call (see
5529 below when coercing to reference to object or to reference to
5530 function). We just strip everything and get to the arg.
5531 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
5532 for examples. */
5533 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
5534 {
5535 tree probe_type, probe = expr;
5536 if (REFERENCE_REF_P (probe))
5537 probe = TREE_OPERAND (probe, 0);
5538 probe_type = TREE_TYPE (probe);
5539 if (TREE_CODE (probe) == NOP_EXPR)
5540 {
5541 /* ??? Maybe we could use convert_from_reference here, but we
5542 would need to relax its constraints because the NOP_EXPR
5543 could actually change the type to something more cv-qualified,
5544 and this is not folded by convert_from_reference. */
5545 tree addr = TREE_OPERAND (probe, 0);
5546 if (TREE_CODE (probe_type) == REFERENCE_TYPE
5547 && TREE_CODE (addr) == ADDR_EXPR
5548 && TYPE_PTR_P (TREE_TYPE (addr))
5549 && (same_type_ignoring_top_level_qualifiers_p
5550 (TREE_TYPE (probe_type),
5551 TREE_TYPE (TREE_TYPE (addr)))))
5552 {
5553 expr = TREE_OPERAND (addr, 0);
5554 expr_type = TREE_TYPE (expr);
5555 }
5556 }
5557 }
5558
5559 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
5560 parameter is a pointer to object, through decay and
5561 qualification conversion. Let's strip everything. */
5562 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
5563 {
5564 tree probe = expr;
5565 STRIP_NOPS (probe);
5566 if (TREE_CODE (probe) == ADDR_EXPR
5567 && TYPE_PTR_P (TREE_TYPE (probe)))
5568 {
5569 /* Skip the ADDR_EXPR only if it is part of the decay for
5570 an array. Otherwise, it is part of the original argument
5571 in the source code. */
5572 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
5573 probe = TREE_OPERAND (probe, 0);
5574 expr = probe;
5575 expr_type = TREE_TYPE (expr);
5576 }
5577 }
5578
5579 /* [temp.arg.nontype]/5, bullet 1
5580
5581 For a non-type template-parameter of integral or enumeration type,
5582 integral promotions (_conv.prom_) and integral conversions
5583 (_conv.integral_) are applied. */
5584 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5585 {
5586 tree t = build_integral_nontype_arg_conv (type, expr, complain);
5587 t = maybe_constant_value (t);
5588 if (t != error_mark_node)
5589 expr = t;
5590
5591 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
5592 return error_mark_node;
5593
5594 /* Notice that there are constant expressions like '4 % 0' which
5595 do not fold into integer constants. */
5596 if (TREE_CODE (expr) != INTEGER_CST)
5597 {
5598 if (complain & tf_error)
5599 {
5600 int errs = errorcount, warns = warningcount + werrorcount;
5601 if (processing_template_decl
5602 && !require_potential_constant_expression (expr))
5603 return NULL_TREE;
5604 expr = cxx_constant_value (expr);
5605 if (errorcount > errs || warningcount + werrorcount > warns)
5606 inform (EXPR_LOC_OR_HERE (expr),
5607 "in template argument for type %qT ", type);
5608 if (expr == error_mark_node)
5609 return NULL_TREE;
5610 /* else cxx_constant_value complained but gave us
5611 a real constant, so go ahead. */
5612 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
5613 }
5614 else
5615 return NULL_TREE;
5616 }
5617 }
5618 /* [temp.arg.nontype]/5, bullet 2
5619
5620 For a non-type template-parameter of type pointer to object,
5621 qualification conversions (_conv.qual_) and the array-to-pointer
5622 conversion (_conv.array_) are applied. */
5623 else if (TYPE_PTROBV_P (type))
5624 {
5625 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
5626
5627 A template-argument for a non-type, non-template template-parameter
5628 shall be one of: [...]
5629
5630 -- the name of a non-type template-parameter;
5631 -- the address of an object or function with external linkage, [...]
5632 expressed as "& id-expression" where the & is optional if the name
5633 refers to a function or array, or if the corresponding
5634 template-parameter is a reference.
5635
5636 Here, we do not care about functions, as they are invalid anyway
5637 for a parameter of type pointer-to-object. */
5638
5639 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
5640 /* Non-type template parameters are OK. */
5641 ;
5642 else if (cxx_dialect >= cxx0x && integer_zerop (expr))
5643 /* Null pointer values are OK in C++11. */;
5644 else if (TREE_CODE (expr) != ADDR_EXPR
5645 && TREE_CODE (expr_type) != ARRAY_TYPE)
5646 {
5647 if (VAR_P (expr))
5648 {
5649 error ("%qD is not a valid template argument "
5650 "because %qD is a variable, not the address of "
5651 "a variable",
5652 expr, expr);
5653 return NULL_TREE;
5654 }
5655 if (POINTER_TYPE_P (expr_type))
5656 {
5657 error ("%qE is not a valid template argument for %qT"
5658 "because it is not the address of a variable",
5659 expr, type);
5660 return NULL_TREE;
5661 }
5662 /* Other values, like integer constants, might be valid
5663 non-type arguments of some other type. */
5664 return error_mark_node;
5665 }
5666 else
5667 {
5668 tree decl;
5669
5670 decl = ((TREE_CODE (expr) == ADDR_EXPR)
5671 ? TREE_OPERAND (expr, 0) : expr);
5672 if (!VAR_P (decl))
5673 {
5674 error ("%qE is not a valid template argument of type %qT "
5675 "because %qE is not a variable",
5676 expr, type, decl);
5677 return NULL_TREE;
5678 }
5679 else if (cxx_dialect < cxx0x && !DECL_EXTERNAL_LINKAGE_P (decl))
5680 {
5681 error ("%qE is not a valid template argument of type %qT "
5682 "because %qD does not have external linkage",
5683 expr, type, decl);
5684 return NULL_TREE;
5685 }
5686 else if (cxx_dialect >= cxx0x && decl_linkage (decl) == lk_none)
5687 {
5688 error ("%qE is not a valid template argument of type %qT "
5689 "because %qD has no linkage",
5690 expr, type, decl);
5691 return NULL_TREE;
5692 }
5693 }
5694
5695 expr = decay_conversion (expr, complain);
5696 if (expr == error_mark_node)
5697 return error_mark_node;
5698
5699 expr = perform_qualification_conversions (type, expr);
5700 if (expr == error_mark_node)
5701 return error_mark_node;
5702 }
5703 /* [temp.arg.nontype]/5, bullet 3
5704
5705 For a non-type template-parameter of type reference to object, no
5706 conversions apply. The type referred to by the reference may be more
5707 cv-qualified than the (otherwise identical) type of the
5708 template-argument. The template-parameter is bound directly to the
5709 template-argument, which must be an lvalue. */
5710 else if (TYPE_REF_OBJ_P (type))
5711 {
5712 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
5713 expr_type))
5714 return error_mark_node;
5715
5716 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
5717 {
5718 error ("%qE is not a valid template argument for type %qT "
5719 "because of conflicts in cv-qualification", expr, type);
5720 return NULL_TREE;
5721 }
5722
5723 if (!real_lvalue_p (expr))
5724 {
5725 error ("%qE is not a valid template argument for type %qT "
5726 "because it is not an lvalue", expr, type);
5727 return NULL_TREE;
5728 }
5729
5730 /* [temp.arg.nontype]/1
5731
5732 A template-argument for a non-type, non-template template-parameter
5733 shall be one of: [...]
5734
5735 -- the address of an object or function with external linkage. */
5736 if (INDIRECT_REF_P (expr)
5737 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
5738 {
5739 expr = TREE_OPERAND (expr, 0);
5740 if (DECL_P (expr))
5741 {
5742 error ("%q#D is not a valid template argument for type %qT "
5743 "because a reference variable does not have a constant "
5744 "address", expr, type);
5745 return NULL_TREE;
5746 }
5747 }
5748
5749 if (!DECL_P (expr))
5750 {
5751 error ("%qE is not a valid template argument for type %qT "
5752 "because it is not an object with external linkage",
5753 expr, type);
5754 return NULL_TREE;
5755 }
5756
5757 if (!DECL_EXTERNAL_LINKAGE_P (expr))
5758 {
5759 error ("%qE is not a valid template argument for type %qT "
5760 "because object %qD has not external linkage",
5761 expr, type, expr);
5762 return NULL_TREE;
5763 }
5764
5765 expr = build_nop (type, build_address (expr));
5766 }
5767 /* [temp.arg.nontype]/5, bullet 4
5768
5769 For a non-type template-parameter of type pointer to function, only
5770 the function-to-pointer conversion (_conv.func_) is applied. If the
5771 template-argument represents a set of overloaded functions (or a
5772 pointer to such), the matching function is selected from the set
5773 (_over.over_). */
5774 else if (TYPE_PTRFN_P (type))
5775 {
5776 /* If the argument is a template-id, we might not have enough
5777 context information to decay the pointer. */
5778 if (!type_unknown_p (expr_type))
5779 {
5780 expr = decay_conversion (expr, complain);
5781 if (expr == error_mark_node)
5782 return error_mark_node;
5783 }
5784
5785 if (cxx_dialect >= cxx0x && integer_zerop (expr))
5786 /* Null pointer values are OK in C++11. */
5787 return perform_qualification_conversions (type, expr);
5788
5789 expr = convert_nontype_argument_function (type, expr);
5790 if (!expr || expr == error_mark_node)
5791 return expr;
5792 }
5793 /* [temp.arg.nontype]/5, bullet 5
5794
5795 For a non-type template-parameter of type reference to function, no
5796 conversions apply. If the template-argument represents a set of
5797 overloaded functions, the matching function is selected from the set
5798 (_over.over_). */
5799 else if (TYPE_REFFN_P (type))
5800 {
5801 if (TREE_CODE (expr) == ADDR_EXPR)
5802 {
5803 error ("%qE is not a valid template argument for type %qT "
5804 "because it is a pointer", expr, type);
5805 inform (input_location, "try using %qE instead", TREE_OPERAND (expr, 0));
5806 return NULL_TREE;
5807 }
5808
5809 expr = convert_nontype_argument_function (type, expr);
5810 if (!expr || expr == error_mark_node)
5811 return expr;
5812
5813 expr = build_nop (type, build_address (expr));
5814 }
5815 /* [temp.arg.nontype]/5, bullet 6
5816
5817 For a non-type template-parameter of type pointer to member function,
5818 no conversions apply. If the template-argument represents a set of
5819 overloaded member functions, the matching member function is selected
5820 from the set (_over.over_). */
5821 else if (TYPE_PTRMEMFUNC_P (type))
5822 {
5823 expr = instantiate_type (type, expr, tf_none);
5824 if (expr == error_mark_node)
5825 return error_mark_node;
5826
5827 /* [temp.arg.nontype] bullet 1 says the pointer to member
5828 expression must be a pointer-to-member constant. */
5829 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
5830 return error_mark_node;
5831
5832 /* There is no way to disable standard conversions in
5833 resolve_address_of_overloaded_function (called by
5834 instantiate_type). It is possible that the call succeeded by
5835 converting &B::I to &D::I (where B is a base of D), so we need
5836 to reject this conversion here.
5837
5838 Actually, even if there was a way to disable standard conversions,
5839 it would still be better to reject them here so that we can
5840 provide a superior diagnostic. */
5841 if (!same_type_p (TREE_TYPE (expr), type))
5842 {
5843 error ("%qE is not a valid template argument for type %qT "
5844 "because it is of type %qT", expr, type,
5845 TREE_TYPE (expr));
5846 /* If we are just one standard conversion off, explain. */
5847 if (can_convert (type, TREE_TYPE (expr), complain))
5848 inform (input_location,
5849 "standard conversions are not allowed in this context");
5850 return NULL_TREE;
5851 }
5852 }
5853 /* [temp.arg.nontype]/5, bullet 7
5854
5855 For a non-type template-parameter of type pointer to data member,
5856 qualification conversions (_conv.qual_) are applied. */
5857 else if (TYPE_PTRDATAMEM_P (type))
5858 {
5859 /* [temp.arg.nontype] bullet 1 says the pointer to member
5860 expression must be a pointer-to-member constant. */
5861 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
5862 return error_mark_node;
5863
5864 expr = perform_qualification_conversions (type, expr);
5865 if (expr == error_mark_node)
5866 return expr;
5867 }
5868 else if (NULLPTR_TYPE_P (type))
5869 {
5870 if (expr != nullptr_node)
5871 {
5872 error ("%qE is not a valid template argument for type %qT "
5873 "because it is of type %qT", expr, type, TREE_TYPE (expr));
5874 return NULL_TREE;
5875 }
5876 return expr;
5877 }
5878 /* A template non-type parameter must be one of the above. */
5879 else
5880 gcc_unreachable ();
5881
5882 /* Sanity check: did we actually convert the argument to the
5883 right type? */
5884 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5885 (type, TREE_TYPE (expr)));
5886 return expr;
5887 }
5888
5889 /* Subroutine of coerce_template_template_parms, which returns 1 if
5890 PARM_PARM and ARG_PARM match using the rule for the template
5891 parameters of template template parameters. Both PARM and ARG are
5892 template parameters; the rest of the arguments are the same as for
5893 coerce_template_template_parms.
5894 */
5895 static int
5896 coerce_template_template_parm (tree parm,
5897 tree arg,
5898 tsubst_flags_t complain,
5899 tree in_decl,
5900 tree outer_args)
5901 {
5902 if (arg == NULL_TREE || arg == error_mark_node
5903 || parm == NULL_TREE || parm == error_mark_node)
5904 return 0;
5905
5906 if (TREE_CODE (arg) != TREE_CODE (parm))
5907 return 0;
5908
5909 switch (TREE_CODE (parm))
5910 {
5911 case TEMPLATE_DECL:
5912 /* We encounter instantiations of templates like
5913 template <template <template <class> class> class TT>
5914 class C; */
5915 {
5916 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
5917 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
5918
5919 if (!coerce_template_template_parms
5920 (parmparm, argparm, complain, in_decl, outer_args))
5921 return 0;
5922 }
5923 /* Fall through. */
5924
5925 case TYPE_DECL:
5926 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
5927 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
5928 /* Argument is a parameter pack but parameter is not. */
5929 return 0;
5930 break;
5931
5932 case PARM_DECL:
5933 /* The tsubst call is used to handle cases such as
5934
5935 template <int> class C {};
5936 template <class T, template <T> class TT> class D {};
5937 D<int, C> d;
5938
5939 i.e. the parameter list of TT depends on earlier parameters. */
5940 if (!uses_template_parms (TREE_TYPE (arg))
5941 && !same_type_p
5942 (tsubst (TREE_TYPE (parm), outer_args, complain, in_decl),
5943 TREE_TYPE (arg)))
5944 return 0;
5945
5946 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
5947 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
5948 /* Argument is a parameter pack but parameter is not. */
5949 return 0;
5950
5951 break;
5952
5953 default:
5954 gcc_unreachable ();
5955 }
5956
5957 return 1;
5958 }
5959
5960
5961 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
5962 template template parameters. Both PARM_PARMS and ARG_PARMS are
5963 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
5964 or PARM_DECL.
5965
5966 Consider the example:
5967 template <class T> class A;
5968 template<template <class U> class TT> class B;
5969
5970 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
5971 the parameters to A, and OUTER_ARGS contains A. */
5972
5973 static int
5974 coerce_template_template_parms (tree parm_parms,
5975 tree arg_parms,
5976 tsubst_flags_t complain,
5977 tree in_decl,
5978 tree outer_args)
5979 {
5980 int nparms, nargs, i;
5981 tree parm, arg;
5982 int variadic_p = 0;
5983
5984 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
5985 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
5986
5987 nparms = TREE_VEC_LENGTH (parm_parms);
5988 nargs = TREE_VEC_LENGTH (arg_parms);
5989
5990 /* Determine whether we have a parameter pack at the end of the
5991 template template parameter's template parameter list. */
5992 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
5993 {
5994 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
5995
5996 if (parm == error_mark_node)
5997 return 0;
5998
5999 switch (TREE_CODE (parm))
6000 {
6001 case TEMPLATE_DECL:
6002 case TYPE_DECL:
6003 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6004 variadic_p = 1;
6005 break;
6006
6007 case PARM_DECL:
6008 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6009 variadic_p = 1;
6010 break;
6011
6012 default:
6013 gcc_unreachable ();
6014 }
6015 }
6016
6017 if (nargs != nparms
6018 && !(variadic_p && nargs >= nparms - 1))
6019 return 0;
6020
6021 /* Check all of the template parameters except the parameter pack at
6022 the end (if any). */
6023 for (i = 0; i < nparms - variadic_p; ++i)
6024 {
6025 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6026 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6027 continue;
6028
6029 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6030 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6031
6032 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6033 outer_args))
6034 return 0;
6035
6036 }
6037
6038 if (variadic_p)
6039 {
6040 /* Check each of the template parameters in the template
6041 argument against the template parameter pack at the end of
6042 the template template parameter. */
6043 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6044 return 0;
6045
6046 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6047
6048 for (; i < nargs; ++i)
6049 {
6050 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6051 continue;
6052
6053 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6054
6055 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6056 outer_args))
6057 return 0;
6058 }
6059 }
6060
6061 return 1;
6062 }
6063
6064 /* Verifies that the deduced template arguments (in TARGS) for the
6065 template template parameters (in TPARMS) represent valid bindings,
6066 by comparing the template parameter list of each template argument
6067 to the template parameter list of its corresponding template
6068 template parameter, in accordance with DR150. This
6069 routine can only be called after all template arguments have been
6070 deduced. It will return TRUE if all of the template template
6071 parameter bindings are okay, FALSE otherwise. */
6072 bool
6073 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6074 {
6075 int i, ntparms = TREE_VEC_LENGTH (tparms);
6076 bool ret = true;
6077
6078 /* We're dealing with template parms in this process. */
6079 ++processing_template_decl;
6080
6081 targs = INNERMOST_TEMPLATE_ARGS (targs);
6082
6083 for (i = 0; i < ntparms; ++i)
6084 {
6085 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6086 tree targ = TREE_VEC_ELT (targs, i);
6087
6088 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6089 {
6090 tree packed_args = NULL_TREE;
6091 int idx, len = 1;
6092
6093 if (ARGUMENT_PACK_P (targ))
6094 {
6095 /* Look inside the argument pack. */
6096 packed_args = ARGUMENT_PACK_ARGS (targ);
6097 len = TREE_VEC_LENGTH (packed_args);
6098 }
6099
6100 for (idx = 0; idx < len; ++idx)
6101 {
6102 tree targ_parms = NULL_TREE;
6103
6104 if (packed_args)
6105 /* Extract the next argument from the argument
6106 pack. */
6107 targ = TREE_VEC_ELT (packed_args, idx);
6108
6109 if (PACK_EXPANSION_P (targ))
6110 /* Look at the pattern of the pack expansion. */
6111 targ = PACK_EXPANSION_PATTERN (targ);
6112
6113 /* Extract the template parameters from the template
6114 argument. */
6115 if (TREE_CODE (targ) == TEMPLATE_DECL)
6116 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6117 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6118 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6119
6120 /* Verify that we can coerce the template template
6121 parameters from the template argument to the template
6122 parameter. This requires an exact match. */
6123 if (targ_parms
6124 && !coerce_template_template_parms
6125 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6126 targ_parms,
6127 tf_none,
6128 tparm,
6129 targs))
6130 {
6131 ret = false;
6132 goto out;
6133 }
6134 }
6135 }
6136 }
6137
6138 out:
6139
6140 --processing_template_decl;
6141 return ret;
6142 }
6143
6144 /* Since type attributes aren't mangled, we need to strip them from
6145 template type arguments. */
6146
6147 static tree
6148 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6149 {
6150 tree mv;
6151 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6152 return arg;
6153 mv = TYPE_MAIN_VARIANT (arg);
6154 arg = strip_typedefs (arg);
6155 if (TYPE_ALIGN (arg) != TYPE_ALIGN (mv)
6156 || TYPE_ATTRIBUTES (arg) != TYPE_ATTRIBUTES (mv))
6157 {
6158 if (complain & tf_warning)
6159 warning (0, "ignoring attributes on template argument %qT", arg);
6160 arg = build_aligned_type (arg, TYPE_ALIGN (mv));
6161 arg = cp_build_type_attribute_variant (arg, TYPE_ATTRIBUTES (mv));
6162 }
6163 return arg;
6164 }
6165
6166 /* Convert the indicated template ARG as necessary to match the
6167 indicated template PARM. Returns the converted ARG, or
6168 error_mark_node if the conversion was unsuccessful. Error and
6169 warning messages are issued under control of COMPLAIN. This
6170 conversion is for the Ith parameter in the parameter list. ARGS is
6171 the full set of template arguments deduced so far. */
6172
6173 static tree
6174 convert_template_argument (tree parm,
6175 tree arg,
6176 tree args,
6177 tsubst_flags_t complain,
6178 int i,
6179 tree in_decl)
6180 {
6181 tree orig_arg;
6182 tree val;
6183 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
6184
6185 if (TREE_CODE (arg) == TREE_LIST
6186 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
6187 {
6188 /* The template argument was the name of some
6189 member function. That's usually
6190 invalid, but static members are OK. In any
6191 case, grab the underlying fields/functions
6192 and issue an error later if required. */
6193 orig_arg = TREE_VALUE (arg);
6194 TREE_TYPE (arg) = unknown_type_node;
6195 }
6196
6197 orig_arg = arg;
6198
6199 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
6200 requires_type = (TREE_CODE (parm) == TYPE_DECL
6201 || requires_tmpl_type);
6202
6203 /* When determining whether an argument pack expansion is a template,
6204 look at the pattern. */
6205 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
6206 arg = PACK_EXPANSION_PATTERN (arg);
6207
6208 /* Deal with an injected-class-name used as a template template arg. */
6209 if (requires_tmpl_type && CLASS_TYPE_P (arg))
6210 {
6211 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
6212 if (TREE_CODE (t) == TEMPLATE_DECL)
6213 {
6214 if (cxx_dialect >= cxx0x)
6215 /* OK under DR 1004. */;
6216 else if (complain & tf_warning_or_error)
6217 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
6218 " used as template template argument", TYPE_NAME (arg));
6219 else if (flag_pedantic_errors)
6220 t = arg;
6221
6222 arg = t;
6223 }
6224 }
6225
6226 is_tmpl_type =
6227 ((TREE_CODE (arg) == TEMPLATE_DECL
6228 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
6229 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
6230 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6231 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
6232
6233 if (is_tmpl_type
6234 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6235 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
6236 arg = TYPE_STUB_DECL (arg);
6237
6238 is_type = TYPE_P (arg) || is_tmpl_type;
6239
6240 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
6241 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
6242 {
6243 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
6244 {
6245 if (complain & tf_error)
6246 error ("invalid use of destructor %qE as a type", orig_arg);
6247 return error_mark_node;
6248 }
6249
6250 permerror (input_location,
6251 "to refer to a type member of a template parameter, "
6252 "use %<typename %E%>", orig_arg);
6253
6254 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
6255 TREE_OPERAND (arg, 1),
6256 typename_type,
6257 complain);
6258 arg = orig_arg;
6259 is_type = 1;
6260 }
6261 if (is_type != requires_type)
6262 {
6263 if (in_decl)
6264 {
6265 if (complain & tf_error)
6266 {
6267 error ("type/value mismatch at argument %d in template "
6268 "parameter list for %qD",
6269 i + 1, in_decl);
6270 if (is_type)
6271 error (" expected a constant of type %qT, got %qT",
6272 TREE_TYPE (parm),
6273 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
6274 else if (requires_tmpl_type)
6275 error (" expected a class template, got %qE", orig_arg);
6276 else
6277 error (" expected a type, got %qE", orig_arg);
6278 }
6279 }
6280 return error_mark_node;
6281 }
6282 if (is_tmpl_type ^ requires_tmpl_type)
6283 {
6284 if (in_decl && (complain & tf_error))
6285 {
6286 error ("type/value mismatch at argument %d in template "
6287 "parameter list for %qD",
6288 i + 1, in_decl);
6289 if (is_tmpl_type)
6290 error (" expected a type, got %qT", DECL_NAME (arg));
6291 else
6292 error (" expected a class template, got %qT", orig_arg);
6293 }
6294 return error_mark_node;
6295 }
6296
6297 if (is_type)
6298 {
6299 if (requires_tmpl_type)
6300 {
6301 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6302 val = orig_arg;
6303 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
6304 /* The number of argument required is not known yet.
6305 Just accept it for now. */
6306 val = TREE_TYPE (arg);
6307 else
6308 {
6309 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6310 tree argparm;
6311
6312 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6313
6314 if (coerce_template_template_parms (parmparm, argparm,
6315 complain, in_decl,
6316 args))
6317 {
6318 val = arg;
6319
6320 /* TEMPLATE_TEMPLATE_PARM node is preferred over
6321 TEMPLATE_DECL. */
6322 if (val != error_mark_node)
6323 {
6324 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
6325 val = TREE_TYPE (val);
6326 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
6327 val = make_pack_expansion (val);
6328 }
6329 }
6330 else
6331 {
6332 if (in_decl && (complain & tf_error))
6333 {
6334 error ("type/value mismatch at argument %d in "
6335 "template parameter list for %qD",
6336 i + 1, in_decl);
6337 error (" expected a template of type %qD, got %qT",
6338 parm, orig_arg);
6339 }
6340
6341 val = error_mark_node;
6342 }
6343 }
6344 }
6345 else
6346 val = orig_arg;
6347 /* We only form one instance of each template specialization.
6348 Therefore, if we use a non-canonical variant (i.e., a
6349 typedef), any future messages referring to the type will use
6350 the typedef, which is confusing if those future uses do not
6351 themselves also use the typedef. */
6352 if (TYPE_P (val))
6353 val = canonicalize_type_argument (val, complain);
6354 }
6355 else
6356 {
6357 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
6358
6359 if (invalid_nontype_parm_type_p (t, complain))
6360 return error_mark_node;
6361
6362 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6363 {
6364 if (same_type_p (t, TREE_TYPE (orig_arg)))
6365 val = orig_arg;
6366 else
6367 {
6368 /* Not sure if this is reachable, but it doesn't hurt
6369 to be robust. */
6370 error ("type mismatch in nontype parameter pack");
6371 val = error_mark_node;
6372 }
6373 }
6374 else if (!uses_template_parms (orig_arg) && !uses_template_parms (t))
6375 /* We used to call digest_init here. However, digest_init
6376 will report errors, which we don't want when complain
6377 is zero. More importantly, digest_init will try too
6378 hard to convert things: for example, `0' should not be
6379 converted to pointer type at this point according to
6380 the standard. Accepting this is not merely an
6381 extension, since deciding whether or not these
6382 conversions can occur is part of determining which
6383 function template to call, or whether a given explicit
6384 argument specification is valid. */
6385 val = convert_nontype_argument (t, orig_arg, complain);
6386 else
6387 val = strip_typedefs_expr (orig_arg);
6388
6389 if (val == NULL_TREE)
6390 val = error_mark_node;
6391 else if (val == error_mark_node && (complain & tf_error))
6392 error ("could not convert template argument %qE to %qT", orig_arg, t);
6393
6394 if (TREE_CODE (val) == SCOPE_REF)
6395 {
6396 /* Strip typedefs from the SCOPE_REF. */
6397 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
6398 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
6399 complain);
6400 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
6401 QUALIFIED_NAME_IS_TEMPLATE (val));
6402 }
6403 }
6404
6405 return val;
6406 }
6407
6408 /* Coerces the remaining template arguments in INNER_ARGS (from
6409 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
6410 Returns the coerced argument pack. PARM_IDX is the position of this
6411 parameter in the template parameter list. ARGS is the original
6412 template argument list. */
6413 static tree
6414 coerce_template_parameter_pack (tree parms,
6415 int parm_idx,
6416 tree args,
6417 tree inner_args,
6418 int arg_idx,
6419 tree new_args,
6420 int* lost,
6421 tree in_decl,
6422 tsubst_flags_t complain)
6423 {
6424 tree parm = TREE_VEC_ELT (parms, parm_idx);
6425 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6426 tree packed_args;
6427 tree argument_pack;
6428 tree packed_types = NULL_TREE;
6429
6430 if (arg_idx > nargs)
6431 arg_idx = nargs;
6432
6433 packed_args = make_tree_vec (nargs - arg_idx);
6434
6435 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL
6436 && uses_parameter_packs (TREE_TYPE (TREE_VALUE (parm))))
6437 {
6438 /* When the template parameter is a non-type template
6439 parameter pack whose type uses parameter packs, we need
6440 to look at each of the template arguments
6441 separately. Build a vector of the types for these
6442 non-type template parameters in PACKED_TYPES. */
6443 tree expansion
6444 = make_pack_expansion (TREE_TYPE (TREE_VALUE (parm)));
6445 packed_types = tsubst_pack_expansion (expansion, args,
6446 complain, in_decl);
6447
6448 if (packed_types == error_mark_node)
6449 return error_mark_node;
6450
6451 /* Check that we have the right number of arguments. */
6452 if (arg_idx < nargs
6453 && !PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx))
6454 && nargs - arg_idx != TREE_VEC_LENGTH (packed_types))
6455 {
6456 int needed_parms
6457 = TREE_VEC_LENGTH (parms) - 1 + TREE_VEC_LENGTH (packed_types);
6458 error ("wrong number of template arguments (%d, should be %d)",
6459 nargs, needed_parms);
6460 return error_mark_node;
6461 }
6462
6463 /* If we aren't able to check the actual arguments now
6464 (because they haven't been expanded yet), we can at least
6465 verify that all of the types used for the non-type
6466 template parameter pack are, in fact, valid for non-type
6467 template parameters. */
6468 if (arg_idx < nargs
6469 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
6470 {
6471 int j, len = TREE_VEC_LENGTH (packed_types);
6472 for (j = 0; j < len; ++j)
6473 {
6474 tree t = TREE_VEC_ELT (packed_types, j);
6475 if (invalid_nontype_parm_type_p (t, complain))
6476 return error_mark_node;
6477 }
6478 }
6479 }
6480
6481 /* Convert the remaining arguments, which will be a part of the
6482 parameter pack "parm". */
6483 for (; arg_idx < nargs; ++arg_idx)
6484 {
6485 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
6486 tree actual_parm = TREE_VALUE (parm);
6487
6488 if (packed_types && !PACK_EXPANSION_P (arg))
6489 {
6490 /* When we have a vector of types (corresponding to the
6491 non-type template parameter pack that uses parameter
6492 packs in its type, as mention above), and the
6493 argument is not an expansion (which expands to a
6494 currently unknown number of arguments), clone the
6495 parm and give it the next type in PACKED_TYPES. */
6496 actual_parm = copy_node (actual_parm);
6497 TREE_TYPE (actual_parm) =
6498 TREE_VEC_ELT (packed_types, arg_idx - parm_idx);
6499 }
6500
6501 if (arg == error_mark_node)
6502 {
6503 if (complain & tf_error)
6504 error ("template argument %d is invalid", arg_idx + 1);
6505 }
6506 else
6507 arg = convert_template_argument (actual_parm,
6508 arg, new_args, complain, parm_idx,
6509 in_decl);
6510 if (arg == error_mark_node)
6511 (*lost)++;
6512 TREE_VEC_ELT (packed_args, arg_idx - parm_idx) = arg;
6513 }
6514
6515 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
6516 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
6517 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
6518 else
6519 {
6520 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
6521 TREE_TYPE (argument_pack)
6522 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
6523 TREE_CONSTANT (argument_pack) = 1;
6524 }
6525
6526 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
6527 #ifdef ENABLE_CHECKING
6528 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
6529 TREE_VEC_LENGTH (packed_args));
6530 #endif
6531 return argument_pack;
6532 }
6533
6534 /* Returns true if the template argument vector ARGS contains
6535 any pack expansions, false otherwise. */
6536
6537 static bool
6538 any_pack_expanson_args_p (tree args)
6539 {
6540 int i;
6541 if (args)
6542 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
6543 if (PACK_EXPANSION_P (TREE_VEC_ELT (args, i)))
6544 return true;
6545 return false;
6546 }
6547
6548 /* Convert all template arguments to their appropriate types, and
6549 return a vector containing the innermost resulting template
6550 arguments. If any error occurs, return error_mark_node. Error and
6551 warning messages are issued under control of COMPLAIN.
6552
6553 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
6554 for arguments not specified in ARGS. Otherwise, if
6555 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
6556 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
6557 USE_DEFAULT_ARGS is false, then all arguments must be specified in
6558 ARGS. */
6559
6560 static tree
6561 coerce_template_parms (tree parms,
6562 tree args,
6563 tree in_decl,
6564 tsubst_flags_t complain,
6565 bool require_all_args,
6566 bool use_default_args)
6567 {
6568 int nparms, nargs, parm_idx, arg_idx, lost = 0;
6569 tree inner_args;
6570 tree new_args;
6571 tree new_inner_args;
6572 int saved_unevaluated_operand;
6573 int saved_inhibit_evaluation_warnings;
6574
6575 /* When used as a boolean value, indicates whether this is a
6576 variadic template parameter list. Since it's an int, we can also
6577 subtract it from nparms to get the number of non-variadic
6578 parameters. */
6579 int variadic_p = 0;
6580 int post_variadic_parms = 0;
6581
6582 if (args == error_mark_node)
6583 return error_mark_node;
6584
6585 nparms = TREE_VEC_LENGTH (parms);
6586
6587 /* Determine if there are any parameter packs. */
6588 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
6589 {
6590 tree tparm = TREE_VALUE (TREE_VEC_ELT (parms, parm_idx));
6591 if (variadic_p)
6592 ++post_variadic_parms;
6593 if (template_parameter_pack_p (tparm))
6594 ++variadic_p;
6595 }
6596
6597 inner_args = INNERMOST_TEMPLATE_ARGS (args);
6598 /* If there are no parameters that follow a parameter pack, we need to
6599 expand any argument packs so that we can deduce a parameter pack from
6600 some non-packed args followed by an argument pack, as in variadic85.C.
6601 If there are such parameters, we need to leave argument packs intact
6602 so the arguments are assigned properly. This can happen when dealing
6603 with a nested class inside a partial specialization of a class
6604 template, as in variadic92.C, or when deducing a template parameter pack
6605 from a sub-declarator, as in variadic114.C. */
6606 if (!post_variadic_parms)
6607 inner_args = expand_template_argument_pack (inner_args);
6608
6609 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6610 if ((nargs > nparms && !variadic_p)
6611 || (nargs < nparms - variadic_p
6612 && require_all_args
6613 && !any_pack_expanson_args_p (inner_args)
6614 && (!use_default_args
6615 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
6616 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
6617 {
6618 if (complain & tf_error)
6619 {
6620 if (variadic_p)
6621 {
6622 nparms -= variadic_p;
6623 error ("wrong number of template arguments "
6624 "(%d, should be %d or more)", nargs, nparms);
6625 }
6626 else
6627 error ("wrong number of template arguments "
6628 "(%d, should be %d)", nargs, nparms);
6629
6630 if (in_decl)
6631 error ("provided for %q+D", in_decl);
6632 }
6633
6634 return error_mark_node;
6635 }
6636
6637 /* We need to evaluate the template arguments, even though this
6638 template-id may be nested within a "sizeof". */
6639 saved_unevaluated_operand = cp_unevaluated_operand;
6640 cp_unevaluated_operand = 0;
6641 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
6642 c_inhibit_evaluation_warnings = 0;
6643 new_inner_args = make_tree_vec (nparms);
6644 new_args = add_outermost_template_args (args, new_inner_args);
6645 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
6646 {
6647 tree arg;
6648 tree parm;
6649
6650 /* Get the Ith template parameter. */
6651 parm = TREE_VEC_ELT (parms, parm_idx);
6652
6653 if (parm == error_mark_node)
6654 {
6655 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
6656 continue;
6657 }
6658
6659 /* Calculate the next argument. */
6660 if (arg_idx < nargs)
6661 arg = TREE_VEC_ELT (inner_args, arg_idx);
6662 else
6663 arg = NULL_TREE;
6664
6665 if (template_parameter_pack_p (TREE_VALUE (parm))
6666 && !(arg && ARGUMENT_PACK_P (arg)))
6667 {
6668 /* All remaining arguments will be placed in the
6669 template parameter pack PARM. */
6670 arg = coerce_template_parameter_pack (parms, parm_idx, args,
6671 inner_args, arg_idx,
6672 new_args, &lost,
6673 in_decl, complain);
6674
6675 /* Store this argument. */
6676 if (arg == error_mark_node)
6677 lost++;
6678 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
6679
6680 /* We are done with all of the arguments. */
6681 arg_idx = nargs;
6682
6683 continue;
6684 }
6685 else if (arg)
6686 {
6687 if (PACK_EXPANSION_P (arg))
6688 {
6689 /* We don't know how many args we have yet, just
6690 use the unconverted ones for now. */
6691 new_inner_args = inner_args;
6692 break;
6693 }
6694 }
6695 else if (require_all_args)
6696 {
6697 /* There must be a default arg in this case. */
6698 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
6699 complain, in_decl);
6700 /* The position of the first default template argument,
6701 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
6702 Record that. */
6703 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
6704 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args, arg_idx);
6705 }
6706 else
6707 break;
6708
6709 if (arg == error_mark_node)
6710 {
6711 if (complain & tf_error)
6712 error ("template argument %d is invalid", arg_idx + 1);
6713 }
6714 else if (!arg)
6715 /* This only occurs if there was an error in the template
6716 parameter list itself (which we would already have
6717 reported) that we are trying to recover from, e.g., a class
6718 template with a parameter list such as
6719 template<typename..., typename>. */
6720 ++lost;
6721 else
6722 arg = convert_template_argument (TREE_VALUE (parm),
6723 arg, new_args, complain,
6724 parm_idx, in_decl);
6725
6726 if (arg == error_mark_node)
6727 lost++;
6728 TREE_VEC_ELT (new_inner_args, arg_idx) = arg;
6729 }
6730 cp_unevaluated_operand = saved_unevaluated_operand;
6731 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
6732
6733 if (lost)
6734 return error_mark_node;
6735
6736 #ifdef ENABLE_CHECKING
6737 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
6738 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
6739 TREE_VEC_LENGTH (new_inner_args));
6740 #endif
6741
6742 return new_inner_args;
6743 }
6744
6745 /* Like coerce_template_parms. If PARMS represents all template
6746 parameters levels, this function returns a vector of vectors
6747 representing all the resulting argument levels. Note that in this
6748 case, only the innermost arguments are coerced because the
6749 outermost ones are supposed to have been coerced already.
6750
6751 Otherwise, if PARMS represents only (the innermost) vector of
6752 parameters, this function returns a vector containing just the
6753 innermost resulting arguments. */
6754
6755 static tree
6756 coerce_innermost_template_parms (tree parms,
6757 tree args,
6758 tree in_decl,
6759 tsubst_flags_t complain,
6760 bool require_all_args,
6761 bool use_default_args)
6762 {
6763 int parms_depth = TMPL_PARMS_DEPTH (parms);
6764 int args_depth = TMPL_ARGS_DEPTH (args);
6765 tree coerced_args;
6766
6767 if (parms_depth > 1)
6768 {
6769 coerced_args = make_tree_vec (parms_depth);
6770 tree level;
6771 int cur_depth;
6772
6773 for (level = parms, cur_depth = parms_depth;
6774 parms_depth > 0 && level != NULL_TREE;
6775 level = TREE_CHAIN (level), --cur_depth)
6776 {
6777 tree l;
6778 if (cur_depth == args_depth)
6779 l = coerce_template_parms (TREE_VALUE (level),
6780 args, in_decl, complain,
6781 require_all_args,
6782 use_default_args);
6783 else
6784 l = TMPL_ARGS_LEVEL (args, cur_depth);
6785
6786 if (l == error_mark_node)
6787 return error_mark_node;
6788
6789 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
6790 }
6791 }
6792 else
6793 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
6794 args, in_decl, complain,
6795 require_all_args,
6796 use_default_args);
6797 return coerced_args;
6798 }
6799
6800 /* Returns 1 if template args OT and NT are equivalent. */
6801
6802 static int
6803 template_args_equal (tree ot, tree nt)
6804 {
6805 if (nt == ot)
6806 return 1;
6807 if (nt == NULL_TREE || ot == NULL_TREE)
6808 return false;
6809
6810 if (TREE_CODE (nt) == TREE_VEC)
6811 /* For member templates */
6812 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
6813 else if (PACK_EXPANSION_P (ot))
6814 return (PACK_EXPANSION_P (nt)
6815 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
6816 PACK_EXPANSION_PATTERN (nt))
6817 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
6818 PACK_EXPANSION_EXTRA_ARGS (nt)));
6819 else if (ARGUMENT_PACK_P (ot))
6820 {
6821 int i, len;
6822 tree opack, npack;
6823
6824 if (!ARGUMENT_PACK_P (nt))
6825 return 0;
6826
6827 opack = ARGUMENT_PACK_ARGS (ot);
6828 npack = ARGUMENT_PACK_ARGS (nt);
6829 len = TREE_VEC_LENGTH (opack);
6830 if (TREE_VEC_LENGTH (npack) != len)
6831 return 0;
6832 for (i = 0; i < len; ++i)
6833 if (!template_args_equal (TREE_VEC_ELT (opack, i),
6834 TREE_VEC_ELT (npack, i)))
6835 return 0;
6836 return 1;
6837 }
6838 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
6839 {
6840 /* We get here probably because we are in the middle of substituting
6841 into the pattern of a pack expansion. In that case the
6842 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
6843 interested in. So we want to use the initial pack argument for
6844 the comparison. */
6845 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
6846 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
6847 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
6848 return template_args_equal (ot, nt);
6849 }
6850 else if (TYPE_P (nt))
6851 return TYPE_P (ot) && same_type_p (ot, nt);
6852 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
6853 return 0;
6854 else
6855 return cp_tree_equal (ot, nt);
6856 }
6857
6858 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
6859 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
6860 NEWARG_PTR with the offending arguments if they are non-NULL. */
6861
6862 static int
6863 comp_template_args_with_info (tree oldargs, tree newargs,
6864 tree *oldarg_ptr, tree *newarg_ptr)
6865 {
6866 int i;
6867
6868 if (oldargs == newargs)
6869 return 1;
6870
6871 if (!oldargs || !newargs)
6872 return 0;
6873
6874 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
6875 return 0;
6876
6877 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
6878 {
6879 tree nt = TREE_VEC_ELT (newargs, i);
6880 tree ot = TREE_VEC_ELT (oldargs, i);
6881
6882 if (! template_args_equal (ot, nt))
6883 {
6884 if (oldarg_ptr != NULL)
6885 *oldarg_ptr = ot;
6886 if (newarg_ptr != NULL)
6887 *newarg_ptr = nt;
6888 return 0;
6889 }
6890 }
6891 return 1;
6892 }
6893
6894 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
6895 of template arguments. Returns 0 otherwise. */
6896
6897 int
6898 comp_template_args (tree oldargs, tree newargs)
6899 {
6900 return comp_template_args_with_info (oldargs, newargs, NULL, NULL);
6901 }
6902
6903 static void
6904 add_pending_template (tree d)
6905 {
6906 tree ti = (TYPE_P (d)
6907 ? CLASSTYPE_TEMPLATE_INFO (d)
6908 : DECL_TEMPLATE_INFO (d));
6909 struct pending_template *pt;
6910 int level;
6911
6912 if (TI_PENDING_TEMPLATE_FLAG (ti))
6913 return;
6914
6915 /* We are called both from instantiate_decl, where we've already had a
6916 tinst_level pushed, and instantiate_template, where we haven't.
6917 Compensate. */
6918 level = !current_tinst_level || current_tinst_level->decl != d;
6919
6920 if (level)
6921 push_tinst_level (d);
6922
6923 pt = ggc_alloc_pending_template ();
6924 pt->next = NULL;
6925 pt->tinst = current_tinst_level;
6926 if (last_pending_template)
6927 last_pending_template->next = pt;
6928 else
6929 pending_templates = pt;
6930
6931 last_pending_template = pt;
6932
6933 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
6934
6935 if (level)
6936 pop_tinst_level ();
6937 }
6938
6939
6940 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
6941 ARGLIST. Valid choices for FNS are given in the cp-tree.def
6942 documentation for TEMPLATE_ID_EXPR. */
6943
6944 tree
6945 lookup_template_function (tree fns, tree arglist)
6946 {
6947 tree type;
6948
6949 if (fns == error_mark_node || arglist == error_mark_node)
6950 return error_mark_node;
6951
6952 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
6953
6954 if (!is_overloaded_fn (fns) && !identifier_p (fns))
6955 {
6956 error ("%q#D is not a function template", fns);
6957 return error_mark_node;
6958 }
6959
6960 if (BASELINK_P (fns))
6961 {
6962 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
6963 unknown_type_node,
6964 BASELINK_FUNCTIONS (fns),
6965 arglist);
6966 return fns;
6967 }
6968
6969 type = TREE_TYPE (fns);
6970 if (TREE_CODE (fns) == OVERLOAD || !type)
6971 type = unknown_type_node;
6972
6973 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
6974 }
6975
6976 /* Within the scope of a template class S<T>, the name S gets bound
6977 (in build_self_reference) to a TYPE_DECL for the class, not a
6978 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
6979 or one of its enclosing classes, and that type is a template,
6980 return the associated TEMPLATE_DECL. Otherwise, the original
6981 DECL is returned.
6982
6983 Also handle the case when DECL is a TREE_LIST of ambiguous
6984 injected-class-names from different bases. */
6985
6986 tree
6987 maybe_get_template_decl_from_type_decl (tree decl)
6988 {
6989 if (decl == NULL_TREE)
6990 return decl;
6991
6992 /* DR 176: A lookup that finds an injected-class-name (10.2
6993 [class.member.lookup]) can result in an ambiguity in certain cases
6994 (for example, if it is found in more than one base class). If all of
6995 the injected-class-names that are found refer to specializations of
6996 the same class template, and if the name is followed by a
6997 template-argument-list, the reference refers to the class template
6998 itself and not a specialization thereof, and is not ambiguous. */
6999 if (TREE_CODE (decl) == TREE_LIST)
7000 {
7001 tree t, tmpl = NULL_TREE;
7002 for (t = decl; t; t = TREE_CHAIN (t))
7003 {
7004 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
7005 if (!tmpl)
7006 tmpl = elt;
7007 else if (tmpl != elt)
7008 break;
7009 }
7010 if (tmpl && t == NULL_TREE)
7011 return tmpl;
7012 else
7013 return decl;
7014 }
7015
7016 return (decl != NULL_TREE
7017 && DECL_SELF_REFERENCE_P (decl)
7018 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
7019 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
7020 }
7021
7022 /* Given an IDENTIFIER_NODE (type TEMPLATE_DECL) and a chain of
7023 parameters, find the desired type.
7024
7025 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
7026
7027 IN_DECL, if non-NULL, is the template declaration we are trying to
7028 instantiate.
7029
7030 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
7031 the class we are looking up.
7032
7033 Issue error and warning messages under control of COMPLAIN.
7034
7035 If the template class is really a local class in a template
7036 function, then the FUNCTION_CONTEXT is the function in which it is
7037 being instantiated.
7038
7039 ??? Note that this function is currently called *twice* for each
7040 template-id: the first time from the parser, while creating the
7041 incomplete type (finish_template_type), and the second type during the
7042 real instantiation (instantiate_template_class). This is surely something
7043 that we want to avoid. It also causes some problems with argument
7044 coercion (see convert_nontype_argument for more information on this). */
7045
7046 static tree
7047 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
7048 int entering_scope, tsubst_flags_t complain)
7049 {
7050 tree templ = NULL_TREE, parmlist;
7051 tree t;
7052 void **slot;
7053 spec_entry *entry;
7054 spec_entry elt;
7055 hashval_t hash;
7056
7057 if (identifier_p (d1))
7058 {
7059 tree value = innermost_non_namespace_value (d1);
7060 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
7061 templ = value;
7062 else
7063 {
7064 if (context)
7065 push_decl_namespace (context);
7066 templ = lookup_name (d1);
7067 templ = maybe_get_template_decl_from_type_decl (templ);
7068 if (context)
7069 pop_decl_namespace ();
7070 }
7071 if (templ)
7072 context = DECL_CONTEXT (templ);
7073 }
7074 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
7075 {
7076 tree type = TREE_TYPE (d1);
7077
7078 /* If we are declaring a constructor, say A<T>::A<T>, we will get
7079 an implicit typename for the second A. Deal with it. */
7080 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
7081 type = TREE_TYPE (type);
7082
7083 if (CLASSTYPE_TEMPLATE_INFO (type))
7084 {
7085 templ = CLASSTYPE_TI_TEMPLATE (type);
7086 d1 = DECL_NAME (templ);
7087 }
7088 }
7089 else if (TREE_CODE (d1) == ENUMERAL_TYPE
7090 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
7091 {
7092 templ = TYPE_TI_TEMPLATE (d1);
7093 d1 = DECL_NAME (templ);
7094 }
7095 else if (TREE_CODE (d1) == TEMPLATE_DECL
7096 && DECL_TEMPLATE_RESULT (d1)
7097 && TREE_CODE (DECL_TEMPLATE_RESULT (d1)) == TYPE_DECL)
7098 {
7099 templ = d1;
7100 d1 = DECL_NAME (templ);
7101 context = DECL_CONTEXT (templ);
7102 }
7103
7104 /* Issue an error message if we didn't find a template. */
7105 if (! templ)
7106 {
7107 if (complain & tf_error)
7108 error ("%qT is not a template", d1);
7109 return error_mark_node;
7110 }
7111
7112 if (TREE_CODE (templ) != TEMPLATE_DECL
7113 /* Make sure it's a user visible template, if it was named by
7114 the user. */
7115 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
7116 && !PRIMARY_TEMPLATE_P (templ)))
7117 {
7118 if (complain & tf_error)
7119 {
7120 error ("non-template type %qT used as a template", d1);
7121 if (in_decl)
7122 error ("for template declaration %q+D", in_decl);
7123 }
7124 return error_mark_node;
7125 }
7126
7127 complain &= ~tf_user;
7128
7129 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
7130 {
7131 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
7132 template arguments */
7133
7134 tree parm;
7135 tree arglist2;
7136 tree outer;
7137
7138 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
7139
7140 /* Consider an example where a template template parameter declared as
7141
7142 template <class T, class U = std::allocator<T> > class TT
7143
7144 The template parameter level of T and U are one level larger than
7145 of TT. To proper process the default argument of U, say when an
7146 instantiation `TT<int>' is seen, we need to build the full
7147 arguments containing {int} as the innermost level. Outer levels,
7148 available when not appearing as default template argument, can be
7149 obtained from the arguments of the enclosing template.
7150
7151 Suppose that TT is later substituted with std::vector. The above
7152 instantiation is `TT<int, std::allocator<T> >' with TT at
7153 level 1, and T at level 2, while the template arguments at level 1
7154 becomes {std::vector} and the inner level 2 is {int}. */
7155
7156 outer = DECL_CONTEXT (templ);
7157 if (outer)
7158 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
7159 else if (current_template_parms)
7160 /* This is an argument of the current template, so we haven't set
7161 DECL_CONTEXT yet. */
7162 outer = current_template_args ();
7163
7164 if (outer)
7165 arglist = add_to_template_args (outer, arglist);
7166
7167 arglist2 = coerce_template_parms (parmlist, arglist, templ,
7168 complain,
7169 /*require_all_args=*/true,
7170 /*use_default_args=*/true);
7171 if (arglist2 == error_mark_node
7172 || (!uses_template_parms (arglist2)
7173 && check_instantiated_args (templ, arglist2, complain)))
7174 return error_mark_node;
7175
7176 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
7177 return parm;
7178 }
7179 else
7180 {
7181 tree template_type = TREE_TYPE (templ);
7182 tree gen_tmpl;
7183 tree type_decl;
7184 tree found = NULL_TREE;
7185 int arg_depth;
7186 int parm_depth;
7187 int is_dependent_type;
7188 int use_partial_inst_tmpl = false;
7189
7190 if (template_type == error_mark_node)
7191 /* An error occured while building the template TEMPL, and a
7192 diagnostic has most certainly been emitted for that
7193 already. Let's propagate that error. */
7194 return error_mark_node;
7195
7196 gen_tmpl = most_general_template (templ);
7197 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
7198 parm_depth = TMPL_PARMS_DEPTH (parmlist);
7199 arg_depth = TMPL_ARGS_DEPTH (arglist);
7200
7201 if (arg_depth == 1 && parm_depth > 1)
7202 {
7203 /* We've been given an incomplete set of template arguments.
7204 For example, given:
7205
7206 template <class T> struct S1 {
7207 template <class U> struct S2 {};
7208 template <class U> struct S2<U*> {};
7209 };
7210
7211 we will be called with an ARGLIST of `U*', but the
7212 TEMPLATE will be `template <class T> template
7213 <class U> struct S1<T>::S2'. We must fill in the missing
7214 arguments. */
7215 arglist
7216 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
7217 arglist);
7218 arg_depth = TMPL_ARGS_DEPTH (arglist);
7219 }
7220
7221 /* Now we should have enough arguments. */
7222 gcc_assert (parm_depth == arg_depth);
7223
7224 /* From here on, we're only interested in the most general
7225 template. */
7226
7227 /* Calculate the BOUND_ARGS. These will be the args that are
7228 actually tsubst'd into the definition to create the
7229 instantiation. */
7230 if (parm_depth > 1)
7231 {
7232 /* We have multiple levels of arguments to coerce, at once. */
7233 int i;
7234 int saved_depth = TMPL_ARGS_DEPTH (arglist);
7235
7236 tree bound_args = make_tree_vec (parm_depth);
7237
7238 for (i = saved_depth,
7239 t = DECL_TEMPLATE_PARMS (gen_tmpl);
7240 i > 0 && t != NULL_TREE;
7241 --i, t = TREE_CHAIN (t))
7242 {
7243 tree a;
7244 if (i == saved_depth)
7245 a = coerce_template_parms (TREE_VALUE (t),
7246 arglist, gen_tmpl,
7247 complain,
7248 /*require_all_args=*/true,
7249 /*use_default_args=*/true);
7250 else
7251 /* Outer levels should have already been coerced. */
7252 a = TMPL_ARGS_LEVEL (arglist, i);
7253
7254 /* Don't process further if one of the levels fails. */
7255 if (a == error_mark_node)
7256 {
7257 /* Restore the ARGLIST to its full size. */
7258 TREE_VEC_LENGTH (arglist) = saved_depth;
7259 return error_mark_node;
7260 }
7261
7262 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
7263
7264 /* We temporarily reduce the length of the ARGLIST so
7265 that coerce_template_parms will see only the arguments
7266 corresponding to the template parameters it is
7267 examining. */
7268 TREE_VEC_LENGTH (arglist)--;
7269 }
7270
7271 /* Restore the ARGLIST to its full size. */
7272 TREE_VEC_LENGTH (arglist) = saved_depth;
7273
7274 arglist = bound_args;
7275 }
7276 else
7277 arglist
7278 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
7279 INNERMOST_TEMPLATE_ARGS (arglist),
7280 gen_tmpl,
7281 complain,
7282 /*require_all_args=*/true,
7283 /*use_default_args=*/true);
7284
7285 if (arglist == error_mark_node)
7286 /* We were unable to bind the arguments. */
7287 return error_mark_node;
7288
7289 /* In the scope of a template class, explicit references to the
7290 template class refer to the type of the template, not any
7291 instantiation of it. For example, in:
7292
7293 template <class T> class C { void f(C<T>); }
7294
7295 the `C<T>' is just the same as `C'. Outside of the
7296 class, however, such a reference is an instantiation. */
7297 if ((entering_scope
7298 || !PRIMARY_TEMPLATE_P (gen_tmpl)
7299 || currently_open_class (template_type))
7300 /* comp_template_args is expensive, check it last. */
7301 && comp_template_args (TYPE_TI_ARGS (template_type),
7302 arglist))
7303 return template_type;
7304
7305 /* If we already have this specialization, return it. */
7306 elt.tmpl = gen_tmpl;
7307 elt.args = arglist;
7308 hash = hash_specialization (&elt);
7309 entry = (spec_entry *) htab_find_with_hash (type_specializations,
7310 &elt, hash);
7311
7312 if (entry)
7313 return entry->spec;
7314
7315 is_dependent_type = uses_template_parms (arglist);
7316
7317 /* If the deduced arguments are invalid, then the binding
7318 failed. */
7319 if (!is_dependent_type
7320 && check_instantiated_args (gen_tmpl,
7321 INNERMOST_TEMPLATE_ARGS (arglist),
7322 complain))
7323 return error_mark_node;
7324
7325 if (!is_dependent_type
7326 && !PRIMARY_TEMPLATE_P (gen_tmpl)
7327 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
7328 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
7329 {
7330 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
7331 DECL_NAME (gen_tmpl),
7332 /*tag_scope=*/ts_global);
7333 return found;
7334 }
7335
7336 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
7337 complain, in_decl);
7338 if (context == error_mark_node)
7339 return error_mark_node;
7340
7341 if (!context)
7342 context = global_namespace;
7343
7344 /* Create the type. */
7345 if (TREE_CODE (template_type) == ENUMERAL_TYPE)
7346 {
7347 if (!is_dependent_type)
7348 {
7349 set_current_access_from_decl (TYPE_NAME (template_type));
7350 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
7351 tsubst (ENUM_UNDERLYING_TYPE (template_type),
7352 arglist, complain, in_decl),
7353 SCOPED_ENUM_P (template_type), NULL);
7354 }
7355 else
7356 {
7357 /* We don't want to call start_enum for this type, since
7358 the values for the enumeration constants may involve
7359 template parameters. And, no one should be interested
7360 in the enumeration constants for such a type. */
7361 t = cxx_make_type (ENUMERAL_TYPE);
7362 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
7363 }
7364 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
7365 ENUM_FIXED_UNDERLYING_TYPE_P (t)
7366 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
7367 }
7368 else if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7369 {
7370 /* The user referred to a specialization of an alias
7371 template represented by GEN_TMPL.
7372
7373 [temp.alias]/2 says:
7374
7375 When a template-id refers to the specialization of an
7376 alias template, it is equivalent to the associated
7377 type obtained by substitution of its
7378 template-arguments for the template-parameters in the
7379 type-id of the alias template. */
7380
7381 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
7382 /* Note that the call above (by indirectly calling
7383 register_specialization in tsubst_decl) registers the
7384 TYPE_DECL representing the specialization of the alias
7385 template. So next time someone substitutes ARGLIST for
7386 the template parms into the alias template (GEN_TMPL),
7387 she'll get that TYPE_DECL back. */
7388
7389 if (t == error_mark_node)
7390 return t;
7391 }
7392 else if (CLASS_TYPE_P (template_type))
7393 {
7394 t = make_class_type (TREE_CODE (template_type));
7395 CLASSTYPE_DECLARED_CLASS (t)
7396 = CLASSTYPE_DECLARED_CLASS (template_type);
7397 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
7398 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
7399
7400 /* A local class. Make sure the decl gets registered properly. */
7401 if (context == current_function_decl)
7402 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
7403
7404 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
7405 /* This instantiation is another name for the primary
7406 template type. Set the TYPE_CANONICAL field
7407 appropriately. */
7408 TYPE_CANONICAL (t) = template_type;
7409 else if (any_template_arguments_need_structural_equality_p (arglist))
7410 /* Some of the template arguments require structural
7411 equality testing, so this template class requires
7412 structural equality testing. */
7413 SET_TYPE_STRUCTURAL_EQUALITY (t);
7414 }
7415 else
7416 gcc_unreachable ();
7417
7418 /* If we called start_enum or pushtag above, this information
7419 will already be set up. */
7420 if (!TYPE_NAME (t))
7421 {
7422 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
7423
7424 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
7425 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
7426 DECL_SOURCE_LOCATION (type_decl)
7427 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
7428 }
7429 else
7430 type_decl = TYPE_NAME (t);
7431
7432 if (CLASS_TYPE_P (template_type))
7433 {
7434 TREE_PRIVATE (type_decl)
7435 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
7436 TREE_PROTECTED (type_decl)
7437 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
7438 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
7439 {
7440 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
7441 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
7442 }
7443 }
7444
7445 /* Let's consider the explicit specialization of a member
7446 of a class template specialization that is implicitely instantiated,
7447 e.g.:
7448 template<class T>
7449 struct S
7450 {
7451 template<class U> struct M {}; //#0
7452 };
7453
7454 template<>
7455 template<>
7456 struct S<int>::M<char> //#1
7457 {
7458 int i;
7459 };
7460 [temp.expl.spec]/4 says this is valid.
7461
7462 In this case, when we write:
7463 S<int>::M<char> m;
7464
7465 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
7466 the one of #0.
7467
7468 When we encounter #1, we want to store the partial instantiation
7469 of M (template<class T> S<int>::M<T>) in it's CLASSTYPE_TI_TEMPLATE.
7470
7471 For all cases other than this "explicit specialization of member of a
7472 class template", we just want to store the most general template into
7473 the CLASSTYPE_TI_TEMPLATE of M.
7474
7475 This case of "explicit specialization of member of a class template"
7476 only happens when:
7477 1/ the enclosing class is an instantiation of, and therefore not
7478 the same as, the context of the most general template, and
7479 2/ we aren't looking at the partial instantiation itself, i.e.
7480 the innermost arguments are not the same as the innermost parms of
7481 the most general template.
7482
7483 So it's only when 1/ and 2/ happens that we want to use the partial
7484 instantiation of the member template in lieu of its most general
7485 template. */
7486
7487 if (PRIMARY_TEMPLATE_P (gen_tmpl)
7488 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
7489 /* the enclosing class must be an instantiation... */
7490 && CLASS_TYPE_P (context)
7491 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
7492 {
7493 tree partial_inst_args;
7494 TREE_VEC_LENGTH (arglist)--;
7495 ++processing_template_decl;
7496 partial_inst_args =
7497 tsubst (INNERMOST_TEMPLATE_ARGS
7498 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
7499 arglist, complain, NULL_TREE);
7500 --processing_template_decl;
7501 TREE_VEC_LENGTH (arglist)++;
7502 use_partial_inst_tmpl =
7503 /*...and we must not be looking at the partial instantiation
7504 itself. */
7505 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
7506 partial_inst_args);
7507 }
7508
7509 if (!use_partial_inst_tmpl)
7510 /* This case is easy; there are no member templates involved. */
7511 found = gen_tmpl;
7512 else
7513 {
7514 /* This is a full instantiation of a member template. Find
7515 the partial instantiation of which this is an instance. */
7516
7517 /* Temporarily reduce by one the number of levels in the ARGLIST
7518 so as to avoid comparing the last set of arguments. */
7519 TREE_VEC_LENGTH (arglist)--;
7520 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
7521 TREE_VEC_LENGTH (arglist)++;
7522 /* FOUND is either a proper class type, or an alias
7523 template specialization. In the later case, it's a
7524 TYPE_DECL, resulting from the substituting of arguments
7525 for parameters in the TYPE_DECL of the alias template
7526 done earlier. So be careful while getting the template
7527 of FOUND. */
7528 found = TREE_CODE (found) == TYPE_DECL
7529 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
7530 : CLASSTYPE_TI_TEMPLATE (found);
7531 }
7532
7533 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
7534
7535 elt.spec = t;
7536 slot = htab_find_slot_with_hash (type_specializations,
7537 &elt, hash, INSERT);
7538 entry = ggc_alloc_spec_entry ();
7539 *entry = elt;
7540 *slot = entry;
7541
7542 /* Note this use of the partial instantiation so we can check it
7543 later in maybe_process_partial_specialization. */
7544 DECL_TEMPLATE_INSTANTIATIONS (templ)
7545 = tree_cons (arglist, t,
7546 DECL_TEMPLATE_INSTANTIATIONS (templ));
7547
7548 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type)
7549 /* Now that the type has been registered on the instantiations
7550 list, we set up the enumerators. Because the enumeration
7551 constants may involve the enumeration type itself, we make
7552 sure to register the type first, and then create the
7553 constants. That way, doing tsubst_expr for the enumeration
7554 constants won't result in recursive calls here; we'll find
7555 the instantiation and exit above. */
7556 tsubst_enum (template_type, t, arglist);
7557
7558 if (CLASS_TYPE_P (template_type) && is_dependent_type)
7559 /* If the type makes use of template parameters, the
7560 code that generates debugging information will crash. */
7561 DECL_IGNORED_P (TYPE_STUB_DECL (t)) = 1;
7562
7563 /* Possibly limit visibility based on template args. */
7564 TREE_PUBLIC (type_decl) = 1;
7565 determine_visibility (type_decl);
7566
7567 return t;
7568 }
7569 }
7570
7571 /* Wrapper for lookup_template_class_1. */
7572
7573 tree
7574 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
7575 int entering_scope, tsubst_flags_t complain)
7576 {
7577 tree ret;
7578 timevar_push (TV_TEMPLATE_INST);
7579 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
7580 entering_scope, complain);
7581 timevar_pop (TV_TEMPLATE_INST);
7582 return ret;
7583 }
7584 \f
7585 struct pair_fn_data
7586 {
7587 tree_fn_t fn;
7588 void *data;
7589 /* True when we should also visit template parameters that occur in
7590 non-deduced contexts. */
7591 bool include_nondeduced_p;
7592 struct pointer_set_t *visited;
7593 };
7594
7595 /* Called from for_each_template_parm via walk_tree. */
7596
7597 static tree
7598 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
7599 {
7600 tree t = *tp;
7601 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
7602 tree_fn_t fn = pfd->fn;
7603 void *data = pfd->data;
7604
7605 if (TYPE_P (t)
7606 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE)
7607 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited,
7608 pfd->include_nondeduced_p))
7609 return error_mark_node;
7610
7611 switch (TREE_CODE (t))
7612 {
7613 case RECORD_TYPE:
7614 if (TYPE_PTRMEMFUNC_P (t))
7615 break;
7616 /* Fall through. */
7617
7618 case UNION_TYPE:
7619 case ENUMERAL_TYPE:
7620 if (!TYPE_TEMPLATE_INFO (t))
7621 *walk_subtrees = 0;
7622 else if (for_each_template_parm (TI_ARGS (TYPE_TEMPLATE_INFO (t)),
7623 fn, data, pfd->visited,
7624 pfd->include_nondeduced_p))
7625 return error_mark_node;
7626 break;
7627
7628 case INTEGER_TYPE:
7629 if (for_each_template_parm (TYPE_MIN_VALUE (t),
7630 fn, data, pfd->visited,
7631 pfd->include_nondeduced_p)
7632 || for_each_template_parm (TYPE_MAX_VALUE (t),
7633 fn, data, pfd->visited,
7634 pfd->include_nondeduced_p))
7635 return error_mark_node;
7636 break;
7637
7638 case METHOD_TYPE:
7639 /* Since we're not going to walk subtrees, we have to do this
7640 explicitly here. */
7641 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
7642 pfd->visited, pfd->include_nondeduced_p))
7643 return error_mark_node;
7644 /* Fall through. */
7645
7646 case FUNCTION_TYPE:
7647 /* Check the return type. */
7648 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
7649 pfd->include_nondeduced_p))
7650 return error_mark_node;
7651
7652 /* Check the parameter types. Since default arguments are not
7653 instantiated until they are needed, the TYPE_ARG_TYPES may
7654 contain expressions that involve template parameters. But,
7655 no-one should be looking at them yet. And, once they're
7656 instantiated, they don't contain template parameters, so
7657 there's no point in looking at them then, either. */
7658 {
7659 tree parm;
7660
7661 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
7662 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
7663 pfd->visited, pfd->include_nondeduced_p))
7664 return error_mark_node;
7665
7666 /* Since we've already handled the TYPE_ARG_TYPES, we don't
7667 want walk_tree walking into them itself. */
7668 *walk_subtrees = 0;
7669 }
7670 break;
7671
7672 case TYPEOF_TYPE:
7673 case UNDERLYING_TYPE:
7674 if (pfd->include_nondeduced_p
7675 && for_each_template_parm (TYPE_FIELDS (t), fn, data,
7676 pfd->visited,
7677 pfd->include_nondeduced_p))
7678 return error_mark_node;
7679 break;
7680
7681 case FUNCTION_DECL:
7682 case VAR_DECL:
7683 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
7684 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
7685 pfd->visited, pfd->include_nondeduced_p))
7686 return error_mark_node;
7687 /* Fall through. */
7688
7689 case PARM_DECL:
7690 case CONST_DECL:
7691 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
7692 && for_each_template_parm (DECL_INITIAL (t), fn, data,
7693 pfd->visited, pfd->include_nondeduced_p))
7694 return error_mark_node;
7695 if (DECL_CONTEXT (t)
7696 && pfd->include_nondeduced_p
7697 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
7698 pfd->visited, pfd->include_nondeduced_p))
7699 return error_mark_node;
7700 break;
7701
7702 case BOUND_TEMPLATE_TEMPLATE_PARM:
7703 /* Record template parameters such as `T' inside `TT<T>'. */
7704 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited,
7705 pfd->include_nondeduced_p))
7706 return error_mark_node;
7707 /* Fall through. */
7708
7709 case TEMPLATE_TEMPLATE_PARM:
7710 case TEMPLATE_TYPE_PARM:
7711 case TEMPLATE_PARM_INDEX:
7712 if (fn && (*fn)(t, data))
7713 return error_mark_node;
7714 else if (!fn)
7715 return error_mark_node;
7716 break;
7717
7718 case TEMPLATE_DECL:
7719 /* A template template parameter is encountered. */
7720 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
7721 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
7722 pfd->include_nondeduced_p))
7723 return error_mark_node;
7724
7725 /* Already substituted template template parameter */
7726 *walk_subtrees = 0;
7727 break;
7728
7729 case TYPENAME_TYPE:
7730 if (!fn
7731 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
7732 data, pfd->visited,
7733 pfd->include_nondeduced_p))
7734 return error_mark_node;
7735 break;
7736
7737 case CONSTRUCTOR:
7738 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
7739 && pfd->include_nondeduced_p
7740 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
7741 (TREE_TYPE (t)), fn, data,
7742 pfd->visited, pfd->include_nondeduced_p))
7743 return error_mark_node;
7744 break;
7745
7746 case INDIRECT_REF:
7747 case COMPONENT_REF:
7748 /* If there's no type, then this thing must be some expression
7749 involving template parameters. */
7750 if (!fn && !TREE_TYPE (t))
7751 return error_mark_node;
7752 break;
7753
7754 case MODOP_EXPR:
7755 case CAST_EXPR:
7756 case IMPLICIT_CONV_EXPR:
7757 case REINTERPRET_CAST_EXPR:
7758 case CONST_CAST_EXPR:
7759 case STATIC_CAST_EXPR:
7760 case DYNAMIC_CAST_EXPR:
7761 case ARROW_EXPR:
7762 case DOTSTAR_EXPR:
7763 case TYPEID_EXPR:
7764 case PSEUDO_DTOR_EXPR:
7765 if (!fn)
7766 return error_mark_node;
7767 break;
7768
7769 default:
7770 break;
7771 }
7772
7773 /* We didn't find any template parameters we liked. */
7774 return NULL_TREE;
7775 }
7776
7777 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
7778 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
7779 call FN with the parameter and the DATA.
7780 If FN returns nonzero, the iteration is terminated, and
7781 for_each_template_parm returns 1. Otherwise, the iteration
7782 continues. If FN never returns a nonzero value, the value
7783 returned by for_each_template_parm is 0. If FN is NULL, it is
7784 considered to be the function which always returns 1.
7785
7786 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
7787 parameters that occur in non-deduced contexts. When false, only
7788 visits those template parameters that can be deduced. */
7789
7790 static int
7791 for_each_template_parm (tree t, tree_fn_t fn, void* data,
7792 struct pointer_set_t *visited,
7793 bool include_nondeduced_p)
7794 {
7795 struct pair_fn_data pfd;
7796 int result;
7797
7798 /* Set up. */
7799 pfd.fn = fn;
7800 pfd.data = data;
7801 pfd.include_nondeduced_p = include_nondeduced_p;
7802
7803 /* Walk the tree. (Conceptually, we would like to walk without
7804 duplicates, but for_each_template_parm_r recursively calls
7805 for_each_template_parm, so we would need to reorganize a fair
7806 bit to use walk_tree_without_duplicates, so we keep our own
7807 visited list.) */
7808 if (visited)
7809 pfd.visited = visited;
7810 else
7811 pfd.visited = pointer_set_create ();
7812 result = cp_walk_tree (&t,
7813 for_each_template_parm_r,
7814 &pfd,
7815 pfd.visited) != NULL_TREE;
7816
7817 /* Clean up. */
7818 if (!visited)
7819 {
7820 pointer_set_destroy (pfd.visited);
7821 pfd.visited = 0;
7822 }
7823
7824 return result;
7825 }
7826
7827 /* Returns true if T depends on any template parameter. */
7828
7829 int
7830 uses_template_parms (tree t)
7831 {
7832 bool dependent_p;
7833 int saved_processing_template_decl;
7834
7835 saved_processing_template_decl = processing_template_decl;
7836 if (!saved_processing_template_decl)
7837 processing_template_decl = 1;
7838 if (TYPE_P (t))
7839 dependent_p = dependent_type_p (t);
7840 else if (TREE_CODE (t) == TREE_VEC)
7841 dependent_p = any_dependent_template_arguments_p (t);
7842 else if (TREE_CODE (t) == TREE_LIST)
7843 dependent_p = (uses_template_parms (TREE_VALUE (t))
7844 || uses_template_parms (TREE_CHAIN (t)));
7845 else if (TREE_CODE (t) == TYPE_DECL)
7846 dependent_p = dependent_type_p (TREE_TYPE (t));
7847 else if (DECL_P (t)
7848 || EXPR_P (t)
7849 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
7850 || TREE_CODE (t) == OVERLOAD
7851 || BASELINK_P (t)
7852 || identifier_p (t)
7853 || TREE_CODE (t) == TRAIT_EXPR
7854 || TREE_CODE (t) == CONSTRUCTOR
7855 || CONSTANT_CLASS_P (t))
7856 dependent_p = (type_dependent_expression_p (t)
7857 || value_dependent_expression_p (t));
7858 else
7859 {
7860 gcc_assert (t == error_mark_node);
7861 dependent_p = false;
7862 }
7863
7864 processing_template_decl = saved_processing_template_decl;
7865
7866 return dependent_p;
7867 }
7868
7869 /* Returns true iff current_function_decl is an incompletely instantiated
7870 template. Useful instead of processing_template_decl because the latter
7871 is set to 0 during fold_non_dependent_expr. */
7872
7873 bool
7874 in_template_function (void)
7875 {
7876 tree fn = current_function_decl;
7877 bool ret;
7878 ++processing_template_decl;
7879 ret = (fn && DECL_LANG_SPECIFIC (fn)
7880 && DECL_TEMPLATE_INFO (fn)
7881 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
7882 --processing_template_decl;
7883 return ret;
7884 }
7885
7886 /* Returns true if T depends on any template parameter with level LEVEL. */
7887
7888 int
7889 uses_template_parms_level (tree t, int level)
7890 {
7891 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
7892 /*include_nondeduced_p=*/true);
7893 }
7894
7895 /* Returns TRUE iff INST is an instantiation we don't need to do in an
7896 ill-formed translation unit, i.e. a variable or function that isn't
7897 usable in a constant expression. */
7898
7899 static inline bool
7900 neglectable_inst_p (tree d)
7901 {
7902 return (DECL_P (d)
7903 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
7904 : decl_maybe_constant_var_p (d)));
7905 }
7906
7907 /* Returns TRUE iff we should refuse to instantiate DECL because it's
7908 neglectable and instantiated from within an erroneous instantiation. */
7909
7910 static bool
7911 limit_bad_template_recursion (tree decl)
7912 {
7913 struct tinst_level *lev = current_tinst_level;
7914 int errs = errorcount + sorrycount;
7915 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
7916 return false;
7917
7918 for (; lev; lev = lev->next)
7919 if (neglectable_inst_p (lev->decl))
7920 break;
7921
7922 return (lev && errs > lev->errors);
7923 }
7924
7925 static int tinst_depth;
7926 extern int max_tinst_depth;
7927 int depth_reached;
7928
7929 static GTY(()) struct tinst_level *last_error_tinst_level;
7930
7931 /* We're starting to instantiate D; record the template instantiation context
7932 for diagnostics and to restore it later. */
7933
7934 int
7935 push_tinst_level (tree d)
7936 {
7937 struct tinst_level *new_level;
7938
7939 if (tinst_depth >= max_tinst_depth)
7940 {
7941 last_error_tinst_level = current_tinst_level;
7942 if (TREE_CODE (d) == TREE_LIST)
7943 error ("template instantiation depth exceeds maximum of %d (use "
7944 "-ftemplate-depth= to increase the maximum) substituting %qS",
7945 max_tinst_depth, d);
7946 else
7947 error ("template instantiation depth exceeds maximum of %d (use "
7948 "-ftemplate-depth= to increase the maximum) instantiating %qD",
7949 max_tinst_depth, d);
7950
7951 print_instantiation_context ();
7952
7953 return 0;
7954 }
7955
7956 /* If the current instantiation caused problems, don't let it instantiate
7957 anything else. Do allow deduction substitution and decls usable in
7958 constant expressions. */
7959 if (limit_bad_template_recursion (d))
7960 return 0;
7961
7962 new_level = ggc_alloc_tinst_level ();
7963 new_level->decl = d;
7964 new_level->locus = input_location;
7965 new_level->errors = errorcount+sorrycount;
7966 new_level->in_system_header_p = in_system_header;
7967 new_level->next = current_tinst_level;
7968 current_tinst_level = new_level;
7969
7970 ++tinst_depth;
7971 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
7972 depth_reached = tinst_depth;
7973
7974 return 1;
7975 }
7976
7977 /* We're done instantiating this template; return to the instantiation
7978 context. */
7979
7980 void
7981 pop_tinst_level (void)
7982 {
7983 /* Restore the filename and line number stashed away when we started
7984 this instantiation. */
7985 input_location = current_tinst_level->locus;
7986 current_tinst_level = current_tinst_level->next;
7987 --tinst_depth;
7988 }
7989
7990 /* We're instantiating a deferred template; restore the template
7991 instantiation context in which the instantiation was requested, which
7992 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
7993
7994 static tree
7995 reopen_tinst_level (struct tinst_level *level)
7996 {
7997 struct tinst_level *t;
7998
7999 tinst_depth = 0;
8000 for (t = level; t; t = t->next)
8001 ++tinst_depth;
8002
8003 current_tinst_level = level;
8004 pop_tinst_level ();
8005 if (current_tinst_level)
8006 current_tinst_level->errors = errorcount+sorrycount;
8007 return level->decl;
8008 }
8009
8010 /* Returns the TINST_LEVEL which gives the original instantiation
8011 context. */
8012
8013 struct tinst_level *
8014 outermost_tinst_level (void)
8015 {
8016 struct tinst_level *level = current_tinst_level;
8017 if (level)
8018 while (level->next)
8019 level = level->next;
8020 return level;
8021 }
8022
8023 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
8024 vector of template arguments, as for tsubst.
8025
8026 Returns an appropriate tsubst'd friend declaration. */
8027
8028 static tree
8029 tsubst_friend_function (tree decl, tree args)
8030 {
8031 tree new_friend;
8032
8033 if (TREE_CODE (decl) == FUNCTION_DECL
8034 && DECL_TEMPLATE_INSTANTIATION (decl)
8035 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
8036 /* This was a friend declared with an explicit template
8037 argument list, e.g.:
8038
8039 friend void f<>(T);
8040
8041 to indicate that f was a template instantiation, not a new
8042 function declaration. Now, we have to figure out what
8043 instantiation of what template. */
8044 {
8045 tree template_id, arglist, fns;
8046 tree new_args;
8047 tree tmpl;
8048 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
8049
8050 /* Friend functions are looked up in the containing namespace scope.
8051 We must enter that scope, to avoid finding member functions of the
8052 current class with same name. */
8053 push_nested_namespace (ns);
8054 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
8055 tf_warning_or_error, NULL_TREE,
8056 /*integral_constant_expression_p=*/false);
8057 pop_nested_namespace (ns);
8058 arglist = tsubst (DECL_TI_ARGS (decl), args,
8059 tf_warning_or_error, NULL_TREE);
8060 template_id = lookup_template_function (fns, arglist);
8061
8062 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8063 tmpl = determine_specialization (template_id, new_friend,
8064 &new_args,
8065 /*need_member_template=*/0,
8066 TREE_VEC_LENGTH (args),
8067 tsk_none);
8068 return instantiate_template (tmpl, new_args, tf_error);
8069 }
8070
8071 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8072
8073 /* The NEW_FRIEND will look like an instantiation, to the
8074 compiler, but is not an instantiation from the point of view of
8075 the language. For example, we might have had:
8076
8077 template <class T> struct S {
8078 template <class U> friend void f(T, U);
8079 };
8080
8081 Then, in S<int>, template <class U> void f(int, U) is not an
8082 instantiation of anything. */
8083 if (new_friend == error_mark_node)
8084 return error_mark_node;
8085
8086 DECL_USE_TEMPLATE (new_friend) = 0;
8087 if (TREE_CODE (decl) == TEMPLATE_DECL)
8088 {
8089 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
8090 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
8091 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
8092 }
8093
8094 /* The mangled name for the NEW_FRIEND is incorrect. The function
8095 is not a template instantiation and should not be mangled like
8096 one. Therefore, we forget the mangling here; we'll recompute it
8097 later if we need it. */
8098 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
8099 {
8100 SET_DECL_RTL (new_friend, NULL);
8101 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
8102 }
8103
8104 if (DECL_NAMESPACE_SCOPE_P (new_friend))
8105 {
8106 tree old_decl;
8107 tree new_friend_template_info;
8108 tree new_friend_result_template_info;
8109 tree ns;
8110 int new_friend_is_defn;
8111
8112 /* We must save some information from NEW_FRIEND before calling
8113 duplicate decls since that function will free NEW_FRIEND if
8114 possible. */
8115 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
8116 new_friend_is_defn =
8117 (DECL_INITIAL (DECL_TEMPLATE_RESULT
8118 (template_for_substitution (new_friend)))
8119 != NULL_TREE);
8120 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
8121 {
8122 /* This declaration is a `primary' template. */
8123 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
8124
8125 new_friend_result_template_info
8126 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
8127 }
8128 else
8129 new_friend_result_template_info = NULL_TREE;
8130
8131 /* Make the init_value nonzero so pushdecl knows this is a defn. */
8132 if (new_friend_is_defn)
8133 DECL_INITIAL (new_friend) = error_mark_node;
8134
8135 /* Inside pushdecl_namespace_level, we will push into the
8136 current namespace. However, the friend function should go
8137 into the namespace of the template. */
8138 ns = decl_namespace_context (new_friend);
8139 push_nested_namespace (ns);
8140 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
8141 pop_nested_namespace (ns);
8142
8143 if (old_decl == error_mark_node)
8144 return error_mark_node;
8145
8146 if (old_decl != new_friend)
8147 {
8148 /* This new friend declaration matched an existing
8149 declaration. For example, given:
8150
8151 template <class T> void f(T);
8152 template <class U> class C {
8153 template <class T> friend void f(T) {}
8154 };
8155
8156 the friend declaration actually provides the definition
8157 of `f', once C has been instantiated for some type. So,
8158 old_decl will be the out-of-class template declaration,
8159 while new_friend is the in-class definition.
8160
8161 But, if `f' was called before this point, the
8162 instantiation of `f' will have DECL_TI_ARGS corresponding
8163 to `T' but not to `U', references to which might appear
8164 in the definition of `f'. Previously, the most general
8165 template for an instantiation of `f' was the out-of-class
8166 version; now it is the in-class version. Therefore, we
8167 run through all specialization of `f', adding to their
8168 DECL_TI_ARGS appropriately. In particular, they need a
8169 new set of outer arguments, corresponding to the
8170 arguments for this class instantiation.
8171
8172 The same situation can arise with something like this:
8173
8174 friend void f(int);
8175 template <class T> class C {
8176 friend void f(T) {}
8177 };
8178
8179 when `C<int>' is instantiated. Now, `f(int)' is defined
8180 in the class. */
8181
8182 if (!new_friend_is_defn)
8183 /* On the other hand, if the in-class declaration does
8184 *not* provide a definition, then we don't want to alter
8185 existing definitions. We can just leave everything
8186 alone. */
8187 ;
8188 else
8189 {
8190 tree new_template = TI_TEMPLATE (new_friend_template_info);
8191 tree new_args = TI_ARGS (new_friend_template_info);
8192
8193 /* Overwrite whatever template info was there before, if
8194 any, with the new template information pertaining to
8195 the declaration. */
8196 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
8197
8198 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
8199 {
8200 /* We should have called reregister_specialization in
8201 duplicate_decls. */
8202 gcc_assert (retrieve_specialization (new_template,
8203 new_args, 0)
8204 == old_decl);
8205
8206 /* Instantiate it if the global has already been used. */
8207 if (DECL_ODR_USED (old_decl))
8208 instantiate_decl (old_decl, /*defer_ok=*/true,
8209 /*expl_inst_class_mem_p=*/false);
8210 }
8211 else
8212 {
8213 tree t;
8214
8215 /* Indicate that the old function template is a partial
8216 instantiation. */
8217 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
8218 = new_friend_result_template_info;
8219
8220 gcc_assert (new_template
8221 == most_general_template (new_template));
8222 gcc_assert (new_template != old_decl);
8223
8224 /* Reassign any specializations already in the hash table
8225 to the new more general template, and add the
8226 additional template args. */
8227 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
8228 t != NULL_TREE;
8229 t = TREE_CHAIN (t))
8230 {
8231 tree spec = TREE_VALUE (t);
8232 spec_entry elt;
8233
8234 elt.tmpl = old_decl;
8235 elt.args = DECL_TI_ARGS (spec);
8236 elt.spec = NULL_TREE;
8237
8238 htab_remove_elt (decl_specializations, &elt);
8239
8240 DECL_TI_ARGS (spec)
8241 = add_outermost_template_args (new_args,
8242 DECL_TI_ARGS (spec));
8243
8244 register_specialization
8245 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
8246
8247 }
8248 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
8249 }
8250 }
8251
8252 /* The information from NEW_FRIEND has been merged into OLD_DECL
8253 by duplicate_decls. */
8254 new_friend = old_decl;
8255 }
8256 }
8257 else
8258 {
8259 tree context = DECL_CONTEXT (new_friend);
8260 bool dependent_p;
8261
8262 /* In the code
8263 template <class T> class C {
8264 template <class U> friend void C1<U>::f (); // case 1
8265 friend void C2<T>::f (); // case 2
8266 };
8267 we only need to make sure CONTEXT is a complete type for
8268 case 2. To distinguish between the two cases, we note that
8269 CONTEXT of case 1 remains dependent type after tsubst while
8270 this isn't true for case 2. */
8271 ++processing_template_decl;
8272 dependent_p = dependent_type_p (context);
8273 --processing_template_decl;
8274
8275 if (!dependent_p
8276 && !complete_type_or_else (context, NULL_TREE))
8277 return error_mark_node;
8278
8279 if (COMPLETE_TYPE_P (context))
8280 {
8281 /* Check to see that the declaration is really present, and,
8282 possibly obtain an improved declaration. */
8283 tree fn = check_classfn (context,
8284 new_friend, NULL_TREE);
8285
8286 if (fn)
8287 new_friend = fn;
8288 }
8289 }
8290
8291 return new_friend;
8292 }
8293
8294 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
8295 template arguments, as for tsubst.
8296
8297 Returns an appropriate tsubst'd friend type or error_mark_node on
8298 failure. */
8299
8300 static tree
8301 tsubst_friend_class (tree friend_tmpl, tree args)
8302 {
8303 tree friend_type;
8304 tree tmpl;
8305 tree context;
8306
8307 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
8308 {
8309 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
8310 return TREE_TYPE (t);
8311 }
8312
8313 context = CP_DECL_CONTEXT (friend_tmpl);
8314
8315 if (context != global_namespace)
8316 {
8317 if (TREE_CODE (context) == NAMESPACE_DECL)
8318 push_nested_namespace (context);
8319 else
8320 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
8321 }
8322
8323 /* Look for a class template declaration. We look for hidden names
8324 because two friend declarations of the same template are the
8325 same. For example, in:
8326
8327 struct A {
8328 template <typename> friend class F;
8329 };
8330 template <typename> struct B {
8331 template <typename> friend class F;
8332 };
8333
8334 both F templates are the same. */
8335 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
8336 /*block_p=*/true, 0, LOOKUP_HIDDEN);
8337
8338 /* But, if we don't find one, it might be because we're in a
8339 situation like this:
8340
8341 template <class T>
8342 struct S {
8343 template <class U>
8344 friend struct S;
8345 };
8346
8347 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
8348 for `S<int>', not the TEMPLATE_DECL. */
8349 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
8350 {
8351 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
8352 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
8353 }
8354
8355 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
8356 {
8357 /* The friend template has already been declared. Just
8358 check to see that the declarations match, and install any new
8359 default parameters. We must tsubst the default parameters,
8360 of course. We only need the innermost template parameters
8361 because that is all that redeclare_class_template will look
8362 at. */
8363 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
8364 > TMPL_ARGS_DEPTH (args))
8365 {
8366 tree parms;
8367 location_t saved_input_location;
8368 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
8369 args, tf_warning_or_error);
8370
8371 saved_input_location = input_location;
8372 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
8373 redeclare_class_template (TREE_TYPE (tmpl), parms);
8374 input_location = saved_input_location;
8375
8376 }
8377
8378 friend_type = TREE_TYPE (tmpl);
8379 }
8380 else
8381 {
8382 /* The friend template has not already been declared. In this
8383 case, the instantiation of the template class will cause the
8384 injection of this template into the global scope. */
8385 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
8386 if (tmpl == error_mark_node)
8387 return error_mark_node;
8388
8389 /* The new TMPL is not an instantiation of anything, so we
8390 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
8391 the new type because that is supposed to be the corresponding
8392 template decl, i.e., TMPL. */
8393 DECL_USE_TEMPLATE (tmpl) = 0;
8394 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
8395 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
8396 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
8397 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
8398
8399 /* Inject this template into the global scope. */
8400 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
8401 }
8402
8403 if (context != global_namespace)
8404 {
8405 if (TREE_CODE (context) == NAMESPACE_DECL)
8406 pop_nested_namespace (context);
8407 else
8408 pop_nested_class ();
8409 }
8410
8411 return friend_type;
8412 }
8413
8414 /* Returns zero if TYPE cannot be completed later due to circularity.
8415 Otherwise returns one. */
8416
8417 static int
8418 can_complete_type_without_circularity (tree type)
8419 {
8420 if (type == NULL_TREE || type == error_mark_node)
8421 return 0;
8422 else if (COMPLETE_TYPE_P (type))
8423 return 1;
8424 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
8425 return can_complete_type_without_circularity (TREE_TYPE (type));
8426 else if (CLASS_TYPE_P (type)
8427 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
8428 return 0;
8429 else
8430 return 1;
8431 }
8432
8433 /* Apply any attributes which had to be deferred until instantiation
8434 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
8435 ARGS, COMPLAIN, IN_DECL are as tsubst. */
8436
8437 static void
8438 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
8439 tree args, tsubst_flags_t complain, tree in_decl)
8440 {
8441 tree last_dep = NULL_TREE;
8442 tree t;
8443 tree *p;
8444
8445 for (t = attributes; t; t = TREE_CHAIN (t))
8446 if (ATTR_IS_DEPENDENT (t))
8447 {
8448 last_dep = t;
8449 attributes = copy_list (attributes);
8450 break;
8451 }
8452
8453 if (DECL_P (*decl_p))
8454 {
8455 if (TREE_TYPE (*decl_p) == error_mark_node)
8456 return;
8457 p = &DECL_ATTRIBUTES (*decl_p);
8458 }
8459 else
8460 p = &TYPE_ATTRIBUTES (*decl_p);
8461
8462 if (last_dep)
8463 {
8464 tree late_attrs = NULL_TREE;
8465 tree *q = &late_attrs;
8466
8467 for (*p = attributes; *p; )
8468 {
8469 t = *p;
8470 if (ATTR_IS_DEPENDENT (t))
8471 {
8472 *p = TREE_CHAIN (t);
8473 TREE_CHAIN (t) = NULL_TREE;
8474 /* If the first attribute argument is an identifier, don't
8475 pass it through tsubst. Attributes like mode, format,
8476 cleanup and several target specific attributes expect it
8477 unmodified. */
8478 if (TREE_VALUE (t)
8479 && TREE_CODE (TREE_VALUE (t)) == TREE_LIST
8480 && TREE_VALUE (TREE_VALUE (t))
8481 && (identifier_p (TREE_VALUE (TREE_VALUE (t)))))
8482 {
8483 tree chain
8484 = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain,
8485 in_decl,
8486 /*integral_constant_expression_p=*/false);
8487 if (chain != TREE_CHAIN (TREE_VALUE (t)))
8488 TREE_VALUE (t)
8489 = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)),
8490 chain);
8491 }
8492 else
8493 TREE_VALUE (t)
8494 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
8495 /*integral_constant_expression_p=*/false);
8496 *q = t;
8497 q = &TREE_CHAIN (t);
8498 }
8499 else
8500 p = &TREE_CHAIN (t);
8501 }
8502
8503 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
8504 }
8505 }
8506
8507 /* Perform (or defer) access check for typedefs that were referenced
8508 from within the template TMPL code.
8509 This is a subroutine of instantiate_decl and instantiate_class_template.
8510 TMPL is the template to consider and TARGS is the list of arguments of
8511 that template. */
8512
8513 static void
8514 perform_typedefs_access_check (tree tmpl, tree targs)
8515 {
8516 location_t saved_location;
8517 unsigned i;
8518 qualified_typedef_usage_t *iter;
8519
8520 if (!tmpl
8521 || (!CLASS_TYPE_P (tmpl)
8522 && TREE_CODE (tmpl) != FUNCTION_DECL))
8523 return;
8524
8525 saved_location = input_location;
8526 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
8527 {
8528 tree type_decl = iter->typedef_decl;
8529 tree type_scope = iter->context;
8530
8531 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
8532 continue;
8533
8534 if (uses_template_parms (type_decl))
8535 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
8536 if (uses_template_parms (type_scope))
8537 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
8538
8539 /* Make access check error messages point to the location
8540 of the use of the typedef. */
8541 input_location = iter->locus;
8542 perform_or_defer_access_check (TYPE_BINFO (type_scope),
8543 type_decl, type_decl,
8544 tf_warning_or_error);
8545 }
8546 input_location = saved_location;
8547 }
8548
8549 static tree
8550 instantiate_class_template_1 (tree type)
8551 {
8552 tree templ, args, pattern, t, member;
8553 tree typedecl;
8554 tree pbinfo;
8555 tree base_list;
8556 unsigned int saved_maximum_field_alignment;
8557 tree fn_context;
8558
8559 if (type == error_mark_node)
8560 return error_mark_node;
8561
8562 if (COMPLETE_OR_OPEN_TYPE_P (type)
8563 || uses_template_parms (type))
8564 return type;
8565
8566 /* Figure out which template is being instantiated. */
8567 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
8568 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
8569
8570 /* Determine what specialization of the original template to
8571 instantiate. */
8572 t = most_specialized_class (type, templ, tf_warning_or_error);
8573 if (t == error_mark_node)
8574 {
8575 TYPE_BEING_DEFINED (type) = 1;
8576 return error_mark_node;
8577 }
8578 else if (t)
8579 {
8580 /* This TYPE is actually an instantiation of a partial
8581 specialization. We replace the innermost set of ARGS with
8582 the arguments appropriate for substitution. For example,
8583 given:
8584
8585 template <class T> struct S {};
8586 template <class T> struct S<T*> {};
8587
8588 and supposing that we are instantiating S<int*>, ARGS will
8589 presently be {int*} -- but we need {int}. */
8590 pattern = TREE_TYPE (t);
8591 args = TREE_PURPOSE (t);
8592 }
8593 else
8594 {
8595 pattern = TREE_TYPE (templ);
8596 args = CLASSTYPE_TI_ARGS (type);
8597 }
8598
8599 /* If the template we're instantiating is incomplete, then clearly
8600 there's nothing we can do. */
8601 if (!COMPLETE_TYPE_P (pattern))
8602 return type;
8603
8604 /* If we've recursively instantiated too many templates, stop. */
8605 if (! push_tinst_level (type))
8606 return type;
8607
8608 /* Now we're really doing the instantiation. Mark the type as in
8609 the process of being defined. */
8610 TYPE_BEING_DEFINED (type) = 1;
8611
8612 /* We may be in the middle of deferred access check. Disable
8613 it now. */
8614 push_deferring_access_checks (dk_no_deferred);
8615
8616 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
8617 if (!fn_context)
8618 push_to_top_level ();
8619 /* Use #pragma pack from the template context. */
8620 saved_maximum_field_alignment = maximum_field_alignment;
8621 maximum_field_alignment = TYPE_PRECISION (pattern);
8622
8623 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
8624
8625 /* Set the input location to the most specialized template definition.
8626 This is needed if tsubsting causes an error. */
8627 typedecl = TYPE_MAIN_DECL (pattern);
8628 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
8629 DECL_SOURCE_LOCATION (typedecl);
8630
8631 TYPE_PACKED (type) = TYPE_PACKED (pattern);
8632 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
8633 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
8634 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
8635 if (ANON_AGGR_TYPE_P (pattern))
8636 SET_ANON_AGGR_TYPE_P (type);
8637 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
8638 {
8639 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
8640 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
8641 /* Adjust visibility for template arguments. */
8642 determine_visibility (TYPE_MAIN_DECL (type));
8643 }
8644 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
8645
8646 pbinfo = TYPE_BINFO (pattern);
8647
8648 /* We should never instantiate a nested class before its enclosing
8649 class; we need to look up the nested class by name before we can
8650 instantiate it, and that lookup should instantiate the enclosing
8651 class. */
8652 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
8653 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
8654
8655 base_list = NULL_TREE;
8656 if (BINFO_N_BASE_BINFOS (pbinfo))
8657 {
8658 tree pbase_binfo;
8659 tree pushed_scope;
8660 int i;
8661
8662 /* We must enter the scope containing the type, as that is where
8663 the accessibility of types named in dependent bases are
8664 looked up from. */
8665 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
8666
8667 /* Substitute into each of the bases to determine the actual
8668 basetypes. */
8669 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
8670 {
8671 tree base;
8672 tree access = BINFO_BASE_ACCESS (pbinfo, i);
8673 tree expanded_bases = NULL_TREE;
8674 int idx, len = 1;
8675
8676 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
8677 {
8678 expanded_bases =
8679 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
8680 args, tf_error, NULL_TREE);
8681 if (expanded_bases == error_mark_node)
8682 continue;
8683
8684 len = TREE_VEC_LENGTH (expanded_bases);
8685 }
8686
8687 for (idx = 0; idx < len; idx++)
8688 {
8689 if (expanded_bases)
8690 /* Extract the already-expanded base class. */
8691 base = TREE_VEC_ELT (expanded_bases, idx);
8692 else
8693 /* Substitute to figure out the base class. */
8694 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
8695 NULL_TREE);
8696
8697 if (base == error_mark_node)
8698 continue;
8699
8700 base_list = tree_cons (access, base, base_list);
8701 if (BINFO_VIRTUAL_P (pbase_binfo))
8702 TREE_TYPE (base_list) = integer_type_node;
8703 }
8704 }
8705
8706 /* The list is now in reverse order; correct that. */
8707 base_list = nreverse (base_list);
8708
8709 if (pushed_scope)
8710 pop_scope (pushed_scope);
8711 }
8712 /* Now call xref_basetypes to set up all the base-class
8713 information. */
8714 xref_basetypes (type, base_list);
8715
8716 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
8717 (int) ATTR_FLAG_TYPE_IN_PLACE,
8718 args, tf_error, NULL_TREE);
8719 fixup_attribute_variants (type);
8720
8721 /* Now that our base classes are set up, enter the scope of the
8722 class, so that name lookups into base classes, etc. will work
8723 correctly. This is precisely analogous to what we do in
8724 begin_class_definition when defining an ordinary non-template
8725 class, except we also need to push the enclosing classes. */
8726 push_nested_class (type);
8727
8728 /* Now members are processed in the order of declaration. */
8729 for (member = CLASSTYPE_DECL_LIST (pattern);
8730 member; member = TREE_CHAIN (member))
8731 {
8732 tree t = TREE_VALUE (member);
8733
8734 if (TREE_PURPOSE (member))
8735 {
8736 if (TYPE_P (t))
8737 {
8738 /* Build new CLASSTYPE_NESTED_UTDS. */
8739
8740 tree newtag;
8741 bool class_template_p;
8742
8743 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
8744 && TYPE_LANG_SPECIFIC (t)
8745 && CLASSTYPE_IS_TEMPLATE (t));
8746 /* If the member is a class template, then -- even after
8747 substitution -- there may be dependent types in the
8748 template argument list for the class. We increment
8749 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
8750 that function will assume that no types are dependent
8751 when outside of a template. */
8752 if (class_template_p)
8753 ++processing_template_decl;
8754 newtag = tsubst (t, args, tf_error, NULL_TREE);
8755 if (class_template_p)
8756 --processing_template_decl;
8757 if (newtag == error_mark_node)
8758 continue;
8759
8760 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
8761 {
8762 tree name = TYPE_IDENTIFIER (t);
8763
8764 if (class_template_p)
8765 /* Unfortunately, lookup_template_class sets
8766 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
8767 instantiation (i.e., for the type of a member
8768 template class nested within a template class.)
8769 This behavior is required for
8770 maybe_process_partial_specialization to work
8771 correctly, but is not accurate in this case;
8772 the TAG is not an instantiation of anything.
8773 (The corresponding TEMPLATE_DECL is an
8774 instantiation, but the TYPE is not.) */
8775 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
8776
8777 /* Now, we call pushtag to put this NEWTAG into the scope of
8778 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
8779 pushtag calling push_template_decl. We don't have to do
8780 this for enums because it will already have been done in
8781 tsubst_enum. */
8782 if (name)
8783 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
8784 pushtag (name, newtag, /*tag_scope=*/ts_current);
8785 }
8786 }
8787 else if (DECL_DECLARES_FUNCTION_P (t))
8788 {
8789 /* Build new TYPE_METHODS. */
8790 tree r;
8791
8792 if (TREE_CODE (t) == TEMPLATE_DECL)
8793 ++processing_template_decl;
8794 r = tsubst (t, args, tf_error, NULL_TREE);
8795 if (TREE_CODE (t) == TEMPLATE_DECL)
8796 --processing_template_decl;
8797 set_current_access_from_decl (r);
8798 finish_member_declaration (r);
8799 /* Instantiate members marked with attribute used. */
8800 if (r != error_mark_node && DECL_PRESERVE_P (r))
8801 mark_used (r);
8802 }
8803 else
8804 {
8805 /* Build new TYPE_FIELDS. */
8806 if (TREE_CODE (t) == STATIC_ASSERT)
8807 {
8808 tree condition;
8809
8810 ++c_inhibit_evaluation_warnings;
8811 condition =
8812 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
8813 tf_warning_or_error, NULL_TREE,
8814 /*integral_constant_expression_p=*/true);
8815 --c_inhibit_evaluation_warnings;
8816
8817 finish_static_assert (condition,
8818 STATIC_ASSERT_MESSAGE (t),
8819 STATIC_ASSERT_SOURCE_LOCATION (t),
8820 /*member_p=*/true);
8821 }
8822 else if (TREE_CODE (t) != CONST_DECL)
8823 {
8824 tree r;
8825
8826 /* The file and line for this declaration, to
8827 assist in error message reporting. Since we
8828 called push_tinst_level above, we don't need to
8829 restore these. */
8830 input_location = DECL_SOURCE_LOCATION (t);
8831
8832 if (TREE_CODE (t) == TEMPLATE_DECL)
8833 ++processing_template_decl;
8834 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
8835 if (TREE_CODE (t) == TEMPLATE_DECL)
8836 --processing_template_decl;
8837 if (VAR_P (r))
8838 {
8839 /* In [temp.inst]:
8840
8841 [t]he initialization (and any associated
8842 side-effects) of a static data member does
8843 not occur unless the static data member is
8844 itself used in a way that requires the
8845 definition of the static data member to
8846 exist.
8847
8848 Therefore, we do not substitute into the
8849 initialized for the static data member here. */
8850 finish_static_data_member_decl
8851 (r,
8852 /*init=*/NULL_TREE,
8853 /*init_const_expr_p=*/false,
8854 /*asmspec_tree=*/NULL_TREE,
8855 /*flags=*/0);
8856 /* Instantiate members marked with attribute used. */
8857 if (r != error_mark_node && DECL_PRESERVE_P (r))
8858 mark_used (r);
8859 }
8860 else if (TREE_CODE (r) == FIELD_DECL)
8861 {
8862 /* Determine whether R has a valid type and can be
8863 completed later. If R is invalid, then it is
8864 replaced by error_mark_node so that it will not be
8865 added to TYPE_FIELDS. */
8866 tree rtype = TREE_TYPE (r);
8867 if (can_complete_type_without_circularity (rtype))
8868 complete_type (rtype);
8869
8870 if (!COMPLETE_TYPE_P (rtype))
8871 {
8872 cxx_incomplete_type_error (r, rtype);
8873 r = error_mark_node;
8874 }
8875 }
8876
8877 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
8878 such a thing will already have been added to the field
8879 list by tsubst_enum in finish_member_declaration in the
8880 CLASSTYPE_NESTED_UTDS case above. */
8881 if (!(TREE_CODE (r) == TYPE_DECL
8882 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
8883 && DECL_ARTIFICIAL (r)))
8884 {
8885 set_current_access_from_decl (r);
8886 finish_member_declaration (r);
8887 }
8888 }
8889 }
8890 }
8891 else
8892 {
8893 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
8894 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
8895 {
8896 /* Build new CLASSTYPE_FRIEND_CLASSES. */
8897
8898 tree friend_type = t;
8899 bool adjust_processing_template_decl = false;
8900
8901 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
8902 {
8903 /* template <class T> friend class C; */
8904 friend_type = tsubst_friend_class (friend_type, args);
8905 adjust_processing_template_decl = true;
8906 }
8907 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
8908 {
8909 /* template <class T> friend class C::D; */
8910 friend_type = tsubst (friend_type, args,
8911 tf_warning_or_error, NULL_TREE);
8912 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
8913 friend_type = TREE_TYPE (friend_type);
8914 adjust_processing_template_decl = true;
8915 }
8916 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
8917 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
8918 {
8919 /* This could be either
8920
8921 friend class T::C;
8922
8923 when dependent_type_p is false or
8924
8925 template <class U> friend class T::C;
8926
8927 otherwise. */
8928 friend_type = tsubst (friend_type, args,
8929 tf_warning_or_error, NULL_TREE);
8930 /* Bump processing_template_decl for correct
8931 dependent_type_p calculation. */
8932 ++processing_template_decl;
8933 if (dependent_type_p (friend_type))
8934 adjust_processing_template_decl = true;
8935 --processing_template_decl;
8936 }
8937 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
8938 && hidden_name_p (TYPE_NAME (friend_type)))
8939 {
8940 /* friend class C;
8941
8942 where C hasn't been declared yet. Let's lookup name
8943 from namespace scope directly, bypassing any name that
8944 come from dependent base class. */
8945 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
8946
8947 /* The call to xref_tag_from_type does injection for friend
8948 classes. */
8949 push_nested_namespace (ns);
8950 friend_type =
8951 xref_tag_from_type (friend_type, NULL_TREE,
8952 /*tag_scope=*/ts_current);
8953 pop_nested_namespace (ns);
8954 }
8955 else if (uses_template_parms (friend_type))
8956 /* friend class C<T>; */
8957 friend_type = tsubst (friend_type, args,
8958 tf_warning_or_error, NULL_TREE);
8959 /* Otherwise it's
8960
8961 friend class C;
8962
8963 where C is already declared or
8964
8965 friend class C<int>;
8966
8967 We don't have to do anything in these cases. */
8968
8969 if (adjust_processing_template_decl)
8970 /* Trick make_friend_class into realizing that the friend
8971 we're adding is a template, not an ordinary class. It's
8972 important that we use make_friend_class since it will
8973 perform some error-checking and output cross-reference
8974 information. */
8975 ++processing_template_decl;
8976
8977 if (friend_type != error_mark_node)
8978 make_friend_class (type, friend_type, /*complain=*/false);
8979
8980 if (adjust_processing_template_decl)
8981 --processing_template_decl;
8982 }
8983 else
8984 {
8985 /* Build new DECL_FRIENDLIST. */
8986 tree r;
8987
8988 /* The file and line for this declaration, to
8989 assist in error message reporting. Since we
8990 called push_tinst_level above, we don't need to
8991 restore these. */
8992 input_location = DECL_SOURCE_LOCATION (t);
8993
8994 if (TREE_CODE (t) == TEMPLATE_DECL)
8995 {
8996 ++processing_template_decl;
8997 push_deferring_access_checks (dk_no_check);
8998 }
8999
9000 r = tsubst_friend_function (t, args);
9001 add_friend (type, r, /*complain=*/false);
9002 if (TREE_CODE (t) == TEMPLATE_DECL)
9003 {
9004 pop_deferring_access_checks ();
9005 --processing_template_decl;
9006 }
9007 }
9008 }
9009 }
9010
9011 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
9012 {
9013 tree decl = lambda_function (type);
9014 if (decl)
9015 {
9016 instantiate_decl (decl, false, false);
9017
9018 /* We need to instantiate the capture list from the template
9019 after we've instantiated the closure members, but before we
9020 consider adding the conversion op. Also keep any captures
9021 that may have been added during instantiation of the op(). */
9022 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
9023 tree tmpl_cap
9024 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
9025 args, tf_warning_or_error, NULL_TREE,
9026 false, false);
9027
9028 LAMBDA_EXPR_CAPTURE_LIST (expr)
9029 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
9030
9031 maybe_add_lambda_conv_op (type);
9032 }
9033 else
9034 gcc_assert (errorcount);
9035 }
9036
9037 /* Set the file and line number information to whatever is given for
9038 the class itself. This puts error messages involving generated
9039 implicit functions at a predictable point, and the same point
9040 that would be used for non-template classes. */
9041 input_location = DECL_SOURCE_LOCATION (typedecl);
9042
9043 unreverse_member_declarations (type);
9044 finish_struct_1 (type);
9045 TYPE_BEING_DEFINED (type) = 0;
9046
9047 /* We don't instantiate default arguments for member functions. 14.7.1:
9048
9049 The implicit instantiation of a class template specialization causes
9050 the implicit instantiation of the declarations, but not of the
9051 definitions or default arguments, of the class member functions,
9052 member classes, static data members and member templates.... */
9053
9054 /* Some typedefs referenced from within the template code need to be access
9055 checked at template instantiation time, i.e now. These types were
9056 added to the template at parsing time. Let's get those and perform
9057 the access checks then. */
9058 perform_typedefs_access_check (pattern, args);
9059 perform_deferred_access_checks (tf_warning_or_error);
9060 pop_nested_class ();
9061 maximum_field_alignment = saved_maximum_field_alignment;
9062 if (!fn_context)
9063 pop_from_top_level ();
9064 pop_deferring_access_checks ();
9065 pop_tinst_level ();
9066
9067 /* The vtable for a template class can be emitted in any translation
9068 unit in which the class is instantiated. When there is no key
9069 method, however, finish_struct_1 will already have added TYPE to
9070 the keyed_classes list. */
9071 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
9072 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
9073
9074 return type;
9075 }
9076
9077 /* Wrapper for instantiate_class_template_1. */
9078
9079 tree
9080 instantiate_class_template (tree type)
9081 {
9082 tree ret;
9083 timevar_push (TV_TEMPLATE_INST);
9084 ret = instantiate_class_template_1 (type);
9085 timevar_pop (TV_TEMPLATE_INST);
9086 return ret;
9087 }
9088
9089 static tree
9090 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9091 {
9092 tree r;
9093
9094 if (!t)
9095 r = t;
9096 else if (TYPE_P (t))
9097 r = tsubst (t, args, complain, in_decl);
9098 else
9099 {
9100 if (!(complain & tf_warning))
9101 ++c_inhibit_evaluation_warnings;
9102 r = tsubst_expr (t, args, complain, in_decl,
9103 /*integral_constant_expression_p=*/true);
9104 if (!(complain & tf_warning))
9105 --c_inhibit_evaluation_warnings;
9106 /* Preserve the raw-reference nature of T. */
9107 if (TREE_TYPE (t) && TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE
9108 && REFERENCE_REF_P (r))
9109 r = TREE_OPERAND (r, 0);
9110 }
9111 return r;
9112 }
9113
9114 /* Given a function parameter pack TMPL_PARM and some function parameters
9115 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
9116 and set *SPEC_P to point at the next point in the list. */
9117
9118 static tree
9119 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
9120 {
9121 /* Collect all of the extra "packed" parameters into an
9122 argument pack. */
9123 tree parmvec;
9124 tree parmtypevec;
9125 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
9126 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
9127 tree spec_parm = *spec_p;
9128 int i, len;
9129
9130 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
9131 if (tmpl_parm
9132 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
9133 break;
9134
9135 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
9136 parmvec = make_tree_vec (len);
9137 parmtypevec = make_tree_vec (len);
9138 spec_parm = *spec_p;
9139 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
9140 {
9141 TREE_VEC_ELT (parmvec, i) = spec_parm;
9142 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
9143 }
9144
9145 /* Build the argument packs. */
9146 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
9147 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
9148 TREE_TYPE (argpack) = argtypepack;
9149 *spec_p = spec_parm;
9150
9151 return argpack;
9152 }
9153
9154 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
9155 NONTYPE_ARGUMENT_PACK. */
9156
9157 static tree
9158 make_fnparm_pack (tree spec_parm)
9159 {
9160 return extract_fnparm_pack (NULL_TREE, &spec_parm);
9161 }
9162
9163 /* Return true iff the Ith element of the argument pack ARG_PACK is a
9164 pack expansion. */
9165
9166 static bool
9167 argument_pack_element_is_expansion_p (tree arg_pack, int i)
9168 {
9169 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
9170 if (i >= TREE_VEC_LENGTH (vec))
9171 return false;
9172 return PACK_EXPANSION_P (TREE_VEC_ELT (vec, i));
9173 }
9174
9175
9176 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
9177
9178 static tree
9179 make_argument_pack_select (tree arg_pack, unsigned index)
9180 {
9181 tree aps = make_node (ARGUMENT_PACK_SELECT);
9182
9183 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
9184 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
9185
9186 return aps;
9187 }
9188
9189 /* This is a subroutine of tsubst_pack_expansion.
9190
9191 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
9192 mechanism to store the (non complete list of) arguments of the
9193 substitution and return a non substituted pack expansion, in order
9194 to wait for when we have enough arguments to really perform the
9195 substitution. */
9196
9197 static bool
9198 use_pack_expansion_extra_args_p (tree parm_packs,
9199 int arg_pack_len,
9200 bool has_empty_arg)
9201 {
9202 if (parm_packs == NULL_TREE)
9203 return false;
9204
9205 bool has_expansion_arg = false;
9206 for (int i = 0 ; i < arg_pack_len; ++i)
9207 {
9208 bool has_non_expansion_arg = false;
9209 for (tree parm_pack = parm_packs;
9210 parm_pack;
9211 parm_pack = TREE_CHAIN (parm_pack))
9212 {
9213 tree arg = TREE_VALUE (parm_pack);
9214
9215 if (argument_pack_element_is_expansion_p (arg, i))
9216 has_expansion_arg = true;
9217 else
9218 has_non_expansion_arg = true;
9219 }
9220
9221 /* If one pack has an expansion and another pack has a normal
9222 argument or if one pack has an empty argument another one
9223 hasn't then tsubst_pack_expansion cannot perform the
9224 substitution and need to fall back on the
9225 PACK_EXPANSION_EXTRA mechanism. */
9226 if ((has_expansion_arg && has_non_expansion_arg)
9227 || (has_empty_arg && (has_expansion_arg || has_non_expansion_arg)))
9228 return true;
9229 }
9230 return false;
9231 }
9232
9233 /* [temp.variadic]/6 says that:
9234
9235 The instantiation of a pack expansion [...]
9236 produces a list E1,E2, ..., En, where N is the number of elements
9237 in the pack expansion parameters.
9238
9239 This subroutine of tsubst_pack_expansion produces one of these Ei.
9240
9241 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
9242 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
9243 PATTERN, and each TREE_VALUE is its corresponding argument pack.
9244 INDEX is the index 'i' of the element Ei to produce. ARGS,
9245 COMPLAIN, and IN_DECL are the same parameters as for the
9246 tsubst_pack_expansion function.
9247
9248 The function returns the resulting Ei upon successful completion,
9249 or error_mark_node.
9250
9251 Note that this function possibly modifies the ARGS parameter, so
9252 it's the responsibility of the caller to restore it. */
9253
9254 static tree
9255 gen_elem_of_pack_expansion_instantiation (tree pattern,
9256 tree parm_packs,
9257 unsigned index,
9258 tree args /* This parm gets
9259 modified. */,
9260 tsubst_flags_t complain,
9261 tree in_decl)
9262 {
9263 tree t;
9264 bool ith_elem_is_expansion = false;
9265
9266 /* For each parameter pack, change the substitution of the parameter
9267 pack to the ith argument in its argument pack, then expand the
9268 pattern. */
9269 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
9270 {
9271 tree parm = TREE_PURPOSE (pack);
9272 tree arg_pack = TREE_VALUE (pack);
9273 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
9274
9275 ith_elem_is_expansion |=
9276 argument_pack_element_is_expansion_p (arg_pack, index);
9277
9278 /* Select the Ith argument from the pack. */
9279 if (TREE_CODE (parm) == PARM_DECL)
9280 {
9281 if (index == 0)
9282 {
9283 aps = make_argument_pack_select (arg_pack, index);
9284 mark_used (parm);
9285 register_local_specialization (aps, parm);
9286 }
9287 else
9288 aps = retrieve_local_specialization (parm);
9289 }
9290 else
9291 {
9292 int idx, level;
9293 template_parm_level_and_index (parm, &level, &idx);
9294
9295 if (index == 0)
9296 {
9297 aps = make_argument_pack_select (arg_pack, index);
9298 /* Update the corresponding argument. */
9299 TMPL_ARG (args, level, idx) = aps;
9300 }
9301 else
9302 /* Re-use the ARGUMENT_PACK_SELECT. */
9303 aps = TMPL_ARG (args, level, idx);
9304 }
9305 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
9306 }
9307
9308 /* Substitute into the PATTERN with the (possibly altered)
9309 arguments. */
9310 if (!TYPE_P (pattern))
9311 t = tsubst_expr (pattern, args, complain, in_decl,
9312 /*integral_constant_expression_p=*/false);
9313 else
9314 t = tsubst (pattern, args, complain, in_decl);
9315
9316 /* If the Ith argument pack element is a pack expansion, then
9317 the Ith element resulting from the substituting is going to
9318 be a pack expansion as well. */
9319 if (ith_elem_is_expansion)
9320 t = make_pack_expansion (t);
9321
9322 return t;
9323 }
9324
9325 /* Substitute ARGS into T, which is an pack expansion
9326 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
9327 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
9328 (if only a partial substitution could be performed) or
9329 ERROR_MARK_NODE if there was an error. */
9330 tree
9331 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
9332 tree in_decl)
9333 {
9334 tree pattern;
9335 tree pack, packs = NULL_TREE;
9336 bool unsubstituted_packs = false;
9337 int i, len = -1;
9338 tree result;
9339 struct pointer_map_t *saved_local_specializations = NULL;
9340 bool need_local_specializations = false;
9341 int levels;
9342
9343 gcc_assert (PACK_EXPANSION_P (t));
9344 pattern = PACK_EXPANSION_PATTERN (t);
9345
9346 /* Add in any args remembered from an earlier partial instantiation. */
9347 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
9348
9349 levels = TMPL_ARGS_DEPTH (args);
9350
9351 /* Determine the argument packs that will instantiate the parameter
9352 packs used in the expansion expression. While we're at it,
9353 compute the number of arguments to be expanded and make sure it
9354 is consistent. */
9355 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
9356 pack = TREE_CHAIN (pack))
9357 {
9358 tree parm_pack = TREE_VALUE (pack);
9359 tree arg_pack = NULL_TREE;
9360 tree orig_arg = NULL_TREE;
9361 int level = 0;
9362
9363 if (TREE_CODE (parm_pack) == BASES)
9364 {
9365 if (BASES_DIRECT (parm_pack))
9366 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
9367 args, complain, in_decl, false));
9368 else
9369 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
9370 args, complain, in_decl, false));
9371 }
9372 if (TREE_CODE (parm_pack) == PARM_DECL)
9373 {
9374 if (PACK_EXPANSION_LOCAL_P (t))
9375 arg_pack = retrieve_local_specialization (parm_pack);
9376 else
9377 {
9378 /* We can't rely on local_specializations for a parameter
9379 name used later in a function declaration (such as in a
9380 late-specified return type). Even if it exists, it might
9381 have the wrong value for a recursive call. Just make a
9382 dummy decl, since it's only used for its type. */
9383 arg_pack = tsubst_decl (parm_pack, args, complain);
9384 if (arg_pack && FUNCTION_PARAMETER_PACK_P (arg_pack))
9385 /* Partial instantiation of the parm_pack, we can't build
9386 up an argument pack yet. */
9387 arg_pack = NULL_TREE;
9388 else
9389 arg_pack = make_fnparm_pack (arg_pack);
9390 need_local_specializations = true;
9391 }
9392 }
9393 else
9394 {
9395 int idx;
9396 template_parm_level_and_index (parm_pack, &level, &idx);
9397
9398 if (level <= levels)
9399 arg_pack = TMPL_ARG (args, level, idx);
9400 }
9401
9402 orig_arg = arg_pack;
9403 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
9404 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
9405
9406 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
9407 /* This can only happen if we forget to expand an argument
9408 pack somewhere else. Just return an error, silently. */
9409 {
9410 result = make_tree_vec (1);
9411 TREE_VEC_ELT (result, 0) = error_mark_node;
9412 return result;
9413 }
9414
9415 if (arg_pack)
9416 {
9417 int my_len =
9418 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
9419
9420 /* Don't bother trying to do a partial substitution with
9421 incomplete packs; we'll try again after deduction. */
9422 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
9423 return t;
9424
9425 if (len < 0)
9426 len = my_len;
9427 else if (len != my_len)
9428 {
9429 if (!(complain & tf_error))
9430 /* Fail quietly. */;
9431 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
9432 error ("mismatched argument pack lengths while expanding "
9433 "%<%T%>",
9434 pattern);
9435 else
9436 error ("mismatched argument pack lengths while expanding "
9437 "%<%E%>",
9438 pattern);
9439 return error_mark_node;
9440 }
9441
9442 /* Keep track of the parameter packs and their corresponding
9443 argument packs. */
9444 packs = tree_cons (parm_pack, arg_pack, packs);
9445 TREE_TYPE (packs) = orig_arg;
9446 }
9447 else
9448 {
9449 /* We can't substitute for this parameter pack. We use a flag as
9450 well as the missing_level counter because function parameter
9451 packs don't have a level. */
9452 unsubstituted_packs = true;
9453 }
9454 }
9455
9456 /* We cannot expand this expansion expression, because we don't have
9457 all of the argument packs we need. */
9458 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
9459 {
9460 /* We got some full packs, but we can't substitute them in until we
9461 have values for all the packs. So remember these until then. */
9462
9463 t = make_pack_expansion (pattern);
9464 PACK_EXPANSION_EXTRA_ARGS (t) = args;
9465 return t;
9466 }
9467 else if (unsubstituted_packs)
9468 {
9469 /* There were no real arguments, we're just replacing a parameter
9470 pack with another version of itself. Substitute into the
9471 pattern and return a PACK_EXPANSION_*. The caller will need to
9472 deal with that. */
9473 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
9474 t = tsubst_expr (pattern, args, complain, in_decl,
9475 /*integral_constant_expression_p=*/false);
9476 else
9477 t = tsubst (pattern, args, complain, in_decl);
9478 t = make_pack_expansion (t);
9479 return t;
9480 }
9481
9482 gcc_assert (len >= 0);
9483
9484 if (need_local_specializations)
9485 {
9486 /* We're in a late-specified return type, so create our own local
9487 specializations map; the current map is either NULL or (in the
9488 case of recursive unification) might have bindings that we don't
9489 want to use or alter. */
9490 saved_local_specializations = local_specializations;
9491 local_specializations = pointer_map_create ();
9492 }
9493
9494 /* For each argument in each argument pack, substitute into the
9495 pattern. */
9496 result = make_tree_vec (len);
9497 for (i = 0; i < len; ++i)
9498 {
9499 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
9500 i,
9501 args, complain,
9502 in_decl);
9503 TREE_VEC_ELT (result, i) = t;
9504 if (t == error_mark_node)
9505 {
9506 result = error_mark_node;
9507 break;
9508 }
9509 }
9510
9511 /* Update ARGS to restore the substitution from parameter packs to
9512 their argument packs. */
9513 for (pack = packs; pack; pack = TREE_CHAIN (pack))
9514 {
9515 tree parm = TREE_PURPOSE (pack);
9516
9517 if (TREE_CODE (parm) == PARM_DECL)
9518 register_local_specialization (TREE_TYPE (pack), parm);
9519 else
9520 {
9521 int idx, level;
9522
9523 if (TREE_VALUE (pack) == NULL_TREE)
9524 continue;
9525
9526 template_parm_level_and_index (parm, &level, &idx);
9527
9528 /* Update the corresponding argument. */
9529 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
9530 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
9531 TREE_TYPE (pack);
9532 else
9533 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
9534 }
9535 }
9536
9537 if (need_local_specializations)
9538 {
9539 pointer_map_destroy (local_specializations);
9540 local_specializations = saved_local_specializations;
9541 }
9542
9543 return result;
9544 }
9545
9546 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
9547 TMPL. We do this using DECL_PARM_INDEX, which should work even with
9548 parameter packs; all parms generated from a function parameter pack will
9549 have the same DECL_PARM_INDEX. */
9550
9551 tree
9552 get_pattern_parm (tree parm, tree tmpl)
9553 {
9554 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
9555 tree patparm;
9556
9557 if (DECL_ARTIFICIAL (parm))
9558 {
9559 for (patparm = DECL_ARGUMENTS (pattern);
9560 patparm; patparm = DECL_CHAIN (patparm))
9561 if (DECL_ARTIFICIAL (patparm)
9562 && DECL_NAME (parm) == DECL_NAME (patparm))
9563 break;
9564 }
9565 else
9566 {
9567 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
9568 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
9569 gcc_assert (DECL_PARM_INDEX (patparm)
9570 == DECL_PARM_INDEX (parm));
9571 }
9572
9573 return patparm;
9574 }
9575
9576 /* Substitute ARGS into the vector or list of template arguments T. */
9577
9578 static tree
9579 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9580 {
9581 tree orig_t = t;
9582 int len, need_new = 0, i, expanded_len_adjust = 0, out;
9583 tree *elts;
9584
9585 if (t == error_mark_node)
9586 return error_mark_node;
9587
9588 len = TREE_VEC_LENGTH (t);
9589 elts = XALLOCAVEC (tree, len);
9590
9591 for (i = 0; i < len; i++)
9592 {
9593 tree orig_arg = TREE_VEC_ELT (t, i);
9594 tree new_arg;
9595
9596 if (TREE_CODE (orig_arg) == TREE_VEC)
9597 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
9598 else if (PACK_EXPANSION_P (orig_arg))
9599 {
9600 /* Substitute into an expansion expression. */
9601 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
9602
9603 if (TREE_CODE (new_arg) == TREE_VEC)
9604 /* Add to the expanded length adjustment the number of
9605 expanded arguments. We subtract one from this
9606 measurement, because the argument pack expression
9607 itself is already counted as 1 in
9608 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
9609 the argument pack is empty. */
9610 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
9611 }
9612 else if (ARGUMENT_PACK_P (orig_arg))
9613 {
9614 /* Substitute into each of the arguments. */
9615 new_arg = TYPE_P (orig_arg)
9616 ? cxx_make_type (TREE_CODE (orig_arg))
9617 : make_node (TREE_CODE (orig_arg));
9618
9619 SET_ARGUMENT_PACK_ARGS (
9620 new_arg,
9621 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
9622 args, complain, in_decl));
9623
9624 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
9625 new_arg = error_mark_node;
9626
9627 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
9628 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
9629 complain, in_decl);
9630 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
9631
9632 if (TREE_TYPE (new_arg) == error_mark_node)
9633 new_arg = error_mark_node;
9634 }
9635 }
9636 else
9637 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
9638
9639 if (new_arg == error_mark_node)
9640 return error_mark_node;
9641
9642 elts[i] = new_arg;
9643 if (new_arg != orig_arg)
9644 need_new = 1;
9645 }
9646
9647 if (!need_new)
9648 return t;
9649
9650 /* Make space for the expanded arguments coming from template
9651 argument packs. */
9652 t = make_tree_vec (len + expanded_len_adjust);
9653 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
9654 arguments for a member template.
9655 In that case each TREE_VEC in ORIG_T represents a level of template
9656 arguments, and ORIG_T won't carry any non defaulted argument count.
9657 It will rather be the nested TREE_VECs that will carry one.
9658 In other words, ORIG_T carries a non defaulted argument count only
9659 if it doesn't contain any nested TREE_VEC. */
9660 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
9661 {
9662 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
9663 count += expanded_len_adjust;
9664 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
9665 }
9666 for (i = 0, out = 0; i < len; i++)
9667 {
9668 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
9669 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
9670 && TREE_CODE (elts[i]) == TREE_VEC)
9671 {
9672 int idx;
9673
9674 /* Now expand the template argument pack "in place". */
9675 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
9676 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
9677 }
9678 else
9679 {
9680 TREE_VEC_ELT (t, out) = elts[i];
9681 out++;
9682 }
9683 }
9684
9685 return t;
9686 }
9687
9688 /* Return the result of substituting ARGS into the template parameters
9689 given by PARMS. If there are m levels of ARGS and m + n levels of
9690 PARMS, then the result will contain n levels of PARMS. For
9691 example, if PARMS is `template <class T> template <class U>
9692 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
9693 result will be `template <int*, double, class V>'. */
9694
9695 static tree
9696 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
9697 {
9698 tree r = NULL_TREE;
9699 tree* new_parms;
9700
9701 /* When substituting into a template, we must set
9702 PROCESSING_TEMPLATE_DECL as the template parameters may be
9703 dependent if they are based on one-another, and the dependency
9704 predicates are short-circuit outside of templates. */
9705 ++processing_template_decl;
9706
9707 for (new_parms = &r;
9708 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
9709 new_parms = &(TREE_CHAIN (*new_parms)),
9710 parms = TREE_CHAIN (parms))
9711 {
9712 tree new_vec =
9713 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
9714 int i;
9715
9716 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
9717 {
9718 tree tuple;
9719
9720 if (parms == error_mark_node)
9721 continue;
9722
9723 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
9724
9725 if (tuple == error_mark_node)
9726 continue;
9727
9728 TREE_VEC_ELT (new_vec, i) =
9729 tsubst_template_parm (tuple, args, complain);
9730 }
9731
9732 *new_parms =
9733 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
9734 - TMPL_ARGS_DEPTH (args)),
9735 new_vec, NULL_TREE);
9736 }
9737
9738 --processing_template_decl;
9739
9740 return r;
9741 }
9742
9743 /* Return the result of substituting ARGS into one template parameter
9744 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
9745 parameter and which TREE_PURPOSE is the default argument of the
9746 template parameter. */
9747
9748 static tree
9749 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
9750 {
9751 tree default_value, parm_decl;
9752
9753 if (args == NULL_TREE
9754 || t == NULL_TREE
9755 || t == error_mark_node)
9756 return t;
9757
9758 gcc_assert (TREE_CODE (t) == TREE_LIST);
9759
9760 default_value = TREE_PURPOSE (t);
9761 parm_decl = TREE_VALUE (t);
9762
9763 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
9764 if (TREE_CODE (parm_decl) == PARM_DECL
9765 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
9766 parm_decl = error_mark_node;
9767 default_value = tsubst_template_arg (default_value, args,
9768 complain, NULL_TREE);
9769
9770 return build_tree_list (default_value, parm_decl);
9771 }
9772
9773 /* Substitute the ARGS into the indicated aggregate (or enumeration)
9774 type T. If T is not an aggregate or enumeration type, it is
9775 handled as if by tsubst. IN_DECL is as for tsubst. If
9776 ENTERING_SCOPE is nonzero, T is the context for a template which
9777 we are presently tsubst'ing. Return the substituted value. */
9778
9779 static tree
9780 tsubst_aggr_type (tree t,
9781 tree args,
9782 tsubst_flags_t complain,
9783 tree in_decl,
9784 int entering_scope)
9785 {
9786 if (t == NULL_TREE)
9787 return NULL_TREE;
9788
9789 switch (TREE_CODE (t))
9790 {
9791 case RECORD_TYPE:
9792 if (TYPE_PTRMEMFUNC_P (t))
9793 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
9794
9795 /* Else fall through. */
9796 case ENUMERAL_TYPE:
9797 case UNION_TYPE:
9798 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
9799 {
9800 tree argvec;
9801 tree context;
9802 tree r;
9803 int saved_unevaluated_operand;
9804 int saved_inhibit_evaluation_warnings;
9805
9806 /* In "sizeof(X<I>)" we need to evaluate "I". */
9807 saved_unevaluated_operand = cp_unevaluated_operand;
9808 cp_unevaluated_operand = 0;
9809 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
9810 c_inhibit_evaluation_warnings = 0;
9811
9812 /* First, determine the context for the type we are looking
9813 up. */
9814 context = TYPE_CONTEXT (t);
9815 if (context && TYPE_P (context))
9816 {
9817 context = tsubst_aggr_type (context, args, complain,
9818 in_decl, /*entering_scope=*/1);
9819 /* If context is a nested class inside a class template,
9820 it may still need to be instantiated (c++/33959). */
9821 context = complete_type (context);
9822 }
9823
9824 /* Then, figure out what arguments are appropriate for the
9825 type we are trying to find. For example, given:
9826
9827 template <class T> struct S;
9828 template <class T, class U> void f(T, U) { S<U> su; }
9829
9830 and supposing that we are instantiating f<int, double>,
9831 then our ARGS will be {int, double}, but, when looking up
9832 S we only want {double}. */
9833 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
9834 complain, in_decl);
9835 if (argvec == error_mark_node)
9836 r = error_mark_node;
9837 else
9838 {
9839 r = lookup_template_class (t, argvec, in_decl, context,
9840 entering_scope, complain);
9841 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
9842 }
9843
9844 cp_unevaluated_operand = saved_unevaluated_operand;
9845 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
9846
9847 return r;
9848 }
9849 else
9850 /* This is not a template type, so there's nothing to do. */
9851 return t;
9852
9853 default:
9854 return tsubst (t, args, complain, in_decl);
9855 }
9856 }
9857
9858 /* Substitute into the default argument ARG (a default argument for
9859 FN), which has the indicated TYPE. */
9860
9861 tree
9862 tsubst_default_argument (tree fn, tree type, tree arg)
9863 {
9864 tree saved_class_ptr = NULL_TREE;
9865 tree saved_class_ref = NULL_TREE;
9866 int errs = errorcount + sorrycount;
9867
9868 /* This can happen in invalid code. */
9869 if (TREE_CODE (arg) == DEFAULT_ARG)
9870 return arg;
9871
9872 /* This default argument came from a template. Instantiate the
9873 default argument here, not in tsubst. In the case of
9874 something like:
9875
9876 template <class T>
9877 struct S {
9878 static T t();
9879 void f(T = t());
9880 };
9881
9882 we must be careful to do name lookup in the scope of S<T>,
9883 rather than in the current class. */
9884 push_access_scope (fn);
9885 /* The "this" pointer is not valid in a default argument. */
9886 if (cfun)
9887 {
9888 saved_class_ptr = current_class_ptr;
9889 cp_function_chain->x_current_class_ptr = NULL_TREE;
9890 saved_class_ref = current_class_ref;
9891 cp_function_chain->x_current_class_ref = NULL_TREE;
9892 }
9893
9894 push_deferring_access_checks(dk_no_deferred);
9895 /* The default argument expression may cause implicitly defined
9896 member functions to be synthesized, which will result in garbage
9897 collection. We must treat this situation as if we were within
9898 the body of function so as to avoid collecting live data on the
9899 stack. */
9900 ++function_depth;
9901 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
9902 tf_warning_or_error, NULL_TREE,
9903 /*integral_constant_expression_p=*/false);
9904 --function_depth;
9905 pop_deferring_access_checks();
9906
9907 /* Restore the "this" pointer. */
9908 if (cfun)
9909 {
9910 cp_function_chain->x_current_class_ptr = saved_class_ptr;
9911 cp_function_chain->x_current_class_ref = saved_class_ref;
9912 }
9913
9914 if (errorcount+sorrycount > errs)
9915 inform (input_location,
9916 " when instantiating default argument for call to %D", fn);
9917
9918 /* Make sure the default argument is reasonable. */
9919 arg = check_default_argument (type, arg);
9920
9921 pop_access_scope (fn);
9922
9923 return arg;
9924 }
9925
9926 /* Substitute into all the default arguments for FN. */
9927
9928 static void
9929 tsubst_default_arguments (tree fn)
9930 {
9931 tree arg;
9932 tree tmpl_args;
9933
9934 tmpl_args = DECL_TI_ARGS (fn);
9935
9936 /* If this function is not yet instantiated, we certainly don't need
9937 its default arguments. */
9938 if (uses_template_parms (tmpl_args))
9939 return;
9940 /* Don't do this again for clones. */
9941 if (DECL_CLONED_FUNCTION_P (fn))
9942 return;
9943
9944 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
9945 arg;
9946 arg = TREE_CHAIN (arg))
9947 if (TREE_PURPOSE (arg))
9948 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
9949 TREE_VALUE (arg),
9950 TREE_PURPOSE (arg));
9951 }
9952
9953 /* Substitute the ARGS into the T, which is a _DECL. Return the
9954 result of the substitution. Issue error and warning messages under
9955 control of COMPLAIN. */
9956
9957 static tree
9958 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
9959 {
9960 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
9961 location_t saved_loc;
9962 tree r = NULL_TREE;
9963 tree in_decl = t;
9964 hashval_t hash = 0;
9965
9966 /* Set the filename and linenumber to improve error-reporting. */
9967 saved_loc = input_location;
9968 input_location = DECL_SOURCE_LOCATION (t);
9969
9970 switch (TREE_CODE (t))
9971 {
9972 case TEMPLATE_DECL:
9973 {
9974 /* We can get here when processing a member function template,
9975 member class template, or template template parameter. */
9976 tree decl = DECL_TEMPLATE_RESULT (t);
9977 tree spec;
9978 tree tmpl_args;
9979 tree full_args;
9980
9981 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
9982 {
9983 /* Template template parameter is treated here. */
9984 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
9985 if (new_type == error_mark_node)
9986 RETURN (error_mark_node);
9987 /* If we get a real template back, return it. This can happen in
9988 the context of most_specialized_class. */
9989 if (TREE_CODE (new_type) == TEMPLATE_DECL)
9990 return new_type;
9991
9992 r = copy_decl (t);
9993 DECL_CHAIN (r) = NULL_TREE;
9994 TREE_TYPE (r) = new_type;
9995 DECL_TEMPLATE_RESULT (r)
9996 = build_decl (DECL_SOURCE_LOCATION (decl),
9997 TYPE_DECL, DECL_NAME (decl), new_type);
9998 DECL_TEMPLATE_PARMS (r)
9999 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
10000 complain);
10001 TYPE_NAME (new_type) = r;
10002 break;
10003 }
10004
10005 /* We might already have an instance of this template.
10006 The ARGS are for the surrounding class type, so the
10007 full args contain the tsubst'd args for the context,
10008 plus the innermost args from the template decl. */
10009 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
10010 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
10011 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
10012 /* Because this is a template, the arguments will still be
10013 dependent, even after substitution. If
10014 PROCESSING_TEMPLATE_DECL is not set, the dependency
10015 predicates will short-circuit. */
10016 ++processing_template_decl;
10017 full_args = tsubst_template_args (tmpl_args, args,
10018 complain, in_decl);
10019 --processing_template_decl;
10020 if (full_args == error_mark_node)
10021 RETURN (error_mark_node);
10022
10023 /* If this is a default template template argument,
10024 tsubst might not have changed anything. */
10025 if (full_args == tmpl_args)
10026 RETURN (t);
10027
10028 hash = hash_tmpl_and_args (t, full_args);
10029 spec = retrieve_specialization (t, full_args, hash);
10030 if (spec != NULL_TREE)
10031 {
10032 r = spec;
10033 break;
10034 }
10035
10036 /* Make a new template decl. It will be similar to the
10037 original, but will record the current template arguments.
10038 We also create a new function declaration, which is just
10039 like the old one, but points to this new template, rather
10040 than the old one. */
10041 r = copy_decl (t);
10042 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
10043 DECL_CHAIN (r) = NULL_TREE;
10044
10045 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
10046
10047 if (TREE_CODE (decl) == TYPE_DECL
10048 && !TYPE_DECL_ALIAS_P (decl))
10049 {
10050 tree new_type;
10051 ++processing_template_decl;
10052 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10053 --processing_template_decl;
10054 if (new_type == error_mark_node)
10055 RETURN (error_mark_node);
10056
10057 TREE_TYPE (r) = new_type;
10058 CLASSTYPE_TI_TEMPLATE (new_type) = r;
10059 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
10060 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
10061 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
10062 }
10063 else
10064 {
10065 tree new_decl;
10066 ++processing_template_decl;
10067 new_decl = tsubst (decl, args, complain, in_decl);
10068 --processing_template_decl;
10069 if (new_decl == error_mark_node)
10070 RETURN (error_mark_node);
10071
10072 DECL_TEMPLATE_RESULT (r) = new_decl;
10073 DECL_TI_TEMPLATE (new_decl) = r;
10074 TREE_TYPE (r) = TREE_TYPE (new_decl);
10075 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
10076 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
10077 }
10078
10079 SET_DECL_IMPLICIT_INSTANTIATION (r);
10080 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
10081 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
10082
10083 /* The template parameters for this new template are all the
10084 template parameters for the old template, except the
10085 outermost level of parameters. */
10086 DECL_TEMPLATE_PARMS (r)
10087 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
10088 complain);
10089
10090 if (PRIMARY_TEMPLATE_P (t))
10091 DECL_PRIMARY_TEMPLATE (r) = r;
10092
10093 if (TREE_CODE (decl) != TYPE_DECL)
10094 /* Record this non-type partial instantiation. */
10095 register_specialization (r, t,
10096 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
10097 false, hash);
10098 }
10099 break;
10100
10101 case FUNCTION_DECL:
10102 {
10103 tree ctx;
10104 tree argvec = NULL_TREE;
10105 tree *friends;
10106 tree gen_tmpl;
10107 tree type;
10108 int member;
10109 int args_depth;
10110 int parms_depth;
10111
10112 /* Nobody should be tsubst'ing into non-template functions. */
10113 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
10114
10115 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
10116 {
10117 tree spec;
10118 bool dependent_p;
10119
10120 /* If T is not dependent, just return it. We have to
10121 increment PROCESSING_TEMPLATE_DECL because
10122 value_dependent_expression_p assumes that nothing is
10123 dependent when PROCESSING_TEMPLATE_DECL is zero. */
10124 ++processing_template_decl;
10125 dependent_p = value_dependent_expression_p (t);
10126 --processing_template_decl;
10127 if (!dependent_p)
10128 RETURN (t);
10129
10130 /* Calculate the most general template of which R is a
10131 specialization, and the complete set of arguments used to
10132 specialize R. */
10133 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
10134 argvec = tsubst_template_args (DECL_TI_ARGS
10135 (DECL_TEMPLATE_RESULT
10136 (DECL_TI_TEMPLATE (t))),
10137 args, complain, in_decl);
10138 if (argvec == error_mark_node)
10139 RETURN (error_mark_node);
10140
10141 /* Check to see if we already have this specialization. */
10142 hash = hash_tmpl_and_args (gen_tmpl, argvec);
10143 spec = retrieve_specialization (gen_tmpl, argvec, hash);
10144
10145 if (spec)
10146 {
10147 r = spec;
10148 break;
10149 }
10150
10151 /* We can see more levels of arguments than parameters if
10152 there was a specialization of a member template, like
10153 this:
10154
10155 template <class T> struct S { template <class U> void f(); }
10156 template <> template <class U> void S<int>::f(U);
10157
10158 Here, we'll be substituting into the specialization,
10159 because that's where we can find the code we actually
10160 want to generate, but we'll have enough arguments for
10161 the most general template.
10162
10163 We also deal with the peculiar case:
10164
10165 template <class T> struct S {
10166 template <class U> friend void f();
10167 };
10168 template <class U> void f() {}
10169 template S<int>;
10170 template void f<double>();
10171
10172 Here, the ARGS for the instantiation of will be {int,
10173 double}. But, we only need as many ARGS as there are
10174 levels of template parameters in CODE_PATTERN. We are
10175 careful not to get fooled into reducing the ARGS in
10176 situations like:
10177
10178 template <class T> struct S { template <class U> void f(U); }
10179 template <class T> template <> void S<T>::f(int) {}
10180
10181 which we can spot because the pattern will be a
10182 specialization in this case. */
10183 args_depth = TMPL_ARGS_DEPTH (args);
10184 parms_depth =
10185 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
10186 if (args_depth > parms_depth
10187 && !DECL_TEMPLATE_SPECIALIZATION (t))
10188 args = get_innermost_template_args (args, parms_depth);
10189 }
10190 else
10191 {
10192 /* This special case arises when we have something like this:
10193
10194 template <class T> struct S {
10195 friend void f<int>(int, double);
10196 };
10197
10198 Here, the DECL_TI_TEMPLATE for the friend declaration
10199 will be an IDENTIFIER_NODE. We are being called from
10200 tsubst_friend_function, and we want only to create a
10201 new decl (R) with appropriate types so that we can call
10202 determine_specialization. */
10203 gen_tmpl = NULL_TREE;
10204 }
10205
10206 if (DECL_CLASS_SCOPE_P (t))
10207 {
10208 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
10209 member = 2;
10210 else
10211 member = 1;
10212 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
10213 complain, t, /*entering_scope=*/1);
10214 }
10215 else
10216 {
10217 member = 0;
10218 ctx = DECL_CONTEXT (t);
10219 }
10220 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10221 if (type == error_mark_node)
10222 RETURN (error_mark_node);
10223
10224 /* If we hit excessive deduction depth, the type is bogus even if
10225 it isn't error_mark_node, so don't build a decl. */
10226 if (excessive_deduction_depth)
10227 RETURN (error_mark_node);
10228
10229 /* We do NOT check for matching decls pushed separately at this
10230 point, as they may not represent instantiations of this
10231 template, and in any case are considered separate under the
10232 discrete model. */
10233 r = copy_decl (t);
10234 DECL_USE_TEMPLATE (r) = 0;
10235 TREE_TYPE (r) = type;
10236 /* Clear out the mangled name and RTL for the instantiation. */
10237 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
10238 SET_DECL_RTL (r, NULL);
10239 /* Leave DECL_INITIAL set on deleted instantiations. */
10240 if (!DECL_DELETED_FN (r))
10241 DECL_INITIAL (r) = NULL_TREE;
10242 DECL_CONTEXT (r) = ctx;
10243
10244 if (member && DECL_CONV_FN_P (r))
10245 /* Type-conversion operator. Reconstruct the name, in
10246 case it's the name of one of the template's parameters. */
10247 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
10248
10249 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
10250 complain, t);
10251 DECL_RESULT (r) = NULL_TREE;
10252
10253 TREE_STATIC (r) = 0;
10254 TREE_PUBLIC (r) = TREE_PUBLIC (t);
10255 DECL_EXTERNAL (r) = 1;
10256 /* If this is an instantiation of a function with internal
10257 linkage, we already know what object file linkage will be
10258 assigned to the instantiation. */
10259 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
10260 DECL_DEFER_OUTPUT (r) = 0;
10261 DECL_CHAIN (r) = NULL_TREE;
10262 DECL_PENDING_INLINE_INFO (r) = 0;
10263 DECL_PENDING_INLINE_P (r) = 0;
10264 DECL_SAVED_TREE (r) = NULL_TREE;
10265 DECL_STRUCT_FUNCTION (r) = NULL;
10266 TREE_USED (r) = 0;
10267 /* We'll re-clone as appropriate in instantiate_template. */
10268 DECL_CLONED_FUNCTION (r) = NULL_TREE;
10269
10270 /* If we aren't complaining now, return on error before we register
10271 the specialization so that we'll complain eventually. */
10272 if ((complain & tf_error) == 0
10273 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10274 && !grok_op_properties (r, /*complain=*/false))
10275 RETURN (error_mark_node);
10276
10277 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
10278 this in the special friend case mentioned above where
10279 GEN_TMPL is NULL. */
10280 if (gen_tmpl)
10281 {
10282 DECL_TEMPLATE_INFO (r)
10283 = build_template_info (gen_tmpl, argvec);
10284 SET_DECL_IMPLICIT_INSTANTIATION (r);
10285
10286 tree new_r
10287 = register_specialization (r, gen_tmpl, argvec, false, hash);
10288 if (new_r != r)
10289 /* We instantiated this while substituting into
10290 the type earlier (template/friend54.C). */
10291 RETURN (new_r);
10292
10293 /* We're not supposed to instantiate default arguments
10294 until they are called, for a template. But, for a
10295 declaration like:
10296
10297 template <class T> void f ()
10298 { extern void g(int i = T()); }
10299
10300 we should do the substitution when the template is
10301 instantiated. We handle the member function case in
10302 instantiate_class_template since the default arguments
10303 might refer to other members of the class. */
10304 if (!member
10305 && !PRIMARY_TEMPLATE_P (gen_tmpl)
10306 && !uses_template_parms (argvec))
10307 tsubst_default_arguments (r);
10308 }
10309 else
10310 DECL_TEMPLATE_INFO (r) = NULL_TREE;
10311
10312 /* Copy the list of befriending classes. */
10313 for (friends = &DECL_BEFRIENDING_CLASSES (r);
10314 *friends;
10315 friends = &TREE_CHAIN (*friends))
10316 {
10317 *friends = copy_node (*friends);
10318 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
10319 args, complain,
10320 in_decl);
10321 }
10322
10323 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
10324 {
10325 maybe_retrofit_in_chrg (r);
10326 if (DECL_CONSTRUCTOR_P (r))
10327 grok_ctor_properties (ctx, r);
10328 if (DECL_INHERITED_CTOR_BASE (r))
10329 deduce_inheriting_ctor (r);
10330 /* If this is an instantiation of a member template, clone it.
10331 If it isn't, that'll be handled by
10332 clone_constructors_and_destructors. */
10333 if (PRIMARY_TEMPLATE_P (gen_tmpl))
10334 clone_function_decl (r, /*update_method_vec_p=*/0);
10335 }
10336 else if ((complain & tf_error) != 0
10337 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10338 && !grok_op_properties (r, /*complain=*/true))
10339 RETURN (error_mark_node);
10340
10341 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
10342 SET_DECL_FRIEND_CONTEXT (r,
10343 tsubst (DECL_FRIEND_CONTEXT (t),
10344 args, complain, in_decl));
10345
10346 /* Possibly limit visibility based on template args. */
10347 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
10348 if (DECL_VISIBILITY_SPECIFIED (t))
10349 {
10350 DECL_VISIBILITY_SPECIFIED (r) = 0;
10351 DECL_ATTRIBUTES (r)
10352 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
10353 }
10354 determine_visibility (r);
10355 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
10356 && !processing_template_decl)
10357 defaulted_late_check (r);
10358
10359 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10360 args, complain, in_decl);
10361 }
10362 break;
10363
10364 case PARM_DECL:
10365 {
10366 tree type = NULL_TREE;
10367 int i, len = 1;
10368 tree expanded_types = NULL_TREE;
10369 tree prev_r = NULL_TREE;
10370 tree first_r = NULL_TREE;
10371
10372 if (FUNCTION_PARAMETER_PACK_P (t))
10373 {
10374 /* If there is a local specialization that isn't a
10375 parameter pack, it means that we're doing a "simple"
10376 substitution from inside tsubst_pack_expansion. Just
10377 return the local specialization (which will be a single
10378 parm). */
10379 tree spec = retrieve_local_specialization (t);
10380 if (spec
10381 && TREE_CODE (spec) == PARM_DECL
10382 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
10383 RETURN (spec);
10384
10385 /* Expand the TYPE_PACK_EXPANSION that provides the types for
10386 the parameters in this function parameter pack. */
10387 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
10388 complain, in_decl);
10389 if (TREE_CODE (expanded_types) == TREE_VEC)
10390 {
10391 len = TREE_VEC_LENGTH (expanded_types);
10392
10393 /* Zero-length parameter packs are boring. Just substitute
10394 into the chain. */
10395 if (len == 0)
10396 RETURN (tsubst (TREE_CHAIN (t), args, complain,
10397 TREE_CHAIN (t)));
10398 }
10399 else
10400 {
10401 /* All we did was update the type. Make a note of that. */
10402 type = expanded_types;
10403 expanded_types = NULL_TREE;
10404 }
10405 }
10406
10407 /* Loop through all of the parameter's we'll build. When T is
10408 a function parameter pack, LEN is the number of expanded
10409 types in EXPANDED_TYPES; otherwise, LEN is 1. */
10410 r = NULL_TREE;
10411 for (i = 0; i < len; ++i)
10412 {
10413 prev_r = r;
10414 r = copy_node (t);
10415 if (DECL_TEMPLATE_PARM_P (t))
10416 SET_DECL_TEMPLATE_PARM_P (r);
10417
10418 if (expanded_types)
10419 /* We're on the Ith parameter of the function parameter
10420 pack. */
10421 {
10422 /* An argument of a function parameter pack is not a parameter
10423 pack. */
10424 FUNCTION_PARAMETER_PACK_P (r) = false;
10425
10426 /* Get the Ith type. */
10427 type = TREE_VEC_ELT (expanded_types, i);
10428
10429 /* Rename the parameter to include the index. */
10430 DECL_NAME (r)
10431 = make_ith_pack_parameter_name (DECL_NAME (r), i);
10432 }
10433 else if (!type)
10434 /* We're dealing with a normal parameter. */
10435 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10436
10437 type = type_decays_to (type);
10438 TREE_TYPE (r) = type;
10439 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10440
10441 if (DECL_INITIAL (r))
10442 {
10443 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
10444 DECL_INITIAL (r) = TREE_TYPE (r);
10445 else
10446 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
10447 complain, in_decl);
10448 }
10449
10450 DECL_CONTEXT (r) = NULL_TREE;
10451
10452 if (!DECL_TEMPLATE_PARM_P (r))
10453 DECL_ARG_TYPE (r) = type_passed_as (type);
10454
10455 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10456 args, complain, in_decl);
10457
10458 /* Keep track of the first new parameter we
10459 generate. That's what will be returned to the
10460 caller. */
10461 if (!first_r)
10462 first_r = r;
10463
10464 /* Build a proper chain of parameters when substituting
10465 into a function parameter pack. */
10466 if (prev_r)
10467 DECL_CHAIN (prev_r) = r;
10468 }
10469
10470 /* If cp_unevaluated_operand is set, we're just looking for a
10471 single dummy parameter, so don't keep going. */
10472 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
10473 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
10474 complain, DECL_CHAIN (t));
10475
10476 /* FIRST_R contains the start of the chain we've built. */
10477 r = first_r;
10478 }
10479 break;
10480
10481 case FIELD_DECL:
10482 {
10483 tree type;
10484
10485 r = copy_decl (t);
10486 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10487 if (type == error_mark_node)
10488 RETURN (error_mark_node);
10489 TREE_TYPE (r) = type;
10490 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10491
10492 if (DECL_C_BIT_FIELD (r))
10493 /* For bit-fields, DECL_INITIAL gives the number of bits. For
10494 non-bit-fields DECL_INITIAL is a non-static data member
10495 initializer, which gets deferred instantiation. */
10496 DECL_INITIAL (r)
10497 = tsubst_expr (DECL_INITIAL (t), args,
10498 complain, in_decl,
10499 /*integral_constant_expression_p=*/true);
10500 else if (DECL_INITIAL (t))
10501 {
10502 /* Set up DECL_TEMPLATE_INFO so that we can get at the
10503 NSDMI in perform_member_init. Still set DECL_INITIAL
10504 so that we know there is one. */
10505 DECL_INITIAL (r) = void_zero_node;
10506 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
10507 retrofit_lang_decl (r);
10508 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
10509 }
10510 /* We don't have to set DECL_CONTEXT here; it is set by
10511 finish_member_declaration. */
10512 DECL_CHAIN (r) = NULL_TREE;
10513 if (VOID_TYPE_P (type))
10514 error ("instantiation of %q+D as type %qT", r, type);
10515
10516 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10517 args, complain, in_decl);
10518 }
10519 break;
10520
10521 case USING_DECL:
10522 /* We reach here only for member using decls. We also need to check
10523 uses_template_parms because DECL_DEPENDENT_P is not set for a
10524 using-declaration that designates a member of the current
10525 instantiation (c++/53549). */
10526 if (DECL_DEPENDENT_P (t)
10527 || uses_template_parms (USING_DECL_SCOPE (t)))
10528 {
10529 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
10530 complain, in_decl);
10531 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
10532 r = do_class_using_decl (inst_scope, name);
10533 if (!r)
10534 r = error_mark_node;
10535 else
10536 {
10537 TREE_PROTECTED (r) = TREE_PROTECTED (t);
10538 TREE_PRIVATE (r) = TREE_PRIVATE (t);
10539 }
10540 }
10541 else
10542 {
10543 r = copy_node (t);
10544 DECL_CHAIN (r) = NULL_TREE;
10545 }
10546 break;
10547
10548 case TYPE_DECL:
10549 case VAR_DECL:
10550 {
10551 tree argvec = NULL_TREE;
10552 tree gen_tmpl = NULL_TREE;
10553 tree spec;
10554 tree tmpl = NULL_TREE;
10555 tree ctx;
10556 tree type = NULL_TREE;
10557 bool local_p;
10558
10559 if (TREE_CODE (t) == TYPE_DECL
10560 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
10561 {
10562 /* If this is the canonical decl, we don't have to
10563 mess with instantiations, and often we can't (for
10564 typename, template type parms and such). Note that
10565 TYPE_NAME is not correct for the above test if
10566 we've copied the type for a typedef. */
10567 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10568 if (type == error_mark_node)
10569 RETURN (error_mark_node);
10570 r = TYPE_NAME (type);
10571 break;
10572 }
10573
10574 /* Check to see if we already have the specialization we
10575 need. */
10576 spec = NULL_TREE;
10577 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
10578 {
10579 /* T is a static data member or namespace-scope entity.
10580 We have to substitute into namespace-scope variables
10581 (even though such entities are never templates) because
10582 of cases like:
10583
10584 template <class T> void f() { extern T t; }
10585
10586 where the entity referenced is not known until
10587 instantiation time. */
10588 local_p = false;
10589 ctx = DECL_CONTEXT (t);
10590 if (DECL_CLASS_SCOPE_P (t))
10591 {
10592 ctx = tsubst_aggr_type (ctx, args,
10593 complain,
10594 in_decl, /*entering_scope=*/1);
10595 /* If CTX is unchanged, then T is in fact the
10596 specialization we want. That situation occurs when
10597 referencing a static data member within in its own
10598 class. We can use pointer equality, rather than
10599 same_type_p, because DECL_CONTEXT is always
10600 canonical... */
10601 if (ctx == DECL_CONTEXT (t)
10602 && (TREE_CODE (t) != TYPE_DECL
10603 /* ... unless T is a member template; in which
10604 case our caller can be willing to create a
10605 specialization of that template represented
10606 by T. */
10607 || !(DECL_TI_TEMPLATE (t)
10608 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t)))))
10609 spec = t;
10610 }
10611
10612 if (!spec)
10613 {
10614 tmpl = DECL_TI_TEMPLATE (t);
10615 gen_tmpl = most_general_template (tmpl);
10616 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
10617 if (argvec == error_mark_node)
10618 RETURN (error_mark_node);
10619 hash = hash_tmpl_and_args (gen_tmpl, argvec);
10620 spec = retrieve_specialization (gen_tmpl, argvec, hash);
10621 }
10622 }
10623 else
10624 {
10625 /* A local variable. */
10626 local_p = true;
10627 /* Subsequent calls to pushdecl will fill this in. */
10628 ctx = NULL_TREE;
10629 spec = retrieve_local_specialization (t);
10630 }
10631 /* If we already have the specialization we need, there is
10632 nothing more to do. */
10633 if (spec)
10634 {
10635 r = spec;
10636 break;
10637 }
10638
10639 if (VAR_P (t) && DECL_ANON_UNION_VAR_P (t))
10640 {
10641 /* Just use name lookup to find a member alias for an anonymous
10642 union, but then add it to the hash table. */
10643 r = lookup_name (DECL_NAME (t));
10644 gcc_assert (DECL_ANON_UNION_VAR_P (r));
10645 register_local_specialization (r, t);
10646 break;
10647 }
10648
10649 /* Create a new node for the specialization we need. */
10650 r = copy_decl (t);
10651 if (type == NULL_TREE)
10652 {
10653 if (is_typedef_decl (t))
10654 type = DECL_ORIGINAL_TYPE (t);
10655 else
10656 type = TREE_TYPE (t);
10657 if (VAR_P (t)
10658 && VAR_HAD_UNKNOWN_BOUND (t)
10659 && type != error_mark_node)
10660 type = strip_array_domain (type);
10661 type = tsubst (type, args, complain, in_decl);
10662 }
10663 if (VAR_P (r))
10664 {
10665 /* Even if the original location is out of scope, the
10666 newly substituted one is not. */
10667 DECL_DEAD_FOR_LOCAL (r) = 0;
10668 DECL_INITIALIZED_P (r) = 0;
10669 DECL_TEMPLATE_INSTANTIATED (r) = 0;
10670 if (type == error_mark_node)
10671 RETURN (error_mark_node);
10672 if (TREE_CODE (type) == FUNCTION_TYPE)
10673 {
10674 /* It may seem that this case cannot occur, since:
10675
10676 typedef void f();
10677 void g() { f x; }
10678
10679 declares a function, not a variable. However:
10680
10681 typedef void f();
10682 template <typename T> void g() { T t; }
10683 template void g<f>();
10684
10685 is an attempt to declare a variable with function
10686 type. */
10687 error ("variable %qD has function type",
10688 /* R is not yet sufficiently initialized, so we
10689 just use its name. */
10690 DECL_NAME (r));
10691 RETURN (error_mark_node);
10692 }
10693 type = complete_type (type);
10694 /* Wait until cp_finish_decl to set this again, to handle
10695 circular dependency (template/instantiate6.C). */
10696 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
10697 type = check_var_type (DECL_NAME (r), type);
10698
10699 if (DECL_HAS_VALUE_EXPR_P (t))
10700 {
10701 tree ve = DECL_VALUE_EXPR (t);
10702 ve = tsubst_expr (ve, args, complain, in_decl,
10703 /*constant_expression_p=*/false);
10704 if (REFERENCE_REF_P (ve))
10705 {
10706 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
10707 ve = TREE_OPERAND (ve, 0);
10708 }
10709 SET_DECL_VALUE_EXPR (r, ve);
10710 }
10711 }
10712 else if (DECL_SELF_REFERENCE_P (t))
10713 SET_DECL_SELF_REFERENCE_P (r);
10714 TREE_TYPE (r) = type;
10715 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10716 DECL_CONTEXT (r) = ctx;
10717 /* Clear out the mangled name and RTL for the instantiation. */
10718 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
10719 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
10720 SET_DECL_RTL (r, NULL);
10721 /* The initializer must not be expanded until it is required;
10722 see [temp.inst]. */
10723 DECL_INITIAL (r) = NULL_TREE;
10724 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
10725 SET_DECL_RTL (r, NULL);
10726 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
10727 if (VAR_P (r))
10728 {
10729 /* Possibly limit visibility based on template args. */
10730 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
10731 if (DECL_VISIBILITY_SPECIFIED (t))
10732 {
10733 DECL_VISIBILITY_SPECIFIED (r) = 0;
10734 DECL_ATTRIBUTES (r)
10735 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
10736 }
10737 determine_visibility (r);
10738 }
10739
10740 if (!local_p)
10741 {
10742 /* A static data member declaration is always marked
10743 external when it is declared in-class, even if an
10744 initializer is present. We mimic the non-template
10745 processing here. */
10746 DECL_EXTERNAL (r) = 1;
10747
10748 register_specialization (r, gen_tmpl, argvec, false, hash);
10749 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
10750 SET_DECL_IMPLICIT_INSTANTIATION (r);
10751 }
10752 else if (cp_unevaluated_operand)
10753 {
10754 /* We're substituting this var in a decltype outside of its
10755 scope, such as for a lambda return type. Don't add it to
10756 local_specializations, do perform auto deduction. */
10757 tree auto_node = type_uses_auto (type);
10758 if (auto_node)
10759 {
10760 tree init
10761 = tsubst_expr (DECL_INITIAL (t), args, complain, in_decl,
10762 /*constant_expression_p=*/false);
10763 init = resolve_nondeduced_context (init);
10764 TREE_TYPE (r) = type
10765 = do_auto_deduction (type, init, auto_node);
10766 }
10767 }
10768 else
10769 register_local_specialization (r, t);
10770
10771 DECL_CHAIN (r) = NULL_TREE;
10772
10773 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
10774 /*flags=*/0,
10775 args, complain, in_decl);
10776
10777 /* Preserve a typedef that names a type. */
10778 if (is_typedef_decl (r))
10779 {
10780 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
10781 set_underlying_type (r);
10782 }
10783
10784 layout_decl (r, 0);
10785 }
10786 break;
10787
10788 default:
10789 gcc_unreachable ();
10790 }
10791 #undef RETURN
10792
10793 out:
10794 /* Restore the file and line information. */
10795 input_location = saved_loc;
10796
10797 return r;
10798 }
10799
10800 /* Substitute into the ARG_TYPES of a function type.
10801 If END is a TREE_CHAIN, leave it and any following types
10802 un-substituted. */
10803
10804 static tree
10805 tsubst_arg_types (tree arg_types,
10806 tree args,
10807 tree end,
10808 tsubst_flags_t complain,
10809 tree in_decl)
10810 {
10811 tree remaining_arg_types;
10812 tree type = NULL_TREE;
10813 int i = 1;
10814 tree expanded_args = NULL_TREE;
10815 tree default_arg;
10816
10817 if (!arg_types || arg_types == void_list_node || arg_types == end)
10818 return arg_types;
10819
10820 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
10821 args, end, complain, in_decl);
10822 if (remaining_arg_types == error_mark_node)
10823 return error_mark_node;
10824
10825 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
10826 {
10827 /* For a pack expansion, perform substitution on the
10828 entire expression. Later on, we'll handle the arguments
10829 one-by-one. */
10830 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
10831 args, complain, in_decl);
10832
10833 if (TREE_CODE (expanded_args) == TREE_VEC)
10834 /* So that we'll spin through the parameters, one by one. */
10835 i = TREE_VEC_LENGTH (expanded_args);
10836 else
10837 {
10838 /* We only partially substituted into the parameter
10839 pack. Our type is TYPE_PACK_EXPANSION. */
10840 type = expanded_args;
10841 expanded_args = NULL_TREE;
10842 }
10843 }
10844
10845 while (i > 0) {
10846 --i;
10847
10848 if (expanded_args)
10849 type = TREE_VEC_ELT (expanded_args, i);
10850 else if (!type)
10851 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
10852
10853 if (type == error_mark_node)
10854 return error_mark_node;
10855 if (VOID_TYPE_P (type))
10856 {
10857 if (complain & tf_error)
10858 {
10859 error ("invalid parameter type %qT", type);
10860 if (in_decl)
10861 error ("in declaration %q+D", in_decl);
10862 }
10863 return error_mark_node;
10864 }
10865 /* DR 657. */
10866 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
10867 return error_mark_node;
10868
10869 /* Do array-to-pointer, function-to-pointer conversion, and ignore
10870 top-level qualifiers as required. */
10871 type = cv_unqualified (type_decays_to (type));
10872
10873 /* We do not substitute into default arguments here. The standard
10874 mandates that they be instantiated only when needed, which is
10875 done in build_over_call. */
10876 default_arg = TREE_PURPOSE (arg_types);
10877
10878 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
10879 {
10880 /* We've instantiated a template before its default arguments
10881 have been parsed. This can happen for a nested template
10882 class, and is not an error unless we require the default
10883 argument in a call of this function. */
10884 remaining_arg_types =
10885 tree_cons (default_arg, type, remaining_arg_types);
10886 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
10887 }
10888 else
10889 remaining_arg_types =
10890 hash_tree_cons (default_arg, type, remaining_arg_types);
10891 }
10892
10893 return remaining_arg_types;
10894 }
10895
10896 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
10897 *not* handle the exception-specification for FNTYPE, because the
10898 initial substitution of explicitly provided template parameters
10899 during argument deduction forbids substitution into the
10900 exception-specification:
10901
10902 [temp.deduct]
10903
10904 All references in the function type of the function template to the
10905 corresponding template parameters are replaced by the specified tem-
10906 plate argument values. If a substitution in a template parameter or
10907 in the function type of the function template results in an invalid
10908 type, type deduction fails. [Note: The equivalent substitution in
10909 exception specifications is done only when the function is instanti-
10910 ated, at which point a program is ill-formed if the substitution
10911 results in an invalid type.] */
10912
10913 static tree
10914 tsubst_function_type (tree t,
10915 tree args,
10916 tsubst_flags_t complain,
10917 tree in_decl)
10918 {
10919 tree return_type;
10920 tree arg_types;
10921 tree fntype;
10922
10923 /* The TYPE_CONTEXT is not used for function/method types. */
10924 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
10925
10926 /* Substitute the return type. */
10927 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10928 if (return_type == error_mark_node)
10929 return error_mark_node;
10930 /* DR 486 clarifies that creation of a function type with an
10931 invalid return type is a deduction failure. */
10932 if (TREE_CODE (return_type) == ARRAY_TYPE
10933 || TREE_CODE (return_type) == FUNCTION_TYPE)
10934 {
10935 if (complain & tf_error)
10936 {
10937 if (TREE_CODE (return_type) == ARRAY_TYPE)
10938 error ("function returning an array");
10939 else
10940 error ("function returning a function");
10941 }
10942 return error_mark_node;
10943 }
10944 /* And DR 657. */
10945 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
10946 return error_mark_node;
10947
10948 /* Substitute the argument types. */
10949 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
10950 complain, in_decl);
10951 if (arg_types == error_mark_node)
10952 return error_mark_node;
10953
10954 /* Construct a new type node and return it. */
10955 if (TREE_CODE (t) == FUNCTION_TYPE)
10956 {
10957 fntype = build_function_type (return_type, arg_types);
10958 fntype = apply_memfn_quals (fntype,
10959 type_memfn_quals (t),
10960 type_memfn_rqual (t));
10961 }
10962 else
10963 {
10964 tree r = TREE_TYPE (TREE_VALUE (arg_types));
10965 if (! MAYBE_CLASS_TYPE_P (r))
10966 {
10967 /* [temp.deduct]
10968
10969 Type deduction may fail for any of the following
10970 reasons:
10971
10972 -- Attempting to create "pointer to member of T" when T
10973 is not a class type. */
10974 if (complain & tf_error)
10975 error ("creating pointer to member function of non-class type %qT",
10976 r);
10977 return error_mark_node;
10978 }
10979
10980 fntype = build_method_type_directly (r, return_type,
10981 TREE_CHAIN (arg_types));
10982 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
10983 }
10984 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
10985
10986 return fntype;
10987 }
10988
10989 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
10990 ARGS into that specification, and return the substituted
10991 specification. If there is no specification, return NULL_TREE. */
10992
10993 static tree
10994 tsubst_exception_specification (tree fntype,
10995 tree args,
10996 tsubst_flags_t complain,
10997 tree in_decl,
10998 bool defer_ok)
10999 {
11000 tree specs;
11001 tree new_specs;
11002
11003 specs = TYPE_RAISES_EXCEPTIONS (fntype);
11004 new_specs = NULL_TREE;
11005 if (specs && TREE_PURPOSE (specs))
11006 {
11007 /* A noexcept-specifier. */
11008 tree expr = TREE_PURPOSE (specs);
11009 if (TREE_CODE (expr) == INTEGER_CST)
11010 new_specs = expr;
11011 else if (defer_ok)
11012 {
11013 /* Defer instantiation of noexcept-specifiers to avoid
11014 excessive instantiations (c++/49107). */
11015 new_specs = make_node (DEFERRED_NOEXCEPT);
11016 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
11017 {
11018 /* We already partially instantiated this member template,
11019 so combine the new args with the old. */
11020 DEFERRED_NOEXCEPT_PATTERN (new_specs)
11021 = DEFERRED_NOEXCEPT_PATTERN (expr);
11022 DEFERRED_NOEXCEPT_ARGS (new_specs)
11023 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
11024 }
11025 else
11026 {
11027 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
11028 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
11029 }
11030 }
11031 else
11032 new_specs = tsubst_copy_and_build
11033 (expr, args, complain, in_decl, /*function_p=*/false,
11034 /*integral_constant_expression_p=*/true);
11035 new_specs = build_noexcept_spec (new_specs, complain);
11036 }
11037 else if (specs)
11038 {
11039 if (! TREE_VALUE (specs))
11040 new_specs = specs;
11041 else
11042 while (specs)
11043 {
11044 tree spec;
11045 int i, len = 1;
11046 tree expanded_specs = NULL_TREE;
11047
11048 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
11049 {
11050 /* Expand the pack expansion type. */
11051 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
11052 args, complain,
11053 in_decl);
11054
11055 if (expanded_specs == error_mark_node)
11056 return error_mark_node;
11057 else if (TREE_CODE (expanded_specs) == TREE_VEC)
11058 len = TREE_VEC_LENGTH (expanded_specs);
11059 else
11060 {
11061 /* We're substituting into a member template, so
11062 we got a TYPE_PACK_EXPANSION back. Add that
11063 expansion and move on. */
11064 gcc_assert (TREE_CODE (expanded_specs)
11065 == TYPE_PACK_EXPANSION);
11066 new_specs = add_exception_specifier (new_specs,
11067 expanded_specs,
11068 complain);
11069 specs = TREE_CHAIN (specs);
11070 continue;
11071 }
11072 }
11073
11074 for (i = 0; i < len; ++i)
11075 {
11076 if (expanded_specs)
11077 spec = TREE_VEC_ELT (expanded_specs, i);
11078 else
11079 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
11080 if (spec == error_mark_node)
11081 return spec;
11082 new_specs = add_exception_specifier (new_specs, spec,
11083 complain);
11084 }
11085
11086 specs = TREE_CHAIN (specs);
11087 }
11088 }
11089 return new_specs;
11090 }
11091
11092 /* Take the tree structure T and replace template parameters used
11093 therein with the argument vector ARGS. IN_DECL is an associated
11094 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
11095 Issue error and warning messages under control of COMPLAIN. Note
11096 that we must be relatively non-tolerant of extensions here, in
11097 order to preserve conformance; if we allow substitutions that
11098 should not be allowed, we may allow argument deductions that should
11099 not succeed, and therefore report ambiguous overload situations
11100 where there are none. In theory, we could allow the substitution,
11101 but indicate that it should have failed, and allow our caller to
11102 make sure that the right thing happens, but we don't try to do this
11103 yet.
11104
11105 This function is used for dealing with types, decls and the like;
11106 for expressions, use tsubst_expr or tsubst_copy. */
11107
11108 tree
11109 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11110 {
11111 enum tree_code code;
11112 tree type, r = NULL_TREE;
11113
11114 if (t == NULL_TREE || t == error_mark_node
11115 || t == integer_type_node
11116 || t == void_type_node
11117 || t == char_type_node
11118 || t == unknown_type_node
11119 || TREE_CODE (t) == NAMESPACE_DECL
11120 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
11121 return t;
11122
11123 if (DECL_P (t))
11124 return tsubst_decl (t, args, complain);
11125
11126 if (args == NULL_TREE)
11127 return t;
11128
11129 code = TREE_CODE (t);
11130
11131 if (code == IDENTIFIER_NODE)
11132 type = IDENTIFIER_TYPE_VALUE (t);
11133 else
11134 type = TREE_TYPE (t);
11135
11136 gcc_assert (type != unknown_type_node);
11137
11138 /* Reuse typedefs. We need to do this to handle dependent attributes,
11139 such as attribute aligned. */
11140 if (TYPE_P (t)
11141 && typedef_variant_p (t))
11142 {
11143 tree decl = TYPE_NAME (t);
11144
11145 if (alias_template_specialization_p (t))
11146 {
11147 /* DECL represents an alias template and we want to
11148 instantiate it. */
11149 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11150 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11151 r = instantiate_alias_template (tmpl, gen_args, complain);
11152 }
11153 else if (DECL_CLASS_SCOPE_P (decl)
11154 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
11155 && uses_template_parms (DECL_CONTEXT (decl)))
11156 {
11157 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11158 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11159 r = retrieve_specialization (tmpl, gen_args, 0);
11160 }
11161 else if (DECL_FUNCTION_SCOPE_P (decl)
11162 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
11163 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
11164 r = retrieve_local_specialization (decl);
11165 else
11166 /* The typedef is from a non-template context. */
11167 return t;
11168
11169 if (r)
11170 {
11171 r = TREE_TYPE (r);
11172 r = cp_build_qualified_type_real
11173 (r, cp_type_quals (t) | cp_type_quals (r),
11174 complain | tf_ignore_bad_quals);
11175 return r;
11176 }
11177 else
11178 {
11179 /* We don't have an instantiation yet, so drop the typedef. */
11180 int quals = cp_type_quals (t);
11181 t = DECL_ORIGINAL_TYPE (decl);
11182 t = cp_build_qualified_type_real (t, quals,
11183 complain | tf_ignore_bad_quals);
11184 }
11185 }
11186
11187 if (type
11188 && code != TYPENAME_TYPE
11189 && code != TEMPLATE_TYPE_PARM
11190 && code != IDENTIFIER_NODE
11191 && code != FUNCTION_TYPE
11192 && code != METHOD_TYPE)
11193 type = tsubst (type, args, complain, in_decl);
11194 if (type == error_mark_node)
11195 return error_mark_node;
11196
11197 switch (code)
11198 {
11199 case RECORD_TYPE:
11200 case UNION_TYPE:
11201 case ENUMERAL_TYPE:
11202 return tsubst_aggr_type (t, args, complain, in_decl,
11203 /*entering_scope=*/0);
11204
11205 case ERROR_MARK:
11206 case IDENTIFIER_NODE:
11207 case VOID_TYPE:
11208 case REAL_TYPE:
11209 case COMPLEX_TYPE:
11210 case VECTOR_TYPE:
11211 case BOOLEAN_TYPE:
11212 case NULLPTR_TYPE:
11213 case LANG_TYPE:
11214 return t;
11215
11216 case INTEGER_TYPE:
11217 if (t == integer_type_node)
11218 return t;
11219
11220 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
11221 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
11222 return t;
11223
11224 {
11225 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
11226
11227 max = tsubst_expr (omax, args, complain, in_decl,
11228 /*integral_constant_expression_p=*/false);
11229
11230 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
11231 needed. */
11232 if (TREE_CODE (max) == NOP_EXPR
11233 && TREE_SIDE_EFFECTS (omax)
11234 && !TREE_TYPE (max))
11235 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
11236
11237 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
11238 with TREE_SIDE_EFFECTS that indicates this is not an integral
11239 constant expression. */
11240 if (processing_template_decl
11241 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
11242 {
11243 gcc_assert (TREE_CODE (max) == NOP_EXPR);
11244 TREE_SIDE_EFFECTS (max) = 1;
11245 }
11246
11247 return compute_array_index_type (NULL_TREE, max, complain);
11248 }
11249
11250 case TEMPLATE_TYPE_PARM:
11251 case TEMPLATE_TEMPLATE_PARM:
11252 case BOUND_TEMPLATE_TEMPLATE_PARM:
11253 case TEMPLATE_PARM_INDEX:
11254 {
11255 int idx;
11256 int level;
11257 int levels;
11258 tree arg = NULL_TREE;
11259
11260 r = NULL_TREE;
11261
11262 gcc_assert (TREE_VEC_LENGTH (args) > 0);
11263 template_parm_level_and_index (t, &level, &idx);
11264
11265 levels = TMPL_ARGS_DEPTH (args);
11266 if (level <= levels)
11267 {
11268 arg = TMPL_ARG (args, level, idx);
11269
11270 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
11271 {
11272 /* See through ARGUMENT_PACK_SELECT arguments. */
11273 arg = ARGUMENT_PACK_SELECT_ARG (arg);
11274 /* If the selected argument is an expansion E, that most
11275 likely means we were called from
11276 gen_elem_of_pack_expansion_instantiation during the
11277 substituting of pack an argument pack (which Ith
11278 element is a pack expansion, where I is
11279 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
11280 In this case, the Ith element resulting from this
11281 substituting is going to be a pack expansion, which
11282 pattern is the pattern of E. Let's return the
11283 pattern of E, and
11284 gen_elem_of_pack_expansion_instantiation will
11285 build the resulting pack expansion from it. */
11286 if (PACK_EXPANSION_P (arg))
11287 arg = PACK_EXPANSION_PATTERN (arg);
11288 }
11289 }
11290
11291 if (arg == error_mark_node)
11292 return error_mark_node;
11293 else if (arg != NULL_TREE)
11294 {
11295 if (ARGUMENT_PACK_P (arg))
11296 /* If ARG is an argument pack, we don't actually want to
11297 perform a substitution here, because substitutions
11298 for argument packs are only done
11299 element-by-element. We can get to this point when
11300 substituting the type of a non-type template
11301 parameter pack, when that type actually contains
11302 template parameter packs from an outer template, e.g.,
11303
11304 template<typename... Types> struct A {
11305 template<Types... Values> struct B { };
11306 }; */
11307 return t;
11308
11309 if (code == TEMPLATE_TYPE_PARM)
11310 {
11311 int quals;
11312 gcc_assert (TYPE_P (arg));
11313
11314 quals = cp_type_quals (arg) | cp_type_quals (t);
11315
11316 return cp_build_qualified_type_real
11317 (arg, quals, complain | tf_ignore_bad_quals);
11318 }
11319 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
11320 {
11321 /* We are processing a type constructed from a
11322 template template parameter. */
11323 tree argvec = tsubst (TYPE_TI_ARGS (t),
11324 args, complain, in_decl);
11325 if (argvec == error_mark_node)
11326 return error_mark_node;
11327
11328 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
11329 || TREE_CODE (arg) == TEMPLATE_DECL
11330 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
11331
11332 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
11333 /* Consider this code:
11334
11335 template <template <class> class Template>
11336 struct Internal {
11337 template <class Arg> using Bind = Template<Arg>;
11338 };
11339
11340 template <template <class> class Template, class Arg>
11341 using Instantiate = Template<Arg>; //#0
11342
11343 template <template <class> class Template,
11344 class Argument>
11345 using Bind =
11346 Instantiate<Internal<Template>::template Bind,
11347 Argument>; //#1
11348
11349 When #1 is parsed, the
11350 BOUND_TEMPLATE_TEMPLATE_PARM representing the
11351 parameter `Template' in #0 matches the
11352 UNBOUND_CLASS_TEMPLATE representing the argument
11353 `Internal<Template>::template Bind'; We then want
11354 to assemble the type `Bind<Argument>' that can't
11355 be fully created right now, because
11356 `Internal<Template>' not being complete, the Bind
11357 template cannot be looked up in that context. So
11358 we need to "store" `Bind<Argument>' for later
11359 when the context of Bind becomes complete. Let's
11360 store that in a TYPENAME_TYPE. */
11361 return make_typename_type (TYPE_CONTEXT (arg),
11362 build_nt (TEMPLATE_ID_EXPR,
11363 TYPE_IDENTIFIER (arg),
11364 argvec),
11365 typename_type,
11366 complain);
11367
11368 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
11369 are resolving nested-types in the signature of a
11370 member function templates. Otherwise ARG is a
11371 TEMPLATE_DECL and is the real template to be
11372 instantiated. */
11373 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
11374 arg = TYPE_NAME (arg);
11375
11376 r = lookup_template_class (arg,
11377 argvec, in_decl,
11378 DECL_CONTEXT (arg),
11379 /*entering_scope=*/0,
11380 complain);
11381 return cp_build_qualified_type_real
11382 (r, cp_type_quals (t), complain);
11383 }
11384 else
11385 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
11386 return convert_from_reference (unshare_expr (arg));
11387 }
11388
11389 if (level == 1)
11390 /* This can happen during the attempted tsubst'ing in
11391 unify. This means that we don't yet have any information
11392 about the template parameter in question. */
11393 return t;
11394
11395 /* Early in template argument deduction substitution, we don't
11396 want to reduce the level of 'auto', or it will be confused
11397 with a normal template parm in subsequent deduction. */
11398 if (is_auto (t) && (complain & tf_partial))
11399 return t;
11400
11401 /* If we get here, we must have been looking at a parm for a
11402 more deeply nested template. Make a new version of this
11403 template parameter, but with a lower level. */
11404 switch (code)
11405 {
11406 case TEMPLATE_TYPE_PARM:
11407 case TEMPLATE_TEMPLATE_PARM:
11408 case BOUND_TEMPLATE_TEMPLATE_PARM:
11409 if (cp_type_quals (t))
11410 {
11411 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
11412 r = cp_build_qualified_type_real
11413 (r, cp_type_quals (t),
11414 complain | (code == TEMPLATE_TYPE_PARM
11415 ? tf_ignore_bad_quals : 0));
11416 }
11417 else
11418 {
11419 r = copy_type (t);
11420 TEMPLATE_TYPE_PARM_INDEX (r)
11421 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
11422 r, levels, args, complain);
11423 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
11424 TYPE_MAIN_VARIANT (r) = r;
11425 TYPE_POINTER_TO (r) = NULL_TREE;
11426 TYPE_REFERENCE_TO (r) = NULL_TREE;
11427
11428 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
11429 /* We have reduced the level of the template
11430 template parameter, but not the levels of its
11431 template parameters, so canonical_type_parameter
11432 will not be able to find the canonical template
11433 template parameter for this level. Thus, we
11434 require structural equality checking to compare
11435 TEMPLATE_TEMPLATE_PARMs. */
11436 SET_TYPE_STRUCTURAL_EQUALITY (r);
11437 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
11438 SET_TYPE_STRUCTURAL_EQUALITY (r);
11439 else
11440 TYPE_CANONICAL (r) = canonical_type_parameter (r);
11441
11442 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
11443 {
11444 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
11445 complain, in_decl);
11446 if (argvec == error_mark_node)
11447 return error_mark_node;
11448
11449 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
11450 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
11451 }
11452 }
11453 break;
11454
11455 case TEMPLATE_PARM_INDEX:
11456 r = reduce_template_parm_level (t, type, levels, args, complain);
11457 break;
11458
11459 default:
11460 gcc_unreachable ();
11461 }
11462
11463 return r;
11464 }
11465
11466 case TREE_LIST:
11467 {
11468 tree purpose, value, chain;
11469
11470 if (t == void_list_node)
11471 return t;
11472
11473 purpose = TREE_PURPOSE (t);
11474 if (purpose)
11475 {
11476 purpose = tsubst (purpose, args, complain, in_decl);
11477 if (purpose == error_mark_node)
11478 return error_mark_node;
11479 }
11480 value = TREE_VALUE (t);
11481 if (value)
11482 {
11483 value = tsubst (value, args, complain, in_decl);
11484 if (value == error_mark_node)
11485 return error_mark_node;
11486 }
11487 chain = TREE_CHAIN (t);
11488 if (chain && chain != void_type_node)
11489 {
11490 chain = tsubst (chain, args, complain, in_decl);
11491 if (chain == error_mark_node)
11492 return error_mark_node;
11493 }
11494 if (purpose == TREE_PURPOSE (t)
11495 && value == TREE_VALUE (t)
11496 && chain == TREE_CHAIN (t))
11497 return t;
11498 return hash_tree_cons (purpose, value, chain);
11499 }
11500
11501 case TREE_BINFO:
11502 /* We should never be tsubsting a binfo. */
11503 gcc_unreachable ();
11504
11505 case TREE_VEC:
11506 /* A vector of template arguments. */
11507 gcc_assert (!type);
11508 return tsubst_template_args (t, args, complain, in_decl);
11509
11510 case POINTER_TYPE:
11511 case REFERENCE_TYPE:
11512 {
11513 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
11514 return t;
11515
11516 /* [temp.deduct]
11517
11518 Type deduction may fail for any of the following
11519 reasons:
11520
11521 -- Attempting to create a pointer to reference type.
11522 -- Attempting to create a reference to a reference type or
11523 a reference to void.
11524
11525 Core issue 106 says that creating a reference to a reference
11526 during instantiation is no longer a cause for failure. We
11527 only enforce this check in strict C++98 mode. */
11528 if ((TREE_CODE (type) == REFERENCE_TYPE
11529 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
11530 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
11531 {
11532 static location_t last_loc;
11533
11534 /* We keep track of the last time we issued this error
11535 message to avoid spewing a ton of messages during a
11536 single bad template instantiation. */
11537 if (complain & tf_error
11538 && last_loc != input_location)
11539 {
11540 if (VOID_TYPE_P (type))
11541 error ("forming reference to void");
11542 else if (code == POINTER_TYPE)
11543 error ("forming pointer to reference type %qT", type);
11544 else
11545 error ("forming reference to reference type %qT", type);
11546 last_loc = input_location;
11547 }
11548
11549 return error_mark_node;
11550 }
11551 else if (code == POINTER_TYPE)
11552 {
11553 r = build_pointer_type (type);
11554 if (TREE_CODE (type) == METHOD_TYPE)
11555 r = build_ptrmemfunc_type (r);
11556 }
11557 else if (TREE_CODE (type) == REFERENCE_TYPE)
11558 /* In C++0x, during template argument substitution, when there is an
11559 attempt to create a reference to a reference type, reference
11560 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
11561
11562 "If a template-argument for a template-parameter T names a type
11563 that is a reference to a type A, an attempt to create the type
11564 'lvalue reference to cv T' creates the type 'lvalue reference to
11565 A,' while an attempt to create the type type rvalue reference to
11566 cv T' creates the type T"
11567 */
11568 r = cp_build_reference_type
11569 (TREE_TYPE (type),
11570 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
11571 else
11572 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
11573 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11574
11575 if (r != error_mark_node)
11576 /* Will this ever be needed for TYPE_..._TO values? */
11577 layout_type (r);
11578
11579 return r;
11580 }
11581 case OFFSET_TYPE:
11582 {
11583 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
11584 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
11585 {
11586 /* [temp.deduct]
11587
11588 Type deduction may fail for any of the following
11589 reasons:
11590
11591 -- Attempting to create "pointer to member of T" when T
11592 is not a class type. */
11593 if (complain & tf_error)
11594 error ("creating pointer to member of non-class type %qT", r);
11595 return error_mark_node;
11596 }
11597 if (TREE_CODE (type) == REFERENCE_TYPE)
11598 {
11599 if (complain & tf_error)
11600 error ("creating pointer to member reference type %qT", type);
11601 return error_mark_node;
11602 }
11603 if (VOID_TYPE_P (type))
11604 {
11605 if (complain & tf_error)
11606 error ("creating pointer to member of type void");
11607 return error_mark_node;
11608 }
11609 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
11610 if (TREE_CODE (type) == FUNCTION_TYPE)
11611 {
11612 /* The type of the implicit object parameter gets its
11613 cv-qualifiers from the FUNCTION_TYPE. */
11614 tree memptr;
11615 tree method_type
11616 = build_memfn_type (type, r, type_memfn_quals (type),
11617 type_memfn_rqual (type));
11618 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
11619 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
11620 complain);
11621 }
11622 else
11623 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
11624 cp_type_quals (t),
11625 complain);
11626 }
11627 case FUNCTION_TYPE:
11628 case METHOD_TYPE:
11629 {
11630 tree fntype;
11631 tree specs;
11632 fntype = tsubst_function_type (t, args, complain, in_decl);
11633 if (fntype == error_mark_node)
11634 return error_mark_node;
11635
11636 /* Substitute the exception specification. */
11637 specs = tsubst_exception_specification (t, args, complain,
11638 in_decl, /*defer_ok*/true);
11639 if (specs == error_mark_node)
11640 return error_mark_node;
11641 if (specs)
11642 fntype = build_exception_variant (fntype, specs);
11643 return fntype;
11644 }
11645 case ARRAY_TYPE:
11646 {
11647 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
11648 if (domain == error_mark_node)
11649 return error_mark_node;
11650
11651 /* As an optimization, we avoid regenerating the array type if
11652 it will obviously be the same as T. */
11653 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
11654 return t;
11655
11656 /* These checks should match the ones in grokdeclarator.
11657
11658 [temp.deduct]
11659
11660 The deduction may fail for any of the following reasons:
11661
11662 -- Attempting to create an array with an element type that
11663 is void, a function type, or a reference type, or [DR337]
11664 an abstract class type. */
11665 if (VOID_TYPE_P (type)
11666 || TREE_CODE (type) == FUNCTION_TYPE
11667 || TREE_CODE (type) == REFERENCE_TYPE)
11668 {
11669 if (complain & tf_error)
11670 error ("creating array of %qT", type);
11671 return error_mark_node;
11672 }
11673
11674 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
11675 return error_mark_node;
11676
11677 r = build_cplus_array_type (type, domain);
11678
11679 if (TYPE_USER_ALIGN (t))
11680 {
11681 TYPE_ALIGN (r) = TYPE_ALIGN (t);
11682 TYPE_USER_ALIGN (r) = 1;
11683 }
11684
11685 return r;
11686 }
11687
11688 case TYPENAME_TYPE:
11689 {
11690 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
11691 in_decl, /*entering_scope=*/1);
11692 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
11693 complain, in_decl);
11694
11695 if (ctx == error_mark_node || f == error_mark_node)
11696 return error_mark_node;
11697
11698 if (!MAYBE_CLASS_TYPE_P (ctx))
11699 {
11700 if (complain & tf_error)
11701 error ("%qT is not a class, struct, or union type", ctx);
11702 return error_mark_node;
11703 }
11704 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
11705 {
11706 /* Normally, make_typename_type does not require that the CTX
11707 have complete type in order to allow things like:
11708
11709 template <class T> struct S { typename S<T>::X Y; };
11710
11711 But, such constructs have already been resolved by this
11712 point, so here CTX really should have complete type, unless
11713 it's a partial instantiation. */
11714 ctx = complete_type (ctx);
11715 if (!COMPLETE_TYPE_P (ctx))
11716 {
11717 if (complain & tf_error)
11718 cxx_incomplete_type_error (NULL_TREE, ctx);
11719 return error_mark_node;
11720 }
11721 }
11722
11723 f = make_typename_type (ctx, f, typename_type,
11724 complain | tf_keep_type_decl);
11725 if (f == error_mark_node)
11726 return f;
11727 if (TREE_CODE (f) == TYPE_DECL)
11728 {
11729 complain |= tf_ignore_bad_quals;
11730 f = TREE_TYPE (f);
11731 }
11732
11733 if (TREE_CODE (f) != TYPENAME_TYPE)
11734 {
11735 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
11736 {
11737 if (complain & tf_error)
11738 error ("%qT resolves to %qT, which is not an enumeration type",
11739 t, f);
11740 else
11741 return error_mark_node;
11742 }
11743 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
11744 {
11745 if (complain & tf_error)
11746 error ("%qT resolves to %qT, which is is not a class type",
11747 t, f);
11748 else
11749 return error_mark_node;
11750 }
11751 }
11752
11753 return cp_build_qualified_type_real
11754 (f, cp_type_quals (f) | cp_type_quals (t), complain);
11755 }
11756
11757 case UNBOUND_CLASS_TEMPLATE:
11758 {
11759 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
11760 in_decl, /*entering_scope=*/1);
11761 tree name = TYPE_IDENTIFIER (t);
11762 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
11763
11764 if (ctx == error_mark_node || name == error_mark_node)
11765 return error_mark_node;
11766
11767 if (parm_list)
11768 parm_list = tsubst_template_parms (parm_list, args, complain);
11769 return make_unbound_class_template (ctx, name, parm_list, complain);
11770 }
11771
11772 case TYPEOF_TYPE:
11773 {
11774 tree type;
11775
11776 ++cp_unevaluated_operand;
11777 ++c_inhibit_evaluation_warnings;
11778
11779 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
11780 complain, in_decl,
11781 /*integral_constant_expression_p=*/false);
11782
11783 --cp_unevaluated_operand;
11784 --c_inhibit_evaluation_warnings;
11785
11786 type = finish_typeof (type);
11787 return cp_build_qualified_type_real (type,
11788 cp_type_quals (t)
11789 | cp_type_quals (type),
11790 complain);
11791 }
11792
11793 case DECLTYPE_TYPE:
11794 {
11795 tree type;
11796
11797 ++cp_unevaluated_operand;
11798 ++c_inhibit_evaluation_warnings;
11799
11800 type = tsubst_expr (DECLTYPE_TYPE_EXPR (t), args,
11801 complain|tf_decltype, in_decl,
11802 /*integral_constant_expression_p=*/false);
11803
11804 --cp_unevaluated_operand;
11805 --c_inhibit_evaluation_warnings;
11806
11807 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
11808 type = lambda_capture_field_type (type);
11809 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
11810 type = lambda_proxy_type (type);
11811 else
11812 type = finish_decltype_type
11813 (type, DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t), complain);
11814 return cp_build_qualified_type_real (type,
11815 cp_type_quals (t)
11816 | cp_type_quals (type),
11817 complain);
11818 }
11819
11820 case UNDERLYING_TYPE:
11821 {
11822 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
11823 complain, in_decl);
11824 return finish_underlying_type (type);
11825 }
11826
11827 case TYPE_ARGUMENT_PACK:
11828 case NONTYPE_ARGUMENT_PACK:
11829 {
11830 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
11831 tree packed_out =
11832 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
11833 args,
11834 complain,
11835 in_decl);
11836 SET_ARGUMENT_PACK_ARGS (r, packed_out);
11837
11838 /* For template nontype argument packs, also substitute into
11839 the type. */
11840 if (code == NONTYPE_ARGUMENT_PACK)
11841 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
11842
11843 return r;
11844 }
11845 break;
11846
11847 case INTEGER_CST:
11848 case REAL_CST:
11849 case STRING_CST:
11850 case PLUS_EXPR:
11851 case MINUS_EXPR:
11852 case NEGATE_EXPR:
11853 case NOP_EXPR:
11854 case INDIRECT_REF:
11855 case ADDR_EXPR:
11856 case CALL_EXPR:
11857 case ARRAY_REF:
11858 case SCOPE_REF:
11859 /* We should use one of the expression tsubsts for these codes. */
11860 gcc_unreachable ();
11861
11862 default:
11863 sorry ("use of %qs in template", tree_code_name [(int) code]);
11864 return error_mark_node;
11865 }
11866 }
11867
11868 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
11869 type of the expression on the left-hand side of the "." or "->"
11870 operator. */
11871
11872 static tree
11873 tsubst_baselink (tree baselink, tree object_type,
11874 tree args, tsubst_flags_t complain, tree in_decl)
11875 {
11876 tree name;
11877 tree qualifying_scope;
11878 tree fns;
11879 tree optype;
11880 tree template_args = 0;
11881 bool template_id_p = false;
11882 bool qualified = BASELINK_QUALIFIED_P (baselink);
11883
11884 /* A baselink indicates a function from a base class. Both the
11885 BASELINK_ACCESS_BINFO and the base class referenced may
11886 indicate bases of the template class, rather than the
11887 instantiated class. In addition, lookups that were not
11888 ambiguous before may be ambiguous now. Therefore, we perform
11889 the lookup again. */
11890 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
11891 qualifying_scope = tsubst (qualifying_scope, args,
11892 complain, in_decl);
11893 fns = BASELINK_FUNCTIONS (baselink);
11894 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
11895 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
11896 {
11897 template_id_p = true;
11898 template_args = TREE_OPERAND (fns, 1);
11899 fns = TREE_OPERAND (fns, 0);
11900 if (template_args)
11901 template_args = tsubst_template_args (template_args, args,
11902 complain, in_decl);
11903 }
11904 name = DECL_NAME (get_first_fn (fns));
11905 if (IDENTIFIER_TYPENAME_P (name))
11906 name = mangle_conv_op_name_for_type (optype);
11907 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
11908 if (!baselink)
11909 return error_mark_node;
11910
11911 /* If lookup found a single function, mark it as used at this
11912 point. (If it lookup found multiple functions the one selected
11913 later by overload resolution will be marked as used at that
11914 point.) */
11915 if (BASELINK_P (baselink))
11916 fns = BASELINK_FUNCTIONS (baselink);
11917 if (!template_id_p && !really_overloaded_fn (fns))
11918 mark_used (OVL_CURRENT (fns));
11919
11920 /* Add back the template arguments, if present. */
11921 if (BASELINK_P (baselink) && template_id_p)
11922 BASELINK_FUNCTIONS (baselink)
11923 = build_nt (TEMPLATE_ID_EXPR,
11924 BASELINK_FUNCTIONS (baselink),
11925 template_args);
11926 /* Update the conversion operator type. */
11927 BASELINK_OPTYPE (baselink) = optype;
11928
11929 if (!object_type)
11930 object_type = current_class_type;
11931
11932 if (qualified)
11933 baselink = adjust_result_of_qualified_name_lookup (baselink,
11934 qualifying_scope,
11935 object_type);
11936 return baselink;
11937 }
11938
11939 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
11940 true if the qualified-id will be a postfix-expression in-and-of
11941 itself; false if more of the postfix-expression follows the
11942 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
11943 of "&". */
11944
11945 static tree
11946 tsubst_qualified_id (tree qualified_id, tree args,
11947 tsubst_flags_t complain, tree in_decl,
11948 bool done, bool address_p)
11949 {
11950 tree expr;
11951 tree scope;
11952 tree name;
11953 bool is_template;
11954 tree template_args;
11955 location_t loc = UNKNOWN_LOCATION;
11956
11957 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
11958
11959 /* Figure out what name to look up. */
11960 name = TREE_OPERAND (qualified_id, 1);
11961 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
11962 {
11963 is_template = true;
11964 loc = EXPR_LOCATION (name);
11965 template_args = TREE_OPERAND (name, 1);
11966 if (template_args)
11967 template_args = tsubst_template_args (template_args, args,
11968 complain, in_decl);
11969 name = TREE_OPERAND (name, 0);
11970 }
11971 else
11972 {
11973 is_template = false;
11974 template_args = NULL_TREE;
11975 }
11976
11977 /* Substitute into the qualifying scope. When there are no ARGS, we
11978 are just trying to simplify a non-dependent expression. In that
11979 case the qualifying scope may be dependent, and, in any case,
11980 substituting will not help. */
11981 scope = TREE_OPERAND (qualified_id, 0);
11982 if (args)
11983 {
11984 scope = tsubst (scope, args, complain, in_decl);
11985 expr = tsubst_copy (name, args, complain, in_decl);
11986 }
11987 else
11988 expr = name;
11989
11990 if (dependent_scope_p (scope))
11991 {
11992 if (is_template)
11993 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
11994 return build_qualified_name (NULL_TREE, scope, expr,
11995 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
11996 }
11997
11998 if (!BASELINK_P (name) && !DECL_P (expr))
11999 {
12000 if (TREE_CODE (expr) == BIT_NOT_EXPR)
12001 {
12002 /* A BIT_NOT_EXPR is used to represent a destructor. */
12003 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
12004 {
12005 error ("qualifying type %qT does not match destructor name ~%qT",
12006 scope, TREE_OPERAND (expr, 0));
12007 expr = error_mark_node;
12008 }
12009 else
12010 expr = lookup_qualified_name (scope, complete_dtor_identifier,
12011 /*is_type_p=*/0, false);
12012 }
12013 else
12014 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
12015 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
12016 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
12017 {
12018 if (complain & tf_error)
12019 {
12020 error ("dependent-name %qE is parsed as a non-type, but "
12021 "instantiation yields a type", qualified_id);
12022 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
12023 }
12024 return error_mark_node;
12025 }
12026 }
12027
12028 if (DECL_P (expr))
12029 {
12030 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
12031 scope);
12032 /* Remember that there was a reference to this entity. */
12033 mark_used (expr);
12034 }
12035
12036 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
12037 {
12038 if (complain & tf_error)
12039 qualified_name_lookup_error (scope,
12040 TREE_OPERAND (qualified_id, 1),
12041 expr, input_location);
12042 return error_mark_node;
12043 }
12044
12045 if (is_template)
12046 expr = lookup_template_function (expr, template_args);
12047
12048 if (expr == error_mark_node && complain & tf_error)
12049 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
12050 expr, input_location);
12051 else if (TYPE_P (scope))
12052 {
12053 expr = (adjust_result_of_qualified_name_lookup
12054 (expr, scope, current_nonlambda_class_type ()));
12055 expr = (finish_qualified_id_expr
12056 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
12057 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
12058 /*template_arg_p=*/false));
12059 }
12060
12061 /* Expressions do not generally have reference type. */
12062 if (TREE_CODE (expr) != SCOPE_REF
12063 /* However, if we're about to form a pointer-to-member, we just
12064 want the referenced member referenced. */
12065 && TREE_CODE (expr) != OFFSET_REF)
12066 expr = convert_from_reference (expr);
12067
12068 return expr;
12069 }
12070
12071 /* Like tsubst, but deals with expressions. This function just replaces
12072 template parms; to finish processing the resultant expression, use
12073 tsubst_copy_and_build or tsubst_expr. */
12074
12075 static tree
12076 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12077 {
12078 enum tree_code code;
12079 tree r;
12080
12081 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
12082 return t;
12083
12084 code = TREE_CODE (t);
12085
12086 switch (code)
12087 {
12088 case PARM_DECL:
12089 r = retrieve_local_specialization (t);
12090
12091 if (r == NULL_TREE)
12092 {
12093 /* We get here for a use of 'this' in an NSDMI. */
12094 if (DECL_NAME (t) == this_identifier
12095 && at_function_scope_p ()
12096 && DECL_CONSTRUCTOR_P (current_function_decl))
12097 return current_class_ptr;
12098
12099 /* This can happen for a parameter name used later in a function
12100 declaration (such as in a late-specified return type). Just
12101 make a dummy decl, since it's only used for its type. */
12102 gcc_assert (cp_unevaluated_operand != 0);
12103 r = tsubst_decl (t, args, complain);
12104 /* Give it the template pattern as its context; its true context
12105 hasn't been instantiated yet and this is good enough for
12106 mangling. */
12107 DECL_CONTEXT (r) = DECL_CONTEXT (t);
12108 }
12109
12110 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
12111 r = ARGUMENT_PACK_SELECT_ARG (r);
12112 mark_used (r);
12113 return r;
12114
12115 case CONST_DECL:
12116 {
12117 tree enum_type;
12118 tree v;
12119
12120 if (DECL_TEMPLATE_PARM_P (t))
12121 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
12122 /* There is no need to substitute into namespace-scope
12123 enumerators. */
12124 if (DECL_NAMESPACE_SCOPE_P (t))
12125 return t;
12126 /* If ARGS is NULL, then T is known to be non-dependent. */
12127 if (args == NULL_TREE)
12128 return integral_constant_value (t);
12129
12130 /* Unfortunately, we cannot just call lookup_name here.
12131 Consider:
12132
12133 template <int I> int f() {
12134 enum E { a = I };
12135 struct S { void g() { E e = a; } };
12136 };
12137
12138 When we instantiate f<7>::S::g(), say, lookup_name is not
12139 clever enough to find f<7>::a. */
12140 enum_type
12141 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12142 /*entering_scope=*/0);
12143
12144 for (v = TYPE_VALUES (enum_type);
12145 v != NULL_TREE;
12146 v = TREE_CHAIN (v))
12147 if (TREE_PURPOSE (v) == DECL_NAME (t))
12148 return TREE_VALUE (v);
12149
12150 /* We didn't find the name. That should never happen; if
12151 name-lookup found it during preliminary parsing, we
12152 should find it again here during instantiation. */
12153 gcc_unreachable ();
12154 }
12155 return t;
12156
12157 case FIELD_DECL:
12158 if (DECL_CONTEXT (t))
12159 {
12160 tree ctx;
12161
12162 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12163 /*entering_scope=*/1);
12164 if (ctx != DECL_CONTEXT (t))
12165 {
12166 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
12167 if (!r)
12168 {
12169 if (complain & tf_error)
12170 error ("using invalid field %qD", t);
12171 return error_mark_node;
12172 }
12173 return r;
12174 }
12175 }
12176
12177 return t;
12178
12179 case VAR_DECL:
12180 case FUNCTION_DECL:
12181 if ((DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
12182 || local_variable_p (t))
12183 t = tsubst (t, args, complain, in_decl);
12184 mark_used (t);
12185 return t;
12186
12187 case NAMESPACE_DECL:
12188 return t;
12189
12190 case OVERLOAD:
12191 /* An OVERLOAD will always be a non-dependent overload set; an
12192 overload set from function scope will just be represented with an
12193 IDENTIFIER_NODE, and from class scope with a BASELINK. */
12194 gcc_assert (!uses_template_parms (t));
12195 return t;
12196
12197 case BASELINK:
12198 return tsubst_baselink (t, current_class_type, args, complain, in_decl);
12199
12200 case TEMPLATE_DECL:
12201 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
12202 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
12203 args, complain, in_decl);
12204 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
12205 return tsubst (t, args, complain, in_decl);
12206 else if (DECL_CLASS_SCOPE_P (t)
12207 && uses_template_parms (DECL_CONTEXT (t)))
12208 {
12209 /* Template template argument like the following example need
12210 special treatment:
12211
12212 template <template <class> class TT> struct C {};
12213 template <class T> struct D {
12214 template <class U> struct E {};
12215 C<E> c; // #1
12216 };
12217 D<int> d; // #2
12218
12219 We are processing the template argument `E' in #1 for
12220 the template instantiation #2. Originally, `E' is a
12221 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
12222 have to substitute this with one having context `D<int>'. */
12223
12224 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
12225 return lookup_field (context, DECL_NAME(t), 0, false);
12226 }
12227 else
12228 /* Ordinary template template argument. */
12229 return t;
12230
12231 case CAST_EXPR:
12232 case REINTERPRET_CAST_EXPR:
12233 case CONST_CAST_EXPR:
12234 case STATIC_CAST_EXPR:
12235 case DYNAMIC_CAST_EXPR:
12236 case IMPLICIT_CONV_EXPR:
12237 case CONVERT_EXPR:
12238 case NOP_EXPR:
12239 return build1
12240 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12241 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
12242
12243 case SIZEOF_EXPR:
12244 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
12245 {
12246
12247 tree expanded, op = TREE_OPERAND (t, 0);
12248 int len = 0;
12249
12250 if (SIZEOF_EXPR_TYPE_P (t))
12251 op = TREE_TYPE (op);
12252
12253 ++cp_unevaluated_operand;
12254 ++c_inhibit_evaluation_warnings;
12255 /* We only want to compute the number of arguments. */
12256 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
12257 --cp_unevaluated_operand;
12258 --c_inhibit_evaluation_warnings;
12259
12260 if (TREE_CODE (expanded) == TREE_VEC)
12261 len = TREE_VEC_LENGTH (expanded);
12262
12263 if (expanded == error_mark_node)
12264 return error_mark_node;
12265 else if (PACK_EXPANSION_P (expanded)
12266 || (TREE_CODE (expanded) == TREE_VEC
12267 && len > 0
12268 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
12269 {
12270 if (TREE_CODE (expanded) == TREE_VEC)
12271 expanded = TREE_VEC_ELT (expanded, len - 1);
12272
12273 if (TYPE_P (expanded))
12274 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
12275 complain & tf_error);
12276 else
12277 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
12278 complain & tf_error);
12279 }
12280 else
12281 return build_int_cst (size_type_node, len);
12282 }
12283 if (SIZEOF_EXPR_TYPE_P (t))
12284 {
12285 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
12286 args, complain, in_decl);
12287 r = build1 (NOP_EXPR, r, error_mark_node);
12288 r = build1 (SIZEOF_EXPR,
12289 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
12290 SIZEOF_EXPR_TYPE_P (r) = 1;
12291 return r;
12292 }
12293 /* Fall through */
12294
12295 case INDIRECT_REF:
12296 case NEGATE_EXPR:
12297 case TRUTH_NOT_EXPR:
12298 case BIT_NOT_EXPR:
12299 case ADDR_EXPR:
12300 case UNARY_PLUS_EXPR: /* Unary + */
12301 case ALIGNOF_EXPR:
12302 case AT_ENCODE_EXPR:
12303 case ARROW_EXPR:
12304 case THROW_EXPR:
12305 case TYPEID_EXPR:
12306 case REALPART_EXPR:
12307 case IMAGPART_EXPR:
12308 case PAREN_EXPR:
12309 return build1
12310 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12311 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
12312
12313 case COMPONENT_REF:
12314 {
12315 tree object;
12316 tree name;
12317
12318 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
12319 name = TREE_OPERAND (t, 1);
12320 if (TREE_CODE (name) == BIT_NOT_EXPR)
12321 {
12322 name = tsubst_copy (TREE_OPERAND (name, 0), args,
12323 complain, in_decl);
12324 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
12325 }
12326 else if (TREE_CODE (name) == SCOPE_REF
12327 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
12328 {
12329 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
12330 complain, in_decl);
12331 name = TREE_OPERAND (name, 1);
12332 name = tsubst_copy (TREE_OPERAND (name, 0), args,
12333 complain, in_decl);
12334 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
12335 name = build_qualified_name (/*type=*/NULL_TREE,
12336 base, name,
12337 /*template_p=*/false);
12338 }
12339 else if (BASELINK_P (name))
12340 name = tsubst_baselink (name,
12341 non_reference (TREE_TYPE (object)),
12342 args, complain,
12343 in_decl);
12344 else
12345 name = tsubst_copy (name, args, complain, in_decl);
12346 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
12347 }
12348
12349 case PLUS_EXPR:
12350 case MINUS_EXPR:
12351 case MULT_EXPR:
12352 case TRUNC_DIV_EXPR:
12353 case CEIL_DIV_EXPR:
12354 case FLOOR_DIV_EXPR:
12355 case ROUND_DIV_EXPR:
12356 case EXACT_DIV_EXPR:
12357 case BIT_AND_EXPR:
12358 case BIT_IOR_EXPR:
12359 case BIT_XOR_EXPR:
12360 case TRUNC_MOD_EXPR:
12361 case FLOOR_MOD_EXPR:
12362 case TRUTH_ANDIF_EXPR:
12363 case TRUTH_ORIF_EXPR:
12364 case TRUTH_AND_EXPR:
12365 case TRUTH_OR_EXPR:
12366 case RSHIFT_EXPR:
12367 case LSHIFT_EXPR:
12368 case RROTATE_EXPR:
12369 case LROTATE_EXPR:
12370 case EQ_EXPR:
12371 case NE_EXPR:
12372 case MAX_EXPR:
12373 case MIN_EXPR:
12374 case LE_EXPR:
12375 case GE_EXPR:
12376 case LT_EXPR:
12377 case GT_EXPR:
12378 case COMPOUND_EXPR:
12379 case DOTSTAR_EXPR:
12380 case MEMBER_REF:
12381 case PREDECREMENT_EXPR:
12382 case PREINCREMENT_EXPR:
12383 case POSTDECREMENT_EXPR:
12384 case POSTINCREMENT_EXPR:
12385 return build_nt
12386 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12387 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12388
12389 case SCOPE_REF:
12390 return build_qualified_name (/*type=*/NULL_TREE,
12391 tsubst_copy (TREE_OPERAND (t, 0),
12392 args, complain, in_decl),
12393 tsubst_copy (TREE_OPERAND (t, 1),
12394 args, complain, in_decl),
12395 QUALIFIED_NAME_IS_TEMPLATE (t));
12396
12397 case ARRAY_REF:
12398 return build_nt
12399 (ARRAY_REF,
12400 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12401 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12402 NULL_TREE, NULL_TREE);
12403
12404 case CALL_EXPR:
12405 {
12406 int n = VL_EXP_OPERAND_LENGTH (t);
12407 tree result = build_vl_exp (CALL_EXPR, n);
12408 int i;
12409 for (i = 0; i < n; i++)
12410 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
12411 complain, in_decl);
12412 return result;
12413 }
12414
12415 case COND_EXPR:
12416 case MODOP_EXPR:
12417 case PSEUDO_DTOR_EXPR:
12418 {
12419 r = build_nt
12420 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12421 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12422 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
12423 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
12424 return r;
12425 }
12426
12427 case NEW_EXPR:
12428 {
12429 r = build_nt
12430 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12431 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12432 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
12433 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
12434 return r;
12435 }
12436
12437 case DELETE_EXPR:
12438 {
12439 r = build_nt
12440 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12441 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12442 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
12443 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
12444 return r;
12445 }
12446
12447 case TEMPLATE_ID_EXPR:
12448 {
12449 /* Substituted template arguments */
12450 tree fn = TREE_OPERAND (t, 0);
12451 tree targs = TREE_OPERAND (t, 1);
12452
12453 fn = tsubst_copy (fn, args, complain, in_decl);
12454 if (targs)
12455 targs = tsubst_template_args (targs, args, complain, in_decl);
12456
12457 return lookup_template_function (fn, targs);
12458 }
12459
12460 case TREE_LIST:
12461 {
12462 tree purpose, value, chain;
12463
12464 if (t == void_list_node)
12465 return t;
12466
12467 purpose = TREE_PURPOSE (t);
12468 if (purpose)
12469 purpose = tsubst_copy (purpose, args, complain, in_decl);
12470 value = TREE_VALUE (t);
12471 if (value)
12472 value = tsubst_copy (value, args, complain, in_decl);
12473 chain = TREE_CHAIN (t);
12474 if (chain && chain != void_type_node)
12475 chain = tsubst_copy (chain, args, complain, in_decl);
12476 if (purpose == TREE_PURPOSE (t)
12477 && value == TREE_VALUE (t)
12478 && chain == TREE_CHAIN (t))
12479 return t;
12480 return tree_cons (purpose, value, chain);
12481 }
12482
12483 case RECORD_TYPE:
12484 case UNION_TYPE:
12485 case ENUMERAL_TYPE:
12486 case INTEGER_TYPE:
12487 case TEMPLATE_TYPE_PARM:
12488 case TEMPLATE_TEMPLATE_PARM:
12489 case BOUND_TEMPLATE_TEMPLATE_PARM:
12490 case TEMPLATE_PARM_INDEX:
12491 case POINTER_TYPE:
12492 case REFERENCE_TYPE:
12493 case OFFSET_TYPE:
12494 case FUNCTION_TYPE:
12495 case METHOD_TYPE:
12496 case ARRAY_TYPE:
12497 case TYPENAME_TYPE:
12498 case UNBOUND_CLASS_TEMPLATE:
12499 case TYPEOF_TYPE:
12500 case DECLTYPE_TYPE:
12501 case TYPE_DECL:
12502 return tsubst (t, args, complain, in_decl);
12503
12504 case IDENTIFIER_NODE:
12505 if (IDENTIFIER_TYPENAME_P (t))
12506 {
12507 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12508 return mangle_conv_op_name_for_type (new_type);
12509 }
12510 else
12511 return t;
12512
12513 case CONSTRUCTOR:
12514 /* This is handled by tsubst_copy_and_build. */
12515 gcc_unreachable ();
12516
12517 case VA_ARG_EXPR:
12518 return build_x_va_arg (EXPR_LOCATION (t),
12519 tsubst_copy (TREE_OPERAND (t, 0), args, complain,
12520 in_decl),
12521 tsubst (TREE_TYPE (t), args, complain, in_decl));
12522
12523 case CLEANUP_POINT_EXPR:
12524 /* We shouldn't have built any of these during initial template
12525 generation. Instead, they should be built during instantiation
12526 in response to the saved STMT_IS_FULL_EXPR_P setting. */
12527 gcc_unreachable ();
12528
12529 case OFFSET_REF:
12530 r = build2
12531 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12532 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12533 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12534 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
12535 mark_used (TREE_OPERAND (r, 1));
12536 return r;
12537
12538 case EXPR_PACK_EXPANSION:
12539 error ("invalid use of pack expansion expression");
12540 return error_mark_node;
12541
12542 case NONTYPE_ARGUMENT_PACK:
12543 error ("use %<...%> to expand argument pack");
12544 return error_mark_node;
12545
12546 case INTEGER_CST:
12547 case REAL_CST:
12548 case STRING_CST:
12549 case COMPLEX_CST:
12550 {
12551 /* Instantiate any typedefs in the type. */
12552 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12553 r = fold_convert (type, t);
12554 gcc_assert (TREE_CODE (r) == code);
12555 return r;
12556 }
12557
12558 case PTRMEM_CST:
12559 /* These can sometimes show up in a partial instantiation, but never
12560 involve template parms. */
12561 gcc_assert (!uses_template_parms (t));
12562 return t;
12563
12564 default:
12565 /* We shouldn't get here, but keep going if !ENABLE_CHECKING. */
12566 gcc_checking_assert (false);
12567 return t;
12568 }
12569 }
12570
12571 /* Like tsubst_copy, but specifically for OpenMP clauses. */
12572
12573 static tree
12574 tsubst_omp_clauses (tree clauses, tree args, tsubst_flags_t complain,
12575 tree in_decl)
12576 {
12577 tree new_clauses = NULL, nc, oc;
12578
12579 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
12580 {
12581 nc = copy_node (oc);
12582 OMP_CLAUSE_CHAIN (nc) = new_clauses;
12583 new_clauses = nc;
12584
12585 switch (OMP_CLAUSE_CODE (nc))
12586 {
12587 case OMP_CLAUSE_LASTPRIVATE:
12588 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
12589 {
12590 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
12591 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
12592 in_decl, /*integral_constant_expression_p=*/false);
12593 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
12594 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
12595 }
12596 /* FALLTHRU */
12597 case OMP_CLAUSE_PRIVATE:
12598 case OMP_CLAUSE_SHARED:
12599 case OMP_CLAUSE_FIRSTPRIVATE:
12600 case OMP_CLAUSE_REDUCTION:
12601 case OMP_CLAUSE_COPYIN:
12602 case OMP_CLAUSE_COPYPRIVATE:
12603 case OMP_CLAUSE_IF:
12604 case OMP_CLAUSE_NUM_THREADS:
12605 case OMP_CLAUSE_SCHEDULE:
12606 case OMP_CLAUSE_COLLAPSE:
12607 case OMP_CLAUSE_FINAL:
12608 OMP_CLAUSE_OPERAND (nc, 0)
12609 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
12610 in_decl, /*integral_constant_expression_p=*/false);
12611 break;
12612 case OMP_CLAUSE_NOWAIT:
12613 case OMP_CLAUSE_ORDERED:
12614 case OMP_CLAUSE_DEFAULT:
12615 case OMP_CLAUSE_UNTIED:
12616 case OMP_CLAUSE_MERGEABLE:
12617 break;
12618 default:
12619 gcc_unreachable ();
12620 }
12621 }
12622
12623 return finish_omp_clauses (nreverse (new_clauses));
12624 }
12625
12626 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
12627
12628 static tree
12629 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
12630 tree in_decl)
12631 {
12632 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
12633
12634 tree purpose, value, chain;
12635
12636 if (t == NULL)
12637 return t;
12638
12639 if (TREE_CODE (t) != TREE_LIST)
12640 return tsubst_copy_and_build (t, args, complain, in_decl,
12641 /*function_p=*/false,
12642 /*integral_constant_expression_p=*/false);
12643
12644 if (t == void_list_node)
12645 return t;
12646
12647 purpose = TREE_PURPOSE (t);
12648 if (purpose)
12649 purpose = RECUR (purpose);
12650 value = TREE_VALUE (t);
12651 if (value)
12652 {
12653 if (TREE_CODE (value) != LABEL_DECL)
12654 value = RECUR (value);
12655 else
12656 {
12657 value = lookup_label (DECL_NAME (value));
12658 gcc_assert (TREE_CODE (value) == LABEL_DECL);
12659 TREE_USED (value) = 1;
12660 }
12661 }
12662 chain = TREE_CHAIN (t);
12663 if (chain && chain != void_type_node)
12664 chain = RECUR (chain);
12665 return tree_cons (purpose, value, chain);
12666 #undef RECUR
12667 }
12668
12669 /* Substitute one OMP_FOR iterator. */
12670
12671 static void
12672 tsubst_omp_for_iterator (tree t, int i, tree declv, tree initv,
12673 tree condv, tree incrv, tree *clauses,
12674 tree args, tsubst_flags_t complain, tree in_decl,
12675 bool integral_constant_expression_p)
12676 {
12677 #define RECUR(NODE) \
12678 tsubst_expr ((NODE), args, complain, in_decl, \
12679 integral_constant_expression_p)
12680 tree decl, init, cond, incr;
12681 bool init_decl;
12682
12683 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
12684 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
12685 decl = TREE_OPERAND (init, 0);
12686 init = TREE_OPERAND (init, 1);
12687 /* Do this before substituting into decl to handle 'auto'. */
12688 init_decl = (init && TREE_CODE (init) == DECL_EXPR);
12689 init = RECUR (init);
12690 decl = RECUR (decl);
12691 if (init_decl)
12692 {
12693 gcc_assert (!processing_template_decl);
12694 init = DECL_INITIAL (decl);
12695 DECL_INITIAL (decl) = NULL_TREE;
12696 }
12697
12698 gcc_assert (!type_dependent_expression_p (decl));
12699
12700 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
12701 {
12702 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
12703 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
12704 if (TREE_CODE (incr) == MODIFY_EXPR)
12705 incr = build_x_modify_expr (EXPR_LOCATION (incr),
12706 RECUR (TREE_OPERAND (incr, 0)), NOP_EXPR,
12707 RECUR (TREE_OPERAND (incr, 1)),
12708 complain);
12709 else
12710 incr = RECUR (incr);
12711 TREE_VEC_ELT (declv, i) = decl;
12712 TREE_VEC_ELT (initv, i) = init;
12713 TREE_VEC_ELT (condv, i) = cond;
12714 TREE_VEC_ELT (incrv, i) = incr;
12715 return;
12716 }
12717
12718 if (init && !init_decl)
12719 {
12720 tree c;
12721 for (c = *clauses; c ; c = OMP_CLAUSE_CHAIN (c))
12722 {
12723 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
12724 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
12725 && OMP_CLAUSE_DECL (c) == decl)
12726 break;
12727 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
12728 && OMP_CLAUSE_DECL (c) == decl)
12729 error ("iteration variable %qD should not be firstprivate", decl);
12730 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
12731 && OMP_CLAUSE_DECL (c) == decl)
12732 error ("iteration variable %qD should not be reduction", decl);
12733 }
12734 if (c == NULL)
12735 {
12736 c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
12737 OMP_CLAUSE_DECL (c) = decl;
12738 c = finish_omp_clauses (c);
12739 if (c)
12740 {
12741 OMP_CLAUSE_CHAIN (c) = *clauses;
12742 *clauses = c;
12743 }
12744 }
12745 }
12746 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
12747 if (COMPARISON_CLASS_P (cond))
12748 cond = build2 (TREE_CODE (cond), boolean_type_node,
12749 RECUR (TREE_OPERAND (cond, 0)),
12750 RECUR (TREE_OPERAND (cond, 1)));
12751 else
12752 cond = RECUR (cond);
12753 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
12754 switch (TREE_CODE (incr))
12755 {
12756 case PREINCREMENT_EXPR:
12757 case PREDECREMENT_EXPR:
12758 case POSTINCREMENT_EXPR:
12759 case POSTDECREMENT_EXPR:
12760 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
12761 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
12762 break;
12763 case MODIFY_EXPR:
12764 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
12765 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
12766 {
12767 tree rhs = TREE_OPERAND (incr, 1);
12768 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl),
12769 RECUR (TREE_OPERAND (incr, 0)),
12770 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
12771 RECUR (TREE_OPERAND (rhs, 0)),
12772 RECUR (TREE_OPERAND (rhs, 1))));
12773 }
12774 else
12775 incr = RECUR (incr);
12776 break;
12777 case MODOP_EXPR:
12778 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
12779 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
12780 {
12781 tree lhs = RECUR (TREE_OPERAND (incr, 0));
12782 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
12783 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
12784 TREE_TYPE (decl), lhs,
12785 RECUR (TREE_OPERAND (incr, 2))));
12786 }
12787 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
12788 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
12789 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
12790 {
12791 tree rhs = TREE_OPERAND (incr, 2);
12792 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl),
12793 RECUR (TREE_OPERAND (incr, 0)),
12794 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
12795 RECUR (TREE_OPERAND (rhs, 0)),
12796 RECUR (TREE_OPERAND (rhs, 1))));
12797 }
12798 else
12799 incr = RECUR (incr);
12800 break;
12801 default:
12802 incr = RECUR (incr);
12803 break;
12804 }
12805
12806 TREE_VEC_ELT (declv, i) = decl;
12807 TREE_VEC_ELT (initv, i) = init;
12808 TREE_VEC_ELT (condv, i) = cond;
12809 TREE_VEC_ELT (incrv, i) = incr;
12810 #undef RECUR
12811 }
12812
12813 /* Like tsubst_copy for expressions, etc. but also does semantic
12814 processing. */
12815
12816 static tree
12817 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
12818 bool integral_constant_expression_p)
12819 {
12820 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
12821 #define RECUR(NODE) \
12822 tsubst_expr ((NODE), args, complain, in_decl, \
12823 integral_constant_expression_p)
12824
12825 tree stmt, tmp;
12826 tree r;
12827 location_t loc;
12828
12829 if (t == NULL_TREE || t == error_mark_node)
12830 return t;
12831
12832 loc = input_location;
12833 if (EXPR_HAS_LOCATION (t))
12834 input_location = EXPR_LOCATION (t);
12835 if (STATEMENT_CODE_P (TREE_CODE (t)))
12836 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
12837
12838 switch (TREE_CODE (t))
12839 {
12840 case STATEMENT_LIST:
12841 {
12842 tree_stmt_iterator i;
12843 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
12844 RECUR (tsi_stmt (i));
12845 break;
12846 }
12847
12848 case CTOR_INITIALIZER:
12849 finish_mem_initializers (tsubst_initializer_list
12850 (TREE_OPERAND (t, 0), args));
12851 break;
12852
12853 case RETURN_EXPR:
12854 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
12855 break;
12856
12857 case EXPR_STMT:
12858 tmp = RECUR (EXPR_STMT_EXPR (t));
12859 if (EXPR_STMT_STMT_EXPR_RESULT (t))
12860 finish_stmt_expr_expr (tmp, cur_stmt_expr);
12861 else
12862 finish_expr_stmt (tmp);
12863 break;
12864
12865 case USING_STMT:
12866 do_using_directive (USING_STMT_NAMESPACE (t));
12867 break;
12868
12869 case DECL_EXPR:
12870 {
12871 tree decl, pattern_decl;
12872 tree init;
12873
12874 pattern_decl = decl = DECL_EXPR_DECL (t);
12875 if (TREE_CODE (decl) == LABEL_DECL)
12876 finish_label_decl (DECL_NAME (decl));
12877 else if (TREE_CODE (decl) == USING_DECL)
12878 {
12879 tree scope = USING_DECL_SCOPE (decl);
12880 tree name = DECL_NAME (decl);
12881 tree decl;
12882
12883 scope = tsubst (scope, args, complain, in_decl);
12884 decl = lookup_qualified_name (scope, name,
12885 /*is_type_p=*/false,
12886 /*complain=*/false);
12887 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
12888 qualified_name_lookup_error (scope, name, decl, input_location);
12889 else
12890 do_local_using_decl (decl, scope, name);
12891 }
12892 else
12893 {
12894 init = DECL_INITIAL (decl);
12895 decl = tsubst (decl, args, complain, in_decl);
12896 if (decl != error_mark_node)
12897 {
12898 /* By marking the declaration as instantiated, we avoid
12899 trying to instantiate it. Since instantiate_decl can't
12900 handle local variables, and since we've already done
12901 all that needs to be done, that's the right thing to
12902 do. */
12903 if (VAR_P (decl))
12904 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
12905 if (VAR_P (decl)
12906 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
12907 /* Anonymous aggregates are a special case. */
12908 finish_anon_union (decl);
12909 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
12910 {
12911 DECL_CONTEXT (decl) = current_function_decl;
12912 if (DECL_NAME (decl) == this_identifier)
12913 {
12914 tree lam = DECL_CONTEXT (current_function_decl);
12915 lam = CLASSTYPE_LAMBDA_EXPR (lam);
12916 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
12917 }
12918 insert_capture_proxy (decl);
12919 }
12920 else if (DECL_IMPLICIT_TYPEDEF_P (t))
12921 /* We already did a pushtag. */;
12922 else
12923 {
12924 int const_init = false;
12925 maybe_push_decl (decl);
12926 if (VAR_P (decl)
12927 && DECL_PRETTY_FUNCTION_P (decl))
12928 {
12929 /* For __PRETTY_FUNCTION__ we have to adjust the
12930 initializer. */
12931 const char *const name
12932 = cxx_printable_name (current_function_decl, 2);
12933 init = cp_fname_init (name, &TREE_TYPE (decl));
12934 }
12935 else
12936 {
12937 tree t = RECUR (init);
12938
12939 if (init && !t)
12940 {
12941 /* If we had an initializer but it
12942 instantiated to nothing,
12943 value-initialize the object. This will
12944 only occur when the initializer was a
12945 pack expansion where the parameter packs
12946 used in that expansion were of length
12947 zero. */
12948 init = build_value_init (TREE_TYPE (decl),
12949 complain);
12950 if (TREE_CODE (init) == AGGR_INIT_EXPR)
12951 init = get_target_expr_sfinae (init, complain);
12952 }
12953 else
12954 init = t;
12955 }
12956
12957 if (VAR_P (decl))
12958 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
12959 (pattern_decl));
12960 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
12961 }
12962 }
12963 }
12964
12965 break;
12966 }
12967
12968 case FOR_STMT:
12969 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
12970 RECUR (FOR_INIT_STMT (t));
12971 finish_for_init_stmt (stmt);
12972 tmp = RECUR (FOR_COND (t));
12973 finish_for_cond (tmp, stmt);
12974 tmp = RECUR (FOR_EXPR (t));
12975 finish_for_expr (tmp, stmt);
12976 RECUR (FOR_BODY (t));
12977 finish_for_stmt (stmt);
12978 break;
12979
12980 case RANGE_FOR_STMT:
12981 {
12982 tree decl, expr;
12983 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
12984 decl = RANGE_FOR_DECL (t);
12985 decl = tsubst (decl, args, complain, in_decl);
12986 maybe_push_decl (decl);
12987 expr = RECUR (RANGE_FOR_EXPR (t));
12988 stmt = cp_convert_range_for (stmt, decl, expr);
12989 RECUR (RANGE_FOR_BODY (t));
12990 finish_for_stmt (stmt);
12991 }
12992 break;
12993
12994 case WHILE_STMT:
12995 stmt = begin_while_stmt ();
12996 tmp = RECUR (WHILE_COND (t));
12997 finish_while_stmt_cond (tmp, stmt);
12998 RECUR (WHILE_BODY (t));
12999 finish_while_stmt (stmt);
13000 break;
13001
13002 case DO_STMT:
13003 stmt = begin_do_stmt ();
13004 RECUR (DO_BODY (t));
13005 finish_do_body (stmt);
13006 tmp = RECUR (DO_COND (t));
13007 finish_do_stmt (tmp, stmt);
13008 break;
13009
13010 case IF_STMT:
13011 stmt = begin_if_stmt ();
13012 tmp = RECUR (IF_COND (t));
13013 finish_if_stmt_cond (tmp, stmt);
13014 RECUR (THEN_CLAUSE (t));
13015 finish_then_clause (stmt);
13016
13017 if (ELSE_CLAUSE (t))
13018 {
13019 begin_else_clause (stmt);
13020 RECUR (ELSE_CLAUSE (t));
13021 finish_else_clause (stmt);
13022 }
13023
13024 finish_if_stmt (stmt);
13025 break;
13026
13027 case BIND_EXPR:
13028 if (BIND_EXPR_BODY_BLOCK (t))
13029 stmt = begin_function_body ();
13030 else
13031 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
13032 ? BCS_TRY_BLOCK : 0);
13033
13034 RECUR (BIND_EXPR_BODY (t));
13035
13036 if (BIND_EXPR_BODY_BLOCK (t))
13037 finish_function_body (stmt);
13038 else
13039 finish_compound_stmt (stmt);
13040 break;
13041
13042 case BREAK_STMT:
13043 finish_break_stmt ();
13044 break;
13045
13046 case CONTINUE_STMT:
13047 finish_continue_stmt ();
13048 break;
13049
13050 case SWITCH_STMT:
13051 stmt = begin_switch_stmt ();
13052 tmp = RECUR (SWITCH_STMT_COND (t));
13053 finish_switch_cond (tmp, stmt);
13054 RECUR (SWITCH_STMT_BODY (t));
13055 finish_switch_stmt (stmt);
13056 break;
13057
13058 case CASE_LABEL_EXPR:
13059 finish_case_label (EXPR_LOCATION (t),
13060 RECUR (CASE_LOW (t)),
13061 RECUR (CASE_HIGH (t)));
13062 break;
13063
13064 case LABEL_EXPR:
13065 {
13066 tree decl = LABEL_EXPR_LABEL (t);
13067 tree label;
13068
13069 label = finish_label_stmt (DECL_NAME (decl));
13070 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
13071 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
13072 }
13073 break;
13074
13075 case GOTO_EXPR:
13076 tmp = GOTO_DESTINATION (t);
13077 if (TREE_CODE (tmp) != LABEL_DECL)
13078 /* Computed goto's must be tsubst'd into. On the other hand,
13079 non-computed gotos must not be; the identifier in question
13080 will have no binding. */
13081 tmp = RECUR (tmp);
13082 else
13083 tmp = DECL_NAME (tmp);
13084 finish_goto_stmt (tmp);
13085 break;
13086
13087 case ASM_EXPR:
13088 tmp = finish_asm_stmt
13089 (ASM_VOLATILE_P (t),
13090 RECUR (ASM_STRING (t)),
13091 tsubst_copy_asm_operands (ASM_OUTPUTS (t), args, complain, in_decl),
13092 tsubst_copy_asm_operands (ASM_INPUTS (t), args, complain, in_decl),
13093 tsubst_copy_asm_operands (ASM_CLOBBERS (t), args, complain, in_decl),
13094 tsubst_copy_asm_operands (ASM_LABELS (t), args, complain, in_decl));
13095 {
13096 tree asm_expr = tmp;
13097 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
13098 asm_expr = TREE_OPERAND (asm_expr, 0);
13099 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
13100 }
13101 break;
13102
13103 case TRY_BLOCK:
13104 if (CLEANUP_P (t))
13105 {
13106 stmt = begin_try_block ();
13107 RECUR (TRY_STMTS (t));
13108 finish_cleanup_try_block (stmt);
13109 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
13110 }
13111 else
13112 {
13113 tree compound_stmt = NULL_TREE;
13114
13115 if (FN_TRY_BLOCK_P (t))
13116 stmt = begin_function_try_block (&compound_stmt);
13117 else
13118 stmt = begin_try_block ();
13119
13120 RECUR (TRY_STMTS (t));
13121
13122 if (FN_TRY_BLOCK_P (t))
13123 finish_function_try_block (stmt);
13124 else
13125 finish_try_block (stmt);
13126
13127 RECUR (TRY_HANDLERS (t));
13128 if (FN_TRY_BLOCK_P (t))
13129 finish_function_handler_sequence (stmt, compound_stmt);
13130 else
13131 finish_handler_sequence (stmt);
13132 }
13133 break;
13134
13135 case HANDLER:
13136 {
13137 tree decl = HANDLER_PARMS (t);
13138
13139 if (decl)
13140 {
13141 decl = tsubst (decl, args, complain, in_decl);
13142 /* Prevent instantiate_decl from trying to instantiate
13143 this variable. We've already done all that needs to be
13144 done. */
13145 if (decl != error_mark_node)
13146 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
13147 }
13148 stmt = begin_handler ();
13149 finish_handler_parms (decl, stmt);
13150 RECUR (HANDLER_BODY (t));
13151 finish_handler (stmt);
13152 }
13153 break;
13154
13155 case TAG_DEFN:
13156 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
13157 if (CLASS_TYPE_P (tmp))
13158 {
13159 /* Local classes are not independent templates; they are
13160 instantiated along with their containing function. And this
13161 way we don't have to deal with pushing out of one local class
13162 to instantiate a member of another local class. */
13163 tree fn;
13164 /* Closures are handled by the LAMBDA_EXPR. */
13165 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
13166 complete_type (tmp);
13167 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
13168 if (!DECL_ARTIFICIAL (fn))
13169 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
13170 }
13171 break;
13172
13173 case STATIC_ASSERT:
13174 {
13175 tree condition;
13176
13177 ++c_inhibit_evaluation_warnings;
13178 condition =
13179 tsubst_expr (STATIC_ASSERT_CONDITION (t),
13180 args,
13181 complain, in_decl,
13182 /*integral_constant_expression_p=*/true);
13183 --c_inhibit_evaluation_warnings;
13184
13185 finish_static_assert (condition,
13186 STATIC_ASSERT_MESSAGE (t),
13187 STATIC_ASSERT_SOURCE_LOCATION (t),
13188 /*member_p=*/false);
13189 }
13190 break;
13191
13192 case OMP_PARALLEL:
13193 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t),
13194 args, complain, in_decl);
13195 stmt = begin_omp_parallel ();
13196 RECUR (OMP_PARALLEL_BODY (t));
13197 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
13198 = OMP_PARALLEL_COMBINED (t);
13199 break;
13200
13201 case OMP_TASK:
13202 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t),
13203 args, complain, in_decl);
13204 stmt = begin_omp_task ();
13205 RECUR (OMP_TASK_BODY (t));
13206 finish_omp_task (tmp, stmt);
13207 break;
13208
13209 case OMP_FOR:
13210 {
13211 tree clauses, body, pre_body;
13212 tree declv, initv, condv, incrv;
13213 int i;
13214
13215 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t),
13216 args, complain, in_decl);
13217 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13218 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13219 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13220 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13221
13222 stmt = begin_omp_structured_block ();
13223
13224 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
13225 tsubst_omp_for_iterator (t, i, declv, initv, condv, incrv,
13226 &clauses, args, complain, in_decl,
13227 integral_constant_expression_p);
13228
13229 pre_body = push_stmt_list ();
13230 RECUR (OMP_FOR_PRE_BODY (t));
13231 pre_body = pop_stmt_list (pre_body);
13232
13233 body = push_stmt_list ();
13234 RECUR (OMP_FOR_BODY (t));
13235 body = pop_stmt_list (body);
13236
13237 t = finish_omp_for (EXPR_LOCATION (t), declv, initv, condv, incrv,
13238 body, pre_body, clauses);
13239
13240 add_stmt (finish_omp_structured_block (stmt));
13241 }
13242 break;
13243
13244 case OMP_SECTIONS:
13245 case OMP_SINGLE:
13246 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), args, complain, in_decl);
13247 stmt = push_stmt_list ();
13248 RECUR (OMP_BODY (t));
13249 stmt = pop_stmt_list (stmt);
13250
13251 t = copy_node (t);
13252 OMP_BODY (t) = stmt;
13253 OMP_CLAUSES (t) = tmp;
13254 add_stmt (t);
13255 break;
13256
13257 case OMP_SECTION:
13258 case OMP_CRITICAL:
13259 case OMP_MASTER:
13260 case OMP_ORDERED:
13261 stmt = push_stmt_list ();
13262 RECUR (OMP_BODY (t));
13263 stmt = pop_stmt_list (stmt);
13264
13265 t = copy_node (t);
13266 OMP_BODY (t) = stmt;
13267 add_stmt (t);
13268 break;
13269
13270 case OMP_ATOMIC:
13271 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
13272 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
13273 {
13274 tree op1 = TREE_OPERAND (t, 1);
13275 tree rhs1 = NULL_TREE;
13276 tree lhs, rhs;
13277 if (TREE_CODE (op1) == COMPOUND_EXPR)
13278 {
13279 rhs1 = RECUR (TREE_OPERAND (op1, 0));
13280 op1 = TREE_OPERAND (op1, 1);
13281 }
13282 lhs = RECUR (TREE_OPERAND (op1, 0));
13283 rhs = RECUR (TREE_OPERAND (op1, 1));
13284 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
13285 NULL_TREE, NULL_TREE, rhs1);
13286 }
13287 else
13288 {
13289 tree op1 = TREE_OPERAND (t, 1);
13290 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
13291 tree rhs1 = NULL_TREE;
13292 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
13293 enum tree_code opcode = NOP_EXPR;
13294 if (code == OMP_ATOMIC_READ)
13295 {
13296 v = RECUR (TREE_OPERAND (op1, 0));
13297 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
13298 }
13299 else if (code == OMP_ATOMIC_CAPTURE_OLD
13300 || code == OMP_ATOMIC_CAPTURE_NEW)
13301 {
13302 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
13303 v = RECUR (TREE_OPERAND (op1, 0));
13304 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
13305 if (TREE_CODE (op11) == COMPOUND_EXPR)
13306 {
13307 rhs1 = RECUR (TREE_OPERAND (op11, 0));
13308 op11 = TREE_OPERAND (op11, 1);
13309 }
13310 lhs = RECUR (TREE_OPERAND (op11, 0));
13311 rhs = RECUR (TREE_OPERAND (op11, 1));
13312 opcode = TREE_CODE (op11);
13313 }
13314 else
13315 {
13316 code = OMP_ATOMIC;
13317 lhs = RECUR (TREE_OPERAND (op1, 0));
13318 rhs = RECUR (TREE_OPERAND (op1, 1));
13319 }
13320 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1);
13321 }
13322 break;
13323
13324 case TRANSACTION_EXPR:
13325 {
13326 int flags = 0;
13327 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
13328 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
13329
13330 if (TRANSACTION_EXPR_IS_STMT (t))
13331 {
13332 tree body = TRANSACTION_EXPR_BODY (t);
13333 tree noex = NULL_TREE;
13334 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
13335 {
13336 noex = MUST_NOT_THROW_COND (body);
13337 if (noex == NULL_TREE)
13338 noex = boolean_true_node;
13339 body = TREE_OPERAND (body, 0);
13340 }
13341 stmt = begin_transaction_stmt (input_location, NULL, flags);
13342 RECUR (body);
13343 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
13344 }
13345 else
13346 {
13347 stmt = build_transaction_expr (EXPR_LOCATION (t),
13348 RECUR (TRANSACTION_EXPR_BODY (t)),
13349 flags, NULL_TREE);
13350 RETURN (stmt);
13351 }
13352 }
13353 break;
13354
13355 case MUST_NOT_THROW_EXPR:
13356 RETURN (build_must_not_throw_expr (RECUR (TREE_OPERAND (t, 0)),
13357 RECUR (MUST_NOT_THROW_COND (t))));
13358
13359 case EXPR_PACK_EXPANSION:
13360 error ("invalid use of pack expansion expression");
13361 RETURN (error_mark_node);
13362
13363 case NONTYPE_ARGUMENT_PACK:
13364 error ("use %<...%> to expand argument pack");
13365 RETURN (error_mark_node);
13366
13367 case COMPOUND_EXPR:
13368 tmp = RECUR (TREE_OPERAND (t, 0));
13369 if (tmp == NULL_TREE)
13370 /* If the first operand was a statement, we're done with it. */
13371 RETURN (RECUR (TREE_OPERAND (t, 1)));
13372 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
13373 RECUR (TREE_OPERAND (t, 1)),
13374 complain));
13375
13376 default:
13377 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
13378
13379 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
13380 /*function_p=*/false,
13381 integral_constant_expression_p));
13382 }
13383
13384 RETURN (NULL_TREE);
13385 out:
13386 input_location = loc;
13387 return r;
13388 #undef RECUR
13389 #undef RETURN
13390 }
13391
13392 /* T is a postfix-expression that is not being used in a function
13393 call. Return the substituted version of T. */
13394
13395 static tree
13396 tsubst_non_call_postfix_expression (tree t, tree args,
13397 tsubst_flags_t complain,
13398 tree in_decl)
13399 {
13400 if (TREE_CODE (t) == SCOPE_REF)
13401 t = tsubst_qualified_id (t, args, complain, in_decl,
13402 /*done=*/false, /*address_p=*/false);
13403 else
13404 t = tsubst_copy_and_build (t, args, complain, in_decl,
13405 /*function_p=*/false,
13406 /*integral_constant_expression_p=*/false);
13407
13408 return t;
13409 }
13410
13411 /* Like tsubst but deals with expressions and performs semantic
13412 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
13413
13414 tree
13415 tsubst_copy_and_build (tree t,
13416 tree args,
13417 tsubst_flags_t complain,
13418 tree in_decl,
13419 bool function_p,
13420 bool integral_constant_expression_p)
13421 {
13422 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
13423 #define RECUR(NODE) \
13424 tsubst_copy_and_build (NODE, args, complain, in_decl, \
13425 /*function_p=*/false, \
13426 integral_constant_expression_p)
13427
13428 tree retval, op1;
13429 location_t loc;
13430
13431 if (t == NULL_TREE || t == error_mark_node)
13432 return t;
13433
13434 loc = input_location;
13435 if (EXPR_HAS_LOCATION (t))
13436 input_location = EXPR_LOCATION (t);
13437
13438 /* N3276 decltype magic only applies to calls at the top level or on the
13439 right side of a comma. */
13440 if (TREE_CODE (t) != CALL_EXPR
13441 && TREE_CODE (t) != COMPOUND_EXPR)
13442 complain &= ~tf_decltype;
13443
13444 switch (TREE_CODE (t))
13445 {
13446 case USING_DECL:
13447 t = DECL_NAME (t);
13448 /* Fall through. */
13449 case IDENTIFIER_NODE:
13450 {
13451 tree decl;
13452 cp_id_kind idk;
13453 bool non_integral_constant_expression_p;
13454 const char *error_msg;
13455
13456 if (IDENTIFIER_TYPENAME_P (t))
13457 {
13458 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13459 t = mangle_conv_op_name_for_type (new_type);
13460 }
13461
13462 /* Look up the name. */
13463 decl = lookup_name (t);
13464
13465 /* By convention, expressions use ERROR_MARK_NODE to indicate
13466 failure, not NULL_TREE. */
13467 if (decl == NULL_TREE)
13468 decl = error_mark_node;
13469
13470 decl = finish_id_expression (t, decl, NULL_TREE,
13471 &idk,
13472 integral_constant_expression_p,
13473 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx0x),
13474 &non_integral_constant_expression_p,
13475 /*template_p=*/false,
13476 /*done=*/true,
13477 /*address_p=*/false,
13478 /*template_arg_p=*/false,
13479 &error_msg,
13480 input_location);
13481 if (error_msg)
13482 error (error_msg);
13483 if (!function_p && identifier_p (decl))
13484 {
13485 if (complain & tf_error)
13486 unqualified_name_lookup_error (decl);
13487 decl = error_mark_node;
13488 }
13489 RETURN (decl);
13490 }
13491
13492 case TEMPLATE_ID_EXPR:
13493 {
13494 tree object;
13495 tree templ = RECUR (TREE_OPERAND (t, 0));
13496 tree targs = TREE_OPERAND (t, 1);
13497
13498 if (targs)
13499 targs = tsubst_template_args (targs, args, complain, in_decl);
13500
13501 if (TREE_CODE (templ) == COMPONENT_REF)
13502 {
13503 object = TREE_OPERAND (templ, 0);
13504 templ = TREE_OPERAND (templ, 1);
13505 }
13506 else
13507 object = NULL_TREE;
13508 templ = lookup_template_function (templ, targs);
13509
13510 if (object)
13511 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
13512 object, templ, NULL_TREE));
13513 else
13514 RETURN (baselink_for_fns (templ));
13515 }
13516
13517 case INDIRECT_REF:
13518 {
13519 tree r = RECUR (TREE_OPERAND (t, 0));
13520
13521 if (REFERENCE_REF_P (t))
13522 {
13523 /* A type conversion to reference type will be enclosed in
13524 such an indirect ref, but the substitution of the cast
13525 will have also added such an indirect ref. */
13526 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
13527 r = convert_from_reference (r);
13528 }
13529 else
13530 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR, complain);
13531 RETURN (r);
13532 }
13533
13534 case NOP_EXPR:
13535 RETURN (build_nop
13536 (tsubst (TREE_TYPE (t), args, complain, in_decl),
13537 RECUR (TREE_OPERAND (t, 0))));
13538
13539 case IMPLICIT_CONV_EXPR:
13540 {
13541 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13542 tree expr = RECUR (TREE_OPERAND (t, 0));
13543 int flags = LOOKUP_IMPLICIT;
13544 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
13545 flags = LOOKUP_NORMAL;
13546 RETURN (perform_implicit_conversion_flags (type, expr, complain,
13547 flags));
13548 }
13549
13550 case CONVERT_EXPR:
13551 RETURN (build1
13552 (CONVERT_EXPR,
13553 tsubst (TREE_TYPE (t), args, complain, in_decl),
13554 RECUR (TREE_OPERAND (t, 0))));
13555
13556 case CAST_EXPR:
13557 case REINTERPRET_CAST_EXPR:
13558 case CONST_CAST_EXPR:
13559 case DYNAMIC_CAST_EXPR:
13560 case STATIC_CAST_EXPR:
13561 {
13562 tree type;
13563 tree op, r = NULL_TREE;
13564
13565 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13566 if (integral_constant_expression_p
13567 && !cast_valid_in_integral_constant_expression_p (type))
13568 {
13569 if (complain & tf_error)
13570 error ("a cast to a type other than an integral or "
13571 "enumeration type cannot appear in a constant-expression");
13572 RETURN (error_mark_node);
13573 }
13574
13575 op = RECUR (TREE_OPERAND (t, 0));
13576
13577 ++c_inhibit_evaluation_warnings;
13578 switch (TREE_CODE (t))
13579 {
13580 case CAST_EXPR:
13581 r = build_functional_cast (type, op, complain);
13582 break;
13583 case REINTERPRET_CAST_EXPR:
13584 r = build_reinterpret_cast (type, op, complain);
13585 break;
13586 case CONST_CAST_EXPR:
13587 r = build_const_cast (type, op, complain);
13588 break;
13589 case DYNAMIC_CAST_EXPR:
13590 r = build_dynamic_cast (type, op, complain);
13591 break;
13592 case STATIC_CAST_EXPR:
13593 r = build_static_cast (type, op, complain);
13594 break;
13595 default:
13596 gcc_unreachable ();
13597 }
13598 --c_inhibit_evaluation_warnings;
13599
13600 RETURN (r);
13601 }
13602
13603 case POSTDECREMENT_EXPR:
13604 case POSTINCREMENT_EXPR:
13605 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13606 args, complain, in_decl);
13607 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1, complain));
13608
13609 case PREDECREMENT_EXPR:
13610 case PREINCREMENT_EXPR:
13611 case NEGATE_EXPR:
13612 case BIT_NOT_EXPR:
13613 case ABS_EXPR:
13614 case TRUTH_NOT_EXPR:
13615 case UNARY_PLUS_EXPR: /* Unary + */
13616 case REALPART_EXPR:
13617 case IMAGPART_EXPR:
13618 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
13619 RECUR (TREE_OPERAND (t, 0)), complain));
13620
13621 case FIX_TRUNC_EXPR:
13622 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
13623 0, complain));
13624
13625 case ADDR_EXPR:
13626 op1 = TREE_OPERAND (t, 0);
13627 if (TREE_CODE (op1) == LABEL_DECL)
13628 RETURN (finish_label_address_expr (DECL_NAME (op1),
13629 EXPR_LOCATION (op1)));
13630 if (TREE_CODE (op1) == SCOPE_REF)
13631 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
13632 /*done=*/true, /*address_p=*/true);
13633 else
13634 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
13635 in_decl);
13636 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1, complain));
13637
13638 case PLUS_EXPR:
13639 case MINUS_EXPR:
13640 case MULT_EXPR:
13641 case TRUNC_DIV_EXPR:
13642 case CEIL_DIV_EXPR:
13643 case FLOOR_DIV_EXPR:
13644 case ROUND_DIV_EXPR:
13645 case EXACT_DIV_EXPR:
13646 case BIT_AND_EXPR:
13647 case BIT_IOR_EXPR:
13648 case BIT_XOR_EXPR:
13649 case TRUNC_MOD_EXPR:
13650 case FLOOR_MOD_EXPR:
13651 case TRUTH_ANDIF_EXPR:
13652 case TRUTH_ORIF_EXPR:
13653 case TRUTH_AND_EXPR:
13654 case TRUTH_OR_EXPR:
13655 case RSHIFT_EXPR:
13656 case LSHIFT_EXPR:
13657 case RROTATE_EXPR:
13658 case LROTATE_EXPR:
13659 case EQ_EXPR:
13660 case NE_EXPR:
13661 case MAX_EXPR:
13662 case MIN_EXPR:
13663 case LE_EXPR:
13664 case GE_EXPR:
13665 case LT_EXPR:
13666 case GT_EXPR:
13667 case MEMBER_REF:
13668 case DOTSTAR_EXPR:
13669 {
13670 tree r;
13671
13672 ++c_inhibit_evaluation_warnings;
13673
13674 r = build_x_binary_op
13675 (input_location, TREE_CODE (t),
13676 RECUR (TREE_OPERAND (t, 0)),
13677 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
13678 ? ERROR_MARK
13679 : TREE_CODE (TREE_OPERAND (t, 0))),
13680 RECUR (TREE_OPERAND (t, 1)),
13681 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
13682 ? ERROR_MARK
13683 : TREE_CODE (TREE_OPERAND (t, 1))),
13684 /*overload=*/NULL,
13685 complain);
13686 if (EXPR_P (r) && TREE_NO_WARNING (t))
13687 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
13688
13689 --c_inhibit_evaluation_warnings;
13690
13691 RETURN (r);
13692 }
13693
13694 case SCOPE_REF:
13695 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
13696 /*address_p=*/false));
13697 case ARRAY_REF:
13698 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13699 args, complain, in_decl);
13700 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
13701 RECUR (TREE_OPERAND (t, 1)), complain));
13702
13703 case SIZEOF_EXPR:
13704 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
13705 RETURN (tsubst_copy (t, args, complain, in_decl));
13706 /* Fall through */
13707
13708 case ALIGNOF_EXPR:
13709 {
13710 tree r;
13711
13712 op1 = TREE_OPERAND (t, 0);
13713 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
13714 op1 = TREE_TYPE (op1);
13715 if (!args)
13716 {
13717 /* When there are no ARGS, we are trying to evaluate a
13718 non-dependent expression from the parser. Trying to do
13719 the substitutions may not work. */
13720 if (!TYPE_P (op1))
13721 op1 = TREE_TYPE (op1);
13722 }
13723 else
13724 {
13725 ++cp_unevaluated_operand;
13726 ++c_inhibit_evaluation_warnings;
13727 if (TYPE_P (op1))
13728 op1 = tsubst (op1, args, complain, in_decl);
13729 else
13730 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
13731 /*function_p=*/false,
13732 /*integral_constant_expression_p=*/
13733 false);
13734 --cp_unevaluated_operand;
13735 --c_inhibit_evaluation_warnings;
13736 }
13737 if (TYPE_P (op1))
13738 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
13739 complain & tf_error);
13740 else
13741 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
13742 complain & tf_error);
13743 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
13744 {
13745 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
13746 {
13747 if (!processing_template_decl && TYPE_P (op1))
13748 {
13749 r = build_min (SIZEOF_EXPR, size_type_node,
13750 build1 (NOP_EXPR, op1, error_mark_node));
13751 SIZEOF_EXPR_TYPE_P (r) = 1;
13752 }
13753 else
13754 r = build_min (SIZEOF_EXPR, size_type_node, op1);
13755 TREE_SIDE_EFFECTS (r) = 0;
13756 TREE_READONLY (r) = 1;
13757 }
13758 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
13759 }
13760 RETURN (r);
13761 }
13762
13763 case AT_ENCODE_EXPR:
13764 {
13765 op1 = TREE_OPERAND (t, 0);
13766 ++cp_unevaluated_operand;
13767 ++c_inhibit_evaluation_warnings;
13768 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
13769 /*function_p=*/false,
13770 /*integral_constant_expression_p=*/false);
13771 --cp_unevaluated_operand;
13772 --c_inhibit_evaluation_warnings;
13773 RETURN (objc_build_encode_expr (op1));
13774 }
13775
13776 case NOEXCEPT_EXPR:
13777 op1 = TREE_OPERAND (t, 0);
13778 ++cp_unevaluated_operand;
13779 ++c_inhibit_evaluation_warnings;
13780 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
13781 /*function_p=*/false,
13782 /*integral_constant_expression_p=*/false);
13783 --cp_unevaluated_operand;
13784 --c_inhibit_evaluation_warnings;
13785 RETURN (finish_noexcept_expr (op1, complain));
13786
13787 case MODOP_EXPR:
13788 {
13789 tree r = build_x_modify_expr
13790 (EXPR_LOCATION (t),
13791 RECUR (TREE_OPERAND (t, 0)),
13792 TREE_CODE (TREE_OPERAND (t, 1)),
13793 RECUR (TREE_OPERAND (t, 2)),
13794 complain);
13795 /* TREE_NO_WARNING must be set if either the expression was
13796 parenthesized or it uses an operator such as >>= rather
13797 than plain assignment. In the former case, it was already
13798 set and must be copied. In the latter case,
13799 build_x_modify_expr sets it and it must not be reset
13800 here. */
13801 if (TREE_NO_WARNING (t))
13802 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
13803 RETURN (r);
13804 }
13805
13806 case ARROW_EXPR:
13807 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13808 args, complain, in_decl);
13809 /* Remember that there was a reference to this entity. */
13810 if (DECL_P (op1))
13811 mark_used (op1);
13812 RETURN (build_x_arrow (input_location, op1, complain));
13813
13814 case NEW_EXPR:
13815 {
13816 tree placement = RECUR (TREE_OPERAND (t, 0));
13817 tree init = RECUR (TREE_OPERAND (t, 3));
13818 vec<tree, va_gc> *placement_vec;
13819 vec<tree, va_gc> *init_vec;
13820 tree ret;
13821
13822 if (placement == NULL_TREE)
13823 placement_vec = NULL;
13824 else
13825 {
13826 placement_vec = make_tree_vector ();
13827 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
13828 vec_safe_push (placement_vec, TREE_VALUE (placement));
13829 }
13830
13831 /* If there was an initializer in the original tree, but it
13832 instantiated to an empty list, then we should pass a
13833 non-NULL empty vector to tell build_new that it was an
13834 empty initializer() rather than no initializer. This can
13835 only happen when the initializer is a pack expansion whose
13836 parameter packs are of length zero. */
13837 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
13838 init_vec = NULL;
13839 else
13840 {
13841 init_vec = make_tree_vector ();
13842 if (init == void_zero_node)
13843 gcc_assert (init_vec != NULL);
13844 else
13845 {
13846 for (; init != NULL_TREE; init = TREE_CHAIN (init))
13847 vec_safe_push (init_vec, TREE_VALUE (init));
13848 }
13849 }
13850
13851 ret = build_new (&placement_vec,
13852 tsubst (TREE_OPERAND (t, 1), args, complain, in_decl),
13853 RECUR (TREE_OPERAND (t, 2)),
13854 &init_vec,
13855 NEW_EXPR_USE_GLOBAL (t),
13856 complain);
13857
13858 if (placement_vec != NULL)
13859 release_tree_vector (placement_vec);
13860 if (init_vec != NULL)
13861 release_tree_vector (init_vec);
13862
13863 RETURN (ret);
13864 }
13865
13866 case DELETE_EXPR:
13867 RETURN (delete_sanity
13868 (RECUR (TREE_OPERAND (t, 0)),
13869 RECUR (TREE_OPERAND (t, 1)),
13870 DELETE_EXPR_USE_VEC (t),
13871 DELETE_EXPR_USE_GLOBAL (t),
13872 complain));
13873
13874 case COMPOUND_EXPR:
13875 {
13876 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
13877 complain & ~tf_decltype, in_decl,
13878 /*function_p=*/false,
13879 integral_constant_expression_p);
13880 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
13881 op0,
13882 RECUR (TREE_OPERAND (t, 1)),
13883 complain));
13884 }
13885
13886 case CALL_EXPR:
13887 {
13888 tree function;
13889 vec<tree, va_gc> *call_args;
13890 unsigned int nargs, i;
13891 bool qualified_p;
13892 bool koenig_p;
13893 tree ret;
13894
13895 /* Don't pass tf_decltype down to subexpressions. */
13896 tsubst_flags_t decltype_flag = (complain & tf_decltype);
13897 complain &= ~tf_decltype;
13898
13899 function = CALL_EXPR_FN (t);
13900 /* When we parsed the expression, we determined whether or
13901 not Koenig lookup should be performed. */
13902 koenig_p = KOENIG_LOOKUP_P (t);
13903 if (TREE_CODE (function) == SCOPE_REF)
13904 {
13905 qualified_p = true;
13906 function = tsubst_qualified_id (function, args, complain, in_decl,
13907 /*done=*/false,
13908 /*address_p=*/false);
13909 }
13910 else if (koenig_p && identifier_p (function))
13911 {
13912 /* Do nothing; calling tsubst_copy_and_build on an identifier
13913 would incorrectly perform unqualified lookup again.
13914
13915 Note that we can also have an IDENTIFIER_NODE if the earlier
13916 unqualified lookup found a member function; in that case
13917 koenig_p will be false and we do want to do the lookup
13918 again to find the instantiated member function.
13919
13920 FIXME but doing that causes c++/15272, so we need to stop
13921 using IDENTIFIER_NODE in that situation. */
13922 qualified_p = false;
13923 }
13924 else
13925 {
13926 if (TREE_CODE (function) == COMPONENT_REF)
13927 {
13928 tree op = TREE_OPERAND (function, 1);
13929
13930 qualified_p = (TREE_CODE (op) == SCOPE_REF
13931 || (BASELINK_P (op)
13932 && BASELINK_QUALIFIED_P (op)));
13933 }
13934 else
13935 qualified_p = false;
13936
13937 if (TREE_CODE (function) == ADDR_EXPR
13938 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
13939 /* Avoid error about taking the address of a constructor. */
13940 function = TREE_OPERAND (function, 0);
13941
13942 function = tsubst_copy_and_build (function, args, complain,
13943 in_decl,
13944 !qualified_p,
13945 integral_constant_expression_p);
13946
13947 if (BASELINK_P (function))
13948 qualified_p = true;
13949 }
13950
13951 nargs = call_expr_nargs (t);
13952 call_args = make_tree_vector ();
13953 for (i = 0; i < nargs; ++i)
13954 {
13955 tree arg = CALL_EXPR_ARG (t, i);
13956
13957 if (!PACK_EXPANSION_P (arg))
13958 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
13959 else
13960 {
13961 /* Expand the pack expansion and push each entry onto
13962 CALL_ARGS. */
13963 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
13964 if (TREE_CODE (arg) == TREE_VEC)
13965 {
13966 unsigned int len, j;
13967
13968 len = TREE_VEC_LENGTH (arg);
13969 for (j = 0; j < len; ++j)
13970 {
13971 tree value = TREE_VEC_ELT (arg, j);
13972 if (value != NULL_TREE)
13973 value = convert_from_reference (value);
13974 vec_safe_push (call_args, value);
13975 }
13976 }
13977 else
13978 {
13979 /* A partial substitution. Add one entry. */
13980 vec_safe_push (call_args, arg);
13981 }
13982 }
13983 }
13984
13985 /* We do not perform argument-dependent lookup if normal
13986 lookup finds a non-function, in accordance with the
13987 expected resolution of DR 218. */
13988 if (koenig_p
13989 && ((is_overloaded_fn (function)
13990 /* If lookup found a member function, the Koenig lookup is
13991 not appropriate, even if an unqualified-name was used
13992 to denote the function. */
13993 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
13994 || identifier_p (function))
13995 /* Only do this when substitution turns a dependent call
13996 into a non-dependent call. */
13997 && type_dependent_expression_p_push (t)
13998 && !any_type_dependent_arguments_p (call_args))
13999 function = perform_koenig_lookup (function, call_args, false,
14000 tf_none);
14001
14002 if (identifier_p (function)
14003 && !any_type_dependent_arguments_p (call_args))
14004 {
14005 if (koenig_p && (complain & tf_warning_or_error))
14006 {
14007 /* For backwards compatibility and good diagnostics, try
14008 the unqualified lookup again if we aren't in SFINAE
14009 context. */
14010 tree unq = (tsubst_copy_and_build
14011 (function, args, complain, in_decl, true,
14012 integral_constant_expression_p));
14013 if (unq == error_mark_node)
14014 RETURN (error_mark_node);
14015
14016 if (unq != function)
14017 {
14018 tree fn = unq;
14019 if (INDIRECT_REF_P (fn))
14020 fn = TREE_OPERAND (fn, 0);
14021 if (TREE_CODE (fn) == COMPONENT_REF)
14022 fn = TREE_OPERAND (fn, 1);
14023 if (is_overloaded_fn (fn))
14024 fn = get_first_fn (fn);
14025 if (permerror (EXPR_LOC_OR_HERE (t),
14026 "%qD was not declared in this scope, "
14027 "and no declarations were found by "
14028 "argument-dependent lookup at the point "
14029 "of instantiation", function))
14030 {
14031 if (!DECL_P (fn))
14032 /* Can't say anything more. */;
14033 else if (DECL_CLASS_SCOPE_P (fn))
14034 {
14035 inform (EXPR_LOC_OR_HERE (t),
14036 "declarations in dependent base %qT are "
14037 "not found by unqualified lookup",
14038 DECL_CLASS_CONTEXT (fn));
14039 if (current_class_ptr)
14040 inform (EXPR_LOC_OR_HERE (t),
14041 "use %<this->%D%> instead", function);
14042 else
14043 inform (EXPR_LOC_OR_HERE (t),
14044 "use %<%T::%D%> instead",
14045 current_class_name, function);
14046 }
14047 else
14048 inform (0, "%q+D declared here, later in the "
14049 "translation unit", fn);
14050 }
14051 function = unq;
14052 }
14053 }
14054 if (identifier_p (function))
14055 {
14056 if (complain & tf_error)
14057 unqualified_name_lookup_error (function);
14058 release_tree_vector (call_args);
14059 RETURN (error_mark_node);
14060 }
14061 }
14062
14063 /* Remember that there was a reference to this entity. */
14064 if (DECL_P (function))
14065 mark_used (function);
14066
14067 /* Put back tf_decltype for the actual call. */
14068 complain |= decltype_flag;
14069
14070 if (TREE_CODE (function) == OFFSET_REF)
14071 ret = build_offset_ref_call_from_tree (function, &call_args,
14072 complain);
14073 else if (TREE_CODE (function) == COMPONENT_REF)
14074 {
14075 tree instance = TREE_OPERAND (function, 0);
14076 tree fn = TREE_OPERAND (function, 1);
14077
14078 if (processing_template_decl
14079 && (type_dependent_expression_p (instance)
14080 || (!BASELINK_P (fn)
14081 && TREE_CODE (fn) != FIELD_DECL)
14082 || type_dependent_expression_p (fn)
14083 || any_type_dependent_arguments_p (call_args)))
14084 ret = build_nt_call_vec (function, call_args);
14085 else if (!BASELINK_P (fn))
14086 ret = finish_call_expr (function, &call_args,
14087 /*disallow_virtual=*/false,
14088 /*koenig_p=*/false,
14089 complain);
14090 else
14091 ret = (build_new_method_call
14092 (instance, fn,
14093 &call_args, NULL_TREE,
14094 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
14095 /*fn_p=*/NULL,
14096 complain));
14097 }
14098 else
14099 ret = finish_call_expr (function, &call_args,
14100 /*disallow_virtual=*/qualified_p,
14101 koenig_p,
14102 complain);
14103
14104 release_tree_vector (call_args);
14105
14106 RETURN (ret);
14107 }
14108
14109 case COND_EXPR:
14110 {
14111 tree cond = RECUR (TREE_OPERAND (t, 0));
14112 tree exp1, exp2;
14113
14114 if (TREE_CODE (cond) == INTEGER_CST)
14115 {
14116 if (integer_zerop (cond))
14117 {
14118 ++c_inhibit_evaluation_warnings;
14119 exp1 = RECUR (TREE_OPERAND (t, 1));
14120 --c_inhibit_evaluation_warnings;
14121 exp2 = RECUR (TREE_OPERAND (t, 2));
14122 }
14123 else
14124 {
14125 exp1 = RECUR (TREE_OPERAND (t, 1));
14126 ++c_inhibit_evaluation_warnings;
14127 exp2 = RECUR (TREE_OPERAND (t, 2));
14128 --c_inhibit_evaluation_warnings;
14129 }
14130 }
14131 else
14132 {
14133 exp1 = RECUR (TREE_OPERAND (t, 1));
14134 exp2 = RECUR (TREE_OPERAND (t, 2));
14135 }
14136
14137 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
14138 cond, exp1, exp2, complain));
14139 }
14140
14141 case PSEUDO_DTOR_EXPR:
14142 RETURN (finish_pseudo_destructor_expr
14143 (RECUR (TREE_OPERAND (t, 0)),
14144 RECUR (TREE_OPERAND (t, 1)),
14145 tsubst (TREE_OPERAND (t, 2), args, complain, in_decl)));
14146
14147 case TREE_LIST:
14148 {
14149 tree purpose, value, chain;
14150
14151 if (t == void_list_node)
14152 RETURN (t);
14153
14154 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
14155 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
14156 {
14157 /* We have pack expansions, so expand those and
14158 create a new list out of it. */
14159 tree purposevec = NULL_TREE;
14160 tree valuevec = NULL_TREE;
14161 tree chain;
14162 int i, len = -1;
14163
14164 /* Expand the argument expressions. */
14165 if (TREE_PURPOSE (t))
14166 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
14167 complain, in_decl);
14168 if (TREE_VALUE (t))
14169 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
14170 complain, in_decl);
14171
14172 /* Build the rest of the list. */
14173 chain = TREE_CHAIN (t);
14174 if (chain && chain != void_type_node)
14175 chain = RECUR (chain);
14176
14177 /* Determine the number of arguments. */
14178 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
14179 {
14180 len = TREE_VEC_LENGTH (purposevec);
14181 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
14182 }
14183 else if (TREE_CODE (valuevec) == TREE_VEC)
14184 len = TREE_VEC_LENGTH (valuevec);
14185 else
14186 {
14187 /* Since we only performed a partial substitution into
14188 the argument pack, we only RETURN (a single list
14189 node. */
14190 if (purposevec == TREE_PURPOSE (t)
14191 && valuevec == TREE_VALUE (t)
14192 && chain == TREE_CHAIN (t))
14193 RETURN (t);
14194
14195 RETURN (tree_cons (purposevec, valuevec, chain));
14196 }
14197
14198 /* Convert the argument vectors into a TREE_LIST */
14199 i = len;
14200 while (i > 0)
14201 {
14202 /* Grab the Ith values. */
14203 i--;
14204 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
14205 : NULL_TREE;
14206 value
14207 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
14208 : NULL_TREE;
14209
14210 /* Build the list (backwards). */
14211 chain = tree_cons (purpose, value, chain);
14212 }
14213
14214 RETURN (chain);
14215 }
14216
14217 purpose = TREE_PURPOSE (t);
14218 if (purpose)
14219 purpose = RECUR (purpose);
14220 value = TREE_VALUE (t);
14221 if (value)
14222 value = RECUR (value);
14223 chain = TREE_CHAIN (t);
14224 if (chain && chain != void_type_node)
14225 chain = RECUR (chain);
14226 if (purpose == TREE_PURPOSE (t)
14227 && value == TREE_VALUE (t)
14228 && chain == TREE_CHAIN (t))
14229 RETURN (t);
14230 RETURN (tree_cons (purpose, value, chain));
14231 }
14232
14233 case COMPONENT_REF:
14234 {
14235 tree object;
14236 tree object_type;
14237 tree member;
14238
14239 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14240 args, complain, in_decl);
14241 /* Remember that there was a reference to this entity. */
14242 if (DECL_P (object))
14243 mark_used (object);
14244 object_type = TREE_TYPE (object);
14245
14246 member = TREE_OPERAND (t, 1);
14247 if (BASELINK_P (member))
14248 member = tsubst_baselink (member,
14249 non_reference (TREE_TYPE (object)),
14250 args, complain, in_decl);
14251 else
14252 member = tsubst_copy (member, args, complain, in_decl);
14253 if (member == error_mark_node)
14254 RETURN (error_mark_node);
14255
14256 if (type_dependent_expression_p (object))
14257 /* We can't do much here. */;
14258 else if (!CLASS_TYPE_P (object_type))
14259 {
14260 if (scalarish_type_p (object_type))
14261 {
14262 tree s = NULL_TREE;
14263 tree dtor = member;
14264
14265 if (TREE_CODE (dtor) == SCOPE_REF)
14266 {
14267 s = TREE_OPERAND (dtor, 0);
14268 dtor = TREE_OPERAND (dtor, 1);
14269 }
14270 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
14271 {
14272 dtor = TREE_OPERAND (dtor, 0);
14273 if (TYPE_P (dtor))
14274 RETURN (finish_pseudo_destructor_expr (object, s, dtor));
14275 }
14276 }
14277 }
14278 else if (TREE_CODE (member) == SCOPE_REF
14279 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
14280 {
14281 /* Lookup the template functions now that we know what the
14282 scope is. */
14283 tree scope = TREE_OPERAND (member, 0);
14284 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
14285 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
14286 member = lookup_qualified_name (scope, tmpl,
14287 /*is_type_p=*/false,
14288 /*complain=*/false);
14289 if (BASELINK_P (member))
14290 {
14291 BASELINK_FUNCTIONS (member)
14292 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
14293 args);
14294 member = (adjust_result_of_qualified_name_lookup
14295 (member, BINFO_TYPE (BASELINK_BINFO (member)),
14296 object_type));
14297 }
14298 else
14299 {
14300 qualified_name_lookup_error (scope, tmpl, member,
14301 input_location);
14302 RETURN (error_mark_node);
14303 }
14304 }
14305 else if (TREE_CODE (member) == SCOPE_REF
14306 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
14307 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
14308 {
14309 if (complain & tf_error)
14310 {
14311 if (TYPE_P (TREE_OPERAND (member, 0)))
14312 error ("%qT is not a class or namespace",
14313 TREE_OPERAND (member, 0));
14314 else
14315 error ("%qD is not a class or namespace",
14316 TREE_OPERAND (member, 0));
14317 }
14318 RETURN (error_mark_node);
14319 }
14320 else if (TREE_CODE (member) == FIELD_DECL)
14321 RETURN (finish_non_static_data_member (member, object, NULL_TREE));
14322
14323 RETURN (finish_class_member_access_expr (object, member,
14324 /*template_p=*/false,
14325 complain));
14326 }
14327
14328 case THROW_EXPR:
14329 RETURN (build_throw
14330 (RECUR (TREE_OPERAND (t, 0))));
14331
14332 case CONSTRUCTOR:
14333 {
14334 vec<constructor_elt, va_gc> *n;
14335 constructor_elt *ce;
14336 unsigned HOST_WIDE_INT idx;
14337 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14338 bool process_index_p;
14339 int newlen;
14340 bool need_copy_p = false;
14341 tree r;
14342
14343 if (type == error_mark_node)
14344 RETURN (error_mark_node);
14345
14346 /* digest_init will do the wrong thing if we let it. */
14347 if (type && TYPE_PTRMEMFUNC_P (type))
14348 RETURN (t);
14349
14350 /* We do not want to process the index of aggregate
14351 initializers as they are identifier nodes which will be
14352 looked up by digest_init. */
14353 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
14354
14355 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
14356 newlen = vec_safe_length (n);
14357 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
14358 {
14359 if (ce->index && process_index_p)
14360 ce->index = RECUR (ce->index);
14361
14362 if (PACK_EXPANSION_P (ce->value))
14363 {
14364 /* Substitute into the pack expansion. */
14365 ce->value = tsubst_pack_expansion (ce->value, args, complain,
14366 in_decl);
14367
14368 if (ce->value == error_mark_node
14369 || PACK_EXPANSION_P (ce->value))
14370 ;
14371 else if (TREE_VEC_LENGTH (ce->value) == 1)
14372 /* Just move the argument into place. */
14373 ce->value = TREE_VEC_ELT (ce->value, 0);
14374 else
14375 {
14376 /* Update the length of the final CONSTRUCTOR
14377 arguments vector, and note that we will need to
14378 copy.*/
14379 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
14380 need_copy_p = true;
14381 }
14382 }
14383 else
14384 ce->value = RECUR (ce->value);
14385 }
14386
14387 if (need_copy_p)
14388 {
14389 vec<constructor_elt, va_gc> *old_n = n;
14390
14391 vec_alloc (n, newlen);
14392 FOR_EACH_VEC_ELT (*old_n, idx, ce)
14393 {
14394 if (TREE_CODE (ce->value) == TREE_VEC)
14395 {
14396 int i, len = TREE_VEC_LENGTH (ce->value);
14397 for (i = 0; i < len; ++i)
14398 CONSTRUCTOR_APPEND_ELT (n, 0,
14399 TREE_VEC_ELT (ce->value, i));
14400 }
14401 else
14402 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
14403 }
14404 }
14405
14406 r = build_constructor (init_list_type_node, n);
14407 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
14408
14409 if (TREE_HAS_CONSTRUCTOR (t))
14410 RETURN (finish_compound_literal (type, r, complain));
14411
14412 TREE_TYPE (r) = type;
14413 RETURN (r);
14414 }
14415
14416 case TYPEID_EXPR:
14417 {
14418 tree operand_0 = TREE_OPERAND (t, 0);
14419 if (TYPE_P (operand_0))
14420 {
14421 operand_0 = tsubst (operand_0, args, complain, in_decl);
14422 RETURN (get_typeid (operand_0, complain));
14423 }
14424 else
14425 {
14426 operand_0 = RECUR (operand_0);
14427 RETURN (build_typeid (operand_0, complain));
14428 }
14429 }
14430
14431 case VAR_DECL:
14432 if (!args)
14433 RETURN (t);
14434 /* Fall through */
14435
14436 case PARM_DECL:
14437 {
14438 tree r = tsubst_copy (t, args, complain, in_decl);
14439
14440 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
14441 /* If the original type was a reference, we'll be wrapped in
14442 the appropriate INDIRECT_REF. */
14443 r = convert_from_reference (r);
14444 RETURN (r);
14445 }
14446
14447 case VA_ARG_EXPR:
14448 RETURN (build_x_va_arg (EXPR_LOCATION (t),
14449 RECUR (TREE_OPERAND (t, 0)),
14450 tsubst (TREE_TYPE (t), args, complain, in_decl)));
14451
14452 case OFFSETOF_EXPR:
14453 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0))));
14454
14455 case TRAIT_EXPR:
14456 {
14457 tree type1 = tsubst_copy (TRAIT_EXPR_TYPE1 (t), args,
14458 complain, in_decl);
14459
14460 tree type2 = TRAIT_EXPR_TYPE2 (t);
14461 if (type2)
14462 type2 = tsubst_copy (type2, args, complain, in_decl);
14463
14464 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
14465 }
14466
14467 case STMT_EXPR:
14468 {
14469 tree old_stmt_expr = cur_stmt_expr;
14470 tree stmt_expr = begin_stmt_expr ();
14471
14472 cur_stmt_expr = stmt_expr;
14473 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
14474 integral_constant_expression_p);
14475 stmt_expr = finish_stmt_expr (stmt_expr, false);
14476 cur_stmt_expr = old_stmt_expr;
14477
14478 /* If the resulting list of expression statement is empty,
14479 fold it further into void_zero_node. */
14480 if (empty_expr_stmt_p (stmt_expr))
14481 stmt_expr = void_zero_node;
14482
14483 RETURN (stmt_expr);
14484 }
14485
14486 case LAMBDA_EXPR:
14487 {
14488 tree r = build_lambda_expr ();
14489
14490 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
14491 LAMBDA_EXPR_CLOSURE (r) = type;
14492 CLASSTYPE_LAMBDA_EXPR (type) = r;
14493
14494 LAMBDA_EXPR_LOCATION (r)
14495 = LAMBDA_EXPR_LOCATION (t);
14496 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
14497 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
14498 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
14499 LAMBDA_EXPR_DISCRIMINATOR (r)
14500 = (LAMBDA_EXPR_DISCRIMINATOR (t));
14501 /* For a function scope, we want to use tsubst so that we don't
14502 complain about referring to an auto function before its return
14503 type has been deduced. Otherwise, we want to use tsubst_copy so
14504 that we look up the existing field/parameter/variable rather
14505 than build a new one. */
14506 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
14507 if (scope && TREE_CODE (scope) == FUNCTION_DECL)
14508 scope = tsubst (scope, args, complain, in_decl);
14509 else if (scope && TREE_CODE (scope) == PARM_DECL)
14510 {
14511 /* Look up the parameter we want directly, as tsubst_copy
14512 doesn't do what we need. */
14513 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
14514 tree parm = FUNCTION_FIRST_USER_PARM (fn);
14515 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
14516 parm = DECL_CHAIN (parm);
14517 scope = parm;
14518 /* FIXME Work around the parm not having DECL_CONTEXT set. */
14519 if (DECL_CONTEXT (scope) == NULL_TREE)
14520 DECL_CONTEXT (scope) = fn;
14521 }
14522 else
14523 scope = RECUR (scope);
14524 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
14525 LAMBDA_EXPR_RETURN_TYPE (r)
14526 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
14527
14528 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
14529 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
14530
14531 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
14532 determine_visibility (TYPE_NAME (type));
14533 /* Now that we know visibility, instantiate the type so we have a
14534 declaration of the op() for later calls to lambda_function. */
14535 complete_type (type);
14536
14537 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
14538
14539 RETURN (build_lambda_object (r));
14540 }
14541
14542 case TARGET_EXPR:
14543 /* We can get here for a constant initializer of non-dependent type.
14544 FIXME stop folding in cp_parser_initializer_clause. */
14545 {
14546 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
14547 complain);
14548 RETURN (r);
14549 }
14550
14551 case TRANSACTION_EXPR:
14552 RETURN (tsubst_expr(t, args, complain, in_decl,
14553 integral_constant_expression_p));
14554
14555 case PAREN_EXPR:
14556 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
14557
14558 default:
14559 /* Handle Objective-C++ constructs, if appropriate. */
14560 {
14561 tree subst
14562 = objcp_tsubst_copy_and_build (t, args, complain,
14563 in_decl, /*function_p=*/false);
14564 if (subst)
14565 RETURN (subst);
14566 }
14567 RETURN (tsubst_copy (t, args, complain, in_decl));
14568 }
14569
14570 #undef RECUR
14571 #undef RETURN
14572 out:
14573 input_location = loc;
14574 return retval;
14575 }
14576
14577 /* Verify that the instantiated ARGS are valid. For type arguments,
14578 make sure that the type's linkage is ok. For non-type arguments,
14579 make sure they are constants if they are integral or enumerations.
14580 Emit an error under control of COMPLAIN, and return TRUE on error. */
14581
14582 static bool
14583 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
14584 {
14585 if (dependent_template_arg_p (t))
14586 return false;
14587 if (ARGUMENT_PACK_P (t))
14588 {
14589 tree vec = ARGUMENT_PACK_ARGS (t);
14590 int len = TREE_VEC_LENGTH (vec);
14591 bool result = false;
14592 int i;
14593
14594 for (i = 0; i < len; ++i)
14595 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
14596 result = true;
14597 return result;
14598 }
14599 else if (TYPE_P (t))
14600 {
14601 /* [basic.link]: A name with no linkage (notably, the name
14602 of a class or enumeration declared in a local scope)
14603 shall not be used to declare an entity with linkage.
14604 This implies that names with no linkage cannot be used as
14605 template arguments
14606
14607 DR 757 relaxes this restriction for C++0x. */
14608 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
14609 : no_linkage_check (t, /*relaxed_p=*/false));
14610
14611 if (nt)
14612 {
14613 /* DR 488 makes use of a type with no linkage cause
14614 type deduction to fail. */
14615 if (complain & tf_error)
14616 {
14617 if (TYPE_ANONYMOUS_P (nt))
14618 error ("%qT is/uses anonymous type", t);
14619 else
14620 error ("template argument for %qD uses local type %qT",
14621 tmpl, t);
14622 }
14623 return true;
14624 }
14625 /* In order to avoid all sorts of complications, we do not
14626 allow variably-modified types as template arguments. */
14627 else if (variably_modified_type_p (t, NULL_TREE))
14628 {
14629 if (complain & tf_error)
14630 error ("%qT is a variably modified type", t);
14631 return true;
14632 }
14633 }
14634 /* Class template and alias template arguments should be OK. */
14635 else if (DECL_TYPE_TEMPLATE_P (t))
14636 ;
14637 /* A non-type argument of integral or enumerated type must be a
14638 constant. */
14639 else if (TREE_TYPE (t)
14640 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
14641 && !TREE_CONSTANT (t))
14642 {
14643 if (complain & tf_error)
14644 error ("integral expression %qE is not constant", t);
14645 return true;
14646 }
14647 return false;
14648 }
14649
14650 static bool
14651 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
14652 {
14653 int ix, len = DECL_NTPARMS (tmpl);
14654 bool result = false;
14655
14656 for (ix = 0; ix != len; ix++)
14657 {
14658 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
14659 result = true;
14660 }
14661 if (result && (complain & tf_error))
14662 error (" trying to instantiate %qD", tmpl);
14663 return result;
14664 }
14665
14666 /* We're out of SFINAE context now, so generate diagnostics for the access
14667 errors we saw earlier when instantiating D from TMPL and ARGS. */
14668
14669 static void
14670 recheck_decl_substitution (tree d, tree tmpl, tree args)
14671 {
14672 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
14673 tree type = TREE_TYPE (pattern);
14674 location_t loc = input_location;
14675
14676 push_access_scope (d);
14677 push_deferring_access_checks (dk_no_deferred);
14678 input_location = DECL_SOURCE_LOCATION (pattern);
14679 tsubst (type, args, tf_warning_or_error, d);
14680 input_location = loc;
14681 pop_deferring_access_checks ();
14682 pop_access_scope (d);
14683 }
14684
14685 /* Instantiate the indicated variable, function, or alias template TMPL with
14686 the template arguments in TARG_PTR. */
14687
14688 static tree
14689 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
14690 {
14691 tree targ_ptr = orig_args;
14692 tree fndecl;
14693 tree gen_tmpl;
14694 tree spec;
14695 bool access_ok = true;
14696
14697 if (tmpl == error_mark_node)
14698 return error_mark_node;
14699
14700 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
14701
14702 /* If this function is a clone, handle it specially. */
14703 if (DECL_CLONED_FUNCTION_P (tmpl))
14704 {
14705 tree spec;
14706 tree clone;
14707
14708 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
14709 DECL_CLONED_FUNCTION. */
14710 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
14711 targ_ptr, complain);
14712 if (spec == error_mark_node)
14713 return error_mark_node;
14714
14715 /* Look for the clone. */
14716 FOR_EACH_CLONE (clone, spec)
14717 if (DECL_NAME (clone) == DECL_NAME (tmpl))
14718 return clone;
14719 /* We should always have found the clone by now. */
14720 gcc_unreachable ();
14721 return NULL_TREE;
14722 }
14723
14724 /* Check to see if we already have this specialization. */
14725 gen_tmpl = most_general_template (tmpl);
14726 if (tmpl != gen_tmpl)
14727 /* The TMPL is a partial instantiation. To get a full set of
14728 arguments we must add the arguments used to perform the
14729 partial instantiation. */
14730 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
14731 targ_ptr);
14732
14733 /* It would be nice to avoid hashing here and then again in tsubst_decl,
14734 but it doesn't seem to be on the hot path. */
14735 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
14736
14737 gcc_assert (tmpl == gen_tmpl
14738 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
14739 == spec)
14740 || fndecl == NULL_TREE);
14741
14742 if (spec != NULL_TREE)
14743 {
14744 if (FNDECL_HAS_ACCESS_ERRORS (spec))
14745 {
14746 if (complain & tf_error)
14747 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
14748 return error_mark_node;
14749 }
14750 return spec;
14751 }
14752
14753 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
14754 complain))
14755 return error_mark_node;
14756
14757 /* We are building a FUNCTION_DECL, during which the access of its
14758 parameters and return types have to be checked. However this
14759 FUNCTION_DECL which is the desired context for access checking
14760 is not built yet. We solve this chicken-and-egg problem by
14761 deferring all checks until we have the FUNCTION_DECL. */
14762 push_deferring_access_checks (dk_deferred);
14763
14764 /* Instantiation of the function happens in the context of the function
14765 template, not the context of the overload resolution we're doing. */
14766 push_to_top_level ();
14767 /* If there are dependent arguments, e.g. because we're doing partial
14768 ordering, make sure processing_template_decl stays set. */
14769 if (uses_template_parms (targ_ptr))
14770 ++processing_template_decl;
14771 if (DECL_CLASS_SCOPE_P (gen_tmpl))
14772 {
14773 tree ctx = tsubst (DECL_CONTEXT (gen_tmpl), targ_ptr,
14774 complain, gen_tmpl);
14775 push_nested_class (ctx);
14776 }
14777 /* Substitute template parameters to obtain the specialization. */
14778 fndecl = tsubst (DECL_TEMPLATE_RESULT (gen_tmpl),
14779 targ_ptr, complain, gen_tmpl);
14780 if (DECL_CLASS_SCOPE_P (gen_tmpl))
14781 pop_nested_class ();
14782 pop_from_top_level ();
14783
14784 if (fndecl == error_mark_node)
14785 {
14786 pop_deferring_access_checks ();
14787 return error_mark_node;
14788 }
14789
14790 /* The DECL_TI_TEMPLATE should always be the immediate parent
14791 template, not the most general template. */
14792 DECL_TI_TEMPLATE (fndecl) = tmpl;
14793
14794 /* Now we know the specialization, compute access previously
14795 deferred. */
14796 push_access_scope (fndecl);
14797 if (!perform_deferred_access_checks (complain))
14798 access_ok = false;
14799 pop_access_scope (fndecl);
14800 pop_deferring_access_checks ();
14801
14802 /* If we've just instantiated the main entry point for a function,
14803 instantiate all the alternate entry points as well. We do this
14804 by cloning the instantiation of the main entry point, not by
14805 instantiating the template clones. */
14806 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
14807 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
14808
14809 if (!access_ok)
14810 {
14811 if (!(complain & tf_error))
14812 {
14813 /* Remember to reinstantiate when we're out of SFINAE so the user
14814 can see the errors. */
14815 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
14816 }
14817 return error_mark_node;
14818 }
14819 return fndecl;
14820 }
14821
14822 /* Wrapper for instantiate_template_1. */
14823
14824 tree
14825 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
14826 {
14827 tree ret;
14828 timevar_push (TV_TEMPLATE_INST);
14829 ret = instantiate_template_1 (tmpl, orig_args, complain);
14830 timevar_pop (TV_TEMPLATE_INST);
14831 return ret;
14832 }
14833
14834 /* Instantiate the alias template TMPL with ARGS. Also push a template
14835 instantiation level, which instantiate_template doesn't do because
14836 functions and variables have sufficient context established by the
14837 callers. */
14838
14839 static tree
14840 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
14841 {
14842 struct pending_template *old_last_pend = last_pending_template;
14843 struct tinst_level *old_error_tinst = last_error_tinst_level;
14844 if (tmpl == error_mark_node || args == error_mark_node)
14845 return error_mark_node;
14846 tree tinst = build_tree_list (tmpl, args);
14847 if (!push_tinst_level (tinst))
14848 {
14849 ggc_free (tinst);
14850 return error_mark_node;
14851 }
14852
14853 args =
14854 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
14855 args, tmpl, complain,
14856 /*require_all_args=*/true,
14857 /*use_default_args=*/true);
14858
14859 tree r = instantiate_template (tmpl, args, complain);
14860 pop_tinst_level ();
14861 /* We can't free this if a pending_template entry or last_error_tinst_level
14862 is pointing at it. */
14863 if (last_pending_template == old_last_pend
14864 && last_error_tinst_level == old_error_tinst)
14865 ggc_free (tinst);
14866
14867 return r;
14868 }
14869
14870 /* PARM is a template parameter pack for FN. Returns true iff
14871 PARM is used in a deducible way in the argument list of FN. */
14872
14873 static bool
14874 pack_deducible_p (tree parm, tree fn)
14875 {
14876 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
14877 for (; t; t = TREE_CHAIN (t))
14878 {
14879 tree type = TREE_VALUE (t);
14880 tree packs;
14881 if (!PACK_EXPANSION_P (type))
14882 continue;
14883 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
14884 packs; packs = TREE_CHAIN (packs))
14885 if (TREE_VALUE (packs) == parm)
14886 {
14887 /* The template parameter pack is used in a function parameter
14888 pack. If this is the end of the parameter list, the
14889 template parameter pack is deducible. */
14890 if (TREE_CHAIN (t) == void_list_node)
14891 return true;
14892 else
14893 /* Otherwise, not. Well, it could be deduced from
14894 a non-pack parameter, but doing so would end up with
14895 a deduction mismatch, so don't bother. */
14896 return false;
14897 }
14898 }
14899 /* The template parameter pack isn't used in any function parameter
14900 packs, but it might be used deeper, e.g. tuple<Args...>. */
14901 return true;
14902 }
14903
14904 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
14905 NARGS elements of the arguments that are being used when calling
14906 it. TARGS is a vector into which the deduced template arguments
14907 are placed.
14908
14909 Return zero for success, 2 for an incomplete match that doesn't resolve
14910 all the types, and 1 for complete failure. An error message will be
14911 printed only for an incomplete match.
14912
14913 If FN is a conversion operator, or we are trying to produce a specific
14914 specialization, RETURN_TYPE is the return type desired.
14915
14916 The EXPLICIT_TARGS are explicit template arguments provided via a
14917 template-id.
14918
14919 The parameter STRICT is one of:
14920
14921 DEDUCE_CALL:
14922 We are deducing arguments for a function call, as in
14923 [temp.deduct.call].
14924
14925 DEDUCE_CONV:
14926 We are deducing arguments for a conversion function, as in
14927 [temp.deduct.conv].
14928
14929 DEDUCE_EXACT:
14930 We are deducing arguments when doing an explicit instantiation
14931 as in [temp.explicit], when determining an explicit specialization
14932 as in [temp.expl.spec], or when taking the address of a function
14933 template, as in [temp.deduct.funcaddr]. */
14934
14935 tree
14936 fn_type_unification (tree fn,
14937 tree explicit_targs,
14938 tree targs,
14939 const tree *args,
14940 unsigned int nargs,
14941 tree return_type,
14942 unification_kind_t strict,
14943 int flags,
14944 bool explain_p,
14945 bool decltype_p)
14946 {
14947 tree parms;
14948 tree fntype;
14949 tree decl = NULL_TREE;
14950 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
14951 bool ok;
14952 static int deduction_depth;
14953 struct pending_template *old_last_pend = last_pending_template;
14954 struct tinst_level *old_error_tinst = last_error_tinst_level;
14955 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
14956 tree tinst;
14957 tree r = error_mark_node;
14958
14959 if (decltype_p)
14960 complain |= tf_decltype;
14961
14962 /* In C++0x, it's possible to have a function template whose type depends
14963 on itself recursively. This is most obvious with decltype, but can also
14964 occur with enumeration scope (c++/48969). So we need to catch infinite
14965 recursion and reject the substitution at deduction time; this function
14966 will return error_mark_node for any repeated substitution.
14967
14968 This also catches excessive recursion such as when f<N> depends on
14969 f<N-1> across all integers, and returns error_mark_node for all the
14970 substitutions back up to the initial one.
14971
14972 This is, of course, not reentrant. */
14973 if (excessive_deduction_depth)
14974 return error_mark_node;
14975 tinst = build_tree_list (fn, NULL_TREE);
14976 ++deduction_depth;
14977 push_deferring_access_checks (dk_deferred);
14978
14979 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
14980
14981 fntype = TREE_TYPE (fn);
14982 if (explicit_targs)
14983 {
14984 /* [temp.deduct]
14985
14986 The specified template arguments must match the template
14987 parameters in kind (i.e., type, nontype, template), and there
14988 must not be more arguments than there are parameters;
14989 otherwise type deduction fails.
14990
14991 Nontype arguments must match the types of the corresponding
14992 nontype template parameters, or must be convertible to the
14993 types of the corresponding nontype parameters as specified in
14994 _temp.arg.nontype_, otherwise type deduction fails.
14995
14996 All references in the function type of the function template
14997 to the corresponding template parameters are replaced by the
14998 specified template argument values. If a substitution in a
14999 template parameter or in the function type of the function
15000 template results in an invalid type, type deduction fails. */
15001 int i, len = TREE_VEC_LENGTH (tparms);
15002 location_t loc = input_location;
15003 bool incomplete = false;
15004
15005 /* Adjust any explicit template arguments before entering the
15006 substitution context. */
15007 explicit_targs
15008 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
15009 complain,
15010 /*require_all_args=*/false,
15011 /*use_default_args=*/false));
15012 if (explicit_targs == error_mark_node)
15013 goto fail;
15014
15015 /* Substitute the explicit args into the function type. This is
15016 necessary so that, for instance, explicitly declared function
15017 arguments can match null pointed constants. If we were given
15018 an incomplete set of explicit args, we must not do semantic
15019 processing during substitution as we could create partial
15020 instantiations. */
15021 for (i = 0; i < len; i++)
15022 {
15023 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
15024 bool parameter_pack = false;
15025 tree targ = TREE_VEC_ELT (explicit_targs, i);
15026
15027 /* Dig out the actual parm. */
15028 if (TREE_CODE (parm) == TYPE_DECL
15029 || TREE_CODE (parm) == TEMPLATE_DECL)
15030 {
15031 parm = TREE_TYPE (parm);
15032 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
15033 }
15034 else if (TREE_CODE (parm) == PARM_DECL)
15035 {
15036 parm = DECL_INITIAL (parm);
15037 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
15038 }
15039
15040 if (!parameter_pack && targ == NULL_TREE)
15041 /* No explicit argument for this template parameter. */
15042 incomplete = true;
15043
15044 if (parameter_pack && pack_deducible_p (parm, fn))
15045 {
15046 /* Mark the argument pack as "incomplete". We could
15047 still deduce more arguments during unification.
15048 We remove this mark in type_unification_real. */
15049 if (targ)
15050 {
15051 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
15052 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
15053 = ARGUMENT_PACK_ARGS (targ);
15054 }
15055
15056 /* We have some incomplete argument packs. */
15057 incomplete = true;
15058 }
15059 }
15060
15061 TREE_VALUE (tinst) = explicit_targs;
15062 if (!push_tinst_level (tinst))
15063 {
15064 excessive_deduction_depth = true;
15065 goto fail;
15066 }
15067 processing_template_decl += incomplete;
15068 input_location = DECL_SOURCE_LOCATION (fn);
15069 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
15070 complain | tf_partial, NULL_TREE);
15071 input_location = loc;
15072 processing_template_decl -= incomplete;
15073 pop_tinst_level ();
15074
15075 if (fntype == error_mark_node)
15076 goto fail;
15077
15078 /* Throw away these access checks; we'll see them again in
15079 instantiate_template and they might have the wrong
15080 access path at this point. */
15081 pop_deferring_access_checks ();
15082 push_deferring_access_checks (dk_deferred);
15083
15084 /* Place the explicitly specified arguments in TARGS. */
15085 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
15086 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
15087 }
15088
15089 /* Never do unification on the 'this' parameter. */
15090 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
15091
15092 if (return_type)
15093 {
15094 tree *new_args;
15095
15096 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
15097 new_args = XALLOCAVEC (tree, nargs + 1);
15098 new_args[0] = return_type;
15099 memcpy (new_args + 1, args, nargs * sizeof (tree));
15100 args = new_args;
15101 ++nargs;
15102 }
15103
15104 /* We allow incomplete unification without an error message here
15105 because the standard doesn't seem to explicitly prohibit it. Our
15106 callers must be ready to deal with unification failures in any
15107 event. */
15108
15109 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
15110 targs, parms, args, nargs, /*subr=*/0,
15111 strict, flags, explain_p);
15112 if (!ok)
15113 goto fail;
15114
15115 /* Now that we have bindings for all of the template arguments,
15116 ensure that the arguments deduced for the template template
15117 parameters have compatible template parameter lists. We cannot
15118 check this property before we have deduced all template
15119 arguments, because the template parameter types of a template
15120 template parameter might depend on prior template parameters
15121 deduced after the template template parameter. The following
15122 ill-formed example illustrates this issue:
15123
15124 template<typename T, template<T> class C> void f(C<5>, T);
15125
15126 template<int N> struct X {};
15127
15128 void g() {
15129 f(X<5>(), 5l); // error: template argument deduction fails
15130 }
15131
15132 The template parameter list of 'C' depends on the template type
15133 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
15134 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
15135 time that we deduce 'C'. */
15136 if (!template_template_parm_bindings_ok_p
15137 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
15138 {
15139 unify_inconsistent_template_template_parameters (explain_p);
15140 goto fail;
15141 }
15142
15143 /* All is well so far. Now, check:
15144
15145 [temp.deduct]
15146
15147 When all template arguments have been deduced, all uses of
15148 template parameters in nondeduced contexts are replaced with
15149 the corresponding deduced argument values. If the
15150 substitution results in an invalid type, as described above,
15151 type deduction fails. */
15152 TREE_VALUE (tinst) = targs;
15153 if (!push_tinst_level (tinst))
15154 {
15155 excessive_deduction_depth = true;
15156 goto fail;
15157 }
15158 decl = instantiate_template (fn, targs, complain);
15159 pop_tinst_level ();
15160
15161 if (decl == error_mark_node)
15162 goto fail;
15163
15164 /* Now perform any access checks encountered during deduction, such as
15165 for default template arguments. */
15166 push_access_scope (decl);
15167 ok = perform_deferred_access_checks (complain);
15168 pop_access_scope (decl);
15169 if (!ok)
15170 goto fail;
15171
15172 /* If we're looking for an exact match, check that what we got
15173 is indeed an exact match. It might not be if some template
15174 parameters are used in non-deduced contexts. */
15175 if (strict == DEDUCE_EXACT)
15176 {
15177 tree substed = TREE_TYPE (decl);
15178 unsigned int i;
15179
15180 tree sarg
15181 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
15182 if (return_type)
15183 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
15184 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
15185 if (!same_type_p (args[i], TREE_VALUE (sarg)))
15186 {
15187 unify_type_mismatch (explain_p, args[i],
15188 TREE_VALUE (sarg));
15189 goto fail;
15190 }
15191 }
15192
15193 r = decl;
15194
15195 fail:
15196 pop_deferring_access_checks ();
15197 --deduction_depth;
15198 if (excessive_deduction_depth)
15199 {
15200 if (deduction_depth == 0)
15201 /* Reset once we're all the way out. */
15202 excessive_deduction_depth = false;
15203 }
15204
15205 /* We can't free this if a pending_template entry or last_error_tinst_level
15206 is pointing at it. */
15207 if (last_pending_template == old_last_pend
15208 && last_error_tinst_level == old_error_tinst)
15209 ggc_free (tinst);
15210
15211 return r;
15212 }
15213
15214 /* Adjust types before performing type deduction, as described in
15215 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
15216 sections are symmetric. PARM is the type of a function parameter
15217 or the return type of the conversion function. ARG is the type of
15218 the argument passed to the call, or the type of the value
15219 initialized with the result of the conversion function.
15220 ARG_EXPR is the original argument expression, which may be null. */
15221
15222 static int
15223 maybe_adjust_types_for_deduction (unification_kind_t strict,
15224 tree* parm,
15225 tree* arg,
15226 tree arg_expr)
15227 {
15228 int result = 0;
15229
15230 switch (strict)
15231 {
15232 case DEDUCE_CALL:
15233 break;
15234
15235 case DEDUCE_CONV:
15236 {
15237 /* Swap PARM and ARG throughout the remainder of this
15238 function; the handling is precisely symmetric since PARM
15239 will initialize ARG rather than vice versa. */
15240 tree* temp = parm;
15241 parm = arg;
15242 arg = temp;
15243 break;
15244 }
15245
15246 case DEDUCE_EXACT:
15247 /* Core issue #873: Do the DR606 thing (see below) for these cases,
15248 too, but here handle it by stripping the reference from PARM
15249 rather than by adding it to ARG. */
15250 if (TREE_CODE (*parm) == REFERENCE_TYPE
15251 && TYPE_REF_IS_RVALUE (*parm)
15252 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
15253 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
15254 && TREE_CODE (*arg) == REFERENCE_TYPE
15255 && !TYPE_REF_IS_RVALUE (*arg))
15256 *parm = TREE_TYPE (*parm);
15257 /* Nothing else to do in this case. */
15258 return 0;
15259
15260 default:
15261 gcc_unreachable ();
15262 }
15263
15264 if (TREE_CODE (*parm) != REFERENCE_TYPE)
15265 {
15266 /* [temp.deduct.call]
15267
15268 If P is not a reference type:
15269
15270 --If A is an array type, the pointer type produced by the
15271 array-to-pointer standard conversion (_conv.array_) is
15272 used in place of A for type deduction; otherwise,
15273
15274 --If A is a function type, the pointer type produced by
15275 the function-to-pointer standard conversion
15276 (_conv.func_) is used in place of A for type deduction;
15277 otherwise,
15278
15279 --If A is a cv-qualified type, the top level
15280 cv-qualifiers of A's type are ignored for type
15281 deduction. */
15282 if (TREE_CODE (*arg) == ARRAY_TYPE)
15283 *arg = build_pointer_type (TREE_TYPE (*arg));
15284 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
15285 *arg = build_pointer_type (*arg);
15286 else
15287 *arg = TYPE_MAIN_VARIANT (*arg);
15288 }
15289
15290 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
15291 of the form T&&, where T is a template parameter, and the argument
15292 is an lvalue, T is deduced as A& */
15293 if (TREE_CODE (*parm) == REFERENCE_TYPE
15294 && TYPE_REF_IS_RVALUE (*parm)
15295 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
15296 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
15297 && (arg_expr ? real_lvalue_p (arg_expr)
15298 /* try_one_overload doesn't provide an arg_expr, but
15299 functions are always lvalues. */
15300 : TREE_CODE (*arg) == FUNCTION_TYPE))
15301 *arg = build_reference_type (*arg);
15302
15303 /* [temp.deduct.call]
15304
15305 If P is a cv-qualified type, the top level cv-qualifiers
15306 of P's type are ignored for type deduction. If P is a
15307 reference type, the type referred to by P is used for
15308 type deduction. */
15309 *parm = TYPE_MAIN_VARIANT (*parm);
15310 if (TREE_CODE (*parm) == REFERENCE_TYPE)
15311 {
15312 *parm = TREE_TYPE (*parm);
15313 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
15314 }
15315
15316 /* DR 322. For conversion deduction, remove a reference type on parm
15317 too (which has been swapped into ARG). */
15318 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
15319 *arg = TREE_TYPE (*arg);
15320
15321 return result;
15322 }
15323
15324 /* Subroutine of unify_one_argument. PARM is a function parameter of a
15325 template which does contain any deducible template parameters; check if
15326 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
15327 unify_one_argument. */
15328
15329 static int
15330 check_non_deducible_conversion (tree parm, tree arg, int strict,
15331 int flags, bool explain_p)
15332 {
15333 tree type;
15334
15335 if (!TYPE_P (arg))
15336 type = TREE_TYPE (arg);
15337 else
15338 type = arg;
15339
15340 if (same_type_p (parm, type))
15341 return unify_success (explain_p);
15342
15343 if (strict == DEDUCE_CONV)
15344 {
15345 if (can_convert_arg (type, parm, NULL_TREE, flags,
15346 explain_p ? tf_warning_or_error : tf_none))
15347 return unify_success (explain_p);
15348 }
15349 else if (strict != DEDUCE_EXACT)
15350 {
15351 if (can_convert_arg (parm, type,
15352 TYPE_P (arg) ? NULL_TREE : arg,
15353 flags, explain_p ? tf_warning_or_error : tf_none))
15354 return unify_success (explain_p);
15355 }
15356
15357 if (strict == DEDUCE_EXACT)
15358 return unify_type_mismatch (explain_p, parm, arg);
15359 else
15360 return unify_arg_conversion (explain_p, parm, type, arg);
15361 }
15362
15363 /* Subroutine of type_unification_real and unify_pack_expansion to
15364 handle unification of a single P/A pair. Parameters are as
15365 for those functions. */
15366
15367 static int
15368 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
15369 int subr, unification_kind_t strict, int flags,
15370 bool explain_p)
15371 {
15372 tree arg_expr = NULL_TREE;
15373 int arg_strict;
15374
15375 if (arg == error_mark_node || parm == error_mark_node)
15376 return unify_invalid (explain_p);
15377 if (arg == unknown_type_node)
15378 /* We can't deduce anything from this, but we might get all the
15379 template args from other function args. */
15380 return unify_success (explain_p);
15381
15382 /* FIXME uses_deducible_template_parms */
15383 if (TYPE_P (parm) && !uses_template_parms (parm))
15384 return check_non_deducible_conversion (parm, arg, strict, flags,
15385 explain_p);
15386
15387 switch (strict)
15388 {
15389 case DEDUCE_CALL:
15390 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
15391 | UNIFY_ALLOW_MORE_CV_QUAL
15392 | UNIFY_ALLOW_DERIVED);
15393 break;
15394
15395 case DEDUCE_CONV:
15396 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
15397 break;
15398
15399 case DEDUCE_EXACT:
15400 arg_strict = UNIFY_ALLOW_NONE;
15401 break;
15402
15403 default:
15404 gcc_unreachable ();
15405 }
15406
15407 /* We only do these transformations if this is the top-level
15408 parameter_type_list in a call or declaration matching; in other
15409 situations (nested function declarators, template argument lists) we
15410 won't be comparing a type to an expression, and we don't do any type
15411 adjustments. */
15412 if (!subr)
15413 {
15414 if (!TYPE_P (arg))
15415 {
15416 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
15417 if (type_unknown_p (arg))
15418 {
15419 /* [temp.deduct.type] A template-argument can be
15420 deduced from a pointer to function or pointer
15421 to member function argument if the set of
15422 overloaded functions does not contain function
15423 templates and at most one of a set of
15424 overloaded functions provides a unique
15425 match. */
15426
15427 if (resolve_overloaded_unification
15428 (tparms, targs, parm, arg, strict,
15429 arg_strict, explain_p))
15430 return unify_success (explain_p);
15431 return unify_overload_resolution_failure (explain_p, arg);
15432 }
15433
15434 arg_expr = arg;
15435 arg = unlowered_expr_type (arg);
15436 if (arg == error_mark_node)
15437 return unify_invalid (explain_p);
15438 }
15439
15440 arg_strict |=
15441 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
15442 }
15443 else
15444 gcc_assert ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
15445 == (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL));
15446
15447 /* For deduction from an init-list we need the actual list. */
15448 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
15449 arg = arg_expr;
15450 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
15451 }
15452
15453 /* Most parms like fn_type_unification.
15454
15455 If SUBR is 1, we're being called recursively (to unify the
15456 arguments of a function or method parameter of a function
15457 template). */
15458
15459 static int
15460 type_unification_real (tree tparms,
15461 tree targs,
15462 tree xparms,
15463 const tree *xargs,
15464 unsigned int xnargs,
15465 int subr,
15466 unification_kind_t strict,
15467 int flags,
15468 bool explain_p)
15469 {
15470 tree parm, arg;
15471 int i;
15472 int ntparms = TREE_VEC_LENGTH (tparms);
15473 int saw_undeduced = 0;
15474 tree parms;
15475 const tree *args;
15476 unsigned int nargs;
15477 unsigned int ia;
15478
15479 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
15480 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
15481 gcc_assert (ntparms > 0);
15482
15483 /* Reset the number of non-defaulted template arguments contained
15484 in TARGS. */
15485 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
15486
15487 again:
15488 parms = xparms;
15489 args = xargs;
15490 nargs = xnargs;
15491
15492 ia = 0;
15493 while (parms && parms != void_list_node
15494 && ia < nargs)
15495 {
15496 parm = TREE_VALUE (parms);
15497
15498 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
15499 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
15500 /* For a function parameter pack that occurs at the end of the
15501 parameter-declaration-list, the type A of each remaining
15502 argument of the call is compared with the type P of the
15503 declarator-id of the function parameter pack. */
15504 break;
15505
15506 parms = TREE_CHAIN (parms);
15507
15508 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
15509 /* For a function parameter pack that does not occur at the
15510 end of the parameter-declaration-list, the type of the
15511 parameter pack is a non-deduced context. */
15512 continue;
15513
15514 arg = args[ia];
15515 ++ia;
15516
15517 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
15518 flags, explain_p))
15519 return 1;
15520 }
15521
15522 if (parms
15523 && parms != void_list_node
15524 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
15525 {
15526 /* Unify the remaining arguments with the pack expansion type. */
15527 tree argvec;
15528 tree parmvec = make_tree_vec (1);
15529
15530 /* Allocate a TREE_VEC and copy in all of the arguments */
15531 argvec = make_tree_vec (nargs - ia);
15532 for (i = 0; ia < nargs; ++ia, ++i)
15533 TREE_VEC_ELT (argvec, i) = args[ia];
15534
15535 /* Copy the parameter into parmvec. */
15536 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
15537 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
15538 /*subr=*/subr, explain_p))
15539 return 1;
15540
15541 /* Advance to the end of the list of parameters. */
15542 parms = TREE_CHAIN (parms);
15543 }
15544
15545 /* Fail if we've reached the end of the parm list, and more args
15546 are present, and the parm list isn't variadic. */
15547 if (ia < nargs && parms == void_list_node)
15548 return unify_too_many_arguments (explain_p, nargs, ia);
15549 /* Fail if parms are left and they don't have default values. */
15550 if (parms && parms != void_list_node
15551 && TREE_PURPOSE (parms) == NULL_TREE)
15552 {
15553 unsigned int count = nargs;
15554 tree p = parms;
15555 while (p && p != void_list_node)
15556 {
15557 count++;
15558 p = TREE_CHAIN (p);
15559 }
15560 return unify_too_few_arguments (explain_p, ia, count);
15561 }
15562
15563 if (!subr)
15564 {
15565 tsubst_flags_t complain = (explain_p
15566 ? tf_warning_or_error
15567 : tf_none);
15568
15569 for (i = 0; i < ntparms; i++)
15570 {
15571 tree targ = TREE_VEC_ELT (targs, i);
15572 tree tparm = TREE_VEC_ELT (tparms, i);
15573
15574 /* Clear the "incomplete" flags on all argument packs now so that
15575 substituting them into later default arguments works. */
15576 if (targ && ARGUMENT_PACK_P (targ))
15577 {
15578 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
15579 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
15580 }
15581
15582 if (targ || tparm == error_mark_node)
15583 continue;
15584 tparm = TREE_VALUE (tparm);
15585
15586 /* If this is an undeduced nontype parameter that depends on
15587 a type parameter, try another pass; its type may have been
15588 deduced from a later argument than the one from which
15589 this parameter can be deduced. */
15590 if (TREE_CODE (tparm) == PARM_DECL
15591 && uses_template_parms (TREE_TYPE (tparm))
15592 && !saw_undeduced++)
15593 goto again;
15594
15595 /* Core issue #226 (C++0x) [temp.deduct]:
15596
15597 If a template argument has not been deduced, its
15598 default template argument, if any, is used.
15599
15600 When we are in C++98 mode, TREE_PURPOSE will either
15601 be NULL_TREE or ERROR_MARK_NODE, so we do not need
15602 to explicitly check cxx_dialect here. */
15603 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
15604 {
15605 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
15606 tree arg = TREE_PURPOSE (TREE_VEC_ELT (tparms, i));
15607 location_t save_loc = input_location;
15608 if (DECL_P (parm))
15609 input_location = DECL_SOURCE_LOCATION (parm);
15610 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
15611 arg = convert_template_argument (parm, arg, targs, complain,
15612 i, NULL_TREE);
15613 input_location = save_loc;
15614 if (arg == error_mark_node)
15615 return 1;
15616 else
15617 {
15618 TREE_VEC_ELT (targs, i) = arg;
15619 /* The position of the first default template argument,
15620 is also the number of non-defaulted arguments in TARGS.
15621 Record that. */
15622 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
15623 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
15624 continue;
15625 }
15626 }
15627
15628 /* If the type parameter is a parameter pack, then it will
15629 be deduced to an empty parameter pack. */
15630 if (template_parameter_pack_p (tparm))
15631 {
15632 tree arg;
15633
15634 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
15635 {
15636 arg = make_node (NONTYPE_ARGUMENT_PACK);
15637 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
15638 TREE_CONSTANT (arg) = 1;
15639 }
15640 else
15641 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
15642
15643 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
15644
15645 TREE_VEC_ELT (targs, i) = arg;
15646 continue;
15647 }
15648
15649 return unify_parameter_deduction_failure (explain_p, tparm);
15650 }
15651 }
15652 #ifdef ENABLE_CHECKING
15653 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
15654 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
15655 #endif
15656
15657 return unify_success (explain_p);
15658 }
15659
15660 /* Subroutine of type_unification_real. Args are like the variables
15661 at the call site. ARG is an overloaded function (or template-id);
15662 we try deducing template args from each of the overloads, and if
15663 only one succeeds, we go with that. Modifies TARGS and returns
15664 true on success. */
15665
15666 static bool
15667 resolve_overloaded_unification (tree tparms,
15668 tree targs,
15669 tree parm,
15670 tree arg,
15671 unification_kind_t strict,
15672 int sub_strict,
15673 bool explain_p)
15674 {
15675 tree tempargs = copy_node (targs);
15676 int good = 0;
15677 tree goodfn = NULL_TREE;
15678 bool addr_p;
15679
15680 if (TREE_CODE (arg) == ADDR_EXPR)
15681 {
15682 arg = TREE_OPERAND (arg, 0);
15683 addr_p = true;
15684 }
15685 else
15686 addr_p = false;
15687
15688 if (TREE_CODE (arg) == COMPONENT_REF)
15689 /* Handle `&x' where `x' is some static or non-static member
15690 function name. */
15691 arg = TREE_OPERAND (arg, 1);
15692
15693 if (TREE_CODE (arg) == OFFSET_REF)
15694 arg = TREE_OPERAND (arg, 1);
15695
15696 /* Strip baselink information. */
15697 if (BASELINK_P (arg))
15698 arg = BASELINK_FUNCTIONS (arg);
15699
15700 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
15701 {
15702 /* If we got some explicit template args, we need to plug them into
15703 the affected templates before we try to unify, in case the
15704 explicit args will completely resolve the templates in question. */
15705
15706 int ok = 0;
15707 tree expl_subargs = TREE_OPERAND (arg, 1);
15708 arg = TREE_OPERAND (arg, 0);
15709
15710 for (; arg; arg = OVL_NEXT (arg))
15711 {
15712 tree fn = OVL_CURRENT (arg);
15713 tree subargs, elem;
15714
15715 if (TREE_CODE (fn) != TEMPLATE_DECL)
15716 continue;
15717
15718 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
15719 expl_subargs, NULL_TREE, tf_none,
15720 /*require_all_args=*/true,
15721 /*use_default_args=*/true);
15722 if (subargs != error_mark_node
15723 && !any_dependent_template_arguments_p (subargs))
15724 {
15725 elem = tsubst (TREE_TYPE (fn), subargs, tf_none, NULL_TREE);
15726 if (try_one_overload (tparms, targs, tempargs, parm,
15727 elem, strict, sub_strict, addr_p, explain_p)
15728 && (!goodfn || !same_type_p (goodfn, elem)))
15729 {
15730 goodfn = elem;
15731 ++good;
15732 }
15733 }
15734 else if (subargs)
15735 ++ok;
15736 }
15737 /* If no templates (or more than one) are fully resolved by the
15738 explicit arguments, this template-id is a non-deduced context; it
15739 could still be OK if we deduce all template arguments for the
15740 enclosing call through other arguments. */
15741 if (good != 1)
15742 good = ok;
15743 }
15744 else if (TREE_CODE (arg) != OVERLOAD
15745 && TREE_CODE (arg) != FUNCTION_DECL)
15746 /* If ARG is, for example, "(0, &f)" then its type will be unknown
15747 -- but the deduction does not succeed because the expression is
15748 not just the function on its own. */
15749 return false;
15750 else
15751 for (; arg; arg = OVL_NEXT (arg))
15752 if (try_one_overload (tparms, targs, tempargs, parm,
15753 TREE_TYPE (OVL_CURRENT (arg)),
15754 strict, sub_strict, addr_p, explain_p)
15755 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
15756 {
15757 goodfn = OVL_CURRENT (arg);
15758 ++good;
15759 }
15760
15761 /* [temp.deduct.type] A template-argument can be deduced from a pointer
15762 to function or pointer to member function argument if the set of
15763 overloaded functions does not contain function templates and at most
15764 one of a set of overloaded functions provides a unique match.
15765
15766 So if we found multiple possibilities, we return success but don't
15767 deduce anything. */
15768
15769 if (good == 1)
15770 {
15771 int i = TREE_VEC_LENGTH (targs);
15772 for (; i--; )
15773 if (TREE_VEC_ELT (tempargs, i))
15774 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (tempargs, i);
15775 }
15776 if (good)
15777 return true;
15778
15779 return false;
15780 }
15781
15782 /* Core DR 115: In contexts where deduction is done and fails, or in
15783 contexts where deduction is not done, if a template argument list is
15784 specified and it, along with any default template arguments, identifies
15785 a single function template specialization, then the template-id is an
15786 lvalue for the function template specialization. */
15787
15788 tree
15789 resolve_nondeduced_context (tree orig_expr)
15790 {
15791 tree expr, offset, baselink;
15792 bool addr;
15793
15794 if (!type_unknown_p (orig_expr))
15795 return orig_expr;
15796
15797 expr = orig_expr;
15798 addr = false;
15799 offset = NULL_TREE;
15800 baselink = NULL_TREE;
15801
15802 if (TREE_CODE (expr) == ADDR_EXPR)
15803 {
15804 expr = TREE_OPERAND (expr, 0);
15805 addr = true;
15806 }
15807 if (TREE_CODE (expr) == OFFSET_REF)
15808 {
15809 offset = expr;
15810 expr = TREE_OPERAND (expr, 1);
15811 }
15812 if (BASELINK_P (expr))
15813 {
15814 baselink = expr;
15815 expr = BASELINK_FUNCTIONS (expr);
15816 }
15817
15818 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
15819 {
15820 int good = 0;
15821 tree goodfn = NULL_TREE;
15822
15823 /* If we got some explicit template args, we need to plug them into
15824 the affected templates before we try to unify, in case the
15825 explicit args will completely resolve the templates in question. */
15826
15827 tree expl_subargs = TREE_OPERAND (expr, 1);
15828 tree arg = TREE_OPERAND (expr, 0);
15829 tree badfn = NULL_TREE;
15830 tree badargs = NULL_TREE;
15831
15832 for (; arg; arg = OVL_NEXT (arg))
15833 {
15834 tree fn = OVL_CURRENT (arg);
15835 tree subargs, elem;
15836
15837 if (TREE_CODE (fn) != TEMPLATE_DECL)
15838 continue;
15839
15840 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
15841 expl_subargs, NULL_TREE, tf_none,
15842 /*require_all_args=*/true,
15843 /*use_default_args=*/true);
15844 if (subargs != error_mark_node
15845 && !any_dependent_template_arguments_p (subargs))
15846 {
15847 elem = instantiate_template (fn, subargs, tf_none);
15848 if (elem == error_mark_node)
15849 {
15850 badfn = fn;
15851 badargs = subargs;
15852 }
15853 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
15854 {
15855 goodfn = elem;
15856 ++good;
15857 }
15858 }
15859 }
15860 if (good == 1)
15861 {
15862 mark_used (goodfn);
15863 expr = goodfn;
15864 if (baselink)
15865 expr = build_baselink (BASELINK_BINFO (baselink),
15866 BASELINK_ACCESS_BINFO (baselink),
15867 expr, BASELINK_OPTYPE (baselink));
15868 if (offset)
15869 {
15870 tree base
15871 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
15872 expr = build_offset_ref (base, expr, addr);
15873 }
15874 if (addr)
15875 expr = cp_build_addr_expr (expr, tf_warning_or_error);
15876 return expr;
15877 }
15878 else if (good == 0 && badargs)
15879 /* There were no good options and at least one bad one, so let the
15880 user know what the problem is. */
15881 instantiate_template (badfn, badargs, tf_warning_or_error);
15882 }
15883 return orig_expr;
15884 }
15885
15886 /* Subroutine of resolve_overloaded_unification; does deduction for a single
15887 overload. Fills TARGS with any deduced arguments, or error_mark_node if
15888 different overloads deduce different arguments for a given parm.
15889 ADDR_P is true if the expression for which deduction is being
15890 performed was of the form "& fn" rather than simply "fn".
15891
15892 Returns 1 on success. */
15893
15894 static int
15895 try_one_overload (tree tparms,
15896 tree orig_targs,
15897 tree targs,
15898 tree parm,
15899 tree arg,
15900 unification_kind_t strict,
15901 int sub_strict,
15902 bool addr_p,
15903 bool explain_p)
15904 {
15905 int nargs;
15906 tree tempargs;
15907 int i;
15908
15909 if (arg == error_mark_node)
15910 return 0;
15911
15912 /* [temp.deduct.type] A template-argument can be deduced from a pointer
15913 to function or pointer to member function argument if the set of
15914 overloaded functions does not contain function templates and at most
15915 one of a set of overloaded functions provides a unique match.
15916
15917 So if this is a template, just return success. */
15918
15919 if (uses_template_parms (arg))
15920 return 1;
15921
15922 if (TREE_CODE (arg) == METHOD_TYPE)
15923 arg = build_ptrmemfunc_type (build_pointer_type (arg));
15924 else if (addr_p)
15925 arg = build_pointer_type (arg);
15926
15927 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
15928
15929 /* We don't copy orig_targs for this because if we have already deduced
15930 some template args from previous args, unify would complain when we
15931 try to deduce a template parameter for the same argument, even though
15932 there isn't really a conflict. */
15933 nargs = TREE_VEC_LENGTH (targs);
15934 tempargs = make_tree_vec (nargs);
15935
15936 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
15937 return 0;
15938
15939 /* First make sure we didn't deduce anything that conflicts with
15940 explicitly specified args. */
15941 for (i = nargs; i--; )
15942 {
15943 tree elt = TREE_VEC_ELT (tempargs, i);
15944 tree oldelt = TREE_VEC_ELT (orig_targs, i);
15945
15946 if (!elt)
15947 /*NOP*/;
15948 else if (uses_template_parms (elt))
15949 /* Since we're unifying against ourselves, we will fill in
15950 template args used in the function parm list with our own
15951 template parms. Discard them. */
15952 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
15953 else if (oldelt && !template_args_equal (oldelt, elt))
15954 return 0;
15955 }
15956
15957 for (i = nargs; i--; )
15958 {
15959 tree elt = TREE_VEC_ELT (tempargs, i);
15960
15961 if (elt)
15962 TREE_VEC_ELT (targs, i) = elt;
15963 }
15964
15965 return 1;
15966 }
15967
15968 /* PARM is a template class (perhaps with unbound template
15969 parameters). ARG is a fully instantiated type. If ARG can be
15970 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
15971 TARGS are as for unify. */
15972
15973 static tree
15974 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
15975 bool explain_p)
15976 {
15977 tree copy_of_targs;
15978
15979 if (!CLASSTYPE_TEMPLATE_INFO (arg)
15980 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
15981 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
15982 return NULL_TREE;
15983
15984 /* We need to make a new template argument vector for the call to
15985 unify. If we used TARGS, we'd clutter it up with the result of
15986 the attempted unification, even if this class didn't work out.
15987 We also don't want to commit ourselves to all the unifications
15988 we've already done, since unification is supposed to be done on
15989 an argument-by-argument basis. In other words, consider the
15990 following pathological case:
15991
15992 template <int I, int J, int K>
15993 struct S {};
15994
15995 template <int I, int J>
15996 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
15997
15998 template <int I, int J, int K>
15999 void f(S<I, J, K>, S<I, I, I>);
16000
16001 void g() {
16002 S<0, 0, 0> s0;
16003 S<0, 1, 2> s2;
16004
16005 f(s0, s2);
16006 }
16007
16008 Now, by the time we consider the unification involving `s2', we
16009 already know that we must have `f<0, 0, 0>'. But, even though
16010 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
16011 because there are two ways to unify base classes of S<0, 1, 2>
16012 with S<I, I, I>. If we kept the already deduced knowledge, we
16013 would reject the possibility I=1. */
16014 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
16015
16016 /* If unification failed, we're done. */
16017 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
16018 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
16019 return NULL_TREE;
16020
16021 return arg;
16022 }
16023
16024 /* Given a template type PARM and a class type ARG, find the unique
16025 base type in ARG that is an instance of PARM. We do not examine
16026 ARG itself; only its base-classes. If there is not exactly one
16027 appropriate base class, return NULL_TREE. PARM may be the type of
16028 a partial specialization, as well as a plain template type. Used
16029 by unify. */
16030
16031 static enum template_base_result
16032 get_template_base (tree tparms, tree targs, tree parm, tree arg,
16033 bool explain_p, tree *result)
16034 {
16035 tree rval = NULL_TREE;
16036 tree binfo;
16037
16038 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
16039
16040 binfo = TYPE_BINFO (complete_type (arg));
16041 if (!binfo)
16042 {
16043 /* The type could not be completed. */
16044 *result = NULL_TREE;
16045 return tbr_incomplete_type;
16046 }
16047
16048 /* Walk in inheritance graph order. The search order is not
16049 important, and this avoids multiple walks of virtual bases. */
16050 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
16051 {
16052 tree r = try_class_unification (tparms, targs, parm,
16053 BINFO_TYPE (binfo), explain_p);
16054
16055 if (r)
16056 {
16057 /* If there is more than one satisfactory baseclass, then:
16058
16059 [temp.deduct.call]
16060
16061 If they yield more than one possible deduced A, the type
16062 deduction fails.
16063
16064 applies. */
16065 if (rval && !same_type_p (r, rval))
16066 {
16067 *result = NULL_TREE;
16068 return tbr_ambiguous_baseclass;
16069 }
16070
16071 rval = r;
16072 }
16073 }
16074
16075 *result = rval;
16076 return tbr_success;
16077 }
16078
16079 /* Returns the level of DECL, which declares a template parameter. */
16080
16081 static int
16082 template_decl_level (tree decl)
16083 {
16084 switch (TREE_CODE (decl))
16085 {
16086 case TYPE_DECL:
16087 case TEMPLATE_DECL:
16088 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
16089
16090 case PARM_DECL:
16091 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
16092
16093 default:
16094 gcc_unreachable ();
16095 }
16096 return 0;
16097 }
16098
16099 /* Decide whether ARG can be unified with PARM, considering only the
16100 cv-qualifiers of each type, given STRICT as documented for unify.
16101 Returns nonzero iff the unification is OK on that basis. */
16102
16103 static int
16104 check_cv_quals_for_unify (int strict, tree arg, tree parm)
16105 {
16106 int arg_quals = cp_type_quals (arg);
16107 int parm_quals = cp_type_quals (parm);
16108
16109 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
16110 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
16111 {
16112 /* Although a CVR qualifier is ignored when being applied to a
16113 substituted template parameter ([8.3.2]/1 for example), that
16114 does not allow us to unify "const T" with "int&" because both
16115 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
16116 It is ok when we're allowing additional CV qualifiers
16117 at the outer level [14.8.2.1]/3,1st bullet. */
16118 if ((TREE_CODE (arg) == REFERENCE_TYPE
16119 || TREE_CODE (arg) == FUNCTION_TYPE
16120 || TREE_CODE (arg) == METHOD_TYPE)
16121 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
16122 return 0;
16123
16124 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
16125 && (parm_quals & TYPE_QUAL_RESTRICT))
16126 return 0;
16127 }
16128
16129 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
16130 && (arg_quals & parm_quals) != parm_quals)
16131 return 0;
16132
16133 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
16134 && (parm_quals & arg_quals) != arg_quals)
16135 return 0;
16136
16137 return 1;
16138 }
16139
16140 /* Determines the LEVEL and INDEX for the template parameter PARM. */
16141 void
16142 template_parm_level_and_index (tree parm, int* level, int* index)
16143 {
16144 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
16145 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
16146 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
16147 {
16148 *index = TEMPLATE_TYPE_IDX (parm);
16149 *level = TEMPLATE_TYPE_LEVEL (parm);
16150 }
16151 else
16152 {
16153 *index = TEMPLATE_PARM_IDX (parm);
16154 *level = TEMPLATE_PARM_LEVEL (parm);
16155 }
16156 }
16157
16158 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
16159 do { \
16160 if (unify (TP, TA, P, A, S, EP)) \
16161 return 1; \
16162 } while (0);
16163
16164 /* Unifies the remaining arguments in PACKED_ARGS with the pack
16165 expansion at the end of PACKED_PARMS. Returns 0 if the type
16166 deduction succeeds, 1 otherwise. STRICT is the same as in
16167 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
16168 call argument list. We'll need to adjust the arguments to make them
16169 types. SUBR tells us if this is from a recursive call to
16170 type_unification_real, or for comparing two template argument
16171 lists. */
16172
16173 static int
16174 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
16175 tree packed_args, unification_kind_t strict,
16176 bool subr, bool explain_p)
16177 {
16178 tree parm
16179 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
16180 tree pattern = PACK_EXPANSION_PATTERN (parm);
16181 tree pack, packs = NULL_TREE;
16182 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
16183 int len = TREE_VEC_LENGTH (packed_args);
16184
16185 /* Determine the parameter packs we will be deducing from the
16186 pattern, and record their current deductions. */
16187 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
16188 pack; pack = TREE_CHAIN (pack))
16189 {
16190 tree parm_pack = TREE_VALUE (pack);
16191 int idx, level;
16192
16193 /* Determine the index and level of this parameter pack. */
16194 template_parm_level_and_index (parm_pack, &level, &idx);
16195
16196 /* Keep track of the parameter packs and their corresponding
16197 argument packs. */
16198 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
16199 TREE_TYPE (packs) = make_tree_vec (len - start);
16200 }
16201
16202 /* Loop through all of the arguments that have not yet been
16203 unified and unify each with the pattern. */
16204 for (i = start; i < len; i++)
16205 {
16206 tree parm;
16207 bool any_explicit = false;
16208 tree arg = TREE_VEC_ELT (packed_args, i);
16209
16210 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
16211 or the element of its argument pack at the current index if
16212 this argument was explicitly specified. */
16213 for (pack = packs; pack; pack = TREE_CHAIN (pack))
16214 {
16215 int idx, level;
16216 tree arg, pargs;
16217 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
16218
16219 arg = NULL_TREE;
16220 if (TREE_VALUE (pack)
16221 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
16222 && (i - start < TREE_VEC_LENGTH (pargs)))
16223 {
16224 any_explicit = true;
16225 arg = TREE_VEC_ELT (pargs, i - start);
16226 }
16227 TMPL_ARG (targs, level, idx) = arg;
16228 }
16229
16230 /* If we had explicit template arguments, substitute them into the
16231 pattern before deduction. */
16232 if (any_explicit)
16233 {
16234 /* Some arguments might still be unspecified or dependent. */
16235 bool dependent;
16236 ++processing_template_decl;
16237 dependent = any_dependent_template_arguments_p (targs);
16238 if (!dependent)
16239 --processing_template_decl;
16240 parm = tsubst (pattern, targs,
16241 explain_p ? tf_warning_or_error : tf_none,
16242 NULL_TREE);
16243 if (dependent)
16244 --processing_template_decl;
16245 if (parm == error_mark_node)
16246 return 1;
16247 }
16248 else
16249 parm = pattern;
16250
16251 /* Unify the pattern with the current argument. */
16252 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
16253 LOOKUP_IMPLICIT, explain_p))
16254 return 1;
16255
16256 /* For each parameter pack, collect the deduced value. */
16257 for (pack = packs; pack; pack = TREE_CHAIN (pack))
16258 {
16259 int idx, level;
16260 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
16261
16262 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
16263 TMPL_ARG (targs, level, idx);
16264 }
16265 }
16266
16267 /* Verify that the results of unification with the parameter packs
16268 produce results consistent with what we've seen before, and make
16269 the deduced argument packs available. */
16270 for (pack = packs; pack; pack = TREE_CHAIN (pack))
16271 {
16272 tree old_pack = TREE_VALUE (pack);
16273 tree new_args = TREE_TYPE (pack);
16274 int i, len = TREE_VEC_LENGTH (new_args);
16275 int idx, level;
16276 bool nondeduced_p = false;
16277
16278 /* By default keep the original deduced argument pack.
16279 If necessary, more specific code is going to update the
16280 resulting deduced argument later down in this function. */
16281 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
16282 TMPL_ARG (targs, level, idx) = old_pack;
16283
16284 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
16285 actually deduce anything. */
16286 for (i = 0; i < len && !nondeduced_p; ++i)
16287 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
16288 nondeduced_p = true;
16289 if (nondeduced_p)
16290 continue;
16291
16292 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
16293 {
16294 /* If we had fewer function args than explicit template args,
16295 just use the explicits. */
16296 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
16297 int explicit_len = TREE_VEC_LENGTH (explicit_args);
16298 if (len < explicit_len)
16299 new_args = explicit_args;
16300 }
16301
16302 if (!old_pack)
16303 {
16304 tree result;
16305 /* Build the deduced *_ARGUMENT_PACK. */
16306 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
16307 {
16308 result = make_node (NONTYPE_ARGUMENT_PACK);
16309 TREE_TYPE (result) =
16310 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
16311 TREE_CONSTANT (result) = 1;
16312 }
16313 else
16314 result = cxx_make_type (TYPE_ARGUMENT_PACK);
16315
16316 SET_ARGUMENT_PACK_ARGS (result, new_args);
16317
16318 /* Note the deduced argument packs for this parameter
16319 pack. */
16320 TMPL_ARG (targs, level, idx) = result;
16321 }
16322 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
16323 && (ARGUMENT_PACK_ARGS (old_pack)
16324 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
16325 {
16326 /* We only had the explicitly-provided arguments before, but
16327 now we have a complete set of arguments. */
16328 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
16329
16330 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
16331 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
16332 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
16333 }
16334 else
16335 {
16336 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
16337 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
16338
16339 if (!comp_template_args_with_info (old_args, new_args,
16340 &bad_old_arg, &bad_new_arg))
16341 /* Inconsistent unification of this parameter pack. */
16342 return unify_parameter_pack_inconsistent (explain_p,
16343 bad_old_arg,
16344 bad_new_arg);
16345 }
16346 }
16347
16348 return unify_success (explain_p);
16349 }
16350
16351 /* Deduce the value of template parameters. TPARMS is the (innermost)
16352 set of template parameters to a template. TARGS is the bindings
16353 for those template parameters, as determined thus far; TARGS may
16354 include template arguments for outer levels of template parameters
16355 as well. PARM is a parameter to a template function, or a
16356 subcomponent of that parameter; ARG is the corresponding argument.
16357 This function attempts to match PARM with ARG in a manner
16358 consistent with the existing assignments in TARGS. If more values
16359 are deduced, then TARGS is updated.
16360
16361 Returns 0 if the type deduction succeeds, 1 otherwise. The
16362 parameter STRICT is a bitwise or of the following flags:
16363
16364 UNIFY_ALLOW_NONE:
16365 Require an exact match between PARM and ARG.
16366 UNIFY_ALLOW_MORE_CV_QUAL:
16367 Allow the deduced ARG to be more cv-qualified (by qualification
16368 conversion) than ARG.
16369 UNIFY_ALLOW_LESS_CV_QUAL:
16370 Allow the deduced ARG to be less cv-qualified than ARG.
16371 UNIFY_ALLOW_DERIVED:
16372 Allow the deduced ARG to be a template base class of ARG,
16373 or a pointer to a template base class of the type pointed to by
16374 ARG.
16375 UNIFY_ALLOW_INTEGER:
16376 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
16377 case for more information.
16378 UNIFY_ALLOW_OUTER_LEVEL:
16379 This is the outermost level of a deduction. Used to determine validity
16380 of qualification conversions. A valid qualification conversion must
16381 have const qualified pointers leading up to the inner type which
16382 requires additional CV quals, except at the outer level, where const
16383 is not required [conv.qual]. It would be normal to set this flag in
16384 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
16385 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
16386 This is the outermost level of a deduction, and PARM can be more CV
16387 qualified at this point.
16388 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
16389 This is the outermost level of a deduction, and PARM can be less CV
16390 qualified at this point. */
16391
16392 static int
16393 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
16394 bool explain_p)
16395 {
16396 int idx;
16397 tree targ;
16398 tree tparm;
16399 int strict_in = strict;
16400
16401 /* I don't think this will do the right thing with respect to types.
16402 But the only case I've seen it in so far has been array bounds, where
16403 signedness is the only information lost, and I think that will be
16404 okay. */
16405 while (TREE_CODE (parm) == NOP_EXPR)
16406 parm = TREE_OPERAND (parm, 0);
16407
16408 if (arg == error_mark_node)
16409 return unify_invalid (explain_p);
16410 if (arg == unknown_type_node
16411 || arg == init_list_type_node)
16412 /* We can't deduce anything from this, but we might get all the
16413 template args from other function args. */
16414 return unify_success (explain_p);
16415
16416 /* If PARM uses template parameters, then we can't bail out here,
16417 even if ARG == PARM, since we won't record unifications for the
16418 template parameters. We might need them if we're trying to
16419 figure out which of two things is more specialized. */
16420 if (arg == parm && !uses_template_parms (parm))
16421 return unify_success (explain_p);
16422
16423 /* Handle init lists early, so the rest of the function can assume
16424 we're dealing with a type. */
16425 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
16426 {
16427 tree elt, elttype;
16428 unsigned i;
16429 tree orig_parm = parm;
16430
16431 /* Replace T with std::initializer_list<T> for deduction. */
16432 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
16433 && flag_deduce_init_list)
16434 parm = listify (parm);
16435
16436 if (!is_std_init_list (parm))
16437 /* We can only deduce from an initializer list argument if the
16438 parameter is std::initializer_list; otherwise this is a
16439 non-deduced context. */
16440 return unify_success (explain_p);
16441
16442 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
16443
16444 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
16445 {
16446 int elt_strict = strict;
16447
16448 if (elt == error_mark_node)
16449 return unify_invalid (explain_p);
16450
16451 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
16452 {
16453 tree type = TREE_TYPE (elt);
16454 /* It should only be possible to get here for a call. */
16455 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
16456 elt_strict |= maybe_adjust_types_for_deduction
16457 (DEDUCE_CALL, &elttype, &type, elt);
16458 elt = type;
16459 }
16460
16461 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
16462 explain_p);
16463 }
16464
16465 /* If the std::initializer_list<T> deduction worked, replace the
16466 deduced A with std::initializer_list<A>. */
16467 if (orig_parm != parm)
16468 {
16469 idx = TEMPLATE_TYPE_IDX (orig_parm);
16470 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
16471 targ = listify (targ);
16472 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
16473 }
16474 return unify_success (explain_p);
16475 }
16476
16477 /* Immediately reject some pairs that won't unify because of
16478 cv-qualification mismatches. */
16479 if (TREE_CODE (arg) == TREE_CODE (parm)
16480 && TYPE_P (arg)
16481 /* It is the elements of the array which hold the cv quals of an array
16482 type, and the elements might be template type parms. We'll check
16483 when we recurse. */
16484 && TREE_CODE (arg) != ARRAY_TYPE
16485 /* We check the cv-qualifiers when unifying with template type
16486 parameters below. We want to allow ARG `const T' to unify with
16487 PARM `T' for example, when computing which of two templates
16488 is more specialized, for example. */
16489 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
16490 && !check_cv_quals_for_unify (strict_in, arg, parm))
16491 return unify_cv_qual_mismatch (explain_p, parm, arg);
16492
16493 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
16494 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
16495 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
16496 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
16497 strict &= ~UNIFY_ALLOW_DERIVED;
16498 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
16499 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
16500
16501 switch (TREE_CODE (parm))
16502 {
16503 case TYPENAME_TYPE:
16504 case SCOPE_REF:
16505 case UNBOUND_CLASS_TEMPLATE:
16506 /* In a type which contains a nested-name-specifier, template
16507 argument values cannot be deduced for template parameters used
16508 within the nested-name-specifier. */
16509 return unify_success (explain_p);
16510
16511 case TEMPLATE_TYPE_PARM:
16512 case TEMPLATE_TEMPLATE_PARM:
16513 case BOUND_TEMPLATE_TEMPLATE_PARM:
16514 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
16515 if (tparm == error_mark_node)
16516 return unify_invalid (explain_p);
16517
16518 if (TEMPLATE_TYPE_LEVEL (parm)
16519 != template_decl_level (tparm))
16520 /* The PARM is not one we're trying to unify. Just check
16521 to see if it matches ARG. */
16522 {
16523 if (TREE_CODE (arg) == TREE_CODE (parm)
16524 && (is_auto (parm) ? is_auto (arg)
16525 : same_type_p (parm, arg)))
16526 return unify_success (explain_p);
16527 else
16528 return unify_type_mismatch (explain_p, parm, arg);
16529 }
16530 idx = TEMPLATE_TYPE_IDX (parm);
16531 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
16532 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
16533 if (tparm == error_mark_node)
16534 return unify_invalid (explain_p);
16535
16536 /* Check for mixed types and values. */
16537 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
16538 && TREE_CODE (tparm) != TYPE_DECL)
16539 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
16540 && TREE_CODE (tparm) != TEMPLATE_DECL))
16541 gcc_unreachable ();
16542
16543 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
16544 {
16545 /* ARG must be constructed from a template class or a template
16546 template parameter. */
16547 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
16548 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
16549 return unify_template_deduction_failure (explain_p, parm, arg);
16550
16551 {
16552 tree parmvec = TYPE_TI_ARGS (parm);
16553 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
16554 tree full_argvec = add_to_template_args (targs, argvec);
16555 tree parm_parms
16556 = DECL_INNERMOST_TEMPLATE_PARMS
16557 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
16558 int i, len;
16559 int parm_variadic_p = 0;
16560
16561 /* The resolution to DR150 makes clear that default
16562 arguments for an N-argument may not be used to bind T
16563 to a template template parameter with fewer than N
16564 parameters. It is not safe to permit the binding of
16565 default arguments as an extension, as that may change
16566 the meaning of a conforming program. Consider:
16567
16568 struct Dense { static const unsigned int dim = 1; };
16569
16570 template <template <typename> class View,
16571 typename Block>
16572 void operator+(float, View<Block> const&);
16573
16574 template <typename Block,
16575 unsigned int Dim = Block::dim>
16576 struct Lvalue_proxy { operator float() const; };
16577
16578 void
16579 test_1d (void) {
16580 Lvalue_proxy<Dense> p;
16581 float b;
16582 b + p;
16583 }
16584
16585 Here, if Lvalue_proxy is permitted to bind to View, then
16586 the global operator+ will be used; if they are not, the
16587 Lvalue_proxy will be converted to float. */
16588 if (coerce_template_parms (parm_parms,
16589 full_argvec,
16590 TYPE_TI_TEMPLATE (parm),
16591 (explain_p
16592 ? tf_warning_or_error
16593 : tf_none),
16594 /*require_all_args=*/true,
16595 /*use_default_args=*/false)
16596 == error_mark_node)
16597 return 1;
16598
16599 /* Deduce arguments T, i from TT<T> or TT<i>.
16600 We check each element of PARMVEC and ARGVEC individually
16601 rather than the whole TREE_VEC since they can have
16602 different number of elements. */
16603
16604 parmvec = expand_template_argument_pack (parmvec);
16605 argvec = expand_template_argument_pack (argvec);
16606
16607 len = TREE_VEC_LENGTH (parmvec);
16608
16609 /* Check if the parameters end in a pack, making them
16610 variadic. */
16611 if (len > 0
16612 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
16613 parm_variadic_p = 1;
16614
16615 for (i = 0; i < len - parm_variadic_p; ++i)
16616 /* If the template argument list of P contains a pack
16617 expansion that is not the last template argument, the
16618 entire template argument list is a non-deduced
16619 context. */
16620 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
16621 return unify_success (explain_p);
16622
16623 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
16624 return unify_too_few_arguments (explain_p,
16625 TREE_VEC_LENGTH (argvec), len);
16626
16627 for (i = 0; i < len - parm_variadic_p; ++i)
16628 {
16629 RECUR_AND_CHECK_FAILURE (tparms, targs,
16630 TREE_VEC_ELT (parmvec, i),
16631 TREE_VEC_ELT (argvec, i),
16632 UNIFY_ALLOW_NONE, explain_p);
16633 }
16634
16635 if (parm_variadic_p
16636 && unify_pack_expansion (tparms, targs,
16637 parmvec, argvec,
16638 DEDUCE_EXACT,
16639 /*subr=*/true, explain_p))
16640 return 1;
16641 }
16642 arg = TYPE_TI_TEMPLATE (arg);
16643
16644 /* Fall through to deduce template name. */
16645 }
16646
16647 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
16648 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
16649 {
16650 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
16651
16652 /* Simple cases: Value already set, does match or doesn't. */
16653 if (targ != NULL_TREE && template_args_equal (targ, arg))
16654 return unify_success (explain_p);
16655 else if (targ)
16656 return unify_inconsistency (explain_p, parm, targ, arg);
16657 }
16658 else
16659 {
16660 /* If PARM is `const T' and ARG is only `int', we don't have
16661 a match unless we are allowing additional qualification.
16662 If ARG is `const int' and PARM is just `T' that's OK;
16663 that binds `const int' to `T'. */
16664 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
16665 arg, parm))
16666 return unify_cv_qual_mismatch (explain_p, parm, arg);
16667
16668 /* Consider the case where ARG is `const volatile int' and
16669 PARM is `const T'. Then, T should be `volatile int'. */
16670 arg = cp_build_qualified_type_real
16671 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
16672 if (arg == error_mark_node)
16673 return unify_invalid (explain_p);
16674
16675 /* Simple cases: Value already set, does match or doesn't. */
16676 if (targ != NULL_TREE && same_type_p (targ, arg))
16677 return unify_success (explain_p);
16678 else if (targ)
16679 return unify_inconsistency (explain_p, parm, targ, arg);
16680
16681 /* Make sure that ARG is not a variable-sized array. (Note
16682 that were talking about variable-sized arrays (like
16683 `int[n]'), rather than arrays of unknown size (like
16684 `int[]').) We'll get very confused by such a type since
16685 the bound of the array is not constant, and therefore
16686 not mangleable. Besides, such types are not allowed in
16687 ISO C++, so we can do as we please here. We do allow
16688 them for 'auto' deduction, since that isn't ABI-exposed. */
16689 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
16690 return unify_vla_arg (explain_p, arg);
16691
16692 /* Strip typedefs as in convert_template_argument. */
16693 arg = canonicalize_type_argument (arg, tf_none);
16694 }
16695
16696 /* If ARG is a parameter pack or an expansion, we cannot unify
16697 against it unless PARM is also a parameter pack. */
16698 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
16699 && !template_parameter_pack_p (parm))
16700 return unify_parameter_pack_mismatch (explain_p, parm, arg);
16701
16702 /* If the argument deduction results is a METHOD_TYPE,
16703 then there is a problem.
16704 METHOD_TYPE doesn't map to any real C++ type the result of
16705 the deduction can not be of that type. */
16706 if (TREE_CODE (arg) == METHOD_TYPE)
16707 return unify_method_type_error (explain_p, arg);
16708
16709 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
16710 return unify_success (explain_p);
16711
16712 case TEMPLATE_PARM_INDEX:
16713 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
16714 if (tparm == error_mark_node)
16715 return unify_invalid (explain_p);
16716
16717 if (TEMPLATE_PARM_LEVEL (parm)
16718 != template_decl_level (tparm))
16719 {
16720 /* The PARM is not one we're trying to unify. Just check
16721 to see if it matches ARG. */
16722 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
16723 && cp_tree_equal (parm, arg));
16724 if (result)
16725 unify_expression_unequal (explain_p, parm, arg);
16726 return result;
16727 }
16728
16729 idx = TEMPLATE_PARM_IDX (parm);
16730 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
16731
16732 if (targ)
16733 {
16734 int x = !cp_tree_equal (targ, arg);
16735 if (x)
16736 unify_inconsistency (explain_p, parm, targ, arg);
16737 return x;
16738 }
16739
16740 /* [temp.deduct.type] If, in the declaration of a function template
16741 with a non-type template-parameter, the non-type
16742 template-parameter is used in an expression in the function
16743 parameter-list and, if the corresponding template-argument is
16744 deduced, the template-argument type shall match the type of the
16745 template-parameter exactly, except that a template-argument
16746 deduced from an array bound may be of any integral type.
16747 The non-type parameter might use already deduced type parameters. */
16748 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
16749 if (!TREE_TYPE (arg))
16750 /* Template-parameter dependent expression. Just accept it for now.
16751 It will later be processed in convert_template_argument. */
16752 ;
16753 else if (same_type_p (TREE_TYPE (arg), tparm))
16754 /* OK */;
16755 else if ((strict & UNIFY_ALLOW_INTEGER)
16756 && CP_INTEGRAL_TYPE_P (tparm))
16757 /* Convert the ARG to the type of PARM; the deduced non-type
16758 template argument must exactly match the types of the
16759 corresponding parameter. */
16760 arg = fold (build_nop (tparm, arg));
16761 else if (uses_template_parms (tparm))
16762 /* We haven't deduced the type of this parameter yet. Try again
16763 later. */
16764 return unify_success (explain_p);
16765 else
16766 return unify_type_mismatch (explain_p, tparm, arg);
16767
16768 /* If ARG is a parameter pack or an expansion, we cannot unify
16769 against it unless PARM is also a parameter pack. */
16770 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
16771 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
16772 return unify_parameter_pack_mismatch (explain_p, parm, arg);
16773
16774 arg = strip_typedefs_expr (arg);
16775 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
16776 return unify_success (explain_p);
16777
16778 case PTRMEM_CST:
16779 {
16780 /* A pointer-to-member constant can be unified only with
16781 another constant. */
16782 if (TREE_CODE (arg) != PTRMEM_CST)
16783 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
16784
16785 /* Just unify the class member. It would be useless (and possibly
16786 wrong, depending on the strict flags) to unify also
16787 PTRMEM_CST_CLASS, because we want to be sure that both parm and
16788 arg refer to the same variable, even if through different
16789 classes. For instance:
16790
16791 struct A { int x; };
16792 struct B : A { };
16793
16794 Unification of &A::x and &B::x must succeed. */
16795 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
16796 PTRMEM_CST_MEMBER (arg), strict, explain_p);
16797 }
16798
16799 case POINTER_TYPE:
16800 {
16801 if (!TYPE_PTR_P (arg))
16802 return unify_type_mismatch (explain_p, parm, arg);
16803
16804 /* [temp.deduct.call]
16805
16806 A can be another pointer or pointer to member type that can
16807 be converted to the deduced A via a qualification
16808 conversion (_conv.qual_).
16809
16810 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
16811 This will allow for additional cv-qualification of the
16812 pointed-to types if appropriate. */
16813
16814 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
16815 /* The derived-to-base conversion only persists through one
16816 level of pointers. */
16817 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
16818
16819 return unify (tparms, targs, TREE_TYPE (parm),
16820 TREE_TYPE (arg), strict, explain_p);
16821 }
16822
16823 case REFERENCE_TYPE:
16824 if (TREE_CODE (arg) != REFERENCE_TYPE)
16825 return unify_type_mismatch (explain_p, parm, arg);
16826 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
16827 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
16828
16829 case ARRAY_TYPE:
16830 if (TREE_CODE (arg) != ARRAY_TYPE)
16831 return unify_type_mismatch (explain_p, parm, arg);
16832 if ((TYPE_DOMAIN (parm) == NULL_TREE)
16833 != (TYPE_DOMAIN (arg) == NULL_TREE))
16834 return unify_type_mismatch (explain_p, parm, arg);
16835 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
16836 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
16837 if (TYPE_DOMAIN (parm) != NULL_TREE)
16838 {
16839 tree parm_max;
16840 tree arg_max;
16841 bool parm_cst;
16842 bool arg_cst;
16843
16844 /* Our representation of array types uses "N - 1" as the
16845 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
16846 not an integer constant. We cannot unify arbitrarily
16847 complex expressions, so we eliminate the MINUS_EXPRs
16848 here. */
16849 parm_max = TYPE_MAX_VALUE (TYPE_DOMAIN (parm));
16850 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
16851 if (!parm_cst)
16852 {
16853 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
16854 parm_max = TREE_OPERAND (parm_max, 0);
16855 }
16856 arg_max = TYPE_MAX_VALUE (TYPE_DOMAIN (arg));
16857 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
16858 if (!arg_cst)
16859 {
16860 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
16861 trying to unify the type of a variable with the type
16862 of a template parameter. For example:
16863
16864 template <unsigned int N>
16865 void f (char (&) [N]);
16866 int g();
16867 void h(int i) {
16868 char a[g(i)];
16869 f(a);
16870 }
16871
16872 Here, the type of the ARG will be "int [g(i)]", and
16873 may be a SAVE_EXPR, etc. */
16874 if (TREE_CODE (arg_max) != MINUS_EXPR)
16875 return unify_vla_arg (explain_p, arg);
16876 arg_max = TREE_OPERAND (arg_max, 0);
16877 }
16878
16879 /* If only one of the bounds used a MINUS_EXPR, compensate
16880 by adding one to the other bound. */
16881 if (parm_cst && !arg_cst)
16882 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
16883 integer_type_node,
16884 parm_max,
16885 integer_one_node);
16886 else if (arg_cst && !parm_cst)
16887 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
16888 integer_type_node,
16889 arg_max,
16890 integer_one_node);
16891
16892 RECUR_AND_CHECK_FAILURE (tparms, targs, parm_max, arg_max,
16893 UNIFY_ALLOW_INTEGER, explain_p);
16894 }
16895 return unify_success (explain_p);
16896
16897 case REAL_TYPE:
16898 case COMPLEX_TYPE:
16899 case VECTOR_TYPE:
16900 case INTEGER_TYPE:
16901 case BOOLEAN_TYPE:
16902 case ENUMERAL_TYPE:
16903 case VOID_TYPE:
16904 case NULLPTR_TYPE:
16905 if (TREE_CODE (arg) != TREE_CODE (parm))
16906 return unify_type_mismatch (explain_p, parm, arg);
16907
16908 /* We have already checked cv-qualification at the top of the
16909 function. */
16910 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
16911 return unify_type_mismatch (explain_p, parm, arg);
16912
16913 /* As far as unification is concerned, this wins. Later checks
16914 will invalidate it if necessary. */
16915 return unify_success (explain_p);
16916
16917 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
16918 /* Type INTEGER_CST can come from ordinary constant template args. */
16919 case INTEGER_CST:
16920 while (TREE_CODE (arg) == NOP_EXPR)
16921 arg = TREE_OPERAND (arg, 0);
16922
16923 if (TREE_CODE (arg) != INTEGER_CST)
16924 return unify_template_argument_mismatch (explain_p, parm, arg);
16925 return (tree_int_cst_equal (parm, arg)
16926 ? unify_success (explain_p)
16927 : unify_template_argument_mismatch (explain_p, parm, arg));
16928
16929 case TREE_VEC:
16930 {
16931 int i, len, argslen;
16932 int parm_variadic_p = 0;
16933
16934 if (TREE_CODE (arg) != TREE_VEC)
16935 return unify_template_argument_mismatch (explain_p, parm, arg);
16936
16937 len = TREE_VEC_LENGTH (parm);
16938 argslen = TREE_VEC_LENGTH (arg);
16939
16940 /* Check for pack expansions in the parameters. */
16941 for (i = 0; i < len; ++i)
16942 {
16943 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
16944 {
16945 if (i == len - 1)
16946 /* We can unify against something with a trailing
16947 parameter pack. */
16948 parm_variadic_p = 1;
16949 else
16950 /* [temp.deduct.type]/9: If the template argument list of
16951 P contains a pack expansion that is not the last
16952 template argument, the entire template argument list
16953 is a non-deduced context. */
16954 return unify_success (explain_p);
16955 }
16956 }
16957
16958 /* If we don't have enough arguments to satisfy the parameters
16959 (not counting the pack expression at the end), or we have
16960 too many arguments for a parameter list that doesn't end in
16961 a pack expression, we can't unify. */
16962 if (parm_variadic_p
16963 ? argslen < len - parm_variadic_p
16964 : argslen != len)
16965 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
16966
16967 /* Unify all of the parameters that precede the (optional)
16968 pack expression. */
16969 for (i = 0; i < len - parm_variadic_p; ++i)
16970 {
16971 RECUR_AND_CHECK_FAILURE (tparms, targs,
16972 TREE_VEC_ELT (parm, i),
16973 TREE_VEC_ELT (arg, i),
16974 UNIFY_ALLOW_NONE, explain_p);
16975 }
16976 if (parm_variadic_p)
16977 return unify_pack_expansion (tparms, targs, parm, arg,
16978 DEDUCE_EXACT,
16979 /*subr=*/true, explain_p);
16980 return unify_success (explain_p);
16981 }
16982
16983 case RECORD_TYPE:
16984 case UNION_TYPE:
16985 if (TREE_CODE (arg) != TREE_CODE (parm))
16986 return unify_type_mismatch (explain_p, parm, arg);
16987
16988 if (TYPE_PTRMEMFUNC_P (parm))
16989 {
16990 if (!TYPE_PTRMEMFUNC_P (arg))
16991 return unify_type_mismatch (explain_p, parm, arg);
16992
16993 return unify (tparms, targs,
16994 TYPE_PTRMEMFUNC_FN_TYPE (parm),
16995 TYPE_PTRMEMFUNC_FN_TYPE (arg),
16996 strict, explain_p);
16997 }
16998
16999 if (CLASSTYPE_TEMPLATE_INFO (parm))
17000 {
17001 tree t = NULL_TREE;
17002
17003 if (strict_in & UNIFY_ALLOW_DERIVED)
17004 {
17005 /* First, we try to unify the PARM and ARG directly. */
17006 t = try_class_unification (tparms, targs,
17007 parm, arg, explain_p);
17008
17009 if (!t)
17010 {
17011 /* Fallback to the special case allowed in
17012 [temp.deduct.call]:
17013
17014 If P is a class, and P has the form
17015 template-id, then A can be a derived class of
17016 the deduced A. Likewise, if P is a pointer to
17017 a class of the form template-id, A can be a
17018 pointer to a derived class pointed to by the
17019 deduced A. */
17020 enum template_base_result r;
17021 r = get_template_base (tparms, targs, parm, arg,
17022 explain_p, &t);
17023
17024 if (!t)
17025 return unify_no_common_base (explain_p, r, parm, arg);
17026 }
17027 }
17028 else if (CLASSTYPE_TEMPLATE_INFO (arg)
17029 && (CLASSTYPE_TI_TEMPLATE (parm)
17030 == CLASSTYPE_TI_TEMPLATE (arg)))
17031 /* Perhaps PARM is something like S<U> and ARG is S<int>.
17032 Then, we should unify `int' and `U'. */
17033 t = arg;
17034 else
17035 /* There's no chance of unification succeeding. */
17036 return unify_type_mismatch (explain_p, parm, arg);
17037
17038 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
17039 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
17040 }
17041 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
17042 return unify_type_mismatch (explain_p, parm, arg);
17043 return unify_success (explain_p);
17044
17045 case METHOD_TYPE:
17046 case FUNCTION_TYPE:
17047 {
17048 unsigned int nargs;
17049 tree *args;
17050 tree a;
17051 unsigned int i;
17052
17053 if (TREE_CODE (arg) != TREE_CODE (parm))
17054 return unify_type_mismatch (explain_p, parm, arg);
17055
17056 /* CV qualifications for methods can never be deduced, they must
17057 match exactly. We need to check them explicitly here,
17058 because type_unification_real treats them as any other
17059 cv-qualified parameter. */
17060 if (TREE_CODE (parm) == METHOD_TYPE
17061 && (!check_cv_quals_for_unify
17062 (UNIFY_ALLOW_NONE,
17063 class_of_this_parm (arg),
17064 class_of_this_parm (parm))))
17065 return unify_cv_qual_mismatch (explain_p, parm, arg);
17066
17067 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
17068 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
17069
17070 nargs = list_length (TYPE_ARG_TYPES (arg));
17071 args = XALLOCAVEC (tree, nargs);
17072 for (a = TYPE_ARG_TYPES (arg), i = 0;
17073 a != NULL_TREE && a != void_list_node;
17074 a = TREE_CHAIN (a), ++i)
17075 args[i] = TREE_VALUE (a);
17076 nargs = i;
17077
17078 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
17079 args, nargs, 1, DEDUCE_EXACT,
17080 LOOKUP_NORMAL, explain_p);
17081 }
17082
17083 case OFFSET_TYPE:
17084 /* Unify a pointer to member with a pointer to member function, which
17085 deduces the type of the member as a function type. */
17086 if (TYPE_PTRMEMFUNC_P (arg))
17087 {
17088 /* Check top-level cv qualifiers */
17089 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
17090 return unify_cv_qual_mismatch (explain_p, parm, arg);
17091
17092 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
17093 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
17094 UNIFY_ALLOW_NONE, explain_p);
17095
17096 /* Determine the type of the function we are unifying against. */
17097 tree fntype = static_fn_type (arg);
17098
17099 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
17100 }
17101
17102 if (TREE_CODE (arg) != OFFSET_TYPE)
17103 return unify_type_mismatch (explain_p, parm, arg);
17104 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
17105 TYPE_OFFSET_BASETYPE (arg),
17106 UNIFY_ALLOW_NONE, explain_p);
17107 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
17108 strict, explain_p);
17109
17110 case CONST_DECL:
17111 if (DECL_TEMPLATE_PARM_P (parm))
17112 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
17113 if (arg != integral_constant_value (parm))
17114 return unify_template_argument_mismatch (explain_p, parm, arg);
17115 return unify_success (explain_p);
17116
17117 case FIELD_DECL:
17118 case TEMPLATE_DECL:
17119 /* Matched cases are handled by the ARG == PARM test above. */
17120 return unify_template_argument_mismatch (explain_p, parm, arg);
17121
17122 case VAR_DECL:
17123 /* A non-type template parameter that is a variable should be a
17124 an integral constant, in which case, it whould have been
17125 folded into its (constant) value. So we should not be getting
17126 a variable here. */
17127 gcc_unreachable ();
17128
17129 case TYPE_ARGUMENT_PACK:
17130 case NONTYPE_ARGUMENT_PACK:
17131 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
17132 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
17133
17134 case TYPEOF_TYPE:
17135 case DECLTYPE_TYPE:
17136 case UNDERLYING_TYPE:
17137 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
17138 or UNDERLYING_TYPE nodes. */
17139 return unify_success (explain_p);
17140
17141 case ERROR_MARK:
17142 /* Unification fails if we hit an error node. */
17143 return unify_invalid (explain_p);
17144
17145 default:
17146 /* An unresolved overload is a nondeduced context. */
17147 if (is_overloaded_fn (parm) || type_unknown_p (parm))
17148 return unify_success (explain_p);
17149 gcc_assert (EXPR_P (parm));
17150
17151 /* We must be looking at an expression. This can happen with
17152 something like:
17153
17154 template <int I>
17155 void foo(S<I>, S<I + 2>);
17156
17157 This is a "nondeduced context":
17158
17159 [deduct.type]
17160
17161 The nondeduced contexts are:
17162
17163 --A type that is a template-id in which one or more of
17164 the template-arguments is an expression that references
17165 a template-parameter.
17166
17167 In these cases, we assume deduction succeeded, but don't
17168 actually infer any unifications. */
17169
17170 if (!uses_template_parms (parm)
17171 && !template_args_equal (parm, arg))
17172 return unify_expression_unequal (explain_p, parm, arg);
17173 else
17174 return unify_success (explain_p);
17175 }
17176 }
17177 #undef RECUR_AND_CHECK_FAILURE
17178 \f
17179 /* Note that DECL can be defined in this translation unit, if
17180 required. */
17181
17182 static void
17183 mark_definable (tree decl)
17184 {
17185 tree clone;
17186 DECL_NOT_REALLY_EXTERN (decl) = 1;
17187 FOR_EACH_CLONE (clone, decl)
17188 DECL_NOT_REALLY_EXTERN (clone) = 1;
17189 }
17190
17191 /* Called if RESULT is explicitly instantiated, or is a member of an
17192 explicitly instantiated class. */
17193
17194 void
17195 mark_decl_instantiated (tree result, int extern_p)
17196 {
17197 SET_DECL_EXPLICIT_INSTANTIATION (result);
17198
17199 /* If this entity has already been written out, it's too late to
17200 make any modifications. */
17201 if (TREE_ASM_WRITTEN (result))
17202 return;
17203
17204 if (TREE_CODE (result) != FUNCTION_DECL)
17205 /* The TREE_PUBLIC flag for function declarations will have been
17206 set correctly by tsubst. */
17207 TREE_PUBLIC (result) = 1;
17208
17209 /* This might have been set by an earlier implicit instantiation. */
17210 DECL_COMDAT (result) = 0;
17211
17212 if (extern_p)
17213 DECL_NOT_REALLY_EXTERN (result) = 0;
17214 else
17215 {
17216 mark_definable (result);
17217 /* Always make artificials weak. */
17218 if (DECL_ARTIFICIAL (result) && flag_weak)
17219 comdat_linkage (result);
17220 /* For WIN32 we also want to put explicit instantiations in
17221 linkonce sections. */
17222 else if (TREE_PUBLIC (result))
17223 maybe_make_one_only (result);
17224 }
17225
17226 /* If EXTERN_P, then this function will not be emitted -- unless
17227 followed by an explicit instantiation, at which point its linkage
17228 will be adjusted. If !EXTERN_P, then this function will be
17229 emitted here. In neither circumstance do we want
17230 import_export_decl to adjust the linkage. */
17231 DECL_INTERFACE_KNOWN (result) = 1;
17232 }
17233
17234 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
17235 important template arguments. If any are missing, we check whether
17236 they're important by using error_mark_node for substituting into any
17237 args that were used for partial ordering (the ones between ARGS and END)
17238 and seeing if it bubbles up. */
17239
17240 static bool
17241 check_undeduced_parms (tree targs, tree args, tree end)
17242 {
17243 bool found = false;
17244 int i;
17245 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
17246 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
17247 {
17248 found = true;
17249 TREE_VEC_ELT (targs, i) = error_mark_node;
17250 }
17251 if (found)
17252 {
17253 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
17254 if (substed == error_mark_node)
17255 return true;
17256 }
17257 return false;
17258 }
17259
17260 /* Given two function templates PAT1 and PAT2, return:
17261
17262 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
17263 -1 if PAT2 is more specialized than PAT1.
17264 0 if neither is more specialized.
17265
17266 LEN indicates the number of parameters we should consider
17267 (defaulted parameters should not be considered).
17268
17269 The 1998 std underspecified function template partial ordering, and
17270 DR214 addresses the issue. We take pairs of arguments, one from
17271 each of the templates, and deduce them against each other. One of
17272 the templates will be more specialized if all the *other*
17273 template's arguments deduce against its arguments and at least one
17274 of its arguments *does* *not* deduce against the other template's
17275 corresponding argument. Deduction is done as for class templates.
17276 The arguments used in deduction have reference and top level cv
17277 qualifiers removed. Iff both arguments were originally reference
17278 types *and* deduction succeeds in both directions, the template
17279 with the more cv-qualified argument wins for that pairing (if
17280 neither is more cv-qualified, they both are equal). Unlike regular
17281 deduction, after all the arguments have been deduced in this way,
17282 we do *not* verify the deduced template argument values can be
17283 substituted into non-deduced contexts.
17284
17285 The logic can be a bit confusing here, because we look at deduce1 and
17286 targs1 to see if pat2 is at least as specialized, and vice versa; if we
17287 can find template arguments for pat1 to make arg1 look like arg2, that
17288 means that arg2 is at least as specialized as arg1. */
17289
17290 int
17291 more_specialized_fn (tree pat1, tree pat2, int len)
17292 {
17293 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
17294 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
17295 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
17296 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
17297 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
17298 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
17299 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
17300 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
17301 tree origs1, origs2;
17302 bool lose1 = false;
17303 bool lose2 = false;
17304
17305 /* Remove the this parameter from non-static member functions. If
17306 one is a non-static member function and the other is not a static
17307 member function, remove the first parameter from that function
17308 also. This situation occurs for operator functions where we
17309 locate both a member function (with this pointer) and non-member
17310 operator (with explicit first operand). */
17311 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
17312 {
17313 len--; /* LEN is the number of significant arguments for DECL1 */
17314 args1 = TREE_CHAIN (args1);
17315 if (!DECL_STATIC_FUNCTION_P (decl2))
17316 args2 = TREE_CHAIN (args2);
17317 }
17318 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
17319 {
17320 args2 = TREE_CHAIN (args2);
17321 if (!DECL_STATIC_FUNCTION_P (decl1))
17322 {
17323 len--;
17324 args1 = TREE_CHAIN (args1);
17325 }
17326 }
17327
17328 /* If only one is a conversion operator, they are unordered. */
17329 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
17330 return 0;
17331
17332 /* Consider the return type for a conversion function */
17333 if (DECL_CONV_FN_P (decl1))
17334 {
17335 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
17336 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
17337 len++;
17338 }
17339
17340 processing_template_decl++;
17341
17342 origs1 = args1;
17343 origs2 = args2;
17344
17345 while (len--
17346 /* Stop when an ellipsis is seen. */
17347 && args1 != NULL_TREE && args2 != NULL_TREE)
17348 {
17349 tree arg1 = TREE_VALUE (args1);
17350 tree arg2 = TREE_VALUE (args2);
17351 int deduce1, deduce2;
17352 int quals1 = -1;
17353 int quals2 = -1;
17354
17355 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
17356 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
17357 {
17358 /* When both arguments are pack expansions, we need only
17359 unify the patterns themselves. */
17360 arg1 = PACK_EXPANSION_PATTERN (arg1);
17361 arg2 = PACK_EXPANSION_PATTERN (arg2);
17362
17363 /* This is the last comparison we need to do. */
17364 len = 0;
17365 }
17366
17367 if (TREE_CODE (arg1) == REFERENCE_TYPE)
17368 {
17369 arg1 = TREE_TYPE (arg1);
17370 quals1 = cp_type_quals (arg1);
17371 }
17372
17373 if (TREE_CODE (arg2) == REFERENCE_TYPE)
17374 {
17375 arg2 = TREE_TYPE (arg2);
17376 quals2 = cp_type_quals (arg2);
17377 }
17378
17379 arg1 = TYPE_MAIN_VARIANT (arg1);
17380 arg2 = TYPE_MAIN_VARIANT (arg2);
17381
17382 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
17383 {
17384 int i, len2 = list_length (args2);
17385 tree parmvec = make_tree_vec (1);
17386 tree argvec = make_tree_vec (len2);
17387 tree ta = args2;
17388
17389 /* Setup the parameter vector, which contains only ARG1. */
17390 TREE_VEC_ELT (parmvec, 0) = arg1;
17391
17392 /* Setup the argument vector, which contains the remaining
17393 arguments. */
17394 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
17395 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
17396
17397 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
17398 argvec, DEDUCE_EXACT,
17399 /*subr=*/true, /*explain_p=*/false)
17400 == 0);
17401
17402 /* We cannot deduce in the other direction, because ARG1 is
17403 a pack expansion but ARG2 is not. */
17404 deduce2 = 0;
17405 }
17406 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
17407 {
17408 int i, len1 = list_length (args1);
17409 tree parmvec = make_tree_vec (1);
17410 tree argvec = make_tree_vec (len1);
17411 tree ta = args1;
17412
17413 /* Setup the parameter vector, which contains only ARG1. */
17414 TREE_VEC_ELT (parmvec, 0) = arg2;
17415
17416 /* Setup the argument vector, which contains the remaining
17417 arguments. */
17418 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
17419 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
17420
17421 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
17422 argvec, DEDUCE_EXACT,
17423 /*subr=*/true, /*explain_p=*/false)
17424 == 0);
17425
17426 /* We cannot deduce in the other direction, because ARG2 is
17427 a pack expansion but ARG1 is not.*/
17428 deduce1 = 0;
17429 }
17430
17431 else
17432 {
17433 /* The normal case, where neither argument is a pack
17434 expansion. */
17435 deduce1 = (unify (tparms1, targs1, arg1, arg2,
17436 UNIFY_ALLOW_NONE, /*explain_p=*/false)
17437 == 0);
17438 deduce2 = (unify (tparms2, targs2, arg2, arg1,
17439 UNIFY_ALLOW_NONE, /*explain_p=*/false)
17440 == 0);
17441 }
17442
17443 /* If we couldn't deduce arguments for tparms1 to make arg1 match
17444 arg2, then arg2 is not as specialized as arg1. */
17445 if (!deduce1)
17446 lose2 = true;
17447 if (!deduce2)
17448 lose1 = true;
17449
17450 /* "If, for a given type, deduction succeeds in both directions
17451 (i.e., the types are identical after the transformations above)
17452 and if the type from the argument template is more cv-qualified
17453 than the type from the parameter template (as described above)
17454 that type is considered to be more specialized than the other. If
17455 neither type is more cv-qualified than the other then neither type
17456 is more specialized than the other." */
17457
17458 if (deduce1 && deduce2
17459 && quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
17460 {
17461 if ((quals1 & quals2) == quals2)
17462 lose2 = true;
17463 if ((quals1 & quals2) == quals1)
17464 lose1 = true;
17465 }
17466
17467 if (lose1 && lose2)
17468 /* We've failed to deduce something in either direction.
17469 These must be unordered. */
17470 break;
17471
17472 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
17473 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
17474 /* We have already processed all of the arguments in our
17475 handing of the pack expansion type. */
17476 len = 0;
17477
17478 args1 = TREE_CHAIN (args1);
17479 args2 = TREE_CHAIN (args2);
17480 }
17481
17482 /* "In most cases, all template parameters must have values in order for
17483 deduction to succeed, but for partial ordering purposes a template
17484 parameter may remain without a value provided it is not used in the
17485 types being used for partial ordering."
17486
17487 Thus, if we are missing any of the targs1 we need to substitute into
17488 origs1, then pat2 is not as specialized as pat1. This can happen when
17489 there is a nondeduced context. */
17490 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
17491 lose2 = true;
17492 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
17493 lose1 = true;
17494
17495 processing_template_decl--;
17496
17497 /* All things being equal, if the next argument is a pack expansion
17498 for one function but not for the other, prefer the
17499 non-variadic function. FIXME this is bogus; see c++/41958. */
17500 if (lose1 == lose2
17501 && args1 && TREE_VALUE (args1)
17502 && args2 && TREE_VALUE (args2))
17503 {
17504 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
17505 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
17506 }
17507
17508 if (lose1 == lose2)
17509 return 0;
17510 else if (!lose1)
17511 return 1;
17512 else
17513 return -1;
17514 }
17515
17516 /* Determine which of two partial specializations of MAIN_TMPL is more
17517 specialized.
17518
17519 PAT1 is a TREE_LIST whose TREE_TYPE is the _TYPE node corresponding
17520 to the first partial specialization. The TREE_VALUE is the
17521 innermost set of template parameters for the partial
17522 specialization. PAT2 is similar, but for the second template.
17523
17524 Return 1 if the first partial specialization is more specialized;
17525 -1 if the second is more specialized; 0 if neither is more
17526 specialized.
17527
17528 See [temp.class.order] for information about determining which of
17529 two templates is more specialized. */
17530
17531 static int
17532 more_specialized_class (tree main_tmpl, tree pat1, tree pat2)
17533 {
17534 tree targs;
17535 tree tmpl1, tmpl2;
17536 int winner = 0;
17537 bool any_deductions = false;
17538
17539 tmpl1 = TREE_TYPE (pat1);
17540 tmpl2 = TREE_TYPE (pat2);
17541
17542 /* Just like what happens for functions, if we are ordering between
17543 different class template specializations, we may encounter dependent
17544 types in the arguments, and we need our dependency check functions
17545 to behave correctly. */
17546 ++processing_template_decl;
17547 targs = get_class_bindings (main_tmpl, TREE_VALUE (pat1),
17548 CLASSTYPE_TI_ARGS (tmpl1),
17549 CLASSTYPE_TI_ARGS (tmpl2));
17550 if (targs)
17551 {
17552 --winner;
17553 any_deductions = true;
17554 }
17555
17556 targs = get_class_bindings (main_tmpl, TREE_VALUE (pat2),
17557 CLASSTYPE_TI_ARGS (tmpl2),
17558 CLASSTYPE_TI_ARGS (tmpl1));
17559 if (targs)
17560 {
17561 ++winner;
17562 any_deductions = true;
17563 }
17564 --processing_template_decl;
17565
17566 /* In the case of a tie where at least one of the class templates
17567 has a parameter pack at the end, the template with the most
17568 non-packed parameters wins. */
17569 if (winner == 0
17570 && any_deductions
17571 && (template_args_variadic_p (TREE_PURPOSE (pat1))
17572 || template_args_variadic_p (TREE_PURPOSE (pat2))))
17573 {
17574 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
17575 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
17576 int len1 = TREE_VEC_LENGTH (args1);
17577 int len2 = TREE_VEC_LENGTH (args2);
17578
17579 /* We don't count the pack expansion at the end. */
17580 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
17581 --len1;
17582 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
17583 --len2;
17584
17585 if (len1 > len2)
17586 return 1;
17587 else if (len1 < len2)
17588 return -1;
17589 }
17590
17591 return winner;
17592 }
17593
17594 /* Return the template arguments that will produce the function signature
17595 DECL from the function template FN, with the explicit template
17596 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
17597 also match. Return NULL_TREE if no satisfactory arguments could be
17598 found. */
17599
17600 static tree
17601 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
17602 {
17603 int ntparms = DECL_NTPARMS (fn);
17604 tree targs = make_tree_vec (ntparms);
17605 tree decl_type = TREE_TYPE (decl);
17606 tree decl_arg_types;
17607 tree *args;
17608 unsigned int nargs, ix;
17609 tree arg;
17610
17611 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
17612
17613 /* Never do unification on the 'this' parameter. */
17614 decl_arg_types = skip_artificial_parms_for (decl,
17615 TYPE_ARG_TYPES (decl_type));
17616
17617 nargs = list_length (decl_arg_types);
17618 args = XALLOCAVEC (tree, nargs);
17619 for (arg = decl_arg_types, ix = 0;
17620 arg != NULL_TREE && arg != void_list_node;
17621 arg = TREE_CHAIN (arg), ++ix)
17622 args[ix] = TREE_VALUE (arg);
17623
17624 if (fn_type_unification (fn, explicit_args, targs,
17625 args, ix,
17626 (check_rettype || DECL_CONV_FN_P (fn)
17627 ? TREE_TYPE (decl_type) : NULL_TREE),
17628 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
17629 /*decltype*/false)
17630 == error_mark_node)
17631 return NULL_TREE;
17632
17633 return targs;
17634 }
17635
17636 /* Return the innermost template arguments that, when applied to a partial
17637 specialization of MAIN_TMPL whose innermost template parameters are
17638 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
17639 ARGS.
17640
17641 For example, suppose we have:
17642
17643 template <class T, class U> struct S {};
17644 template <class T> struct S<T*, int> {};
17645
17646 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
17647 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
17648 int}. The resulting vector will be {double}, indicating that `T'
17649 is bound to `double'. */
17650
17651 static tree
17652 get_class_bindings (tree main_tmpl, tree tparms, tree spec_args, tree args)
17653 {
17654 int i, ntparms = TREE_VEC_LENGTH (tparms);
17655 tree deduced_args;
17656 tree innermost_deduced_args;
17657
17658 innermost_deduced_args = make_tree_vec (ntparms);
17659 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
17660 {
17661 deduced_args = copy_node (args);
17662 SET_TMPL_ARGS_LEVEL (deduced_args,
17663 TMPL_ARGS_DEPTH (deduced_args),
17664 innermost_deduced_args);
17665 }
17666 else
17667 deduced_args = innermost_deduced_args;
17668
17669 if (unify (tparms, deduced_args,
17670 INNERMOST_TEMPLATE_ARGS (spec_args),
17671 INNERMOST_TEMPLATE_ARGS (args),
17672 UNIFY_ALLOW_NONE, /*explain_p=*/false))
17673 return NULL_TREE;
17674
17675 for (i = 0; i < ntparms; ++i)
17676 if (! TREE_VEC_ELT (innermost_deduced_args, i))
17677 return NULL_TREE;
17678
17679 /* Verify that nondeduced template arguments agree with the type
17680 obtained from argument deduction.
17681
17682 For example:
17683
17684 struct A { typedef int X; };
17685 template <class T, class U> struct C {};
17686 template <class T> struct C<T, typename T::X> {};
17687
17688 Then with the instantiation `C<A, int>', we can deduce that
17689 `T' is `A' but unify () does not check whether `typename T::X'
17690 is `int'. */
17691 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
17692 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (main_tmpl),
17693 spec_args, main_tmpl,
17694 tf_none, false, false);
17695 if (spec_args == error_mark_node
17696 /* We only need to check the innermost arguments; the other
17697 arguments will always agree. */
17698 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
17699 INNERMOST_TEMPLATE_ARGS (args)))
17700 return NULL_TREE;
17701
17702 /* Now that we have bindings for all of the template arguments,
17703 ensure that the arguments deduced for the template template
17704 parameters have compatible template parameter lists. See the use
17705 of template_template_parm_bindings_ok_p in fn_type_unification
17706 for more information. */
17707 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
17708 return NULL_TREE;
17709
17710 return deduced_args;
17711 }
17712
17713 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
17714 Return the TREE_LIST node with the most specialized template, if
17715 any. If there is no most specialized template, the error_mark_node
17716 is returned.
17717
17718 Note that this function does not look at, or modify, the
17719 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
17720 returned is one of the elements of INSTANTIATIONS, callers may
17721 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
17722 and retrieve it from the value returned. */
17723
17724 tree
17725 most_specialized_instantiation (tree templates)
17726 {
17727 tree fn, champ;
17728
17729 ++processing_template_decl;
17730
17731 champ = templates;
17732 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
17733 {
17734 int fate = 0;
17735
17736 if (get_bindings (TREE_VALUE (champ),
17737 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
17738 NULL_TREE, /*check_ret=*/true))
17739 fate--;
17740
17741 if (get_bindings (TREE_VALUE (fn),
17742 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
17743 NULL_TREE, /*check_ret=*/true))
17744 fate++;
17745
17746 if (fate == -1)
17747 champ = fn;
17748 else if (!fate)
17749 {
17750 /* Equally specialized, move to next function. If there
17751 is no next function, nothing's most specialized. */
17752 fn = TREE_CHAIN (fn);
17753 champ = fn;
17754 if (!fn)
17755 break;
17756 }
17757 }
17758
17759 if (champ)
17760 /* Now verify that champ is better than everything earlier in the
17761 instantiation list. */
17762 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn))
17763 if (get_bindings (TREE_VALUE (champ),
17764 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
17765 NULL_TREE, /*check_ret=*/true)
17766 || !get_bindings (TREE_VALUE (fn),
17767 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
17768 NULL_TREE, /*check_ret=*/true))
17769 {
17770 champ = NULL_TREE;
17771 break;
17772 }
17773
17774 processing_template_decl--;
17775
17776 if (!champ)
17777 return error_mark_node;
17778
17779 return champ;
17780 }
17781
17782 /* If DECL is a specialization of some template, return the most
17783 general such template. Otherwise, returns NULL_TREE.
17784
17785 For example, given:
17786
17787 template <class T> struct S { template <class U> void f(U); };
17788
17789 if TMPL is `template <class U> void S<int>::f(U)' this will return
17790 the full template. This function will not trace past partial
17791 specializations, however. For example, given in addition:
17792
17793 template <class T> struct S<T*> { template <class U> void f(U); };
17794
17795 if TMPL is `template <class U> void S<int*>::f(U)' this will return
17796 `template <class T> template <class U> S<T*>::f(U)'. */
17797
17798 tree
17799 most_general_template (tree decl)
17800 {
17801 /* If DECL is a FUNCTION_DECL, find the TEMPLATE_DECL of which it is
17802 an immediate specialization. */
17803 if (TREE_CODE (decl) == FUNCTION_DECL)
17804 {
17805 if (DECL_TEMPLATE_INFO (decl)) {
17806 decl = DECL_TI_TEMPLATE (decl);
17807
17808 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE for a
17809 template friend. */
17810 if (TREE_CODE (decl) != TEMPLATE_DECL)
17811 return NULL_TREE;
17812 } else
17813 return NULL_TREE;
17814 }
17815
17816 /* Look for more and more general templates. */
17817 while (DECL_TEMPLATE_INFO (decl))
17818 {
17819 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
17820 (See cp-tree.h for details.) */
17821 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
17822 break;
17823
17824 if (CLASS_TYPE_P (TREE_TYPE (decl))
17825 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
17826 break;
17827
17828 /* Stop if we run into an explicitly specialized class template. */
17829 if (!DECL_NAMESPACE_SCOPE_P (decl)
17830 && DECL_CONTEXT (decl)
17831 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
17832 break;
17833
17834 decl = DECL_TI_TEMPLATE (decl);
17835 }
17836
17837 return decl;
17838 }
17839
17840 /* Return the most specialized of the class template partial
17841 specializations of TMPL which can produce TYPE, a specialization of
17842 TMPL. The value returned is actually a TREE_LIST; the TREE_TYPE is
17843 a _TYPE node corresponding to the partial specialization, while the
17844 TREE_PURPOSE is the set of template arguments that must be
17845 substituted into the TREE_TYPE in order to generate TYPE.
17846
17847 If the choice of partial specialization is ambiguous, a diagnostic
17848 is issued, and the error_mark_node is returned. If there are no
17849 partial specializations of TMPL matching TYPE, then NULL_TREE is
17850 returned. */
17851
17852 static tree
17853 most_specialized_class (tree type, tree tmpl, tsubst_flags_t complain)
17854 {
17855 tree list = NULL_TREE;
17856 tree t;
17857 tree champ;
17858 int fate;
17859 bool ambiguous_p;
17860 tree args;
17861 tree outer_args = NULL_TREE;
17862
17863 tmpl = most_general_template (tmpl);
17864 args = CLASSTYPE_TI_ARGS (type);
17865
17866 /* For determining which partial specialization to use, only the
17867 innermost args are interesting. */
17868 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
17869 {
17870 outer_args = strip_innermost_template_args (args, 1);
17871 args = INNERMOST_TEMPLATE_ARGS (args);
17872 }
17873
17874 for (t = DECL_TEMPLATE_SPECIALIZATIONS (tmpl); t; t = TREE_CHAIN (t))
17875 {
17876 tree partial_spec_args;
17877 tree spec_args;
17878 tree parms = TREE_VALUE (t);
17879
17880 partial_spec_args = CLASSTYPE_TI_ARGS (TREE_TYPE (t));
17881
17882 ++processing_template_decl;
17883
17884 if (outer_args)
17885 {
17886 int i;
17887
17888 /* Discard the outer levels of args, and then substitute in the
17889 template args from the enclosing class. */
17890 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
17891 partial_spec_args = tsubst_template_args
17892 (partial_spec_args, outer_args, tf_none, NULL_TREE);
17893
17894 /* PARMS already refers to just the innermost parms, but the
17895 template parms in partial_spec_args had their levels lowered
17896 by tsubst, so we need to do the same for the parm list. We
17897 can't just tsubst the TREE_VEC itself, as tsubst wants to
17898 treat a TREE_VEC as an argument vector. */
17899 parms = copy_node (parms);
17900 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
17901 TREE_VEC_ELT (parms, i) =
17902 tsubst (TREE_VEC_ELT (parms, i), outer_args, tf_none, NULL_TREE);
17903
17904 }
17905
17906 partial_spec_args =
17907 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
17908 add_to_template_args (outer_args,
17909 partial_spec_args),
17910 tmpl, tf_none,
17911 /*require_all_args=*/true,
17912 /*use_default_args=*/true);
17913
17914 --processing_template_decl;
17915
17916 if (partial_spec_args == error_mark_node)
17917 return error_mark_node;
17918
17919 spec_args = get_class_bindings (tmpl, parms,
17920 partial_spec_args,
17921 args);
17922 if (spec_args)
17923 {
17924 if (outer_args)
17925 spec_args = add_to_template_args (outer_args, spec_args);
17926 list = tree_cons (spec_args, TREE_VALUE (t), list);
17927 TREE_TYPE (list) = TREE_TYPE (t);
17928 }
17929 }
17930
17931 if (! list)
17932 return NULL_TREE;
17933
17934 ambiguous_p = false;
17935 t = list;
17936 champ = t;
17937 t = TREE_CHAIN (t);
17938 for (; t; t = TREE_CHAIN (t))
17939 {
17940 fate = more_specialized_class (tmpl, champ, t);
17941 if (fate == 1)
17942 ;
17943 else
17944 {
17945 if (fate == 0)
17946 {
17947 t = TREE_CHAIN (t);
17948 if (! t)
17949 {
17950 ambiguous_p = true;
17951 break;
17952 }
17953 }
17954 champ = t;
17955 }
17956 }
17957
17958 if (!ambiguous_p)
17959 for (t = list; t && t != champ; t = TREE_CHAIN (t))
17960 {
17961 fate = more_specialized_class (tmpl, champ, t);
17962 if (fate != 1)
17963 {
17964 ambiguous_p = true;
17965 break;
17966 }
17967 }
17968
17969 if (ambiguous_p)
17970 {
17971 const char *str;
17972 char *spaces = NULL;
17973 if (!(complain & tf_error))
17974 return error_mark_node;
17975 error ("ambiguous class template instantiation for %q#T", type);
17976 str = ngettext ("candidate is:", "candidates are:", list_length (list));
17977 for (t = list; t; t = TREE_CHAIN (t))
17978 {
17979 error ("%s %+#T", spaces ? spaces : str, TREE_TYPE (t));
17980 spaces = spaces ? spaces : get_spaces (str);
17981 }
17982 free (spaces);
17983 return error_mark_node;
17984 }
17985
17986 return champ;
17987 }
17988
17989 /* Explicitly instantiate DECL. */
17990
17991 void
17992 do_decl_instantiation (tree decl, tree storage)
17993 {
17994 tree result = NULL_TREE;
17995 int extern_p = 0;
17996
17997 if (!decl || decl == error_mark_node)
17998 /* An error occurred, for which grokdeclarator has already issued
17999 an appropriate message. */
18000 return;
18001 else if (! DECL_LANG_SPECIFIC (decl))
18002 {
18003 error ("explicit instantiation of non-template %q#D", decl);
18004 return;
18005 }
18006 else if (VAR_P (decl))
18007 {
18008 /* There is an asymmetry here in the way VAR_DECLs and
18009 FUNCTION_DECLs are handled by grokdeclarator. In the case of
18010 the latter, the DECL we get back will be marked as a
18011 template instantiation, and the appropriate
18012 DECL_TEMPLATE_INFO will be set up. This does not happen for
18013 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
18014 should handle VAR_DECLs as it currently handles
18015 FUNCTION_DECLs. */
18016 if (!DECL_CLASS_SCOPE_P (decl))
18017 {
18018 error ("%qD is not a static data member of a class template", decl);
18019 return;
18020 }
18021 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
18022 if (!result || !VAR_P (result))
18023 {
18024 error ("no matching template for %qD found", decl);
18025 return;
18026 }
18027 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
18028 {
18029 error ("type %qT for explicit instantiation %qD does not match "
18030 "declared type %qT", TREE_TYPE (result), decl,
18031 TREE_TYPE (decl));
18032 return;
18033 }
18034 }
18035 else if (TREE_CODE (decl) != FUNCTION_DECL)
18036 {
18037 error ("explicit instantiation of %q#D", decl);
18038 return;
18039 }
18040 else
18041 result = decl;
18042
18043 /* Check for various error cases. Note that if the explicit
18044 instantiation is valid the RESULT will currently be marked as an
18045 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
18046 until we get here. */
18047
18048 if (DECL_TEMPLATE_SPECIALIZATION (result))
18049 {
18050 /* DR 259 [temp.spec].
18051
18052 Both an explicit instantiation and a declaration of an explicit
18053 specialization shall not appear in a program unless the explicit
18054 instantiation follows a declaration of the explicit specialization.
18055
18056 For a given set of template parameters, if an explicit
18057 instantiation of a template appears after a declaration of an
18058 explicit specialization for that template, the explicit
18059 instantiation has no effect. */
18060 return;
18061 }
18062 else if (DECL_EXPLICIT_INSTANTIATION (result))
18063 {
18064 /* [temp.spec]
18065
18066 No program shall explicitly instantiate any template more
18067 than once.
18068
18069 We check DECL_NOT_REALLY_EXTERN so as not to complain when
18070 the first instantiation was `extern' and the second is not,
18071 and EXTERN_P for the opposite case. */
18072 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
18073 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
18074 /* If an "extern" explicit instantiation follows an ordinary
18075 explicit instantiation, the template is instantiated. */
18076 if (extern_p)
18077 return;
18078 }
18079 else if (!DECL_IMPLICIT_INSTANTIATION (result))
18080 {
18081 error ("no matching template for %qD found", result);
18082 return;
18083 }
18084 else if (!DECL_TEMPLATE_INFO (result))
18085 {
18086 permerror (input_location, "explicit instantiation of non-template %q#D", result);
18087 return;
18088 }
18089
18090 if (storage == NULL_TREE)
18091 ;
18092 else if (storage == ridpointers[(int) RID_EXTERN])
18093 {
18094 if (!in_system_header && (cxx_dialect == cxx98))
18095 pedwarn (input_location, OPT_Wpedantic,
18096 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
18097 "instantiations");
18098 extern_p = 1;
18099 }
18100 else
18101 error ("storage class %qD applied to template instantiation", storage);
18102
18103 check_explicit_instantiation_namespace (result);
18104 mark_decl_instantiated (result, extern_p);
18105 if (! extern_p)
18106 instantiate_decl (result, /*defer_ok=*/1,
18107 /*expl_inst_class_mem_p=*/false);
18108 }
18109
18110 static void
18111 mark_class_instantiated (tree t, int extern_p)
18112 {
18113 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
18114 SET_CLASSTYPE_INTERFACE_KNOWN (t);
18115 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
18116 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
18117 if (! extern_p)
18118 {
18119 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
18120 rest_of_type_compilation (t, 1);
18121 }
18122 }
18123
18124 /* Called from do_type_instantiation through binding_table_foreach to
18125 do recursive instantiation for the type bound in ENTRY. */
18126 static void
18127 bt_instantiate_type_proc (binding_entry entry, void *data)
18128 {
18129 tree storage = *(tree *) data;
18130
18131 if (MAYBE_CLASS_TYPE_P (entry->type)
18132 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
18133 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
18134 }
18135
18136 /* Called from do_type_instantiation to instantiate a member
18137 (a member function or a static member variable) of an
18138 explicitly instantiated class template. */
18139 static void
18140 instantiate_class_member (tree decl, int extern_p)
18141 {
18142 mark_decl_instantiated (decl, extern_p);
18143 if (! extern_p)
18144 instantiate_decl (decl, /*defer_ok=*/1,
18145 /*expl_inst_class_mem_p=*/true);
18146 }
18147
18148 /* Perform an explicit instantiation of template class T. STORAGE, if
18149 non-null, is the RID for extern, inline or static. COMPLAIN is
18150 nonzero if this is called from the parser, zero if called recursively,
18151 since the standard is unclear (as detailed below). */
18152
18153 void
18154 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
18155 {
18156 int extern_p = 0;
18157 int nomem_p = 0;
18158 int static_p = 0;
18159 int previous_instantiation_extern_p = 0;
18160
18161 if (TREE_CODE (t) == TYPE_DECL)
18162 t = TREE_TYPE (t);
18163
18164 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
18165 {
18166 tree tmpl =
18167 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
18168 if (tmpl)
18169 error ("explicit instantiation of non-class template %qD", tmpl);
18170 else
18171 error ("explicit instantiation of non-template type %qT", t);
18172 return;
18173 }
18174
18175 complete_type (t);
18176
18177 if (!COMPLETE_TYPE_P (t))
18178 {
18179 if (complain & tf_error)
18180 error ("explicit instantiation of %q#T before definition of template",
18181 t);
18182 return;
18183 }
18184
18185 if (storage != NULL_TREE)
18186 {
18187 if (!in_system_header)
18188 {
18189 if (storage == ridpointers[(int) RID_EXTERN])
18190 {
18191 if (cxx_dialect == cxx98)
18192 pedwarn (input_location, OPT_Wpedantic,
18193 "ISO C++ 1998 forbids the use of %<extern%> on "
18194 "explicit instantiations");
18195 }
18196 else
18197 pedwarn (input_location, OPT_Wpedantic,
18198 "ISO C++ forbids the use of %qE"
18199 " on explicit instantiations", storage);
18200 }
18201
18202 if (storage == ridpointers[(int) RID_INLINE])
18203 nomem_p = 1;
18204 else if (storage == ridpointers[(int) RID_EXTERN])
18205 extern_p = 1;
18206 else if (storage == ridpointers[(int) RID_STATIC])
18207 static_p = 1;
18208 else
18209 {
18210 error ("storage class %qD applied to template instantiation",
18211 storage);
18212 extern_p = 0;
18213 }
18214 }
18215
18216 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
18217 {
18218 /* DR 259 [temp.spec].
18219
18220 Both an explicit instantiation and a declaration of an explicit
18221 specialization shall not appear in a program unless the explicit
18222 instantiation follows a declaration of the explicit specialization.
18223
18224 For a given set of template parameters, if an explicit
18225 instantiation of a template appears after a declaration of an
18226 explicit specialization for that template, the explicit
18227 instantiation has no effect. */
18228 return;
18229 }
18230 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
18231 {
18232 /* [temp.spec]
18233
18234 No program shall explicitly instantiate any template more
18235 than once.
18236
18237 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
18238 instantiation was `extern'. If EXTERN_P then the second is.
18239 These cases are OK. */
18240 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
18241
18242 if (!previous_instantiation_extern_p && !extern_p
18243 && (complain & tf_error))
18244 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
18245
18246 /* If we've already instantiated the template, just return now. */
18247 if (!CLASSTYPE_INTERFACE_ONLY (t))
18248 return;
18249 }
18250
18251 check_explicit_instantiation_namespace (TYPE_NAME (t));
18252 mark_class_instantiated (t, extern_p);
18253
18254 if (nomem_p)
18255 return;
18256
18257 {
18258 tree tmp;
18259
18260 /* In contrast to implicit instantiation, where only the
18261 declarations, and not the definitions, of members are
18262 instantiated, we have here:
18263
18264 [temp.explicit]
18265
18266 The explicit instantiation of a class template specialization
18267 implies the instantiation of all of its members not
18268 previously explicitly specialized in the translation unit
18269 containing the explicit instantiation.
18270
18271 Of course, we can't instantiate member template classes, since
18272 we don't have any arguments for them. Note that the standard
18273 is unclear on whether the instantiation of the members are
18274 *explicit* instantiations or not. However, the most natural
18275 interpretation is that it should be an explicit instantiation. */
18276
18277 if (! static_p)
18278 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
18279 if (TREE_CODE (tmp) == FUNCTION_DECL
18280 && DECL_TEMPLATE_INSTANTIATION (tmp))
18281 instantiate_class_member (tmp, extern_p);
18282
18283 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
18284 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
18285 instantiate_class_member (tmp, extern_p);
18286
18287 if (CLASSTYPE_NESTED_UTDS (t))
18288 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
18289 bt_instantiate_type_proc, &storage);
18290 }
18291 }
18292
18293 /* Given a function DECL, which is a specialization of TMPL, modify
18294 DECL to be a re-instantiation of TMPL with the same template
18295 arguments. TMPL should be the template into which tsubst'ing
18296 should occur for DECL, not the most general template.
18297
18298 One reason for doing this is a scenario like this:
18299
18300 template <class T>
18301 void f(const T&, int i);
18302
18303 void g() { f(3, 7); }
18304
18305 template <class T>
18306 void f(const T& t, const int i) { }
18307
18308 Note that when the template is first instantiated, with
18309 instantiate_template, the resulting DECL will have no name for the
18310 first parameter, and the wrong type for the second. So, when we go
18311 to instantiate the DECL, we regenerate it. */
18312
18313 static void
18314 regenerate_decl_from_template (tree decl, tree tmpl)
18315 {
18316 /* The arguments used to instantiate DECL, from the most general
18317 template. */
18318 tree args;
18319 tree code_pattern;
18320
18321 args = DECL_TI_ARGS (decl);
18322 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
18323
18324 /* Make sure that we can see identifiers, and compute access
18325 correctly. */
18326 push_access_scope (decl);
18327
18328 if (TREE_CODE (decl) == FUNCTION_DECL)
18329 {
18330 tree decl_parm;
18331 tree pattern_parm;
18332 tree specs;
18333 int args_depth;
18334 int parms_depth;
18335
18336 args_depth = TMPL_ARGS_DEPTH (args);
18337 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
18338 if (args_depth > parms_depth)
18339 args = get_innermost_template_args (args, parms_depth);
18340
18341 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
18342 args, tf_error, NULL_TREE,
18343 /*defer_ok*/false);
18344 if (specs && specs != error_mark_node)
18345 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
18346 specs);
18347
18348 /* Merge parameter declarations. */
18349 decl_parm = skip_artificial_parms_for (decl,
18350 DECL_ARGUMENTS (decl));
18351 pattern_parm
18352 = skip_artificial_parms_for (code_pattern,
18353 DECL_ARGUMENTS (code_pattern));
18354 while (decl_parm && !FUNCTION_PARAMETER_PACK_P (pattern_parm))
18355 {
18356 tree parm_type;
18357 tree attributes;
18358
18359 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
18360 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
18361 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
18362 NULL_TREE);
18363 parm_type = type_decays_to (parm_type);
18364 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
18365 TREE_TYPE (decl_parm) = parm_type;
18366 attributes = DECL_ATTRIBUTES (pattern_parm);
18367 if (DECL_ATTRIBUTES (decl_parm) != attributes)
18368 {
18369 DECL_ATTRIBUTES (decl_parm) = attributes;
18370 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
18371 }
18372 decl_parm = DECL_CHAIN (decl_parm);
18373 pattern_parm = DECL_CHAIN (pattern_parm);
18374 }
18375 /* Merge any parameters that match with the function parameter
18376 pack. */
18377 if (pattern_parm && FUNCTION_PARAMETER_PACK_P (pattern_parm))
18378 {
18379 int i, len;
18380 tree expanded_types;
18381 /* Expand the TYPE_PACK_EXPANSION that provides the types for
18382 the parameters in this function parameter pack. */
18383 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
18384 args, tf_error, NULL_TREE);
18385 len = TREE_VEC_LENGTH (expanded_types);
18386 for (i = 0; i < len; i++)
18387 {
18388 tree parm_type;
18389 tree attributes;
18390
18391 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
18392 /* Rename the parameter to include the index. */
18393 DECL_NAME (decl_parm) =
18394 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
18395 parm_type = TREE_VEC_ELT (expanded_types, i);
18396 parm_type = type_decays_to (parm_type);
18397 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
18398 TREE_TYPE (decl_parm) = parm_type;
18399 attributes = DECL_ATTRIBUTES (pattern_parm);
18400 if (DECL_ATTRIBUTES (decl_parm) != attributes)
18401 {
18402 DECL_ATTRIBUTES (decl_parm) = attributes;
18403 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
18404 }
18405 decl_parm = DECL_CHAIN (decl_parm);
18406 }
18407 }
18408 /* Merge additional specifiers from the CODE_PATTERN. */
18409 if (DECL_DECLARED_INLINE_P (code_pattern)
18410 && !DECL_DECLARED_INLINE_P (decl))
18411 DECL_DECLARED_INLINE_P (decl) = 1;
18412 }
18413 else if (VAR_P (decl))
18414 {
18415 DECL_INITIAL (decl) =
18416 tsubst_expr (DECL_INITIAL (code_pattern), args,
18417 tf_error, DECL_TI_TEMPLATE (decl),
18418 /*integral_constant_expression_p=*/false);
18419 if (VAR_HAD_UNKNOWN_BOUND (decl))
18420 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
18421 tf_error, DECL_TI_TEMPLATE (decl));
18422 }
18423 else
18424 gcc_unreachable ();
18425
18426 pop_access_scope (decl);
18427 }
18428
18429 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
18430 substituted to get DECL. */
18431
18432 tree
18433 template_for_substitution (tree decl)
18434 {
18435 tree tmpl = DECL_TI_TEMPLATE (decl);
18436
18437 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
18438 for the instantiation. This is not always the most general
18439 template. Consider, for example:
18440
18441 template <class T>
18442 struct S { template <class U> void f();
18443 template <> void f<int>(); };
18444
18445 and an instantiation of S<double>::f<int>. We want TD to be the
18446 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
18447 while (/* An instantiation cannot have a definition, so we need a
18448 more general template. */
18449 DECL_TEMPLATE_INSTANTIATION (tmpl)
18450 /* We must also deal with friend templates. Given:
18451
18452 template <class T> struct S {
18453 template <class U> friend void f() {};
18454 };
18455
18456 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
18457 so far as the language is concerned, but that's still
18458 where we get the pattern for the instantiation from. On
18459 other hand, if the definition comes outside the class, say:
18460
18461 template <class T> struct S {
18462 template <class U> friend void f();
18463 };
18464 template <class U> friend void f() {}
18465
18466 we don't need to look any further. That's what the check for
18467 DECL_INITIAL is for. */
18468 || (TREE_CODE (decl) == FUNCTION_DECL
18469 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
18470 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
18471 {
18472 /* The present template, TD, should not be a definition. If it
18473 were a definition, we should be using it! Note that we
18474 cannot restructure the loop to just keep going until we find
18475 a template with a definition, since that might go too far if
18476 a specialization was declared, but not defined. */
18477 gcc_assert (!VAR_P (decl)
18478 || DECL_IN_AGGR_P (DECL_TEMPLATE_RESULT (tmpl)));
18479
18480 /* Fetch the more general template. */
18481 tmpl = DECL_TI_TEMPLATE (tmpl);
18482 }
18483
18484 return tmpl;
18485 }
18486
18487 /* Returns true if we need to instantiate this template instance even if we
18488 know we aren't going to emit it.. */
18489
18490 bool
18491 always_instantiate_p (tree decl)
18492 {
18493 /* We always instantiate inline functions so that we can inline them. An
18494 explicit instantiation declaration prohibits implicit instantiation of
18495 non-inline functions. With high levels of optimization, we would
18496 normally inline non-inline functions -- but we're not allowed to do
18497 that for "extern template" functions. Therefore, we check
18498 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
18499 return ((TREE_CODE (decl) == FUNCTION_DECL
18500 && (DECL_DECLARED_INLINE_P (decl)
18501 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
18502 /* And we need to instantiate static data members so that
18503 their initializers are available in integral constant
18504 expressions. */
18505 || (VAR_P (decl)
18506 && decl_maybe_constant_var_p (decl)));
18507 }
18508
18509 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
18510 instantiate it now, modifying TREE_TYPE (fn). */
18511
18512 void
18513 maybe_instantiate_noexcept (tree fn)
18514 {
18515 tree fntype, spec, noex, clone;
18516
18517 if (DECL_CLONED_FUNCTION_P (fn))
18518 fn = DECL_CLONED_FUNCTION (fn);
18519 fntype = TREE_TYPE (fn);
18520 spec = TYPE_RAISES_EXCEPTIONS (fntype);
18521
18522 if (!DEFERRED_NOEXCEPT_SPEC_P (spec))
18523 return;
18524
18525 noex = TREE_PURPOSE (spec);
18526
18527 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
18528 {
18529 if (push_tinst_level (fn))
18530 {
18531 push_access_scope (fn);
18532 push_deferring_access_checks (dk_no_deferred);
18533 input_location = DECL_SOURCE_LOCATION (fn);
18534 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
18535 DEFERRED_NOEXCEPT_ARGS (noex),
18536 tf_warning_or_error, fn,
18537 /*function_p=*/false,
18538 /*integral_constant_expression_p=*/true);
18539 pop_deferring_access_checks ();
18540 pop_access_scope (fn);
18541 pop_tinst_level ();
18542 spec = build_noexcept_spec (noex, tf_warning_or_error);
18543 if (spec == error_mark_node)
18544 spec = noexcept_false_spec;
18545 }
18546 else
18547 spec = noexcept_false_spec;
18548 }
18549 else
18550 {
18551 /* This is an implicitly declared function, so NOEX is a list of
18552 other functions to evaluate and merge. */
18553 tree elt;
18554 spec = noexcept_true_spec;
18555 for (elt = noex; elt; elt = OVL_NEXT (elt))
18556 {
18557 tree fn = OVL_CURRENT (elt);
18558 tree subspec;
18559 maybe_instantiate_noexcept (fn);
18560 subspec = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn));
18561 spec = merge_exception_specifiers (spec, subspec, NULL_TREE);
18562 }
18563 }
18564
18565 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
18566
18567 FOR_EACH_CLONE (clone, fn)
18568 {
18569 if (TREE_TYPE (clone) == fntype)
18570 TREE_TYPE (clone) = TREE_TYPE (fn);
18571 else
18572 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
18573 }
18574 }
18575
18576 /* Produce the definition of D, a _DECL generated from a template. If
18577 DEFER_OK is nonzero, then we don't have to actually do the
18578 instantiation now; we just have to do it sometime. Normally it is
18579 an error if this is an explicit instantiation but D is undefined.
18580 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
18581 explicitly instantiated class template. */
18582
18583 tree
18584 instantiate_decl (tree d, int defer_ok,
18585 bool expl_inst_class_mem_p)
18586 {
18587 tree tmpl = DECL_TI_TEMPLATE (d);
18588 tree gen_args;
18589 tree args;
18590 tree td;
18591 tree code_pattern;
18592 tree spec;
18593 tree gen_tmpl;
18594 bool pattern_defined;
18595 location_t saved_loc = input_location;
18596 bool external_p;
18597 tree fn_context;
18598 bool nested;
18599
18600 /* This function should only be used to instantiate templates for
18601 functions and static member variables. */
18602 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
18603
18604 /* Variables are never deferred; if instantiation is required, they
18605 are instantiated right away. That allows for better code in the
18606 case that an expression refers to the value of the variable --
18607 if the variable has a constant value the referring expression can
18608 take advantage of that fact. */
18609 if (VAR_P (d)
18610 || DECL_DECLARED_CONSTEXPR_P (d))
18611 defer_ok = 0;
18612
18613 /* Don't instantiate cloned functions. Instead, instantiate the
18614 functions they cloned. */
18615 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
18616 d = DECL_CLONED_FUNCTION (d);
18617
18618 if (DECL_TEMPLATE_INSTANTIATED (d)
18619 || (TREE_CODE (d) == FUNCTION_DECL
18620 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
18621 || DECL_TEMPLATE_SPECIALIZATION (d))
18622 /* D has already been instantiated or explicitly specialized, so
18623 there's nothing for us to do here.
18624
18625 It might seem reasonable to check whether or not D is an explicit
18626 instantiation, and, if so, stop here. But when an explicit
18627 instantiation is deferred until the end of the compilation,
18628 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
18629 the instantiation. */
18630 return d;
18631
18632 /* Check to see whether we know that this template will be
18633 instantiated in some other file, as with "extern template"
18634 extension. */
18635 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
18636
18637 /* In general, we do not instantiate such templates. */
18638 if (external_p && !always_instantiate_p (d))
18639 return d;
18640
18641 gen_tmpl = most_general_template (tmpl);
18642 gen_args = DECL_TI_ARGS (d);
18643
18644 if (tmpl != gen_tmpl)
18645 /* We should already have the extra args. */
18646 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
18647 == TMPL_ARGS_DEPTH (gen_args));
18648 /* And what's in the hash table should match D. */
18649 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
18650 || spec == NULL_TREE);
18651
18652 /* This needs to happen before any tsubsting. */
18653 if (! push_tinst_level (d))
18654 return d;
18655
18656 timevar_push (TV_TEMPLATE_INST);
18657
18658 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
18659 for the instantiation. */
18660 td = template_for_substitution (d);
18661 code_pattern = DECL_TEMPLATE_RESULT (td);
18662
18663 /* We should never be trying to instantiate a member of a class
18664 template or partial specialization. */
18665 gcc_assert (d != code_pattern);
18666
18667 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
18668 || DECL_TEMPLATE_SPECIALIZATION (td))
18669 /* In the case of a friend template whose definition is provided
18670 outside the class, we may have too many arguments. Drop the
18671 ones we don't need. The same is true for specializations. */
18672 args = get_innermost_template_args
18673 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
18674 else
18675 args = gen_args;
18676
18677 if (TREE_CODE (d) == FUNCTION_DECL)
18678 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
18679 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern));
18680 else
18681 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
18682
18683 /* We may be in the middle of deferred access check. Disable it now. */
18684 push_deferring_access_checks (dk_no_deferred);
18685
18686 /* Unless an explicit instantiation directive has already determined
18687 the linkage of D, remember that a definition is available for
18688 this entity. */
18689 if (pattern_defined
18690 && !DECL_INTERFACE_KNOWN (d)
18691 && !DECL_NOT_REALLY_EXTERN (d))
18692 mark_definable (d);
18693
18694 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
18695 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
18696 input_location = DECL_SOURCE_LOCATION (d);
18697
18698 /* If D is a member of an explicitly instantiated class template,
18699 and no definition is available, treat it like an implicit
18700 instantiation. */
18701 if (!pattern_defined && expl_inst_class_mem_p
18702 && DECL_EXPLICIT_INSTANTIATION (d))
18703 {
18704 /* Leave linkage flags alone on instantiations with anonymous
18705 visibility. */
18706 if (TREE_PUBLIC (d))
18707 {
18708 DECL_NOT_REALLY_EXTERN (d) = 0;
18709 DECL_INTERFACE_KNOWN (d) = 0;
18710 }
18711 SET_DECL_IMPLICIT_INSTANTIATION (d);
18712 }
18713
18714 if (TREE_CODE (d) == FUNCTION_DECL)
18715 maybe_instantiate_noexcept (d);
18716
18717 /* Defer all other templates, unless we have been explicitly
18718 forbidden from doing so. */
18719 if (/* If there is no definition, we cannot instantiate the
18720 template. */
18721 ! pattern_defined
18722 /* If it's OK to postpone instantiation, do so. */
18723 || defer_ok
18724 /* If this is a static data member that will be defined
18725 elsewhere, we don't want to instantiate the entire data
18726 member, but we do want to instantiate the initializer so that
18727 we can substitute that elsewhere. */
18728 || (external_p && VAR_P (d)))
18729 {
18730 /* The definition of the static data member is now required so
18731 we must substitute the initializer. */
18732 if (VAR_P (d)
18733 && !DECL_INITIAL (d)
18734 && DECL_INITIAL (code_pattern))
18735 {
18736 tree ns;
18737 tree init;
18738 bool const_init = false;
18739
18740 ns = decl_namespace_context (d);
18741 push_nested_namespace (ns);
18742 push_nested_class (DECL_CONTEXT (d));
18743 init = tsubst_expr (DECL_INITIAL (code_pattern),
18744 args,
18745 tf_warning_or_error, NULL_TREE,
18746 /*integral_constant_expression_p=*/false);
18747 /* Make sure the initializer is still constant, in case of
18748 circular dependency (template/instantiate6.C). */
18749 const_init
18750 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
18751 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
18752 /*asmspec_tree=*/NULL_TREE,
18753 LOOKUP_ONLYCONVERTING);
18754 pop_nested_class ();
18755 pop_nested_namespace (ns);
18756 }
18757
18758 /* We restore the source position here because it's used by
18759 add_pending_template. */
18760 input_location = saved_loc;
18761
18762 if (at_eof && !pattern_defined
18763 && DECL_EXPLICIT_INSTANTIATION (d)
18764 && DECL_NOT_REALLY_EXTERN (d))
18765 /* [temp.explicit]
18766
18767 The definition of a non-exported function template, a
18768 non-exported member function template, or a non-exported
18769 member function or static data member of a class template
18770 shall be present in every translation unit in which it is
18771 explicitly instantiated. */
18772 permerror (input_location, "explicit instantiation of %qD "
18773 "but no definition available", d);
18774
18775 /* If we're in unevaluated context, we just wanted to get the
18776 constant value; this isn't an odr use, so don't queue
18777 a full instantiation. */
18778 if (cp_unevaluated_operand != 0)
18779 goto out;
18780 /* ??? Historically, we have instantiated inline functions, even
18781 when marked as "extern template". */
18782 if (!(external_p && VAR_P (d)))
18783 add_pending_template (d);
18784 goto out;
18785 }
18786 /* Tell the repository that D is available in this translation unit
18787 -- and see if it is supposed to be instantiated here. */
18788 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
18789 {
18790 /* In a PCH file, despite the fact that the repository hasn't
18791 requested instantiation in the PCH it is still possible that
18792 an instantiation will be required in a file that includes the
18793 PCH. */
18794 if (pch_file)
18795 add_pending_template (d);
18796 /* Instantiate inline functions so that the inliner can do its
18797 job, even though we'll not be emitting a copy of this
18798 function. */
18799 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
18800 goto out;
18801 }
18802
18803 fn_context = decl_function_context (d);
18804 nested = (current_function_decl != NULL_TREE);
18805 if (!fn_context)
18806 push_to_top_level ();
18807 else if (nested)
18808 push_function_context ();
18809
18810 /* Mark D as instantiated so that recursive calls to
18811 instantiate_decl do not try to instantiate it again. */
18812 DECL_TEMPLATE_INSTANTIATED (d) = 1;
18813
18814 /* Regenerate the declaration in case the template has been modified
18815 by a subsequent redeclaration. */
18816 regenerate_decl_from_template (d, td);
18817
18818 /* We already set the file and line above. Reset them now in case
18819 they changed as a result of calling regenerate_decl_from_template. */
18820 input_location = DECL_SOURCE_LOCATION (d);
18821
18822 if (VAR_P (d))
18823 {
18824 tree init;
18825 bool const_init = false;
18826
18827 /* Clear out DECL_RTL; whatever was there before may not be right
18828 since we've reset the type of the declaration. */
18829 SET_DECL_RTL (d, NULL);
18830 DECL_IN_AGGR_P (d) = 0;
18831
18832 /* The initializer is placed in DECL_INITIAL by
18833 regenerate_decl_from_template so we don't need to
18834 push/pop_access_scope again here. Pull it out so that
18835 cp_finish_decl can process it. */
18836 init = DECL_INITIAL (d);
18837 DECL_INITIAL (d) = NULL_TREE;
18838 DECL_INITIALIZED_P (d) = 0;
18839
18840 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
18841 initializer. That function will defer actual emission until
18842 we have a chance to determine linkage. */
18843 DECL_EXTERNAL (d) = 0;
18844
18845 /* Enter the scope of D so that access-checking works correctly. */
18846 push_nested_class (DECL_CONTEXT (d));
18847 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
18848 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
18849 pop_nested_class ();
18850 }
18851 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
18852 synthesize_method (d);
18853 else if (TREE_CODE (d) == FUNCTION_DECL)
18854 {
18855 struct pointer_map_t *saved_local_specializations;
18856 tree subst_decl;
18857 tree tmpl_parm;
18858 tree spec_parm;
18859
18860 /* Save away the current list, in case we are instantiating one
18861 template from within the body of another. */
18862 saved_local_specializations = local_specializations;
18863
18864 /* Set up the list of local specializations. */
18865 local_specializations = pointer_map_create ();
18866
18867 /* Set up context. */
18868 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
18869
18870 /* Some typedefs referenced from within the template code need to be
18871 access checked at template instantiation time, i.e now. These
18872 types were added to the template at parsing time. Let's get those
18873 and perform the access checks then. */
18874 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
18875 gen_args);
18876
18877 /* Create substitution entries for the parameters. */
18878 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
18879 tmpl_parm = DECL_ARGUMENTS (subst_decl);
18880 spec_parm = DECL_ARGUMENTS (d);
18881 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
18882 {
18883 register_local_specialization (spec_parm, tmpl_parm);
18884 spec_parm = skip_artificial_parms_for (d, spec_parm);
18885 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
18886 }
18887 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
18888 {
18889 if (!FUNCTION_PARAMETER_PACK_P (tmpl_parm))
18890 {
18891 register_local_specialization (spec_parm, tmpl_parm);
18892 spec_parm = DECL_CHAIN (spec_parm);
18893 }
18894 else
18895 {
18896 /* Register the (value) argument pack as a specialization of
18897 TMPL_PARM, then move on. */
18898 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
18899 register_local_specialization (argpack, tmpl_parm);
18900 }
18901 }
18902 gcc_assert (!spec_parm);
18903
18904 /* Substitute into the body of the function. */
18905 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
18906 tf_warning_or_error, tmpl,
18907 /*integral_constant_expression_p=*/false);
18908
18909 /* Set the current input_location to the end of the function
18910 so that finish_function knows where we are. */
18911 input_location = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
18912
18913 /* We don't need the local specializations any more. */
18914 pointer_map_destroy (local_specializations);
18915 local_specializations = saved_local_specializations;
18916
18917 /* Finish the function. */
18918 d = finish_function (0);
18919 expand_or_defer_fn (d);
18920 }
18921
18922 /* We're not deferring instantiation any more. */
18923 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
18924
18925 if (!fn_context)
18926 pop_from_top_level ();
18927 else if (nested)
18928 pop_function_context ();
18929
18930 out:
18931 input_location = saved_loc;
18932 pop_deferring_access_checks ();
18933 pop_tinst_level ();
18934
18935 timevar_pop (TV_TEMPLATE_INST);
18936
18937 return d;
18938 }
18939
18940 /* Run through the list of templates that we wish we could
18941 instantiate, and instantiate any we can. RETRIES is the
18942 number of times we retry pending template instantiation. */
18943
18944 void
18945 instantiate_pending_templates (int retries)
18946 {
18947 int reconsider;
18948 location_t saved_loc = input_location;
18949
18950 /* Instantiating templates may trigger vtable generation. This in turn
18951 may require further template instantiations. We place a limit here
18952 to avoid infinite loop. */
18953 if (pending_templates && retries >= max_tinst_depth)
18954 {
18955 tree decl = pending_templates->tinst->decl;
18956
18957 error ("template instantiation depth exceeds maximum of %d"
18958 " instantiating %q+D, possibly from virtual table generation"
18959 " (use -ftemplate-depth= to increase the maximum)",
18960 max_tinst_depth, decl);
18961 if (TREE_CODE (decl) == FUNCTION_DECL)
18962 /* Pretend that we defined it. */
18963 DECL_INITIAL (decl) = error_mark_node;
18964 return;
18965 }
18966
18967 do
18968 {
18969 struct pending_template **t = &pending_templates;
18970 struct pending_template *last = NULL;
18971 reconsider = 0;
18972 while (*t)
18973 {
18974 tree instantiation = reopen_tinst_level ((*t)->tinst);
18975 bool complete = false;
18976
18977 if (TYPE_P (instantiation))
18978 {
18979 tree fn;
18980
18981 if (!COMPLETE_TYPE_P (instantiation))
18982 {
18983 instantiate_class_template (instantiation);
18984 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
18985 for (fn = TYPE_METHODS (instantiation);
18986 fn;
18987 fn = TREE_CHAIN (fn))
18988 if (! DECL_ARTIFICIAL (fn))
18989 instantiate_decl (fn,
18990 /*defer_ok=*/0,
18991 /*expl_inst_class_mem_p=*/false);
18992 if (COMPLETE_TYPE_P (instantiation))
18993 reconsider = 1;
18994 }
18995
18996 complete = COMPLETE_TYPE_P (instantiation);
18997 }
18998 else
18999 {
19000 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
19001 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
19002 {
19003 instantiation
19004 = instantiate_decl (instantiation,
19005 /*defer_ok=*/0,
19006 /*expl_inst_class_mem_p=*/false);
19007 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
19008 reconsider = 1;
19009 }
19010
19011 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
19012 || DECL_TEMPLATE_INSTANTIATED (instantiation));
19013 }
19014
19015 if (complete)
19016 /* If INSTANTIATION has been instantiated, then we don't
19017 need to consider it again in the future. */
19018 *t = (*t)->next;
19019 else
19020 {
19021 last = *t;
19022 t = &(*t)->next;
19023 }
19024 tinst_depth = 0;
19025 current_tinst_level = NULL;
19026 }
19027 last_pending_template = last;
19028 }
19029 while (reconsider);
19030
19031 input_location = saved_loc;
19032 }
19033
19034 /* Substitute ARGVEC into T, which is a list of initializers for
19035 either base class or a non-static data member. The TREE_PURPOSEs
19036 are DECLs, and the TREE_VALUEs are the initializer values. Used by
19037 instantiate_decl. */
19038
19039 static tree
19040 tsubst_initializer_list (tree t, tree argvec)
19041 {
19042 tree inits = NULL_TREE;
19043
19044 for (; t; t = TREE_CHAIN (t))
19045 {
19046 tree decl;
19047 tree init;
19048 tree expanded_bases = NULL_TREE;
19049 tree expanded_arguments = NULL_TREE;
19050 int i, len = 1;
19051
19052 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
19053 {
19054 tree expr;
19055 tree arg;
19056
19057 /* Expand the base class expansion type into separate base
19058 classes. */
19059 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
19060 tf_warning_or_error,
19061 NULL_TREE);
19062 if (expanded_bases == error_mark_node)
19063 continue;
19064
19065 /* We'll be building separate TREE_LISTs of arguments for
19066 each base. */
19067 len = TREE_VEC_LENGTH (expanded_bases);
19068 expanded_arguments = make_tree_vec (len);
19069 for (i = 0; i < len; i++)
19070 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
19071
19072 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
19073 expand each argument in the TREE_VALUE of t. */
19074 expr = make_node (EXPR_PACK_EXPANSION);
19075 PACK_EXPANSION_LOCAL_P (expr) = true;
19076 PACK_EXPANSION_PARAMETER_PACKS (expr) =
19077 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
19078
19079 if (TREE_VALUE (t) == void_type_node)
19080 /* VOID_TYPE_NODE is used to indicate
19081 value-initialization. */
19082 {
19083 for (i = 0; i < len; i++)
19084 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
19085 }
19086 else
19087 {
19088 /* Substitute parameter packs into each argument in the
19089 TREE_LIST. */
19090 in_base_initializer = 1;
19091 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
19092 {
19093 tree expanded_exprs;
19094
19095 /* Expand the argument. */
19096 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
19097 expanded_exprs
19098 = tsubst_pack_expansion (expr, argvec,
19099 tf_warning_or_error,
19100 NULL_TREE);
19101 if (expanded_exprs == error_mark_node)
19102 continue;
19103
19104 /* Prepend each of the expanded expressions to the
19105 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
19106 for (i = 0; i < len; i++)
19107 {
19108 TREE_VEC_ELT (expanded_arguments, i) =
19109 tree_cons (NULL_TREE,
19110 TREE_VEC_ELT (expanded_exprs, i),
19111 TREE_VEC_ELT (expanded_arguments, i));
19112 }
19113 }
19114 in_base_initializer = 0;
19115
19116 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
19117 since we built them backwards. */
19118 for (i = 0; i < len; i++)
19119 {
19120 TREE_VEC_ELT (expanded_arguments, i) =
19121 nreverse (TREE_VEC_ELT (expanded_arguments, i));
19122 }
19123 }
19124 }
19125
19126 for (i = 0; i < len; ++i)
19127 {
19128 if (expanded_bases)
19129 {
19130 decl = TREE_VEC_ELT (expanded_bases, i);
19131 decl = expand_member_init (decl);
19132 init = TREE_VEC_ELT (expanded_arguments, i);
19133 }
19134 else
19135 {
19136 tree tmp;
19137 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
19138 tf_warning_or_error, NULL_TREE);
19139
19140 decl = expand_member_init (decl);
19141 if (decl && !DECL_P (decl))
19142 in_base_initializer = 1;
19143
19144 init = TREE_VALUE (t);
19145 tmp = init;
19146 if (init != void_type_node)
19147 init = tsubst_expr (init, argvec,
19148 tf_warning_or_error, NULL_TREE,
19149 /*integral_constant_expression_p=*/false);
19150 if (init == NULL_TREE && tmp != NULL_TREE)
19151 /* If we had an initializer but it instantiated to nothing,
19152 value-initialize the object. This will only occur when
19153 the initializer was a pack expansion where the parameter
19154 packs used in that expansion were of length zero. */
19155 init = void_type_node;
19156 in_base_initializer = 0;
19157 }
19158
19159 if (decl)
19160 {
19161 init = build_tree_list (decl, init);
19162 TREE_CHAIN (init) = inits;
19163 inits = init;
19164 }
19165 }
19166 }
19167 return inits;
19168 }
19169
19170 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
19171
19172 static void
19173 set_current_access_from_decl (tree decl)
19174 {
19175 if (TREE_PRIVATE (decl))
19176 current_access_specifier = access_private_node;
19177 else if (TREE_PROTECTED (decl))
19178 current_access_specifier = access_protected_node;
19179 else
19180 current_access_specifier = access_public_node;
19181 }
19182
19183 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
19184 is the instantiation (which should have been created with
19185 start_enum) and ARGS are the template arguments to use. */
19186
19187 static void
19188 tsubst_enum (tree tag, tree newtag, tree args)
19189 {
19190 tree e;
19191
19192 if (SCOPED_ENUM_P (newtag))
19193 begin_scope (sk_scoped_enum, newtag);
19194
19195 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
19196 {
19197 tree value;
19198 tree decl;
19199
19200 decl = TREE_VALUE (e);
19201 /* Note that in a template enum, the TREE_VALUE is the
19202 CONST_DECL, not the corresponding INTEGER_CST. */
19203 value = tsubst_expr (DECL_INITIAL (decl),
19204 args, tf_warning_or_error, NULL_TREE,
19205 /*integral_constant_expression_p=*/true);
19206
19207 /* Give this enumeration constant the correct access. */
19208 set_current_access_from_decl (decl);
19209
19210 /* Actually build the enumerator itself. */
19211 build_enumerator
19212 (DECL_NAME (decl), value, newtag, DECL_SOURCE_LOCATION (decl));
19213 }
19214
19215 if (SCOPED_ENUM_P (newtag))
19216 finish_scope ();
19217
19218 finish_enum_value_list (newtag);
19219 finish_enum (newtag);
19220
19221 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
19222 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
19223 }
19224
19225 /* DECL is a FUNCTION_DECL that is a template specialization. Return
19226 its type -- but without substituting the innermost set of template
19227 arguments. So, innermost set of template parameters will appear in
19228 the type. */
19229
19230 tree
19231 get_mostly_instantiated_function_type (tree decl)
19232 {
19233 tree fn_type;
19234 tree tmpl;
19235 tree targs;
19236 tree tparms;
19237 int parm_depth;
19238
19239 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
19240 targs = DECL_TI_ARGS (decl);
19241 tparms = DECL_TEMPLATE_PARMS (tmpl);
19242 parm_depth = TMPL_PARMS_DEPTH (tparms);
19243
19244 /* There should be as many levels of arguments as there are levels
19245 of parameters. */
19246 gcc_assert (parm_depth == TMPL_ARGS_DEPTH (targs));
19247
19248 fn_type = TREE_TYPE (tmpl);
19249
19250 if (parm_depth == 1)
19251 /* No substitution is necessary. */
19252 ;
19253 else
19254 {
19255 int i;
19256 tree partial_args;
19257
19258 /* Replace the innermost level of the TARGS with NULL_TREEs to
19259 let tsubst know not to substitute for those parameters. */
19260 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
19261 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
19262 SET_TMPL_ARGS_LEVEL (partial_args, i,
19263 TMPL_ARGS_LEVEL (targs, i));
19264 SET_TMPL_ARGS_LEVEL (partial_args,
19265 TMPL_ARGS_DEPTH (targs),
19266 make_tree_vec (DECL_NTPARMS (tmpl)));
19267
19268 /* Make sure that we can see identifiers, and compute access
19269 correctly. */
19270 push_access_scope (decl);
19271
19272 ++processing_template_decl;
19273 /* Now, do the (partial) substitution to figure out the
19274 appropriate function type. */
19275 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
19276 --processing_template_decl;
19277
19278 /* Substitute into the template parameters to obtain the real
19279 innermost set of parameters. This step is important if the
19280 innermost set of template parameters contains value
19281 parameters whose types depend on outer template parameters. */
19282 TREE_VEC_LENGTH (partial_args)--;
19283 tparms = tsubst_template_parms (tparms, partial_args, tf_error);
19284
19285 pop_access_scope (decl);
19286 }
19287
19288 return fn_type;
19289 }
19290
19291 /* Return truthvalue if we're processing a template different from
19292 the last one involved in diagnostics. */
19293 int
19294 problematic_instantiation_changed (void)
19295 {
19296 return current_tinst_level != last_error_tinst_level;
19297 }
19298
19299 /* Remember current template involved in diagnostics. */
19300 void
19301 record_last_problematic_instantiation (void)
19302 {
19303 last_error_tinst_level = current_tinst_level;
19304 }
19305
19306 struct tinst_level *
19307 current_instantiation (void)
19308 {
19309 return current_tinst_level;
19310 }
19311
19312 /* [temp.param] Check that template non-type parm TYPE is of an allowable
19313 type. Return zero for ok, nonzero for disallowed. Issue error and
19314 warning messages under control of COMPLAIN. */
19315
19316 static int
19317 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
19318 {
19319 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
19320 return 0;
19321 else if (POINTER_TYPE_P (type))
19322 return 0;
19323 else if (TYPE_PTRMEM_P (type))
19324 return 0;
19325 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
19326 return 0;
19327 else if (TREE_CODE (type) == TYPENAME_TYPE)
19328 return 0;
19329 else if (TREE_CODE (type) == DECLTYPE_TYPE)
19330 return 0;
19331 else if (TREE_CODE (type) == NULLPTR_TYPE)
19332 return 0;
19333
19334 if (complain & tf_error)
19335 {
19336 if (type == error_mark_node)
19337 inform (input_location, "invalid template non-type parameter");
19338 else
19339 error ("%q#T is not a valid type for a template non-type parameter",
19340 type);
19341 }
19342 return 1;
19343 }
19344
19345 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
19346 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
19347
19348 static bool
19349 dependent_type_p_r (tree type)
19350 {
19351 tree scope;
19352
19353 /* [temp.dep.type]
19354
19355 A type is dependent if it is:
19356
19357 -- a template parameter. Template template parameters are types
19358 for us (since TYPE_P holds true for them) so we handle
19359 them here. */
19360 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
19361 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
19362 return true;
19363 /* -- a qualified-id with a nested-name-specifier which contains a
19364 class-name that names a dependent type or whose unqualified-id
19365 names a dependent type. */
19366 if (TREE_CODE (type) == TYPENAME_TYPE)
19367 return true;
19368 /* -- a cv-qualified type where the cv-unqualified type is
19369 dependent. */
19370 type = TYPE_MAIN_VARIANT (type);
19371 /* -- a compound type constructed from any dependent type. */
19372 if (TYPE_PTRMEM_P (type))
19373 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
19374 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
19375 (type)));
19376 else if (TYPE_PTR_P (type)
19377 || TREE_CODE (type) == REFERENCE_TYPE)
19378 return dependent_type_p (TREE_TYPE (type));
19379 else if (TREE_CODE (type) == FUNCTION_TYPE
19380 || TREE_CODE (type) == METHOD_TYPE)
19381 {
19382 tree arg_type;
19383
19384 if (dependent_type_p (TREE_TYPE (type)))
19385 return true;
19386 for (arg_type = TYPE_ARG_TYPES (type);
19387 arg_type;
19388 arg_type = TREE_CHAIN (arg_type))
19389 if (dependent_type_p (TREE_VALUE (arg_type)))
19390 return true;
19391 return false;
19392 }
19393 /* -- an array type constructed from any dependent type or whose
19394 size is specified by a constant expression that is
19395 value-dependent.
19396
19397 We checked for type- and value-dependence of the bounds in
19398 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
19399 if (TREE_CODE (type) == ARRAY_TYPE)
19400 {
19401 if (TYPE_DOMAIN (type)
19402 && dependent_type_p (TYPE_DOMAIN (type)))
19403 return true;
19404 return dependent_type_p (TREE_TYPE (type));
19405 }
19406
19407 /* -- a template-id in which either the template name is a template
19408 parameter ... */
19409 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
19410 return true;
19411 /* ... or any of the template arguments is a dependent type or
19412 an expression that is type-dependent or value-dependent. */
19413 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
19414 && (any_dependent_template_arguments_p
19415 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
19416 return true;
19417
19418 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
19419 dependent; if the argument of the `typeof' expression is not
19420 type-dependent, then it should already been have resolved. */
19421 if (TREE_CODE (type) == TYPEOF_TYPE
19422 || TREE_CODE (type) == DECLTYPE_TYPE
19423 || TREE_CODE (type) == UNDERLYING_TYPE)
19424 return true;
19425
19426 /* A template argument pack is dependent if any of its packed
19427 arguments are. */
19428 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
19429 {
19430 tree args = ARGUMENT_PACK_ARGS (type);
19431 int i, len = TREE_VEC_LENGTH (args);
19432 for (i = 0; i < len; ++i)
19433 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
19434 return true;
19435 }
19436
19437 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
19438 be template parameters. */
19439 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
19440 return true;
19441
19442 /* The standard does not specifically mention types that are local
19443 to template functions or local classes, but they should be
19444 considered dependent too. For example:
19445
19446 template <int I> void f() {
19447 enum E { a = I };
19448 S<sizeof (E)> s;
19449 }
19450
19451 The size of `E' cannot be known until the value of `I' has been
19452 determined. Therefore, `E' must be considered dependent. */
19453 scope = TYPE_CONTEXT (type);
19454 if (scope && TYPE_P (scope))
19455 return dependent_type_p (scope);
19456 /* Don't use type_dependent_expression_p here, as it can lead
19457 to infinite recursion trying to determine whether a lambda
19458 nested in a lambda is dependent (c++/47687). */
19459 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
19460 && DECL_LANG_SPECIFIC (scope)
19461 && DECL_TEMPLATE_INFO (scope)
19462 && (any_dependent_template_arguments_p
19463 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
19464 return true;
19465
19466 /* Other types are non-dependent. */
19467 return false;
19468 }
19469
19470 /* Returns TRUE if TYPE is dependent, in the sense of
19471 [temp.dep.type]. Note that a NULL type is considered dependent. */
19472
19473 bool
19474 dependent_type_p (tree type)
19475 {
19476 /* If there are no template parameters in scope, then there can't be
19477 any dependent types. */
19478 if (!processing_template_decl)
19479 {
19480 /* If we are not processing a template, then nobody should be
19481 providing us with a dependent type. */
19482 gcc_assert (type);
19483 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
19484 return false;
19485 }
19486
19487 /* If the type is NULL, we have not computed a type for the entity
19488 in question; in that case, the type is dependent. */
19489 if (!type)
19490 return true;
19491
19492 /* Erroneous types can be considered non-dependent. */
19493 if (type == error_mark_node)
19494 return false;
19495
19496 /* If we have not already computed the appropriate value for TYPE,
19497 do so now. */
19498 if (!TYPE_DEPENDENT_P_VALID (type))
19499 {
19500 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
19501 TYPE_DEPENDENT_P_VALID (type) = 1;
19502 }
19503
19504 return TYPE_DEPENDENT_P (type);
19505 }
19506
19507 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
19508 lookup. In other words, a dependent type that is not the current
19509 instantiation. */
19510
19511 bool
19512 dependent_scope_p (tree scope)
19513 {
19514 return (scope && TYPE_P (scope) && dependent_type_p (scope)
19515 && !currently_open_class (scope));
19516 }
19517
19518 /* T is a SCOPE_REF; return whether we need to consider it
19519 instantiation-dependent so that we can check access at instantiation
19520 time even though we know which member it resolves to. */
19521
19522 static bool
19523 instantiation_dependent_scope_ref_p (tree t)
19524 {
19525 if (DECL_P (TREE_OPERAND (t, 1))
19526 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
19527 && accessible_in_template_p (TREE_OPERAND (t, 0),
19528 TREE_OPERAND (t, 1)))
19529 return false;
19530 else
19531 return true;
19532 }
19533
19534 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
19535 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
19536 expression. */
19537
19538 /* Note that this predicate is not appropriate for general expressions;
19539 only constant expressions (that satisfy potential_constant_expression)
19540 can be tested for value dependence. */
19541
19542 bool
19543 value_dependent_expression_p (tree expression)
19544 {
19545 if (!processing_template_decl)
19546 return false;
19547
19548 /* A name declared with a dependent type. */
19549 if (DECL_P (expression) && type_dependent_expression_p (expression))
19550 return true;
19551
19552 switch (TREE_CODE (expression))
19553 {
19554 case IDENTIFIER_NODE:
19555 /* A name that has not been looked up -- must be dependent. */
19556 return true;
19557
19558 case TEMPLATE_PARM_INDEX:
19559 /* A non-type template parm. */
19560 return true;
19561
19562 case CONST_DECL:
19563 /* A non-type template parm. */
19564 if (DECL_TEMPLATE_PARM_P (expression))
19565 return true;
19566 return value_dependent_expression_p (DECL_INITIAL (expression));
19567
19568 case VAR_DECL:
19569 /* A constant with literal type and is initialized
19570 with an expression that is value-dependent.
19571
19572 Note that a non-dependent parenthesized initializer will have
19573 already been replaced with its constant value, so if we see
19574 a TREE_LIST it must be dependent. */
19575 if (DECL_INITIAL (expression)
19576 && decl_constant_var_p (expression)
19577 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
19578 || value_dependent_expression_p (DECL_INITIAL (expression))))
19579 return true;
19580 return false;
19581
19582 case DYNAMIC_CAST_EXPR:
19583 case STATIC_CAST_EXPR:
19584 case CONST_CAST_EXPR:
19585 case REINTERPRET_CAST_EXPR:
19586 case CAST_EXPR:
19587 /* These expressions are value-dependent if the type to which
19588 the cast occurs is dependent or the expression being casted
19589 is value-dependent. */
19590 {
19591 tree type = TREE_TYPE (expression);
19592
19593 if (dependent_type_p (type))
19594 return true;
19595
19596 /* A functional cast has a list of operands. */
19597 expression = TREE_OPERAND (expression, 0);
19598 if (!expression)
19599 {
19600 /* If there are no operands, it must be an expression such
19601 as "int()". This should not happen for aggregate types
19602 because it would form non-constant expressions. */
19603 gcc_assert (cxx_dialect >= cxx0x
19604 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
19605
19606 return false;
19607 }
19608
19609 if (TREE_CODE (expression) == TREE_LIST)
19610 return any_value_dependent_elements_p (expression);
19611
19612 return value_dependent_expression_p (expression);
19613 }
19614
19615 case SIZEOF_EXPR:
19616 if (SIZEOF_EXPR_TYPE_P (expression))
19617 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
19618 /* FALLTHRU */
19619 case ALIGNOF_EXPR:
19620 case TYPEID_EXPR:
19621 /* A `sizeof' expression is value-dependent if the operand is
19622 type-dependent or is a pack expansion. */
19623 expression = TREE_OPERAND (expression, 0);
19624 if (PACK_EXPANSION_P (expression))
19625 return true;
19626 else if (TYPE_P (expression))
19627 return dependent_type_p (expression);
19628 return instantiation_dependent_expression_p (expression);
19629
19630 case AT_ENCODE_EXPR:
19631 /* An 'encode' expression is value-dependent if the operand is
19632 type-dependent. */
19633 expression = TREE_OPERAND (expression, 0);
19634 return dependent_type_p (expression);
19635
19636 case NOEXCEPT_EXPR:
19637 expression = TREE_OPERAND (expression, 0);
19638 return instantiation_dependent_expression_p (expression);
19639
19640 case SCOPE_REF:
19641 /* All instantiation-dependent expressions should also be considered
19642 value-dependent. */
19643 return instantiation_dependent_scope_ref_p (expression);
19644
19645 case COMPONENT_REF:
19646 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
19647 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
19648
19649 case NONTYPE_ARGUMENT_PACK:
19650 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
19651 is value-dependent. */
19652 {
19653 tree values = ARGUMENT_PACK_ARGS (expression);
19654 int i, len = TREE_VEC_LENGTH (values);
19655
19656 for (i = 0; i < len; ++i)
19657 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
19658 return true;
19659
19660 return false;
19661 }
19662
19663 case TRAIT_EXPR:
19664 {
19665 tree type2 = TRAIT_EXPR_TYPE2 (expression);
19666 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
19667 || (type2 ? dependent_type_p (type2) : false));
19668 }
19669
19670 case MODOP_EXPR:
19671 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
19672 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
19673
19674 case ARRAY_REF:
19675 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
19676 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
19677
19678 case ADDR_EXPR:
19679 {
19680 tree op = TREE_OPERAND (expression, 0);
19681 return (value_dependent_expression_p (op)
19682 || has_value_dependent_address (op));
19683 }
19684
19685 case CALL_EXPR:
19686 {
19687 tree fn = get_callee_fndecl (expression);
19688 int i, nargs;
19689 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
19690 return true;
19691 nargs = call_expr_nargs (expression);
19692 for (i = 0; i < nargs; ++i)
19693 {
19694 tree op = CALL_EXPR_ARG (expression, i);
19695 /* In a call to a constexpr member function, look through the
19696 implicit ADDR_EXPR on the object argument so that it doesn't
19697 cause the call to be considered value-dependent. We also
19698 look through it in potential_constant_expression. */
19699 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
19700 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
19701 && TREE_CODE (op) == ADDR_EXPR)
19702 op = TREE_OPERAND (op, 0);
19703 if (value_dependent_expression_p (op))
19704 return true;
19705 }
19706 return false;
19707 }
19708
19709 case TEMPLATE_ID_EXPR:
19710 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
19711 type-dependent. */
19712 return type_dependent_expression_p (expression);
19713
19714 case CONSTRUCTOR:
19715 {
19716 unsigned ix;
19717 tree val;
19718 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
19719 if (value_dependent_expression_p (val))
19720 return true;
19721 return false;
19722 }
19723
19724 case STMT_EXPR:
19725 /* Treat a GNU statement expression as dependent to avoid crashing
19726 under fold_non_dependent_expr; it can't be constant. */
19727 return true;
19728
19729 default:
19730 /* A constant expression is value-dependent if any subexpression is
19731 value-dependent. */
19732 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
19733 {
19734 case tcc_reference:
19735 case tcc_unary:
19736 case tcc_comparison:
19737 case tcc_binary:
19738 case tcc_expression:
19739 case tcc_vl_exp:
19740 {
19741 int i, len = cp_tree_operand_length (expression);
19742
19743 for (i = 0; i < len; i++)
19744 {
19745 tree t = TREE_OPERAND (expression, i);
19746
19747 /* In some cases, some of the operands may be missing.l
19748 (For example, in the case of PREDECREMENT_EXPR, the
19749 amount to increment by may be missing.) That doesn't
19750 make the expression dependent. */
19751 if (t && value_dependent_expression_p (t))
19752 return true;
19753 }
19754 }
19755 break;
19756 default:
19757 break;
19758 }
19759 break;
19760 }
19761
19762 /* The expression is not value-dependent. */
19763 return false;
19764 }
19765
19766 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
19767 [temp.dep.expr]. Note that an expression with no type is
19768 considered dependent. Other parts of the compiler arrange for an
19769 expression with type-dependent subexpressions to have no type, so
19770 this function doesn't have to be fully recursive. */
19771
19772 bool
19773 type_dependent_expression_p (tree expression)
19774 {
19775 if (!processing_template_decl)
19776 return false;
19777
19778 if (expression == error_mark_node)
19779 return false;
19780
19781 /* An unresolved name is always dependent. */
19782 if (identifier_p (expression) || TREE_CODE (expression) == USING_DECL)
19783 return true;
19784
19785 /* Some expression forms are never type-dependent. */
19786 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
19787 || TREE_CODE (expression) == SIZEOF_EXPR
19788 || TREE_CODE (expression) == ALIGNOF_EXPR
19789 || TREE_CODE (expression) == AT_ENCODE_EXPR
19790 || TREE_CODE (expression) == NOEXCEPT_EXPR
19791 || TREE_CODE (expression) == TRAIT_EXPR
19792 || TREE_CODE (expression) == TYPEID_EXPR
19793 || TREE_CODE (expression) == DELETE_EXPR
19794 || TREE_CODE (expression) == VEC_DELETE_EXPR
19795 || TREE_CODE (expression) == THROW_EXPR)
19796 return false;
19797
19798 /* The types of these expressions depends only on the type to which
19799 the cast occurs. */
19800 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
19801 || TREE_CODE (expression) == STATIC_CAST_EXPR
19802 || TREE_CODE (expression) == CONST_CAST_EXPR
19803 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
19804 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
19805 || TREE_CODE (expression) == CAST_EXPR)
19806 return dependent_type_p (TREE_TYPE (expression));
19807
19808 /* The types of these expressions depends only on the type created
19809 by the expression. */
19810 if (TREE_CODE (expression) == NEW_EXPR
19811 || TREE_CODE (expression) == VEC_NEW_EXPR)
19812 {
19813 /* For NEW_EXPR tree nodes created inside a template, either
19814 the object type itself or a TREE_LIST may appear as the
19815 operand 1. */
19816 tree type = TREE_OPERAND (expression, 1);
19817 if (TREE_CODE (type) == TREE_LIST)
19818 /* This is an array type. We need to check array dimensions
19819 as well. */
19820 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
19821 || value_dependent_expression_p
19822 (TREE_OPERAND (TREE_VALUE (type), 1));
19823 else
19824 return dependent_type_p (type);
19825 }
19826
19827 if (TREE_CODE (expression) == SCOPE_REF)
19828 {
19829 tree scope = TREE_OPERAND (expression, 0);
19830 tree name = TREE_OPERAND (expression, 1);
19831
19832 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
19833 contains an identifier associated by name lookup with one or more
19834 declarations declared with a dependent type, or...a
19835 nested-name-specifier or qualified-id that names a member of an
19836 unknown specialization. */
19837 return (type_dependent_expression_p (name)
19838 || dependent_scope_p (scope));
19839 }
19840
19841 if (TREE_CODE (expression) == FUNCTION_DECL
19842 && DECL_LANG_SPECIFIC (expression)
19843 && DECL_TEMPLATE_INFO (expression)
19844 && (any_dependent_template_arguments_p
19845 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
19846 return true;
19847
19848 if (TREE_CODE (expression) == TEMPLATE_DECL
19849 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
19850 return false;
19851
19852 if (TREE_CODE (expression) == STMT_EXPR)
19853 expression = stmt_expr_value_expr (expression);
19854
19855 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
19856 {
19857 tree elt;
19858 unsigned i;
19859
19860 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
19861 {
19862 if (type_dependent_expression_p (elt))
19863 return true;
19864 }
19865 return false;
19866 }
19867
19868 /* A static data member of the current instantiation with incomplete
19869 array type is type-dependent, as the definition and specializations
19870 can have different bounds. */
19871 if (VAR_P (expression)
19872 && DECL_CLASS_SCOPE_P (expression)
19873 && dependent_type_p (DECL_CONTEXT (expression))
19874 && VAR_HAD_UNKNOWN_BOUND (expression))
19875 return true;
19876
19877 if (TREE_TYPE (expression) == unknown_type_node)
19878 {
19879 if (TREE_CODE (expression) == ADDR_EXPR)
19880 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
19881 if (TREE_CODE (expression) == COMPONENT_REF
19882 || TREE_CODE (expression) == OFFSET_REF)
19883 {
19884 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
19885 return true;
19886 expression = TREE_OPERAND (expression, 1);
19887 if (identifier_p (expression))
19888 return false;
19889 }
19890 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
19891 if (TREE_CODE (expression) == SCOPE_REF)
19892 return false;
19893
19894 if (BASELINK_P (expression))
19895 expression = BASELINK_FUNCTIONS (expression);
19896
19897 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
19898 {
19899 if (any_dependent_template_arguments_p
19900 (TREE_OPERAND (expression, 1)))
19901 return true;
19902 expression = TREE_OPERAND (expression, 0);
19903 }
19904 gcc_assert (TREE_CODE (expression) == OVERLOAD
19905 || TREE_CODE (expression) == FUNCTION_DECL);
19906
19907 while (expression)
19908 {
19909 if (type_dependent_expression_p (OVL_CURRENT (expression)))
19910 return true;
19911 expression = OVL_NEXT (expression);
19912 }
19913 return false;
19914 }
19915
19916 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
19917
19918 return (dependent_type_p (TREE_TYPE (expression)));
19919 }
19920
19921 /* walk_tree callback function for instantiation_dependent_expression_p,
19922 below. Returns non-zero if a dependent subexpression is found. */
19923
19924 static tree
19925 instantiation_dependent_r (tree *tp, int *walk_subtrees,
19926 void * /*data*/)
19927 {
19928 if (TYPE_P (*tp))
19929 {
19930 /* We don't have to worry about decltype currently because decltype
19931 of an instantiation-dependent expr is a dependent type. This
19932 might change depending on the resolution of DR 1172. */
19933 *walk_subtrees = false;
19934 return NULL_TREE;
19935 }
19936 enum tree_code code = TREE_CODE (*tp);
19937 switch (code)
19938 {
19939 /* Don't treat an argument list as dependent just because it has no
19940 TREE_TYPE. */
19941 case TREE_LIST:
19942 case TREE_VEC:
19943 return NULL_TREE;
19944
19945 case VAR_DECL:
19946 case CONST_DECL:
19947 /* A constant with a dependent initializer is dependent. */
19948 if (value_dependent_expression_p (*tp))
19949 return *tp;
19950 break;
19951
19952 case TEMPLATE_PARM_INDEX:
19953 return *tp;
19954
19955 /* Handle expressions with type operands. */
19956 case SIZEOF_EXPR:
19957 case ALIGNOF_EXPR:
19958 case TYPEID_EXPR:
19959 case AT_ENCODE_EXPR:
19960 {
19961 tree op = TREE_OPERAND (*tp, 0);
19962 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
19963 op = TREE_TYPE (op);
19964 if (TYPE_P (op))
19965 {
19966 if (dependent_type_p (op))
19967 return *tp;
19968 else
19969 {
19970 *walk_subtrees = false;
19971 return NULL_TREE;
19972 }
19973 }
19974 break;
19975 }
19976
19977 case TRAIT_EXPR:
19978 if (dependent_type_p (TRAIT_EXPR_TYPE1 (*tp))
19979 || dependent_type_p (TRAIT_EXPR_TYPE2 (*tp)))
19980 return *tp;
19981 *walk_subtrees = false;
19982 return NULL_TREE;
19983
19984 case COMPONENT_REF:
19985 if (identifier_p (TREE_OPERAND (*tp, 1)))
19986 /* In a template, finish_class_member_access_expr creates a
19987 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
19988 type-dependent, so that we can check access control at
19989 instantiation time (PR 42277). See also Core issue 1273. */
19990 return *tp;
19991 break;
19992
19993 case SCOPE_REF:
19994 if (instantiation_dependent_scope_ref_p (*tp))
19995 return *tp;
19996 else
19997 break;
19998
19999 /* Treat statement-expressions as dependent. */
20000 case BIND_EXPR:
20001 return *tp;
20002
20003 default:
20004 break;
20005 }
20006
20007 if (type_dependent_expression_p (*tp))
20008 return *tp;
20009 else
20010 return NULL_TREE;
20011 }
20012
20013 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
20014 sense defined by the ABI:
20015
20016 "An expression is instantiation-dependent if it is type-dependent
20017 or value-dependent, or it has a subexpression that is type-dependent
20018 or value-dependent." */
20019
20020 bool
20021 instantiation_dependent_expression_p (tree expression)
20022 {
20023 tree result;
20024
20025 if (!processing_template_decl)
20026 return false;
20027
20028 if (expression == error_mark_node)
20029 return false;
20030
20031 result = cp_walk_tree_without_duplicates (&expression,
20032 instantiation_dependent_r, NULL);
20033 return result != NULL_TREE;
20034 }
20035
20036 /* Like type_dependent_expression_p, but it also works while not processing
20037 a template definition, i.e. during substitution or mangling. */
20038
20039 bool
20040 type_dependent_expression_p_push (tree expr)
20041 {
20042 bool b;
20043 ++processing_template_decl;
20044 b = type_dependent_expression_p (expr);
20045 --processing_template_decl;
20046 return b;
20047 }
20048
20049 /* Returns TRUE if ARGS contains a type-dependent expression. */
20050
20051 bool
20052 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
20053 {
20054 unsigned int i;
20055 tree arg;
20056
20057 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
20058 {
20059 if (type_dependent_expression_p (arg))
20060 return true;
20061 }
20062 return false;
20063 }
20064
20065 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
20066 expressions) contains any type-dependent expressions. */
20067
20068 bool
20069 any_type_dependent_elements_p (const_tree list)
20070 {
20071 for (; list; list = TREE_CHAIN (list))
20072 if (value_dependent_expression_p (TREE_VALUE (list)))
20073 return true;
20074
20075 return false;
20076 }
20077
20078 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
20079 expressions) contains any value-dependent expressions. */
20080
20081 bool
20082 any_value_dependent_elements_p (const_tree list)
20083 {
20084 for (; list; list = TREE_CHAIN (list))
20085 if (value_dependent_expression_p (TREE_VALUE (list)))
20086 return true;
20087
20088 return false;
20089 }
20090
20091 /* Returns TRUE if the ARG (a template argument) is dependent. */
20092
20093 bool
20094 dependent_template_arg_p (tree arg)
20095 {
20096 if (!processing_template_decl)
20097 return false;
20098
20099 /* Assume a template argument that was wrongly written by the user
20100 is dependent. This is consistent with what
20101 any_dependent_template_arguments_p [that calls this function]
20102 does. */
20103 if (!arg || arg == error_mark_node)
20104 return true;
20105
20106 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
20107 arg = ARGUMENT_PACK_SELECT_ARG (arg);
20108
20109 if (TREE_CODE (arg) == TEMPLATE_DECL
20110 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
20111 return dependent_template_p (arg);
20112 else if (ARGUMENT_PACK_P (arg))
20113 {
20114 tree args = ARGUMENT_PACK_ARGS (arg);
20115 int i, len = TREE_VEC_LENGTH (args);
20116 for (i = 0; i < len; ++i)
20117 {
20118 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
20119 return true;
20120 }
20121
20122 return false;
20123 }
20124 else if (TYPE_P (arg))
20125 return dependent_type_p (arg);
20126 else
20127 return (type_dependent_expression_p (arg)
20128 || value_dependent_expression_p (arg));
20129 }
20130
20131 /* Returns true if ARGS (a collection of template arguments) contains
20132 any types that require structural equality testing. */
20133
20134 bool
20135 any_template_arguments_need_structural_equality_p (tree args)
20136 {
20137 int i;
20138 int j;
20139
20140 if (!args)
20141 return false;
20142 if (args == error_mark_node)
20143 return true;
20144
20145 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
20146 {
20147 tree level = TMPL_ARGS_LEVEL (args, i + 1);
20148 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
20149 {
20150 tree arg = TREE_VEC_ELT (level, j);
20151 tree packed_args = NULL_TREE;
20152 int k, len = 1;
20153
20154 if (ARGUMENT_PACK_P (arg))
20155 {
20156 /* Look inside the argument pack. */
20157 packed_args = ARGUMENT_PACK_ARGS (arg);
20158 len = TREE_VEC_LENGTH (packed_args);
20159 }
20160
20161 for (k = 0; k < len; ++k)
20162 {
20163 if (packed_args)
20164 arg = TREE_VEC_ELT (packed_args, k);
20165
20166 if (error_operand_p (arg))
20167 return true;
20168 else if (TREE_CODE (arg) == TEMPLATE_DECL
20169 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
20170 continue;
20171 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
20172 return true;
20173 else if (!TYPE_P (arg) && TREE_TYPE (arg)
20174 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
20175 return true;
20176 }
20177 }
20178 }
20179
20180 return false;
20181 }
20182
20183 /* Returns true if ARGS (a collection of template arguments) contains
20184 any dependent arguments. */
20185
20186 bool
20187 any_dependent_template_arguments_p (const_tree args)
20188 {
20189 int i;
20190 int j;
20191
20192 if (!args)
20193 return false;
20194 if (args == error_mark_node)
20195 return true;
20196
20197 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
20198 {
20199 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
20200 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
20201 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
20202 return true;
20203 }
20204
20205 return false;
20206 }
20207
20208 /* Returns TRUE if the template TMPL is dependent. */
20209
20210 bool
20211 dependent_template_p (tree tmpl)
20212 {
20213 if (TREE_CODE (tmpl) == OVERLOAD)
20214 {
20215 while (tmpl)
20216 {
20217 if (dependent_template_p (OVL_CURRENT (tmpl)))
20218 return true;
20219 tmpl = OVL_NEXT (tmpl);
20220 }
20221 return false;
20222 }
20223
20224 /* Template template parameters are dependent. */
20225 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
20226 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
20227 return true;
20228 /* So are names that have not been looked up. */
20229 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
20230 return true;
20231 /* So are member templates of dependent classes. */
20232 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
20233 return dependent_type_p (DECL_CONTEXT (tmpl));
20234 return false;
20235 }
20236
20237 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
20238
20239 bool
20240 dependent_template_id_p (tree tmpl, tree args)
20241 {
20242 return (dependent_template_p (tmpl)
20243 || any_dependent_template_arguments_p (args));
20244 }
20245
20246 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
20247 is dependent. */
20248
20249 bool
20250 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
20251 {
20252 int i;
20253
20254 if (!processing_template_decl)
20255 return false;
20256
20257 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
20258 {
20259 tree decl = TREE_VEC_ELT (declv, i);
20260 tree init = TREE_VEC_ELT (initv, i);
20261 tree cond = TREE_VEC_ELT (condv, i);
20262 tree incr = TREE_VEC_ELT (incrv, i);
20263
20264 if (type_dependent_expression_p (decl))
20265 return true;
20266
20267 if (init && type_dependent_expression_p (init))
20268 return true;
20269
20270 if (type_dependent_expression_p (cond))
20271 return true;
20272
20273 if (COMPARISON_CLASS_P (cond)
20274 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
20275 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
20276 return true;
20277
20278 if (TREE_CODE (incr) == MODOP_EXPR)
20279 {
20280 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
20281 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
20282 return true;
20283 }
20284 else if (type_dependent_expression_p (incr))
20285 return true;
20286 else if (TREE_CODE (incr) == MODIFY_EXPR)
20287 {
20288 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
20289 return true;
20290 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
20291 {
20292 tree t = TREE_OPERAND (incr, 1);
20293 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
20294 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
20295 return true;
20296 }
20297 }
20298 }
20299
20300 return false;
20301 }
20302
20303 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
20304 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
20305 no such TYPE can be found. Note that this function peers inside
20306 uninstantiated templates and therefore should be used only in
20307 extremely limited situations. ONLY_CURRENT_P restricts this
20308 peering to the currently open classes hierarchy (which is required
20309 when comparing types). */
20310
20311 tree
20312 resolve_typename_type (tree type, bool only_current_p)
20313 {
20314 tree scope;
20315 tree name;
20316 tree decl;
20317 int quals;
20318 tree pushed_scope;
20319 tree result;
20320
20321 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
20322
20323 scope = TYPE_CONTEXT (type);
20324 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
20325 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
20326 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
20327 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
20328 identifier of the TYPENAME_TYPE anymore.
20329 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
20330 TYPENAME_TYPE instead, we avoid messing up with a possible
20331 typedef variant case. */
20332 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
20333
20334 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
20335 it first before we can figure out what NAME refers to. */
20336 if (TREE_CODE (scope) == TYPENAME_TYPE)
20337 {
20338 if (TYPENAME_IS_RESOLVING_P (scope))
20339 /* Given a class template A with a dependent base with nested type C,
20340 typedef typename A::C::C C will land us here, as trying to resolve
20341 the initial A::C leads to the local C typedef, which leads back to
20342 A::C::C. So we break the recursion now. */
20343 return type;
20344 else
20345 scope = resolve_typename_type (scope, only_current_p);
20346 }
20347 /* If we don't know what SCOPE refers to, then we cannot resolve the
20348 TYPENAME_TYPE. */
20349 if (TREE_CODE (scope) == TYPENAME_TYPE)
20350 return type;
20351 /* If the SCOPE is a template type parameter, we have no way of
20352 resolving the name. */
20353 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
20354 return type;
20355 /* If the SCOPE is not the current instantiation, there's no reason
20356 to look inside it. */
20357 if (only_current_p && !currently_open_class (scope))
20358 return type;
20359 /* If this is a typedef, we don't want to look inside (c++/11987). */
20360 if (typedef_variant_p (type))
20361 return type;
20362 /* If SCOPE isn't the template itself, it will not have a valid
20363 TYPE_FIELDS list. */
20364 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
20365 /* scope is either the template itself or a compatible instantiation
20366 like X<T>, so look up the name in the original template. */
20367 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
20368 else
20369 /* scope is a partial instantiation, so we can't do the lookup or we
20370 will lose the template arguments. */
20371 return type;
20372 /* Enter the SCOPE so that name lookup will be resolved as if we
20373 were in the class definition. In particular, SCOPE will no
20374 longer be considered a dependent type. */
20375 pushed_scope = push_scope (scope);
20376 /* Look up the declaration. */
20377 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
20378 tf_warning_or_error);
20379
20380 result = NULL_TREE;
20381
20382 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
20383 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
20384 if (!decl)
20385 /*nop*/;
20386 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
20387 && TREE_CODE (decl) == TYPE_DECL)
20388 {
20389 result = TREE_TYPE (decl);
20390 if (result == error_mark_node)
20391 result = NULL_TREE;
20392 }
20393 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
20394 && DECL_CLASS_TEMPLATE_P (decl))
20395 {
20396 tree tmpl;
20397 tree args;
20398 /* Obtain the template and the arguments. */
20399 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
20400 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
20401 /* Instantiate the template. */
20402 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
20403 /*entering_scope=*/0,
20404 tf_error | tf_user);
20405 if (result == error_mark_node)
20406 result = NULL_TREE;
20407 }
20408
20409 /* Leave the SCOPE. */
20410 if (pushed_scope)
20411 pop_scope (pushed_scope);
20412
20413 /* If we failed to resolve it, return the original typename. */
20414 if (!result)
20415 return type;
20416
20417 /* If lookup found a typename type, resolve that too. */
20418 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
20419 {
20420 /* Ill-formed programs can cause infinite recursion here, so we
20421 must catch that. */
20422 TYPENAME_IS_RESOLVING_P (type) = 1;
20423 result = resolve_typename_type (result, only_current_p);
20424 TYPENAME_IS_RESOLVING_P (type) = 0;
20425 }
20426
20427 /* Qualify the resulting type. */
20428 quals = cp_type_quals (type);
20429 if (quals)
20430 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
20431
20432 return result;
20433 }
20434
20435 /* EXPR is an expression which is not type-dependent. Return a proxy
20436 for EXPR that can be used to compute the types of larger
20437 expressions containing EXPR. */
20438
20439 tree
20440 build_non_dependent_expr (tree expr)
20441 {
20442 tree inner_expr;
20443
20444 #ifdef ENABLE_CHECKING
20445 /* Try to get a constant value for all non-dependent expressions in
20446 order to expose bugs in *_dependent_expression_p and constexpr. */
20447 if (cxx_dialect >= cxx0x)
20448 maybe_constant_value (fold_non_dependent_expr_sfinae (expr, tf_none));
20449 #endif
20450
20451 /* Preserve OVERLOADs; the functions must be available to resolve
20452 types. */
20453 inner_expr = expr;
20454 if (TREE_CODE (inner_expr) == STMT_EXPR)
20455 inner_expr = stmt_expr_value_expr (inner_expr);
20456 if (TREE_CODE (inner_expr) == ADDR_EXPR)
20457 inner_expr = TREE_OPERAND (inner_expr, 0);
20458 if (TREE_CODE (inner_expr) == COMPONENT_REF)
20459 inner_expr = TREE_OPERAND (inner_expr, 1);
20460 if (is_overloaded_fn (inner_expr)
20461 || TREE_CODE (inner_expr) == OFFSET_REF)
20462 return expr;
20463 /* There is no need to return a proxy for a variable. */
20464 if (VAR_P (expr))
20465 return expr;
20466 /* Preserve string constants; conversions from string constants to
20467 "char *" are allowed, even though normally a "const char *"
20468 cannot be used to initialize a "char *". */
20469 if (TREE_CODE (expr) == STRING_CST)
20470 return expr;
20471 /* Preserve arithmetic constants, as an optimization -- there is no
20472 reason to create a new node. */
20473 if (TREE_CODE (expr) == INTEGER_CST || TREE_CODE (expr) == REAL_CST)
20474 return expr;
20475 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
20476 There is at least one place where we want to know that a
20477 particular expression is a throw-expression: when checking a ?:
20478 expression, there are special rules if the second or third
20479 argument is a throw-expression. */
20480 if (TREE_CODE (expr) == THROW_EXPR)
20481 return expr;
20482
20483 /* Don't wrap an initializer list, we need to be able to look inside. */
20484 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
20485 return expr;
20486
20487 /* Don't wrap a dummy object, we need to be able to test for it. */
20488 if (is_dummy_object (expr))
20489 return expr;
20490
20491 if (TREE_CODE (expr) == COND_EXPR)
20492 return build3 (COND_EXPR,
20493 TREE_TYPE (expr),
20494 TREE_OPERAND (expr, 0),
20495 (TREE_OPERAND (expr, 1)
20496 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
20497 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
20498 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
20499 if (TREE_CODE (expr) == COMPOUND_EXPR
20500 && !COMPOUND_EXPR_OVERLOADED (expr))
20501 return build2 (COMPOUND_EXPR,
20502 TREE_TYPE (expr),
20503 TREE_OPERAND (expr, 0),
20504 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
20505
20506 /* If the type is unknown, it can't really be non-dependent */
20507 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
20508
20509 /* Otherwise, build a NON_DEPENDENT_EXPR. */
20510 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
20511 }
20512
20513 /* ARGS is a vector of expressions as arguments to a function call.
20514 Replace the arguments with equivalent non-dependent expressions.
20515 This modifies ARGS in place. */
20516
20517 void
20518 make_args_non_dependent (vec<tree, va_gc> *args)
20519 {
20520 unsigned int ix;
20521 tree arg;
20522
20523 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
20524 {
20525 tree newarg = build_non_dependent_expr (arg);
20526 if (newarg != arg)
20527 (*args)[ix] = newarg;
20528 }
20529 }
20530
20531 /* Returns a type which represents 'auto'. We use a TEMPLATE_TYPE_PARM
20532 with a level one deeper than the actual template parms. */
20533
20534 tree
20535 make_auto (void)
20536 {
20537 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
20538 TYPE_NAME (au) = build_decl (BUILTINS_LOCATION,
20539 TYPE_DECL, get_identifier ("auto"), au);
20540 TYPE_STUB_DECL (au) = TYPE_NAME (au);
20541 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
20542 (0, processing_template_decl + 1, processing_template_decl + 1,
20543 TYPE_NAME (au), NULL_TREE);
20544 TYPE_CANONICAL (au) = canonical_type_parameter (au);
20545 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
20546 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
20547
20548 return au;
20549 }
20550
20551 /* Given type ARG, return std::initializer_list<ARG>. */
20552
20553 static tree
20554 listify (tree arg)
20555 {
20556 tree std_init_list = namespace_binding
20557 (get_identifier ("initializer_list"), std_node);
20558 tree argvec;
20559 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
20560 {
20561 error ("deducing from brace-enclosed initializer list requires "
20562 "#include <initializer_list>");
20563 return error_mark_node;
20564 }
20565 argvec = make_tree_vec (1);
20566 TREE_VEC_ELT (argvec, 0) = arg;
20567 return lookup_template_class (std_init_list, argvec, NULL_TREE,
20568 NULL_TREE, 0, tf_warning_or_error);
20569 }
20570
20571 /* Replace auto in TYPE with std::initializer_list<auto>. */
20572
20573 static tree
20574 listify_autos (tree type, tree auto_node)
20575 {
20576 tree init_auto = listify (auto_node);
20577 tree argvec = make_tree_vec (1);
20578 TREE_VEC_ELT (argvec, 0) = init_auto;
20579 if (processing_template_decl)
20580 argvec = add_to_template_args (current_template_args (), argvec);
20581 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
20582 }
20583
20584 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
20585 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
20586
20587 tree
20588 do_auto_deduction (tree type, tree init, tree auto_node)
20589 {
20590 tree targs;
20591
20592 if (init == error_mark_node)
20593 return error_mark_node;
20594
20595 if (type_dependent_expression_p (init))
20596 /* Defining a subset of type-dependent expressions that we can deduce
20597 from ahead of time isn't worth the trouble. */
20598 return type;
20599
20600 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
20601 with either a new invented type template parameter U or, if the
20602 initializer is a braced-init-list (8.5.4), with
20603 std::initializer_list<U>. */
20604 if (BRACE_ENCLOSED_INITIALIZER_P (init))
20605 type = listify_autos (type, auto_node);
20606
20607 init = resolve_nondeduced_context (init);
20608
20609 targs = make_tree_vec (1);
20610 if (AUTO_IS_DECLTYPE (auto_node))
20611 {
20612 bool id = (DECL_P (init) || TREE_CODE (init) == COMPONENT_REF);
20613 TREE_VEC_ELT (targs, 0)
20614 = finish_decltype_type (init, id, tf_warning_or_error);
20615 }
20616 else
20617 {
20618 tree parms = build_tree_list (NULL_TREE, type);
20619 tree tparms = make_tree_vec (1);
20620 int val;
20621
20622 TREE_VEC_ELT (tparms, 0)
20623 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
20624 val = type_unification_real (tparms, targs, parms, &init, 1, 0,
20625 DEDUCE_CALL, LOOKUP_NORMAL,
20626 /*explain_p=*/false);
20627 if (val > 0)
20628 {
20629 if (processing_template_decl)
20630 /* Try again at instantiation time. */
20631 return type;
20632 if (type && type != error_mark_node)
20633 /* If type is error_mark_node a diagnostic must have been
20634 emitted by now. Also, having a mention to '<type error>'
20635 in the diagnostic is not really useful to the user. */
20636 {
20637 if (cfun && auto_node == current_function_auto_return_pattern
20638 && LAMBDA_FUNCTION_P (current_function_decl))
20639 error ("unable to deduce lambda return type from %qE", init);
20640 else
20641 error ("unable to deduce %qT from %qE", type, init);
20642 }
20643 return error_mark_node;
20644 }
20645 }
20646
20647 /* If the list of declarators contains more than one declarator, the type
20648 of each declared variable is determined as described above. If the
20649 type deduced for the template parameter U is not the same in each
20650 deduction, the program is ill-formed. */
20651 if (TREE_TYPE (auto_node)
20652 && !same_type_p (TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0)))
20653 {
20654 if (cfun && auto_node == current_function_auto_return_pattern
20655 && LAMBDA_FUNCTION_P (current_function_decl))
20656 error ("inconsistent types %qT and %qT deduced for "
20657 "lambda return type", TREE_TYPE (auto_node),
20658 TREE_VEC_ELT (targs, 0));
20659 else
20660 error ("inconsistent deduction for %qT: %qT and then %qT",
20661 auto_node, TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0));
20662 return error_mark_node;
20663 }
20664 TREE_TYPE (auto_node) = TREE_VEC_ELT (targs, 0);
20665
20666 if (processing_template_decl)
20667 targs = add_to_template_args (current_template_args (), targs);
20668 return tsubst (type, targs, tf_warning_or_error, NULL_TREE);
20669 }
20670
20671 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
20672 result. */
20673
20674 tree
20675 splice_late_return_type (tree type, tree late_return_type)
20676 {
20677 tree argvec;
20678
20679 if (late_return_type == NULL_TREE)
20680 return type;
20681 argvec = make_tree_vec (1);
20682 TREE_VEC_ELT (argvec, 0) = late_return_type;
20683 if (processing_template_parmlist)
20684 /* For a late-specified return type in a template type-parameter, we
20685 need to add a dummy argument level for its parmlist. */
20686 argvec = add_to_template_args
20687 (make_tree_vec (processing_template_parmlist), argvec);
20688 if (current_template_parms)
20689 argvec = add_to_template_args (current_template_args (), argvec);
20690 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
20691 }
20692
20693 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto'. */
20694
20695 bool
20696 is_auto (const_tree type)
20697 {
20698 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
20699 && TYPE_IDENTIFIER (type) == get_identifier ("auto"))
20700 return true;
20701 else
20702 return false;
20703 }
20704
20705 /* Returns true iff TYPE contains a use of 'auto'. Since auto can only
20706 appear as a type-specifier for the declaration in question, we don't
20707 have to look through the whole type. */
20708
20709 tree
20710 type_uses_auto (tree type)
20711 {
20712 enum tree_code code;
20713 if (is_auto (type))
20714 return type;
20715
20716 code = TREE_CODE (type);
20717
20718 if (code == POINTER_TYPE || code == REFERENCE_TYPE
20719 || code == OFFSET_TYPE || code == FUNCTION_TYPE
20720 || code == METHOD_TYPE || code == ARRAY_TYPE)
20721 return type_uses_auto (TREE_TYPE (type));
20722
20723 if (TYPE_PTRMEMFUNC_P (type))
20724 return type_uses_auto (TREE_TYPE (TREE_TYPE
20725 (TYPE_PTRMEMFUNC_FN_TYPE (type))));
20726
20727 return NULL_TREE;
20728 }
20729
20730 /* For a given template T, return the vector of typedefs referenced
20731 in T for which access check is needed at T instantiation time.
20732 T is either a FUNCTION_DECL or a RECORD_TYPE.
20733 Those typedefs were added to T by the function
20734 append_type_to_template_for_access_check. */
20735
20736 vec<qualified_typedef_usage_t, va_gc> *
20737 get_types_needing_access_check (tree t)
20738 {
20739 tree ti;
20740 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
20741
20742 if (!t || t == error_mark_node)
20743 return NULL;
20744
20745 if (!(ti = get_template_info (t)))
20746 return NULL;
20747
20748 if (CLASS_TYPE_P (t)
20749 || TREE_CODE (t) == FUNCTION_DECL)
20750 {
20751 if (!TI_TEMPLATE (ti))
20752 return NULL;
20753
20754 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
20755 }
20756
20757 return result;
20758 }
20759
20760 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
20761 tied to T. That list of typedefs will be access checked at
20762 T instantiation time.
20763 T is either a FUNCTION_DECL or a RECORD_TYPE.
20764 TYPE_DECL is a TYPE_DECL node representing a typedef.
20765 SCOPE is the scope through which TYPE_DECL is accessed.
20766 LOCATION is the location of the usage point of TYPE_DECL.
20767
20768 This function is a subroutine of
20769 append_type_to_template_for_access_check. */
20770
20771 static void
20772 append_type_to_template_for_access_check_1 (tree t,
20773 tree type_decl,
20774 tree scope,
20775 location_t location)
20776 {
20777 qualified_typedef_usage_t typedef_usage;
20778 tree ti;
20779
20780 if (!t || t == error_mark_node)
20781 return;
20782
20783 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
20784 || CLASS_TYPE_P (t))
20785 && type_decl
20786 && TREE_CODE (type_decl) == TYPE_DECL
20787 && scope);
20788
20789 if (!(ti = get_template_info (t)))
20790 return;
20791
20792 gcc_assert (TI_TEMPLATE (ti));
20793
20794 typedef_usage.typedef_decl = type_decl;
20795 typedef_usage.context = scope;
20796 typedef_usage.locus = location;
20797
20798 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
20799 }
20800
20801 /* Append TYPE_DECL to the template TEMPL.
20802 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
20803 At TEMPL instanciation time, TYPE_DECL will be checked to see
20804 if it can be accessed through SCOPE.
20805 LOCATION is the location of the usage point of TYPE_DECL.
20806
20807 e.g. consider the following code snippet:
20808
20809 class C
20810 {
20811 typedef int myint;
20812 };
20813
20814 template<class U> struct S
20815 {
20816 C::myint mi; // <-- usage point of the typedef C::myint
20817 };
20818
20819 S<char> s;
20820
20821 At S<char> instantiation time, we need to check the access of C::myint
20822 In other words, we need to check the access of the myint typedef through
20823 the C scope. For that purpose, this function will add the myint typedef
20824 and the scope C through which its being accessed to a list of typedefs
20825 tied to the template S. That list will be walked at template instantiation
20826 time and access check performed on each typedefs it contains.
20827 Note that this particular code snippet should yield an error because
20828 myint is private to C. */
20829
20830 void
20831 append_type_to_template_for_access_check (tree templ,
20832 tree type_decl,
20833 tree scope,
20834 location_t location)
20835 {
20836 qualified_typedef_usage_t *iter;
20837 unsigned i;
20838
20839 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
20840
20841 /* Make sure we don't append the type to the template twice. */
20842 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
20843 if (iter->typedef_decl == type_decl && scope == iter->context)
20844 return;
20845
20846 append_type_to_template_for_access_check_1 (templ, type_decl,
20847 scope, location);
20848 }
20849
20850 /* Set up the hash tables for template instantiations. */
20851
20852 void
20853 init_template_processing (void)
20854 {
20855 decl_specializations = htab_create_ggc (37,
20856 hash_specialization,
20857 eq_specializations,
20858 ggc_free);
20859 type_specializations = htab_create_ggc (37,
20860 hash_specialization,
20861 eq_specializations,
20862 ggc_free);
20863 }
20864
20865 /* Print stats about the template hash tables for -fstats. */
20866
20867 void
20868 print_template_statistics (void)
20869 {
20870 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
20871 "%f collisions\n", (long) htab_size (decl_specializations),
20872 (long) htab_elements (decl_specializations),
20873 htab_collisions (decl_specializations));
20874 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
20875 "%f collisions\n", (long) htab_size (type_specializations),
20876 (long) htab_elements (type_specializations),
20877 htab_collisions (type_specializations));
20878 }
20879
20880 #include "gt-cp-pt.h"