re PR c++/51227 ([c++0x] ICE with invalid parameter in lambda expression)
[gcc.git] / gcc / cp / pt.c
1 /* Handle parameterized types (templates) for GNU C++.
2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
5 Written by Ken Raeburn (raeburn@cygnus.com) while at Watchmaker Computing.
6 Rewritten by Jason Merrill (jason@cygnus.com).
7
8 This file is part of GCC.
9
10 GCC is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3, or (at your option)
13 any later version.
14
15 GCC is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
23
24 /* Known bugs or deficiencies include:
25
26 all methods must be provided in header files; can't use a source
27 file that contains only the method templates and "just win". */
28
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "tm.h"
33 #include "tree.h"
34 #include "intl.h"
35 #include "pointer-set.h"
36 #include "flags.h"
37 #include "cp-tree.h"
38 #include "c-family/c-common.h"
39 #include "c-family/c-objc.h"
40 #include "cp-objcp-common.h"
41 #include "tree-inline.h"
42 #include "decl.h"
43 #include "output.h"
44 #include "toplev.h"
45 #include "timevar.h"
46 #include "tree-iterator.h"
47 #include "vecprim.h"
48
49 /* The type of functions taking a tree, and some additional data, and
50 returning an int. */
51 typedef int (*tree_fn_t) (tree, void*);
52
53 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
54 instantiations have been deferred, either because their definitions
55 were not yet available, or because we were putting off doing the work. */
56 struct GTY ((chain_next ("%h.next"))) pending_template {
57 struct pending_template *next;
58 struct tinst_level *tinst;
59 };
60
61 static GTY(()) struct pending_template *pending_templates;
62 static GTY(()) struct pending_template *last_pending_template;
63
64 int processing_template_parmlist;
65 static int template_header_count;
66
67 static GTY(()) tree saved_trees;
68 static VEC(int,heap) *inline_parm_levels;
69
70 static GTY(()) struct tinst_level *current_tinst_level;
71
72 static GTY(()) tree saved_access_scope;
73
74 /* Live only within one (recursive) call to tsubst_expr. We use
75 this to pass the statement expression node from the STMT_EXPR
76 to the EXPR_STMT that is its result. */
77 static tree cur_stmt_expr;
78
79 /* A map from local variable declarations in the body of the template
80 presently being instantiated to the corresponding instantiated
81 local variables. */
82 static htab_t local_specializations;
83
84 typedef struct GTY(()) spec_entry
85 {
86 tree tmpl;
87 tree args;
88 tree spec;
89 } spec_entry;
90
91 static GTY ((param_is (spec_entry)))
92 htab_t decl_specializations;
93
94 static GTY ((param_is (spec_entry)))
95 htab_t type_specializations;
96
97 /* Contains canonical template parameter types. The vector is indexed by
98 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
99 TREE_LIST, whose TREE_VALUEs contain the canonical template
100 parameters of various types and levels. */
101 static GTY(()) VEC(tree,gc) *canonical_template_parms;
102
103 #define UNIFY_ALLOW_NONE 0
104 #define UNIFY_ALLOW_MORE_CV_QUAL 1
105 #define UNIFY_ALLOW_LESS_CV_QUAL 2
106 #define UNIFY_ALLOW_DERIVED 4
107 #define UNIFY_ALLOW_INTEGER 8
108 #define UNIFY_ALLOW_OUTER_LEVEL 16
109 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
110 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
111
112 enum template_base_result {
113 tbr_incomplete_type,
114 tbr_ambiguous_baseclass,
115 tbr_success
116 };
117
118 static void push_access_scope (tree);
119 static void pop_access_scope (tree);
120 static void push_deduction_access_scope (tree);
121 static void pop_deduction_access_scope (tree);
122 static bool resolve_overloaded_unification (tree, tree, tree, tree,
123 unification_kind_t, int,
124 bool);
125 static int try_one_overload (tree, tree, tree, tree, tree,
126 unification_kind_t, int, bool, bool);
127 static int unify (tree, tree, tree, tree, int, bool);
128 static void add_pending_template (tree);
129 static tree reopen_tinst_level (struct tinst_level *);
130 static tree tsubst_initializer_list (tree, tree);
131 static tree get_class_bindings (tree, tree, tree);
132 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
133 bool, bool);
134 static void tsubst_enum (tree, tree, tree);
135 static tree add_to_template_args (tree, tree);
136 static tree add_outermost_template_args (tree, tree);
137 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
138 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
139 tree);
140 static int type_unification_real (tree, tree, tree, const tree *,
141 unsigned int, int, unification_kind_t, int,
142 bool);
143 static void note_template_header (int);
144 static tree convert_nontype_argument_function (tree, tree);
145 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
146 static tree convert_template_argument (tree, tree, tree,
147 tsubst_flags_t, int, tree);
148 static int for_each_template_parm (tree, tree_fn_t, void*,
149 struct pointer_set_t*, bool);
150 static tree expand_template_argument_pack (tree);
151 static tree build_template_parm_index (int, int, int, int, tree, tree);
152 static bool inline_needs_template_parms (tree);
153 static void push_inline_template_parms_recursive (tree, int);
154 static tree retrieve_local_specialization (tree);
155 static void register_local_specialization (tree, tree);
156 static hashval_t hash_specialization (const void *p);
157 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
158 static int mark_template_parm (tree, void *);
159 static int template_parm_this_level_p (tree, void *);
160 static tree tsubst_friend_function (tree, tree);
161 static tree tsubst_friend_class (tree, tree);
162 static int can_complete_type_without_circularity (tree);
163 static tree get_bindings (tree, tree, tree, bool);
164 static int template_decl_level (tree);
165 static int check_cv_quals_for_unify (int, tree, tree);
166 static void template_parm_level_and_index (tree, int*, int*);
167 static int unify_pack_expansion (tree, tree, tree,
168 tree, unification_kind_t, bool, bool);
169 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
170 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
171 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
172 static void regenerate_decl_from_template (tree, tree);
173 static tree most_specialized_class (tree, tree, tsubst_flags_t);
174 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
175 static tree tsubst_arg_types (tree, tree, tsubst_flags_t, tree);
176 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
177 static bool check_specialization_scope (void);
178 static tree process_partial_specialization (tree);
179 static void set_current_access_from_decl (tree);
180 static enum template_base_result get_template_base (tree, tree, tree, tree,
181 bool , tree *);
182 static tree try_class_unification (tree, tree, tree, tree, bool);
183 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
184 tree, tree);
185 static bool template_template_parm_bindings_ok_p (tree, tree);
186 static int template_args_equal (tree, tree);
187 static void tsubst_default_arguments (tree);
188 static tree for_each_template_parm_r (tree *, int *, void *);
189 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
190 static void copy_default_args_to_explicit_spec (tree);
191 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
192 static int eq_local_specializations (const void *, const void *);
193 static bool dependent_template_arg_p (tree);
194 static bool any_template_arguments_need_structural_equality_p (tree);
195 static bool dependent_type_p_r (tree);
196 static tree tsubst_expr (tree, tree, tsubst_flags_t, tree, bool);
197 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
198 static tree tsubst_pack_expansion (tree, tree, tsubst_flags_t, tree);
199 static tree tsubst_decl (tree, tree, tsubst_flags_t);
200 static void perform_typedefs_access_check (tree tmpl, tree targs);
201 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
202 location_t);
203 static tree listify (tree);
204 static tree listify_autos (tree, tree);
205 static tree template_parm_to_arg (tree t);
206 static bool arg_from_parm_pack_p (tree, tree);
207 static tree current_template_args (void);
208 static tree fixup_template_type_parm_type (tree, int);
209 static tree fixup_template_parm_index (tree, tree, int);
210 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
211
212 /* Make the current scope suitable for access checking when we are
213 processing T. T can be FUNCTION_DECL for instantiated function
214 template, or VAR_DECL for static member variable (need by
215 instantiate_decl). */
216
217 static void
218 push_access_scope (tree t)
219 {
220 gcc_assert (TREE_CODE (t) == FUNCTION_DECL
221 || TREE_CODE (t) == VAR_DECL);
222
223 if (DECL_FRIEND_CONTEXT (t))
224 push_nested_class (DECL_FRIEND_CONTEXT (t));
225 else if (DECL_CLASS_SCOPE_P (t))
226 push_nested_class (DECL_CONTEXT (t));
227 else
228 push_to_top_level ();
229
230 if (TREE_CODE (t) == FUNCTION_DECL)
231 {
232 saved_access_scope = tree_cons
233 (NULL_TREE, current_function_decl, saved_access_scope);
234 current_function_decl = t;
235 }
236 }
237
238 /* Restore the scope set up by push_access_scope. T is the node we
239 are processing. */
240
241 static void
242 pop_access_scope (tree t)
243 {
244 if (TREE_CODE (t) == FUNCTION_DECL)
245 {
246 current_function_decl = TREE_VALUE (saved_access_scope);
247 saved_access_scope = TREE_CHAIN (saved_access_scope);
248 }
249
250 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
251 pop_nested_class ();
252 else
253 pop_from_top_level ();
254 }
255
256 /* Do any processing required when DECL (a member template
257 declaration) is finished. Returns the TEMPLATE_DECL corresponding
258 to DECL, unless it is a specialization, in which case the DECL
259 itself is returned. */
260
261 tree
262 finish_member_template_decl (tree decl)
263 {
264 if (decl == error_mark_node)
265 return error_mark_node;
266
267 gcc_assert (DECL_P (decl));
268
269 if (TREE_CODE (decl) == TYPE_DECL)
270 {
271 tree type;
272
273 type = TREE_TYPE (decl);
274 if (type == error_mark_node)
275 return error_mark_node;
276 if (MAYBE_CLASS_TYPE_P (type)
277 && CLASSTYPE_TEMPLATE_INFO (type)
278 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
279 {
280 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
281 check_member_template (tmpl);
282 return tmpl;
283 }
284 return NULL_TREE;
285 }
286 else if (TREE_CODE (decl) == FIELD_DECL)
287 error ("data member %qD cannot be a member template", decl);
288 else if (DECL_TEMPLATE_INFO (decl))
289 {
290 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
291 {
292 check_member_template (DECL_TI_TEMPLATE (decl));
293 return DECL_TI_TEMPLATE (decl);
294 }
295 else
296 return decl;
297 }
298 else
299 error ("invalid member template declaration %qD", decl);
300
301 return error_mark_node;
302 }
303
304 /* Create a template info node. */
305
306 tree
307 build_template_info (tree template_decl, tree template_args)
308 {
309 tree result = make_node (TEMPLATE_INFO);
310 TI_TEMPLATE (result) = template_decl;
311 TI_ARGS (result) = template_args;
312 return result;
313 }
314
315 /* Return the template info node corresponding to T, whatever T is. */
316
317 tree
318 get_template_info (const_tree t)
319 {
320 tree tinfo = NULL_TREE;
321
322 if (!t || t == error_mark_node)
323 return NULL;
324
325 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
326 tinfo = DECL_TEMPLATE_INFO (t);
327
328 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
329 t = TREE_TYPE (t);
330
331 if (TAGGED_TYPE_P (t))
332 tinfo = TYPE_TEMPLATE_INFO (t);
333 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
334 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
335
336 return tinfo;
337 }
338
339 /* Returns the template nesting level of the indicated class TYPE.
340
341 For example, in:
342 template <class T>
343 struct A
344 {
345 template <class U>
346 struct B {};
347 };
348
349 A<T>::B<U> has depth two, while A<T> has depth one.
350 Both A<T>::B<int> and A<int>::B<U> have depth one, if
351 they are instantiations, not specializations.
352
353 This function is guaranteed to return 0 if passed NULL_TREE so
354 that, for example, `template_class_depth (current_class_type)' is
355 always safe. */
356
357 int
358 template_class_depth (tree type)
359 {
360 int depth;
361
362 for (depth = 0;
363 type && TREE_CODE (type) != NAMESPACE_DECL;
364 type = (TREE_CODE (type) == FUNCTION_DECL)
365 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
366 {
367 tree tinfo = get_template_info (type);
368
369 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
370 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
371 ++depth;
372 }
373
374 return depth;
375 }
376
377 /* Subroutine of maybe_begin_member_template_processing.
378 Returns true if processing DECL needs us to push template parms. */
379
380 static bool
381 inline_needs_template_parms (tree decl)
382 {
383 if (! DECL_TEMPLATE_INFO (decl))
384 return false;
385
386 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
387 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
388 }
389
390 /* Subroutine of maybe_begin_member_template_processing.
391 Push the template parms in PARMS, starting from LEVELS steps into the
392 chain, and ending at the beginning, since template parms are listed
393 innermost first. */
394
395 static void
396 push_inline_template_parms_recursive (tree parmlist, int levels)
397 {
398 tree parms = TREE_VALUE (parmlist);
399 int i;
400
401 if (levels > 1)
402 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
403
404 ++processing_template_decl;
405 current_template_parms
406 = tree_cons (size_int (processing_template_decl),
407 parms, current_template_parms);
408 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
409
410 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
411 NULL);
412 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
413 {
414 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
415
416 if (parm == error_mark_node)
417 continue;
418
419 gcc_assert (DECL_P (parm));
420
421 switch (TREE_CODE (parm))
422 {
423 case TYPE_DECL:
424 case TEMPLATE_DECL:
425 pushdecl (parm);
426 break;
427
428 case PARM_DECL:
429 {
430 /* Make a CONST_DECL as is done in process_template_parm.
431 It is ugly that we recreate this here; the original
432 version built in process_template_parm is no longer
433 available. */
434 tree decl = build_decl (DECL_SOURCE_LOCATION (parm),
435 CONST_DECL, DECL_NAME (parm),
436 TREE_TYPE (parm));
437 DECL_ARTIFICIAL (decl) = 1;
438 TREE_CONSTANT (decl) = 1;
439 TREE_READONLY (decl) = 1;
440 DECL_INITIAL (decl) = DECL_INITIAL (parm);
441 SET_DECL_TEMPLATE_PARM_P (decl);
442 pushdecl (decl);
443 }
444 break;
445
446 default:
447 gcc_unreachable ();
448 }
449 }
450 }
451
452 /* Restore the template parameter context for a member template or
453 a friend template defined in a class definition. */
454
455 void
456 maybe_begin_member_template_processing (tree decl)
457 {
458 tree parms;
459 int levels = 0;
460
461 if (inline_needs_template_parms (decl))
462 {
463 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
464 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
465
466 if (DECL_TEMPLATE_SPECIALIZATION (decl))
467 {
468 --levels;
469 parms = TREE_CHAIN (parms);
470 }
471
472 push_inline_template_parms_recursive (parms, levels);
473 }
474
475 /* Remember how many levels of template parameters we pushed so that
476 we can pop them later. */
477 VEC_safe_push (int, heap, inline_parm_levels, levels);
478 }
479
480 /* Undo the effects of maybe_begin_member_template_processing. */
481
482 void
483 maybe_end_member_template_processing (void)
484 {
485 int i;
486 int last;
487
488 if (VEC_length (int, inline_parm_levels) == 0)
489 return;
490
491 last = VEC_pop (int, inline_parm_levels);
492 for (i = 0; i < last; ++i)
493 {
494 --processing_template_decl;
495 current_template_parms = TREE_CHAIN (current_template_parms);
496 poplevel (0, 0, 0);
497 }
498 }
499
500 /* Return a new template argument vector which contains all of ARGS,
501 but has as its innermost set of arguments the EXTRA_ARGS. */
502
503 static tree
504 add_to_template_args (tree args, tree extra_args)
505 {
506 tree new_args;
507 int extra_depth;
508 int i;
509 int j;
510
511 if (args == NULL_TREE || extra_args == error_mark_node)
512 return extra_args;
513
514 extra_depth = TMPL_ARGS_DEPTH (extra_args);
515 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
516
517 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
518 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
519
520 for (j = 1; j <= extra_depth; ++j, ++i)
521 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
522
523 return new_args;
524 }
525
526 /* Like add_to_template_args, but only the outermost ARGS are added to
527 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
528 (EXTRA_ARGS) levels are added. This function is used to combine
529 the template arguments from a partial instantiation with the
530 template arguments used to attain the full instantiation from the
531 partial instantiation. */
532
533 static tree
534 add_outermost_template_args (tree args, tree extra_args)
535 {
536 tree new_args;
537
538 /* If there are more levels of EXTRA_ARGS than there are ARGS,
539 something very fishy is going on. */
540 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
541
542 /* If *all* the new arguments will be the EXTRA_ARGS, just return
543 them. */
544 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
545 return extra_args;
546
547 /* For the moment, we make ARGS look like it contains fewer levels. */
548 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
549
550 new_args = add_to_template_args (args, extra_args);
551
552 /* Now, we restore ARGS to its full dimensions. */
553 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
554
555 return new_args;
556 }
557
558 /* Return the N levels of innermost template arguments from the ARGS. */
559
560 tree
561 get_innermost_template_args (tree args, int n)
562 {
563 tree new_args;
564 int extra_levels;
565 int i;
566
567 gcc_assert (n >= 0);
568
569 /* If N is 1, just return the innermost set of template arguments. */
570 if (n == 1)
571 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
572
573 /* If we're not removing anything, just return the arguments we were
574 given. */
575 extra_levels = TMPL_ARGS_DEPTH (args) - n;
576 gcc_assert (extra_levels >= 0);
577 if (extra_levels == 0)
578 return args;
579
580 /* Make a new set of arguments, not containing the outer arguments. */
581 new_args = make_tree_vec (n);
582 for (i = 1; i <= n; ++i)
583 SET_TMPL_ARGS_LEVEL (new_args, i,
584 TMPL_ARGS_LEVEL (args, i + extra_levels));
585
586 return new_args;
587 }
588
589 /* The inverse of get_innermost_template_args: Return all but the innermost
590 EXTRA_LEVELS levels of template arguments from the ARGS. */
591
592 static tree
593 strip_innermost_template_args (tree args, int extra_levels)
594 {
595 tree new_args;
596 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
597 int i;
598
599 gcc_assert (n >= 0);
600
601 /* If N is 1, just return the outermost set of template arguments. */
602 if (n == 1)
603 return TMPL_ARGS_LEVEL (args, 1);
604
605 /* If we're not removing anything, just return the arguments we were
606 given. */
607 gcc_assert (extra_levels >= 0);
608 if (extra_levels == 0)
609 return args;
610
611 /* Make a new set of arguments, not containing the inner arguments. */
612 new_args = make_tree_vec (n);
613 for (i = 1; i <= n; ++i)
614 SET_TMPL_ARGS_LEVEL (new_args, i,
615 TMPL_ARGS_LEVEL (args, i));
616
617 return new_args;
618 }
619
620 /* We've got a template header coming up; push to a new level for storing
621 the parms. */
622
623 void
624 begin_template_parm_list (void)
625 {
626 /* We use a non-tag-transparent scope here, which causes pushtag to
627 put tags in this scope, rather than in the enclosing class or
628 namespace scope. This is the right thing, since we want
629 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
630 global template class, push_template_decl handles putting the
631 TEMPLATE_DECL into top-level scope. For a nested template class,
632 e.g.:
633
634 template <class T> struct S1 {
635 template <class T> struct S2 {};
636 };
637
638 pushtag contains special code to call pushdecl_with_scope on the
639 TEMPLATE_DECL for S2. */
640 begin_scope (sk_template_parms, NULL);
641 ++processing_template_decl;
642 ++processing_template_parmlist;
643 note_template_header (0);
644 }
645
646 /* This routine is called when a specialization is declared. If it is
647 invalid to declare a specialization here, an error is reported and
648 false is returned, otherwise this routine will return true. */
649
650 static bool
651 check_specialization_scope (void)
652 {
653 tree scope = current_scope ();
654
655 /* [temp.expl.spec]
656
657 An explicit specialization shall be declared in the namespace of
658 which the template is a member, or, for member templates, in the
659 namespace of which the enclosing class or enclosing class
660 template is a member. An explicit specialization of a member
661 function, member class or static data member of a class template
662 shall be declared in the namespace of which the class template
663 is a member. */
664 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
665 {
666 error ("explicit specialization in non-namespace scope %qD", scope);
667 return false;
668 }
669
670 /* [temp.expl.spec]
671
672 In an explicit specialization declaration for a member of a class
673 template or a member template that appears in namespace scope,
674 the member template and some of its enclosing class templates may
675 remain unspecialized, except that the declaration shall not
676 explicitly specialize a class member template if its enclosing
677 class templates are not explicitly specialized as well. */
678 if (current_template_parms)
679 {
680 error ("enclosing class templates are not explicitly specialized");
681 return false;
682 }
683
684 return true;
685 }
686
687 /* We've just seen template <>. */
688
689 bool
690 begin_specialization (void)
691 {
692 begin_scope (sk_template_spec, NULL);
693 note_template_header (1);
694 return check_specialization_scope ();
695 }
696
697 /* Called at then end of processing a declaration preceded by
698 template<>. */
699
700 void
701 end_specialization (void)
702 {
703 finish_scope ();
704 reset_specialization ();
705 }
706
707 /* Any template <>'s that we have seen thus far are not referring to a
708 function specialization. */
709
710 void
711 reset_specialization (void)
712 {
713 processing_specialization = 0;
714 template_header_count = 0;
715 }
716
717 /* We've just seen a template header. If SPECIALIZATION is nonzero,
718 it was of the form template <>. */
719
720 static void
721 note_template_header (int specialization)
722 {
723 processing_specialization = specialization;
724 template_header_count++;
725 }
726
727 /* We're beginning an explicit instantiation. */
728
729 void
730 begin_explicit_instantiation (void)
731 {
732 gcc_assert (!processing_explicit_instantiation);
733 processing_explicit_instantiation = true;
734 }
735
736
737 void
738 end_explicit_instantiation (void)
739 {
740 gcc_assert (processing_explicit_instantiation);
741 processing_explicit_instantiation = false;
742 }
743
744 /* An explicit specialization or partial specialization TMPL is being
745 declared. Check that the namespace in which the specialization is
746 occurring is permissible. Returns false iff it is invalid to
747 specialize TMPL in the current namespace. */
748
749 static bool
750 check_specialization_namespace (tree tmpl)
751 {
752 tree tpl_ns = decl_namespace_context (tmpl);
753
754 /* [tmpl.expl.spec]
755
756 An explicit specialization shall be declared in the namespace of
757 which the template is a member, or, for member templates, in the
758 namespace of which the enclosing class or enclosing class
759 template is a member. An explicit specialization of a member
760 function, member class or static data member of a class template
761 shall be declared in the namespace of which the class template is
762 a member. */
763 if (current_scope() != DECL_CONTEXT (tmpl)
764 && !at_namespace_scope_p ())
765 {
766 error ("specialization of %qD must appear at namespace scope", tmpl);
767 return false;
768 }
769 if (is_associated_namespace (current_namespace, tpl_ns))
770 /* Same or super-using namespace. */
771 return true;
772 else
773 {
774 permerror (input_location, "specialization of %qD in different namespace", tmpl);
775 permerror (input_location, " from definition of %q+#D", tmpl);
776 return false;
777 }
778 }
779
780 /* SPEC is an explicit instantiation. Check that it is valid to
781 perform this explicit instantiation in the current namespace. */
782
783 static void
784 check_explicit_instantiation_namespace (tree spec)
785 {
786 tree ns;
787
788 /* DR 275: An explicit instantiation shall appear in an enclosing
789 namespace of its template. */
790 ns = decl_namespace_context (spec);
791 if (!is_ancestor (current_namespace, ns))
792 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
793 "(which does not enclose namespace %qD)",
794 spec, current_namespace, ns);
795 }
796
797 /* The TYPE is being declared. If it is a template type, that means it
798 is a partial specialization. Do appropriate error-checking. */
799
800 tree
801 maybe_process_partial_specialization (tree type)
802 {
803 tree context;
804
805 if (type == error_mark_node)
806 return error_mark_node;
807
808 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
809 {
810 error ("name of class shadows template template parameter %qD",
811 TYPE_NAME (type));
812 return error_mark_node;
813 }
814
815 context = TYPE_CONTEXT (type);
816
817 if ((CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
818 /* Consider non-class instantiations of alias templates as
819 well. */
820 || (TYPE_P (type)
821 && TYPE_TEMPLATE_INFO (type)
822 && DECL_LANG_SPECIFIC (TYPE_NAME (type))
823 && DECL_USE_TEMPLATE (TYPE_NAME (type))))
824 {
825 /* This is for ordinary explicit specialization and partial
826 specialization of a template class such as:
827
828 template <> class C<int>;
829
830 or:
831
832 template <class T> class C<T*>;
833
834 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
835
836 if (CLASS_TYPE_P (type)
837 && CLASSTYPE_IMPLICIT_INSTANTIATION (type)
838 && !COMPLETE_TYPE_P (type))
839 {
840 check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (type));
841 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
842 if (processing_template_decl)
843 {
844 if (push_template_decl (TYPE_MAIN_DECL (type))
845 == error_mark_node)
846 return error_mark_node;
847 }
848 }
849 else if (CLASS_TYPE_P (type)
850 && CLASSTYPE_TEMPLATE_INSTANTIATION (type))
851 error ("specialization of %qT after instantiation", type);
852
853 if (DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
854 {
855 error ("partial specialization of alias template %qD",
856 TYPE_TI_TEMPLATE (type));
857 return error_mark_node;
858 }
859 }
860 else if (CLASS_TYPE_P (type)
861 && !CLASSTYPE_USE_TEMPLATE (type)
862 && CLASSTYPE_TEMPLATE_INFO (type)
863 && context && CLASS_TYPE_P (context)
864 && CLASSTYPE_TEMPLATE_INFO (context))
865 {
866 /* This is for an explicit specialization of member class
867 template according to [temp.expl.spec/18]:
868
869 template <> template <class U> class C<int>::D;
870
871 The context `C<int>' must be an implicit instantiation.
872 Otherwise this is just a member class template declared
873 earlier like:
874
875 template <> class C<int> { template <class U> class D; };
876 template <> template <class U> class C<int>::D;
877
878 In the first case, `C<int>::D' is a specialization of `C<T>::D'
879 while in the second case, `C<int>::D' is a primary template
880 and `C<T>::D' may not exist. */
881
882 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
883 && !COMPLETE_TYPE_P (type))
884 {
885 tree t;
886 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
887
888 if (current_namespace
889 != decl_namespace_context (tmpl))
890 {
891 permerror (input_location, "specializing %q#T in different namespace", type);
892 permerror (input_location, " from definition of %q+#D", tmpl);
893 }
894
895 /* Check for invalid specialization after instantiation:
896
897 template <> template <> class C<int>::D<int>;
898 template <> template <class U> class C<int>::D; */
899
900 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
901 t; t = TREE_CHAIN (t))
902 {
903 tree inst = TREE_VALUE (t);
904 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst))
905 {
906 /* We already have a full specialization of this partial
907 instantiation. Reassign it to the new member
908 specialization template. */
909 spec_entry elt;
910 spec_entry *entry;
911 void **slot;
912
913 elt.tmpl = most_general_template (tmpl);
914 elt.args = CLASSTYPE_TI_ARGS (inst);
915 elt.spec = inst;
916
917 htab_remove_elt (type_specializations, &elt);
918
919 elt.tmpl = tmpl;
920 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
921
922 slot = htab_find_slot (type_specializations, &elt, INSERT);
923 entry = ggc_alloc_spec_entry ();
924 *entry = elt;
925 *slot = entry;
926 }
927 else if (COMPLETE_OR_OPEN_TYPE_P (inst))
928 /* But if we've had an implicit instantiation, that's a
929 problem ([temp.expl.spec]/6). */
930 error ("specialization %qT after instantiation %qT",
931 type, inst);
932 }
933
934 /* Mark TYPE as a specialization. And as a result, we only
935 have one level of template argument for the innermost
936 class template. */
937 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
938 CLASSTYPE_TI_ARGS (type)
939 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
940 }
941 }
942 else if (processing_specialization)
943 {
944 /* Someday C++0x may allow for enum template specialization. */
945 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
946 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
947 pedwarn (input_location, OPT_pedantic, "template specialization "
948 "of %qD not allowed by ISO C++", type);
949 else
950 {
951 error ("explicit specialization of non-template %qT", type);
952 return error_mark_node;
953 }
954 }
955
956 return type;
957 }
958
959 /* Returns nonzero if we can optimize the retrieval of specializations
960 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
961 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
962
963 static inline bool
964 optimize_specialization_lookup_p (tree tmpl)
965 {
966 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
967 && DECL_CLASS_SCOPE_P (tmpl)
968 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
969 parameter. */
970 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
971 /* The optimized lookup depends on the fact that the
972 template arguments for the member function template apply
973 purely to the containing class, which is not true if the
974 containing class is an explicit or partial
975 specialization. */
976 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
977 && !DECL_MEMBER_TEMPLATE_P (tmpl)
978 && !DECL_CONV_FN_P (tmpl)
979 /* It is possible to have a template that is not a member
980 template and is not a member of a template class:
981
982 template <typename T>
983 struct S { friend A::f(); };
984
985 Here, the friend function is a template, but the context does
986 not have template information. The optimized lookup relies
987 on having ARGS be the template arguments for both the class
988 and the function template. */
989 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
990 }
991
992 /* Retrieve the specialization (in the sense of [temp.spec] - a
993 specialization is either an instantiation or an explicit
994 specialization) of TMPL for the given template ARGS. If there is
995 no such specialization, return NULL_TREE. The ARGS are a vector of
996 arguments, or a vector of vectors of arguments, in the case of
997 templates with more than one level of parameters.
998
999 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1000 then we search for a partial specialization matching ARGS. This
1001 parameter is ignored if TMPL is not a class template. */
1002
1003 static tree
1004 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1005 {
1006 if (args == error_mark_node)
1007 return NULL_TREE;
1008
1009 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
1010
1011 /* There should be as many levels of arguments as there are
1012 levels of parameters. */
1013 gcc_assert (TMPL_ARGS_DEPTH (args)
1014 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)));
1015
1016 if (optimize_specialization_lookup_p (tmpl))
1017 {
1018 tree class_template;
1019 tree class_specialization;
1020 VEC(tree,gc) *methods;
1021 tree fns;
1022 int idx;
1023
1024 /* The template arguments actually apply to the containing
1025 class. Find the class specialization with those
1026 arguments. */
1027 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1028 class_specialization
1029 = retrieve_specialization (class_template, args, 0);
1030 if (!class_specialization)
1031 return NULL_TREE;
1032 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1033 for the specialization. */
1034 idx = class_method_index_for_fn (class_specialization, tmpl);
1035 if (idx == -1)
1036 return NULL_TREE;
1037 /* Iterate through the methods with the indicated name, looking
1038 for the one that has an instance of TMPL. */
1039 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1040 for (fns = VEC_index (tree, methods, idx); fns; fns = OVL_NEXT (fns))
1041 {
1042 tree fn = OVL_CURRENT (fns);
1043 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1044 /* using-declarations can add base methods to the method vec,
1045 and we don't want those here. */
1046 && DECL_CONTEXT (fn) == class_specialization)
1047 return fn;
1048 }
1049 return NULL_TREE;
1050 }
1051 else
1052 {
1053 spec_entry *found;
1054 spec_entry elt;
1055 htab_t specializations;
1056
1057 elt.tmpl = tmpl;
1058 elt.args = args;
1059 elt.spec = NULL_TREE;
1060
1061 if (DECL_CLASS_TEMPLATE_P (tmpl))
1062 specializations = type_specializations;
1063 else
1064 specializations = decl_specializations;
1065
1066 if (hash == 0)
1067 hash = hash_specialization (&elt);
1068 found = (spec_entry *) htab_find_with_hash (specializations, &elt, hash);
1069 if (found)
1070 return found->spec;
1071 }
1072
1073 return NULL_TREE;
1074 }
1075
1076 /* Like retrieve_specialization, but for local declarations. */
1077
1078 static tree
1079 retrieve_local_specialization (tree tmpl)
1080 {
1081 tree spec;
1082
1083 if (local_specializations == NULL)
1084 return NULL_TREE;
1085
1086 spec = (tree) htab_find_with_hash (local_specializations, tmpl,
1087 htab_hash_pointer (tmpl));
1088 return spec ? TREE_PURPOSE (spec) : NULL_TREE;
1089 }
1090
1091 /* Returns nonzero iff DECL is a specialization of TMPL. */
1092
1093 int
1094 is_specialization_of (tree decl, tree tmpl)
1095 {
1096 tree t;
1097
1098 if (TREE_CODE (decl) == FUNCTION_DECL)
1099 {
1100 for (t = decl;
1101 t != NULL_TREE;
1102 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1103 if (t == tmpl)
1104 return 1;
1105 }
1106 else
1107 {
1108 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1109
1110 for (t = TREE_TYPE (decl);
1111 t != NULL_TREE;
1112 t = CLASSTYPE_USE_TEMPLATE (t)
1113 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1114 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1115 return 1;
1116 }
1117
1118 return 0;
1119 }
1120
1121 /* Returns nonzero iff DECL is a specialization of friend declaration
1122 FRIEND_DECL according to [temp.friend]. */
1123
1124 bool
1125 is_specialization_of_friend (tree decl, tree friend_decl)
1126 {
1127 bool need_template = true;
1128 int template_depth;
1129
1130 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1131 || TREE_CODE (decl) == TYPE_DECL);
1132
1133 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1134 of a template class, we want to check if DECL is a specialization
1135 if this. */
1136 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1137 && DECL_TEMPLATE_INFO (friend_decl)
1138 && !DECL_USE_TEMPLATE (friend_decl))
1139 {
1140 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1141 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1142 need_template = false;
1143 }
1144 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1145 && !PRIMARY_TEMPLATE_P (friend_decl))
1146 need_template = false;
1147
1148 /* There is nothing to do if this is not a template friend. */
1149 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1150 return false;
1151
1152 if (is_specialization_of (decl, friend_decl))
1153 return true;
1154
1155 /* [temp.friend/6]
1156 A member of a class template may be declared to be a friend of a
1157 non-template class. In this case, the corresponding member of
1158 every specialization of the class template is a friend of the
1159 class granting friendship.
1160
1161 For example, given a template friend declaration
1162
1163 template <class T> friend void A<T>::f();
1164
1165 the member function below is considered a friend
1166
1167 template <> struct A<int> {
1168 void f();
1169 };
1170
1171 For this type of template friend, TEMPLATE_DEPTH below will be
1172 nonzero. To determine if DECL is a friend of FRIEND, we first
1173 check if the enclosing class is a specialization of another. */
1174
1175 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1176 if (template_depth
1177 && DECL_CLASS_SCOPE_P (decl)
1178 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1179 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1180 {
1181 /* Next, we check the members themselves. In order to handle
1182 a few tricky cases, such as when FRIEND_DECL's are
1183
1184 template <class T> friend void A<T>::g(T t);
1185 template <class T> template <T t> friend void A<T>::h();
1186
1187 and DECL's are
1188
1189 void A<int>::g(int);
1190 template <int> void A<int>::h();
1191
1192 we need to figure out ARGS, the template arguments from
1193 the context of DECL. This is required for template substitution
1194 of `T' in the function parameter of `g' and template parameter
1195 of `h' in the above examples. Here ARGS corresponds to `int'. */
1196
1197 tree context = DECL_CONTEXT (decl);
1198 tree args = NULL_TREE;
1199 int current_depth = 0;
1200
1201 while (current_depth < template_depth)
1202 {
1203 if (CLASSTYPE_TEMPLATE_INFO (context))
1204 {
1205 if (current_depth == 0)
1206 args = TYPE_TI_ARGS (context);
1207 else
1208 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1209 current_depth++;
1210 }
1211 context = TYPE_CONTEXT (context);
1212 }
1213
1214 if (TREE_CODE (decl) == FUNCTION_DECL)
1215 {
1216 bool is_template;
1217 tree friend_type;
1218 tree decl_type;
1219 tree friend_args_type;
1220 tree decl_args_type;
1221
1222 /* Make sure that both DECL and FRIEND_DECL are templates or
1223 non-templates. */
1224 is_template = DECL_TEMPLATE_INFO (decl)
1225 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1226 if (need_template ^ is_template)
1227 return false;
1228 else if (is_template)
1229 {
1230 /* If both are templates, check template parameter list. */
1231 tree friend_parms
1232 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1233 args, tf_none);
1234 if (!comp_template_parms
1235 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1236 friend_parms))
1237 return false;
1238
1239 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1240 }
1241 else
1242 decl_type = TREE_TYPE (decl);
1243
1244 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1245 tf_none, NULL_TREE);
1246 if (friend_type == error_mark_node)
1247 return false;
1248
1249 /* Check if return types match. */
1250 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1251 return false;
1252
1253 /* Check if function parameter types match, ignoring the
1254 `this' parameter. */
1255 friend_args_type = TYPE_ARG_TYPES (friend_type);
1256 decl_args_type = TYPE_ARG_TYPES (decl_type);
1257 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1258 friend_args_type = TREE_CHAIN (friend_args_type);
1259 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1260 decl_args_type = TREE_CHAIN (decl_args_type);
1261
1262 return compparms (decl_args_type, friend_args_type);
1263 }
1264 else
1265 {
1266 /* DECL is a TYPE_DECL */
1267 bool is_template;
1268 tree decl_type = TREE_TYPE (decl);
1269
1270 /* Make sure that both DECL and FRIEND_DECL are templates or
1271 non-templates. */
1272 is_template
1273 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1274 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1275
1276 if (need_template ^ is_template)
1277 return false;
1278 else if (is_template)
1279 {
1280 tree friend_parms;
1281 /* If both are templates, check the name of the two
1282 TEMPLATE_DECL's first because is_friend didn't. */
1283 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1284 != DECL_NAME (friend_decl))
1285 return false;
1286
1287 /* Now check template parameter list. */
1288 friend_parms
1289 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1290 args, tf_none);
1291 return comp_template_parms
1292 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1293 friend_parms);
1294 }
1295 else
1296 return (DECL_NAME (decl)
1297 == DECL_NAME (friend_decl));
1298 }
1299 }
1300 return false;
1301 }
1302
1303 /* Register the specialization SPEC as a specialization of TMPL with
1304 the indicated ARGS. IS_FRIEND indicates whether the specialization
1305 is actually just a friend declaration. Returns SPEC, or an
1306 equivalent prior declaration, if available. */
1307
1308 static tree
1309 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1310 hashval_t hash)
1311 {
1312 tree fn;
1313 void **slot = NULL;
1314 spec_entry elt;
1315
1316 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec));
1317
1318 if (TREE_CODE (spec) == FUNCTION_DECL
1319 && uses_template_parms (DECL_TI_ARGS (spec)))
1320 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1321 register it; we want the corresponding TEMPLATE_DECL instead.
1322 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1323 the more obvious `uses_template_parms (spec)' to avoid problems
1324 with default function arguments. In particular, given
1325 something like this:
1326
1327 template <class T> void f(T t1, T t = T())
1328
1329 the default argument expression is not substituted for in an
1330 instantiation unless and until it is actually needed. */
1331 return spec;
1332
1333 if (optimize_specialization_lookup_p (tmpl))
1334 /* We don't put these specializations in the hash table, but we might
1335 want to give an error about a mismatch. */
1336 fn = retrieve_specialization (tmpl, args, 0);
1337 else
1338 {
1339 elt.tmpl = tmpl;
1340 elt.args = args;
1341 elt.spec = spec;
1342
1343 if (hash == 0)
1344 hash = hash_specialization (&elt);
1345
1346 slot =
1347 htab_find_slot_with_hash (decl_specializations, &elt, hash, INSERT);
1348 if (*slot)
1349 fn = ((spec_entry *) *slot)->spec;
1350 else
1351 fn = NULL_TREE;
1352 }
1353
1354 /* We can sometimes try to re-register a specialization that we've
1355 already got. In particular, regenerate_decl_from_template calls
1356 duplicate_decls which will update the specialization list. But,
1357 we'll still get called again here anyhow. It's more convenient
1358 to simply allow this than to try to prevent it. */
1359 if (fn == spec)
1360 return spec;
1361 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1362 {
1363 if (DECL_TEMPLATE_INSTANTIATION (fn))
1364 {
1365 if (DECL_ODR_USED (fn)
1366 || DECL_EXPLICIT_INSTANTIATION (fn))
1367 {
1368 error ("specialization of %qD after instantiation",
1369 fn);
1370 return error_mark_node;
1371 }
1372 else
1373 {
1374 tree clone;
1375 /* This situation should occur only if the first
1376 specialization is an implicit instantiation, the
1377 second is an explicit specialization, and the
1378 implicit instantiation has not yet been used. That
1379 situation can occur if we have implicitly
1380 instantiated a member function and then specialized
1381 it later.
1382
1383 We can also wind up here if a friend declaration that
1384 looked like an instantiation turns out to be a
1385 specialization:
1386
1387 template <class T> void foo(T);
1388 class S { friend void foo<>(int) };
1389 template <> void foo(int);
1390
1391 We transform the existing DECL in place so that any
1392 pointers to it become pointers to the updated
1393 declaration.
1394
1395 If there was a definition for the template, but not
1396 for the specialization, we want this to look as if
1397 there were no definition, and vice versa. */
1398 DECL_INITIAL (fn) = NULL_TREE;
1399 duplicate_decls (spec, fn, is_friend);
1400 /* The call to duplicate_decls will have applied
1401 [temp.expl.spec]:
1402
1403 An explicit specialization of a function template
1404 is inline only if it is explicitly declared to be,
1405 and independently of whether its function template
1406 is.
1407
1408 to the primary function; now copy the inline bits to
1409 the various clones. */
1410 FOR_EACH_CLONE (clone, fn)
1411 {
1412 DECL_DECLARED_INLINE_P (clone)
1413 = DECL_DECLARED_INLINE_P (fn);
1414 DECL_SOURCE_LOCATION (clone)
1415 = DECL_SOURCE_LOCATION (fn);
1416 }
1417 check_specialization_namespace (fn);
1418
1419 return fn;
1420 }
1421 }
1422 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1423 {
1424 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1425 /* Dup decl failed, but this is a new definition. Set the
1426 line number so any errors match this new
1427 definition. */
1428 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1429
1430 return fn;
1431 }
1432 }
1433 else if (fn)
1434 return duplicate_decls (spec, fn, is_friend);
1435
1436 /* A specialization must be declared in the same namespace as the
1437 template it is specializing. */
1438 if (DECL_TEMPLATE_SPECIALIZATION (spec)
1439 && !check_specialization_namespace (tmpl))
1440 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1441
1442 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1443 {
1444 spec_entry *entry = ggc_alloc_spec_entry ();
1445 gcc_assert (tmpl && args && spec);
1446 *entry = elt;
1447 *slot = entry;
1448 if (TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1449 && PRIMARY_TEMPLATE_P (tmpl)
1450 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1451 /* TMPL is a forward declaration of a template function; keep a list
1452 of all specializations in case we need to reassign them to a friend
1453 template later in tsubst_friend_function. */
1454 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1455 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1456 }
1457
1458 return spec;
1459 }
1460
1461 /* Returns true iff two spec_entry nodes are equivalent. Only compares the
1462 TMPL and ARGS members, ignores SPEC. */
1463
1464 static int
1465 eq_specializations (const void *p1, const void *p2)
1466 {
1467 const spec_entry *e1 = (const spec_entry *)p1;
1468 const spec_entry *e2 = (const spec_entry *)p2;
1469
1470 return (e1->tmpl == e2->tmpl
1471 && comp_template_args (e1->args, e2->args));
1472 }
1473
1474 /* Returns a hash for a template TMPL and template arguments ARGS. */
1475
1476 static hashval_t
1477 hash_tmpl_and_args (tree tmpl, tree args)
1478 {
1479 hashval_t val = DECL_UID (tmpl);
1480 return iterative_hash_template_arg (args, val);
1481 }
1482
1483 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1484 ignoring SPEC. */
1485
1486 static hashval_t
1487 hash_specialization (const void *p)
1488 {
1489 const spec_entry *e = (const spec_entry *)p;
1490 return hash_tmpl_and_args (e->tmpl, e->args);
1491 }
1492
1493 /* Recursively calculate a hash value for a template argument ARG, for use
1494 in the hash tables of template specializations. */
1495
1496 hashval_t
1497 iterative_hash_template_arg (tree arg, hashval_t val)
1498 {
1499 unsigned HOST_WIDE_INT i;
1500 enum tree_code code;
1501 char tclass;
1502
1503 if (arg == NULL_TREE)
1504 return iterative_hash_object (arg, val);
1505
1506 if (!TYPE_P (arg))
1507 STRIP_NOPS (arg);
1508
1509 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1510 /* We can get one of these when re-hashing a previous entry in the middle
1511 of substituting into a pack expansion. Just look through it. */
1512 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1513
1514 code = TREE_CODE (arg);
1515 tclass = TREE_CODE_CLASS (code);
1516
1517 val = iterative_hash_object (code, val);
1518
1519 switch (code)
1520 {
1521 case ERROR_MARK:
1522 return val;
1523
1524 case IDENTIFIER_NODE:
1525 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1526
1527 case TREE_VEC:
1528 {
1529 int i, len = TREE_VEC_LENGTH (arg);
1530 for (i = 0; i < len; ++i)
1531 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1532 return val;
1533 }
1534
1535 case TYPE_PACK_EXPANSION:
1536 case EXPR_PACK_EXPANSION:
1537 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1538 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1539
1540 case TYPE_ARGUMENT_PACK:
1541 case NONTYPE_ARGUMENT_PACK:
1542 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1543
1544 case TREE_LIST:
1545 for (; arg; arg = TREE_CHAIN (arg))
1546 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1547 return val;
1548
1549 case OVERLOAD:
1550 for (; arg; arg = OVL_NEXT (arg))
1551 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1552 return val;
1553
1554 case CONSTRUCTOR:
1555 {
1556 tree field, value;
1557 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1558 {
1559 val = iterative_hash_template_arg (field, val);
1560 val = iterative_hash_template_arg (value, val);
1561 }
1562 return val;
1563 }
1564
1565 case PARM_DECL:
1566 if (!DECL_ARTIFICIAL (arg))
1567 {
1568 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1569 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1570 }
1571 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1572
1573 case TARGET_EXPR:
1574 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1575
1576 case PTRMEM_CST:
1577 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1578 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1579
1580 case TEMPLATE_PARM_INDEX:
1581 val = iterative_hash_template_arg
1582 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1583 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1584 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1585
1586 case TRAIT_EXPR:
1587 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1588 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1589 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1590
1591 case BASELINK:
1592 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1593 val);
1594 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1595 val);
1596
1597 case MODOP_EXPR:
1598 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1599 code = TREE_CODE (TREE_OPERAND (arg, 1));
1600 val = iterative_hash_object (code, val);
1601 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1602
1603 case LAMBDA_EXPR:
1604 /* A lambda can't appear in a template arg, but don't crash on
1605 erroneous input. */
1606 gcc_assert (seen_error ());
1607 return val;
1608
1609 case CAST_EXPR:
1610 case IMPLICIT_CONV_EXPR:
1611 case STATIC_CAST_EXPR:
1612 case REINTERPRET_CAST_EXPR:
1613 case CONST_CAST_EXPR:
1614 case DYNAMIC_CAST_EXPR:
1615 case NEW_EXPR:
1616 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1617 /* Now hash operands as usual. */
1618 break;
1619
1620 default:
1621 break;
1622 }
1623
1624 switch (tclass)
1625 {
1626 case tcc_type:
1627 if (TYPE_CANONICAL (arg))
1628 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1629 val);
1630 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1631 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1632 /* Otherwise just compare the types during lookup. */
1633 return val;
1634
1635 case tcc_declaration:
1636 case tcc_constant:
1637 return iterative_hash_expr (arg, val);
1638
1639 default:
1640 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1641 {
1642 unsigned n = cp_tree_operand_length (arg);
1643 for (i = 0; i < n; ++i)
1644 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1645 return val;
1646 }
1647 }
1648 gcc_unreachable ();
1649 return 0;
1650 }
1651
1652 /* Unregister the specialization SPEC as a specialization of TMPL.
1653 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1654 if the SPEC was listed as a specialization of TMPL.
1655
1656 Note that SPEC has been ggc_freed, so we can't look inside it. */
1657
1658 bool
1659 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1660 {
1661 spec_entry *entry;
1662 spec_entry elt;
1663
1664 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1665 elt.args = TI_ARGS (tinfo);
1666 elt.spec = NULL_TREE;
1667
1668 entry = (spec_entry *) htab_find (decl_specializations, &elt);
1669 if (entry != NULL)
1670 {
1671 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1672 gcc_assert (new_spec != NULL_TREE);
1673 entry->spec = new_spec;
1674 return 1;
1675 }
1676
1677 return 0;
1678 }
1679
1680 /* Compare an entry in the local specializations hash table P1 (which
1681 is really a pointer to a TREE_LIST) with P2 (which is really a
1682 DECL). */
1683
1684 static int
1685 eq_local_specializations (const void *p1, const void *p2)
1686 {
1687 return TREE_VALUE ((const_tree) p1) == (const_tree) p2;
1688 }
1689
1690 /* Hash P1, an entry in the local specializations table. */
1691
1692 static hashval_t
1693 hash_local_specialization (const void* p1)
1694 {
1695 return htab_hash_pointer (TREE_VALUE ((const_tree) p1));
1696 }
1697
1698 /* Like register_specialization, but for local declarations. We are
1699 registering SPEC, an instantiation of TMPL. */
1700
1701 static void
1702 register_local_specialization (tree spec, tree tmpl)
1703 {
1704 void **slot;
1705
1706 slot = htab_find_slot_with_hash (local_specializations, tmpl,
1707 htab_hash_pointer (tmpl), INSERT);
1708 *slot = build_tree_list (spec, tmpl);
1709 }
1710
1711 /* TYPE is a class type. Returns true if TYPE is an explicitly
1712 specialized class. */
1713
1714 bool
1715 explicit_class_specialization_p (tree type)
1716 {
1717 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1718 return false;
1719 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1720 }
1721
1722 /* Print the list of functions at FNS, going through all the overloads
1723 for each element of the list. Alternatively, FNS can not be a
1724 TREE_LIST, in which case it will be printed together with all the
1725 overloads.
1726
1727 MORE and *STR should respectively be FALSE and NULL when the function
1728 is called from the outside. They are used internally on recursive
1729 calls. print_candidates manages the two parameters and leaves NULL
1730 in *STR when it ends. */
1731
1732 static void
1733 print_candidates_1 (tree fns, bool more, const char **str)
1734 {
1735 tree fn, fn2;
1736 char *spaces = NULL;
1737
1738 for (fn = fns; fn; fn = OVL_NEXT (fn))
1739 if (TREE_CODE (fn) == TREE_LIST)
1740 {
1741 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1742 print_candidates_1 (TREE_VALUE (fn2),
1743 TREE_CHAIN (fn2) || more, str);
1744 }
1745 else
1746 {
1747 if (!*str)
1748 {
1749 /* Pick the prefix string. */
1750 if (!more && !OVL_NEXT (fns))
1751 {
1752 error ("candidate is: %+#D", OVL_CURRENT (fn));
1753 continue;
1754 }
1755
1756 *str = _("candidates are:");
1757 spaces = get_spaces (*str);
1758 }
1759 error ("%s %+#D", *str, OVL_CURRENT (fn));
1760 *str = spaces ? spaces : *str;
1761 }
1762
1763 if (!more)
1764 {
1765 free (spaces);
1766 *str = NULL;
1767 }
1768 }
1769
1770 /* Print the list of candidate FNS in an error message. FNS can also
1771 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1772
1773 void
1774 print_candidates (tree fns)
1775 {
1776 const char *str = NULL;
1777 print_candidates_1 (fns, false, &str);
1778 gcc_assert (str == NULL);
1779 }
1780
1781 /* Returns the template (one of the functions given by TEMPLATE_ID)
1782 which can be specialized to match the indicated DECL with the
1783 explicit template args given in TEMPLATE_ID. The DECL may be
1784 NULL_TREE if none is available. In that case, the functions in
1785 TEMPLATE_ID are non-members.
1786
1787 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
1788 specialization of a member template.
1789
1790 The TEMPLATE_COUNT is the number of references to qualifying
1791 template classes that appeared in the name of the function. See
1792 check_explicit_specialization for a more accurate description.
1793
1794 TSK indicates what kind of template declaration (if any) is being
1795 declared. TSK_TEMPLATE indicates that the declaration given by
1796 DECL, though a FUNCTION_DECL, has template parameters, and is
1797 therefore a template function.
1798
1799 The template args (those explicitly specified and those deduced)
1800 are output in a newly created vector *TARGS_OUT.
1801
1802 If it is impossible to determine the result, an error message is
1803 issued. The error_mark_node is returned to indicate failure. */
1804
1805 static tree
1806 determine_specialization (tree template_id,
1807 tree decl,
1808 tree* targs_out,
1809 int need_member_template,
1810 int template_count,
1811 tmpl_spec_kind tsk)
1812 {
1813 tree fns;
1814 tree targs;
1815 tree explicit_targs;
1816 tree candidates = NULL_TREE;
1817 /* A TREE_LIST of templates of which DECL may be a specialization.
1818 The TREE_VALUE of each node is a TEMPLATE_DECL. The
1819 corresponding TREE_PURPOSE is the set of template arguments that,
1820 when used to instantiate the template, would produce a function
1821 with the signature of DECL. */
1822 tree templates = NULL_TREE;
1823 int header_count;
1824 cp_binding_level *b;
1825
1826 *targs_out = NULL_TREE;
1827
1828 if (template_id == error_mark_node || decl == error_mark_node)
1829 return error_mark_node;
1830
1831 fns = TREE_OPERAND (template_id, 0);
1832 explicit_targs = TREE_OPERAND (template_id, 1);
1833
1834 if (fns == error_mark_node)
1835 return error_mark_node;
1836
1837 /* Check for baselinks. */
1838 if (BASELINK_P (fns))
1839 fns = BASELINK_FUNCTIONS (fns);
1840
1841 if (!is_overloaded_fn (fns))
1842 {
1843 error ("%qD is not a function template", fns);
1844 return error_mark_node;
1845 }
1846
1847 /* Count the number of template headers specified for this
1848 specialization. */
1849 header_count = 0;
1850 for (b = current_binding_level;
1851 b->kind == sk_template_parms;
1852 b = b->level_chain)
1853 ++header_count;
1854
1855 for (; fns; fns = OVL_NEXT (fns))
1856 {
1857 tree fn = OVL_CURRENT (fns);
1858
1859 if (TREE_CODE (fn) == TEMPLATE_DECL)
1860 {
1861 tree decl_arg_types;
1862 tree fn_arg_types;
1863
1864 /* In case of explicit specialization, we need to check if
1865 the number of template headers appearing in the specialization
1866 is correct. This is usually done in check_explicit_specialization,
1867 but the check done there cannot be exhaustive when specializing
1868 member functions. Consider the following code:
1869
1870 template <> void A<int>::f(int);
1871 template <> template <> void A<int>::f(int);
1872
1873 Assuming that A<int> is not itself an explicit specialization
1874 already, the first line specializes "f" which is a non-template
1875 member function, whilst the second line specializes "f" which
1876 is a template member function. So both lines are syntactically
1877 correct, and check_explicit_specialization does not reject
1878 them.
1879
1880 Here, we can do better, as we are matching the specialization
1881 against the declarations. We count the number of template
1882 headers, and we check if they match TEMPLATE_COUNT + 1
1883 (TEMPLATE_COUNT is the number of qualifying template classes,
1884 plus there must be another header for the member template
1885 itself).
1886
1887 Notice that if header_count is zero, this is not a
1888 specialization but rather a template instantiation, so there
1889 is no check we can perform here. */
1890 if (header_count && header_count != template_count + 1)
1891 continue;
1892
1893 /* Check that the number of template arguments at the
1894 innermost level for DECL is the same as for FN. */
1895 if (current_binding_level->kind == sk_template_parms
1896 && !current_binding_level->explicit_spec_p
1897 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
1898 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
1899 (current_template_parms))))
1900 continue;
1901
1902 /* DECL might be a specialization of FN. */
1903 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1904 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
1905
1906 /* For a non-static member function, we need to make sure
1907 that the const qualification is the same. Since
1908 get_bindings does not try to merge the "this" parameter,
1909 we must do the comparison explicitly. */
1910 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1911 && !same_type_p (TREE_VALUE (fn_arg_types),
1912 TREE_VALUE (decl_arg_types)))
1913 continue;
1914
1915 /* Skip the "this" parameter and, for constructors of
1916 classes with virtual bases, the VTT parameter. A
1917 full specialization of a constructor will have a VTT
1918 parameter, but a template never will. */
1919 decl_arg_types
1920 = skip_artificial_parms_for (decl, decl_arg_types);
1921 fn_arg_types
1922 = skip_artificial_parms_for (fn, fn_arg_types);
1923
1924 /* Check that the number of function parameters matches.
1925 For example,
1926 template <class T> void f(int i = 0);
1927 template <> void f<int>();
1928 The specialization f<int> is invalid but is not caught
1929 by get_bindings below. */
1930 if (list_length (fn_arg_types) != list_length (decl_arg_types))
1931 continue;
1932
1933 /* Function templates cannot be specializations; there are
1934 no partial specializations of functions. Therefore, if
1935 the type of DECL does not match FN, there is no
1936 match. */
1937 if (tsk == tsk_template)
1938 {
1939 if (compparms (fn_arg_types, decl_arg_types))
1940 candidates = tree_cons (NULL_TREE, fn, candidates);
1941 continue;
1942 }
1943
1944 /* See whether this function might be a specialization of this
1945 template. */
1946 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
1947
1948 if (!targs)
1949 /* We cannot deduce template arguments that when used to
1950 specialize TMPL will produce DECL. */
1951 continue;
1952
1953 /* Save this template, and the arguments deduced. */
1954 templates = tree_cons (targs, fn, templates);
1955 }
1956 else if (need_member_template)
1957 /* FN is an ordinary member function, and we need a
1958 specialization of a member template. */
1959 ;
1960 else if (TREE_CODE (fn) != FUNCTION_DECL)
1961 /* We can get IDENTIFIER_NODEs here in certain erroneous
1962 cases. */
1963 ;
1964 else if (!DECL_FUNCTION_MEMBER_P (fn))
1965 /* This is just an ordinary non-member function. Nothing can
1966 be a specialization of that. */
1967 ;
1968 else if (DECL_ARTIFICIAL (fn))
1969 /* Cannot specialize functions that are created implicitly. */
1970 ;
1971 else
1972 {
1973 tree decl_arg_types;
1974
1975 /* This is an ordinary member function. However, since
1976 we're here, we can assume it's enclosing class is a
1977 template class. For example,
1978
1979 template <typename T> struct S { void f(); };
1980 template <> void S<int>::f() {}
1981
1982 Here, S<int>::f is a non-template, but S<int> is a
1983 template class. If FN has the same type as DECL, we
1984 might be in business. */
1985
1986 if (!DECL_TEMPLATE_INFO (fn))
1987 /* Its enclosing class is an explicit specialization
1988 of a template class. This is not a candidate. */
1989 continue;
1990
1991 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
1992 TREE_TYPE (TREE_TYPE (fn))))
1993 /* The return types differ. */
1994 continue;
1995
1996 /* Adjust the type of DECL in case FN is a static member. */
1997 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1998 if (DECL_STATIC_FUNCTION_P (fn)
1999 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2000 decl_arg_types = TREE_CHAIN (decl_arg_types);
2001
2002 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2003 decl_arg_types))
2004 /* They match! */
2005 candidates = tree_cons (NULL_TREE, fn, candidates);
2006 }
2007 }
2008
2009 if (templates && TREE_CHAIN (templates))
2010 {
2011 /* We have:
2012
2013 [temp.expl.spec]
2014
2015 It is possible for a specialization with a given function
2016 signature to be instantiated from more than one function
2017 template. In such cases, explicit specification of the
2018 template arguments must be used to uniquely identify the
2019 function template specialization being specialized.
2020
2021 Note that here, there's no suggestion that we're supposed to
2022 determine which of the candidate templates is most
2023 specialized. However, we, also have:
2024
2025 [temp.func.order]
2026
2027 Partial ordering of overloaded function template
2028 declarations is used in the following contexts to select
2029 the function template to which a function template
2030 specialization refers:
2031
2032 -- when an explicit specialization refers to a function
2033 template.
2034
2035 So, we do use the partial ordering rules, at least for now.
2036 This extension can only serve to make invalid programs valid,
2037 so it's safe. And, there is strong anecdotal evidence that
2038 the committee intended the partial ordering rules to apply;
2039 the EDG front end has that behavior, and John Spicer claims
2040 that the committee simply forgot to delete the wording in
2041 [temp.expl.spec]. */
2042 tree tmpl = most_specialized_instantiation (templates);
2043 if (tmpl != error_mark_node)
2044 {
2045 templates = tmpl;
2046 TREE_CHAIN (templates) = NULL_TREE;
2047 }
2048 }
2049
2050 if (templates == NULL_TREE && candidates == NULL_TREE)
2051 {
2052 error ("template-id %qD for %q+D does not match any template "
2053 "declaration", template_id, decl);
2054 if (header_count && header_count != template_count + 1)
2055 inform (input_location, "saw %d %<template<>%>, need %d for "
2056 "specializing a member function template",
2057 header_count, template_count + 1);
2058 return error_mark_node;
2059 }
2060 else if ((templates && TREE_CHAIN (templates))
2061 || (candidates && TREE_CHAIN (candidates))
2062 || (templates && candidates))
2063 {
2064 error ("ambiguous template specialization %qD for %q+D",
2065 template_id, decl);
2066 candidates = chainon (candidates, templates);
2067 print_candidates (candidates);
2068 return error_mark_node;
2069 }
2070
2071 /* We have one, and exactly one, match. */
2072 if (candidates)
2073 {
2074 tree fn = TREE_VALUE (candidates);
2075 *targs_out = copy_node (DECL_TI_ARGS (fn));
2076 /* DECL is a re-declaration or partial instantiation of a template
2077 function. */
2078 if (TREE_CODE (fn) == TEMPLATE_DECL)
2079 return fn;
2080 /* It was a specialization of an ordinary member function in a
2081 template class. */
2082 return DECL_TI_TEMPLATE (fn);
2083 }
2084
2085 /* It was a specialization of a template. */
2086 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2087 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2088 {
2089 *targs_out = copy_node (targs);
2090 SET_TMPL_ARGS_LEVEL (*targs_out,
2091 TMPL_ARGS_DEPTH (*targs_out),
2092 TREE_PURPOSE (templates));
2093 }
2094 else
2095 *targs_out = TREE_PURPOSE (templates);
2096 return TREE_VALUE (templates);
2097 }
2098
2099 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2100 but with the default argument values filled in from those in the
2101 TMPL_TYPES. */
2102
2103 static tree
2104 copy_default_args_to_explicit_spec_1 (tree spec_types,
2105 tree tmpl_types)
2106 {
2107 tree new_spec_types;
2108
2109 if (!spec_types)
2110 return NULL_TREE;
2111
2112 if (spec_types == void_list_node)
2113 return void_list_node;
2114
2115 /* Substitute into the rest of the list. */
2116 new_spec_types =
2117 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2118 TREE_CHAIN (tmpl_types));
2119
2120 /* Add the default argument for this parameter. */
2121 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2122 TREE_VALUE (spec_types),
2123 new_spec_types);
2124 }
2125
2126 /* DECL is an explicit specialization. Replicate default arguments
2127 from the template it specializes. (That way, code like:
2128
2129 template <class T> void f(T = 3);
2130 template <> void f(double);
2131 void g () { f (); }
2132
2133 works, as required.) An alternative approach would be to look up
2134 the correct default arguments at the call-site, but this approach
2135 is consistent with how implicit instantiations are handled. */
2136
2137 static void
2138 copy_default_args_to_explicit_spec (tree decl)
2139 {
2140 tree tmpl;
2141 tree spec_types;
2142 tree tmpl_types;
2143 tree new_spec_types;
2144 tree old_type;
2145 tree new_type;
2146 tree t;
2147 tree object_type = NULL_TREE;
2148 tree in_charge = NULL_TREE;
2149 tree vtt = NULL_TREE;
2150
2151 /* See if there's anything we need to do. */
2152 tmpl = DECL_TI_TEMPLATE (decl);
2153 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2154 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2155 if (TREE_PURPOSE (t))
2156 break;
2157 if (!t)
2158 return;
2159
2160 old_type = TREE_TYPE (decl);
2161 spec_types = TYPE_ARG_TYPES (old_type);
2162
2163 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2164 {
2165 /* Remove the this pointer, but remember the object's type for
2166 CV quals. */
2167 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2168 spec_types = TREE_CHAIN (spec_types);
2169 tmpl_types = TREE_CHAIN (tmpl_types);
2170
2171 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2172 {
2173 /* DECL may contain more parameters than TMPL due to the extra
2174 in-charge parameter in constructors and destructors. */
2175 in_charge = spec_types;
2176 spec_types = TREE_CHAIN (spec_types);
2177 }
2178 if (DECL_HAS_VTT_PARM_P (decl))
2179 {
2180 vtt = spec_types;
2181 spec_types = TREE_CHAIN (spec_types);
2182 }
2183 }
2184
2185 /* Compute the merged default arguments. */
2186 new_spec_types =
2187 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2188
2189 /* Compute the new FUNCTION_TYPE. */
2190 if (object_type)
2191 {
2192 if (vtt)
2193 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2194 TREE_VALUE (vtt),
2195 new_spec_types);
2196
2197 if (in_charge)
2198 /* Put the in-charge parameter back. */
2199 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2200 TREE_VALUE (in_charge),
2201 new_spec_types);
2202
2203 new_type = build_method_type_directly (object_type,
2204 TREE_TYPE (old_type),
2205 new_spec_types);
2206 }
2207 else
2208 new_type = build_function_type (TREE_TYPE (old_type),
2209 new_spec_types);
2210 new_type = cp_build_type_attribute_variant (new_type,
2211 TYPE_ATTRIBUTES (old_type));
2212 new_type = build_exception_variant (new_type,
2213 TYPE_RAISES_EXCEPTIONS (old_type));
2214 TREE_TYPE (decl) = new_type;
2215 }
2216
2217 /* Check to see if the function just declared, as indicated in
2218 DECLARATOR, and in DECL, is a specialization of a function
2219 template. We may also discover that the declaration is an explicit
2220 instantiation at this point.
2221
2222 Returns DECL, or an equivalent declaration that should be used
2223 instead if all goes well. Issues an error message if something is
2224 amiss. Returns error_mark_node if the error is not easily
2225 recoverable.
2226
2227 FLAGS is a bitmask consisting of the following flags:
2228
2229 2: The function has a definition.
2230 4: The function is a friend.
2231
2232 The TEMPLATE_COUNT is the number of references to qualifying
2233 template classes that appeared in the name of the function. For
2234 example, in
2235
2236 template <class T> struct S { void f(); };
2237 void S<int>::f();
2238
2239 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2240 classes are not counted in the TEMPLATE_COUNT, so that in
2241
2242 template <class T> struct S {};
2243 template <> struct S<int> { void f(); }
2244 template <> void S<int>::f();
2245
2246 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2247 invalid; there should be no template <>.)
2248
2249 If the function is a specialization, it is marked as such via
2250 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2251 is set up correctly, and it is added to the list of specializations
2252 for that template. */
2253
2254 tree
2255 check_explicit_specialization (tree declarator,
2256 tree decl,
2257 int template_count,
2258 int flags)
2259 {
2260 int have_def = flags & 2;
2261 int is_friend = flags & 4;
2262 int specialization = 0;
2263 int explicit_instantiation = 0;
2264 int member_specialization = 0;
2265 tree ctype = DECL_CLASS_CONTEXT (decl);
2266 tree dname = DECL_NAME (decl);
2267 tmpl_spec_kind tsk;
2268
2269 if (is_friend)
2270 {
2271 if (!processing_specialization)
2272 tsk = tsk_none;
2273 else
2274 tsk = tsk_excessive_parms;
2275 }
2276 else
2277 tsk = current_tmpl_spec_kind (template_count);
2278
2279 switch (tsk)
2280 {
2281 case tsk_none:
2282 if (processing_specialization)
2283 {
2284 specialization = 1;
2285 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2286 }
2287 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2288 {
2289 if (is_friend)
2290 /* This could be something like:
2291
2292 template <class T> void f(T);
2293 class S { friend void f<>(int); } */
2294 specialization = 1;
2295 else
2296 {
2297 /* This case handles bogus declarations like template <>
2298 template <class T> void f<int>(); */
2299
2300 error ("template-id %qD in declaration of primary template",
2301 declarator);
2302 return decl;
2303 }
2304 }
2305 break;
2306
2307 case tsk_invalid_member_spec:
2308 /* The error has already been reported in
2309 check_specialization_scope. */
2310 return error_mark_node;
2311
2312 case tsk_invalid_expl_inst:
2313 error ("template parameter list used in explicit instantiation");
2314
2315 /* Fall through. */
2316
2317 case tsk_expl_inst:
2318 if (have_def)
2319 error ("definition provided for explicit instantiation");
2320
2321 explicit_instantiation = 1;
2322 break;
2323
2324 case tsk_excessive_parms:
2325 case tsk_insufficient_parms:
2326 if (tsk == tsk_excessive_parms)
2327 error ("too many template parameter lists in declaration of %qD",
2328 decl);
2329 else if (template_header_count)
2330 error("too few template parameter lists in declaration of %qD", decl);
2331 else
2332 error("explicit specialization of %qD must be introduced by "
2333 "%<template <>%>", decl);
2334
2335 /* Fall through. */
2336 case tsk_expl_spec:
2337 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2338 if (ctype)
2339 member_specialization = 1;
2340 else
2341 specialization = 1;
2342 break;
2343
2344 case tsk_template:
2345 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2346 {
2347 /* This case handles bogus declarations like template <>
2348 template <class T> void f<int>(); */
2349
2350 if (uses_template_parms (declarator))
2351 error ("function template partial specialization %qD "
2352 "is not allowed", declarator);
2353 else
2354 error ("template-id %qD in declaration of primary template",
2355 declarator);
2356 return decl;
2357 }
2358
2359 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2360 /* This is a specialization of a member template, without
2361 specialization the containing class. Something like:
2362
2363 template <class T> struct S {
2364 template <class U> void f (U);
2365 };
2366 template <> template <class U> void S<int>::f(U) {}
2367
2368 That's a specialization -- but of the entire template. */
2369 specialization = 1;
2370 break;
2371
2372 default:
2373 gcc_unreachable ();
2374 }
2375
2376 if (specialization || member_specialization)
2377 {
2378 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2379 for (; t; t = TREE_CHAIN (t))
2380 if (TREE_PURPOSE (t))
2381 {
2382 permerror (input_location,
2383 "default argument specified in explicit specialization");
2384 break;
2385 }
2386 }
2387
2388 if (specialization || member_specialization || explicit_instantiation)
2389 {
2390 tree tmpl = NULL_TREE;
2391 tree targs = NULL_TREE;
2392
2393 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2394 if (TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2395 {
2396 tree fns;
2397
2398 gcc_assert (TREE_CODE (declarator) == IDENTIFIER_NODE);
2399 if (ctype)
2400 fns = dname;
2401 else
2402 {
2403 /* If there is no class context, the explicit instantiation
2404 must be at namespace scope. */
2405 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2406
2407 /* Find the namespace binding, using the declaration
2408 context. */
2409 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2410 false, true);
2411 if (fns == error_mark_node || !is_overloaded_fn (fns))
2412 {
2413 error ("%qD is not a template function", dname);
2414 fns = error_mark_node;
2415 }
2416 else
2417 {
2418 tree fn = OVL_CURRENT (fns);
2419 if (!is_associated_namespace (CP_DECL_CONTEXT (decl),
2420 CP_DECL_CONTEXT (fn)))
2421 error ("%qD is not declared in %qD",
2422 decl, current_namespace);
2423 }
2424 }
2425
2426 declarator = lookup_template_function (fns, NULL_TREE);
2427 }
2428
2429 if (declarator == error_mark_node)
2430 return error_mark_node;
2431
2432 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2433 {
2434 if (!explicit_instantiation)
2435 /* A specialization in class scope. This is invalid,
2436 but the error will already have been flagged by
2437 check_specialization_scope. */
2438 return error_mark_node;
2439 else
2440 {
2441 /* It's not valid to write an explicit instantiation in
2442 class scope, e.g.:
2443
2444 class C { template void f(); }
2445
2446 This case is caught by the parser. However, on
2447 something like:
2448
2449 template class C { void f(); };
2450
2451 (which is invalid) we can get here. The error will be
2452 issued later. */
2453 ;
2454 }
2455
2456 return decl;
2457 }
2458 else if (ctype != NULL_TREE
2459 && (TREE_CODE (TREE_OPERAND (declarator, 0)) ==
2460 IDENTIFIER_NODE))
2461 {
2462 /* Find the list of functions in ctype that have the same
2463 name as the declared function. */
2464 tree name = TREE_OPERAND (declarator, 0);
2465 tree fns = NULL_TREE;
2466 int idx;
2467
2468 if (constructor_name_p (name, ctype))
2469 {
2470 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2471
2472 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2473 : !CLASSTYPE_DESTRUCTORS (ctype))
2474 {
2475 /* From [temp.expl.spec]:
2476
2477 If such an explicit specialization for the member
2478 of a class template names an implicitly-declared
2479 special member function (clause _special_), the
2480 program is ill-formed.
2481
2482 Similar language is found in [temp.explicit]. */
2483 error ("specialization of implicitly-declared special member function");
2484 return error_mark_node;
2485 }
2486
2487 name = is_constructor ? ctor_identifier : dtor_identifier;
2488 }
2489
2490 if (!DECL_CONV_FN_P (decl))
2491 {
2492 idx = lookup_fnfields_1 (ctype, name);
2493 if (idx >= 0)
2494 fns = VEC_index (tree, CLASSTYPE_METHOD_VEC (ctype), idx);
2495 }
2496 else
2497 {
2498 VEC(tree,gc) *methods;
2499 tree ovl;
2500
2501 /* For a type-conversion operator, we cannot do a
2502 name-based lookup. We might be looking for `operator
2503 int' which will be a specialization of `operator T'.
2504 So, we find *all* the conversion operators, and then
2505 select from them. */
2506 fns = NULL_TREE;
2507
2508 methods = CLASSTYPE_METHOD_VEC (ctype);
2509 if (methods)
2510 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2511 VEC_iterate (tree, methods, idx, ovl);
2512 ++idx)
2513 {
2514 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2515 /* There are no more conversion functions. */
2516 break;
2517
2518 /* Glue all these conversion functions together
2519 with those we already have. */
2520 for (; ovl; ovl = OVL_NEXT (ovl))
2521 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2522 }
2523 }
2524
2525 if (fns == NULL_TREE)
2526 {
2527 error ("no member function %qD declared in %qT", name, ctype);
2528 return error_mark_node;
2529 }
2530 else
2531 TREE_OPERAND (declarator, 0) = fns;
2532 }
2533
2534 /* Figure out what exactly is being specialized at this point.
2535 Note that for an explicit instantiation, even one for a
2536 member function, we cannot tell apriori whether the
2537 instantiation is for a member template, or just a member
2538 function of a template class. Even if a member template is
2539 being instantiated, the member template arguments may be
2540 elided if they can be deduced from the rest of the
2541 declaration. */
2542 tmpl = determine_specialization (declarator, decl,
2543 &targs,
2544 member_specialization,
2545 template_count,
2546 tsk);
2547
2548 if (!tmpl || tmpl == error_mark_node)
2549 /* We couldn't figure out what this declaration was
2550 specializing. */
2551 return error_mark_node;
2552 else
2553 {
2554 tree gen_tmpl = most_general_template (tmpl);
2555
2556 if (explicit_instantiation)
2557 {
2558 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2559 is done by do_decl_instantiation later. */
2560
2561 int arg_depth = TMPL_ARGS_DEPTH (targs);
2562 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2563
2564 if (arg_depth > parm_depth)
2565 {
2566 /* If TMPL is not the most general template (for
2567 example, if TMPL is a friend template that is
2568 injected into namespace scope), then there will
2569 be too many levels of TARGS. Remove some of them
2570 here. */
2571 int i;
2572 tree new_targs;
2573
2574 new_targs = make_tree_vec (parm_depth);
2575 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2576 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2577 = TREE_VEC_ELT (targs, i);
2578 targs = new_targs;
2579 }
2580
2581 return instantiate_template (tmpl, targs, tf_error);
2582 }
2583
2584 /* If we thought that the DECL was a member function, but it
2585 turns out to be specializing a static member function,
2586 make DECL a static member function as well. */
2587 if (DECL_STATIC_FUNCTION_P (tmpl)
2588 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2589 revert_static_member_fn (decl);
2590
2591 /* If this is a specialization of a member template of a
2592 template class, we want to return the TEMPLATE_DECL, not
2593 the specialization of it. */
2594 if (tsk == tsk_template)
2595 {
2596 tree result = DECL_TEMPLATE_RESULT (tmpl);
2597 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2598 DECL_INITIAL (result) = NULL_TREE;
2599 if (have_def)
2600 {
2601 tree parm;
2602 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
2603 DECL_SOURCE_LOCATION (result)
2604 = DECL_SOURCE_LOCATION (decl);
2605 /* We want to use the argument list specified in the
2606 definition, not in the original declaration. */
2607 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
2608 for (parm = DECL_ARGUMENTS (result); parm;
2609 parm = DECL_CHAIN (parm))
2610 DECL_CONTEXT (parm) = result;
2611 }
2612 return register_specialization (tmpl, gen_tmpl, targs,
2613 is_friend, 0);
2614 }
2615
2616 /* Set up the DECL_TEMPLATE_INFO for DECL. */
2617 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
2618
2619 /* Inherit default function arguments from the template
2620 DECL is specializing. */
2621 copy_default_args_to_explicit_spec (decl);
2622
2623 /* This specialization has the same protection as the
2624 template it specializes. */
2625 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
2626 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
2627
2628 /* 7.1.1-1 [dcl.stc]
2629
2630 A storage-class-specifier shall not be specified in an
2631 explicit specialization...
2632
2633 The parser rejects these, so unless action is taken here,
2634 explicit function specializations will always appear with
2635 global linkage.
2636
2637 The action recommended by the C++ CWG in response to C++
2638 defect report 605 is to make the storage class and linkage
2639 of the explicit specialization match the templated function:
2640
2641 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
2642 */
2643 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
2644 {
2645 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
2646 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
2647
2648 /* This specialization has the same linkage and visibility as
2649 the function template it specializes. */
2650 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
2651 if (! TREE_PUBLIC (decl))
2652 {
2653 DECL_INTERFACE_KNOWN (decl) = 1;
2654 DECL_NOT_REALLY_EXTERN (decl) = 1;
2655 }
2656 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
2657 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
2658 {
2659 DECL_VISIBILITY_SPECIFIED (decl) = 1;
2660 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
2661 }
2662 }
2663
2664 /* If DECL is a friend declaration, declared using an
2665 unqualified name, the namespace associated with DECL may
2666 have been set incorrectly. For example, in:
2667
2668 template <typename T> void f(T);
2669 namespace N {
2670 struct S { friend void f<int>(int); }
2671 }
2672
2673 we will have set the DECL_CONTEXT for the friend
2674 declaration to N, rather than to the global namespace. */
2675 if (DECL_NAMESPACE_SCOPE_P (decl))
2676 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
2677
2678 if (is_friend && !have_def)
2679 /* This is not really a declaration of a specialization.
2680 It's just the name of an instantiation. But, it's not
2681 a request for an instantiation, either. */
2682 SET_DECL_IMPLICIT_INSTANTIATION (decl);
2683 else if (DECL_CONSTRUCTOR_P (decl) || DECL_DESTRUCTOR_P (decl))
2684 /* This is indeed a specialization. In case of constructors
2685 and destructors, we need in-charge and not-in-charge
2686 versions in V3 ABI. */
2687 clone_function_decl (decl, /*update_method_vec_p=*/0);
2688
2689 /* Register this specialization so that we can find it
2690 again. */
2691 decl = register_specialization (decl, gen_tmpl, targs, is_friend, 0);
2692 }
2693 }
2694
2695 return decl;
2696 }
2697
2698 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
2699 parameters. These are represented in the same format used for
2700 DECL_TEMPLATE_PARMS. */
2701
2702 int
2703 comp_template_parms (const_tree parms1, const_tree parms2)
2704 {
2705 const_tree p1;
2706 const_tree p2;
2707
2708 if (parms1 == parms2)
2709 return 1;
2710
2711 for (p1 = parms1, p2 = parms2;
2712 p1 != NULL_TREE && p2 != NULL_TREE;
2713 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
2714 {
2715 tree t1 = TREE_VALUE (p1);
2716 tree t2 = TREE_VALUE (p2);
2717 int i;
2718
2719 gcc_assert (TREE_CODE (t1) == TREE_VEC);
2720 gcc_assert (TREE_CODE (t2) == TREE_VEC);
2721
2722 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2723 return 0;
2724
2725 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
2726 {
2727 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
2728 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
2729
2730 /* If either of the template parameters are invalid, assume
2731 they match for the sake of error recovery. */
2732 if (parm1 == error_mark_node || parm2 == error_mark_node)
2733 return 1;
2734
2735 if (TREE_CODE (parm1) != TREE_CODE (parm2))
2736 return 0;
2737
2738 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
2739 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
2740 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
2741 continue;
2742 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
2743 return 0;
2744 }
2745 }
2746
2747 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
2748 /* One set of parameters has more parameters lists than the
2749 other. */
2750 return 0;
2751
2752 return 1;
2753 }
2754
2755 /* Determine whether PARM is a parameter pack. */
2756
2757 bool
2758 template_parameter_pack_p (const_tree parm)
2759 {
2760 /* Determine if we have a non-type template parameter pack. */
2761 if (TREE_CODE (parm) == PARM_DECL)
2762 return (DECL_TEMPLATE_PARM_P (parm)
2763 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
2764 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
2765 return TEMPLATE_PARM_PARAMETER_PACK (parm);
2766
2767 /* If this is a list of template parameters, we could get a
2768 TYPE_DECL or a TEMPLATE_DECL. */
2769 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
2770 parm = TREE_TYPE (parm);
2771
2772 /* Otherwise it must be a type template parameter. */
2773 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
2774 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
2775 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
2776 }
2777
2778 /* Determine if T is a function parameter pack. */
2779
2780 bool
2781 function_parameter_pack_p (const_tree t)
2782 {
2783 if (t && TREE_CODE (t) == PARM_DECL)
2784 return FUNCTION_PARAMETER_PACK_P (t);
2785 return false;
2786 }
2787
2788 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
2789 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
2790
2791 tree
2792 get_function_template_decl (const_tree primary_func_tmpl_inst)
2793 {
2794 if (! primary_func_tmpl_inst
2795 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
2796 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
2797 return NULL;
2798
2799 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
2800 }
2801
2802 /* Return true iff the function parameter PARAM_DECL was expanded
2803 from the function parameter pack PACK. */
2804
2805 bool
2806 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
2807 {
2808 if (DECL_ARTIFICIAL (param_decl)
2809 || !function_parameter_pack_p (pack))
2810 return false;
2811
2812 /* The parameter pack and its pack arguments have the same
2813 DECL_PARM_INDEX. */
2814 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
2815 }
2816
2817 /* Determine whether ARGS describes a variadic template args list,
2818 i.e., one that is terminated by a template argument pack. */
2819
2820 static bool
2821 template_args_variadic_p (tree args)
2822 {
2823 int nargs;
2824 tree last_parm;
2825
2826 if (args == NULL_TREE)
2827 return false;
2828
2829 args = INNERMOST_TEMPLATE_ARGS (args);
2830 nargs = TREE_VEC_LENGTH (args);
2831
2832 if (nargs == 0)
2833 return false;
2834
2835 last_parm = TREE_VEC_ELT (args, nargs - 1);
2836
2837 return ARGUMENT_PACK_P (last_parm);
2838 }
2839
2840 /* Generate a new name for the parameter pack name NAME (an
2841 IDENTIFIER_NODE) that incorporates its */
2842
2843 static tree
2844 make_ith_pack_parameter_name (tree name, int i)
2845 {
2846 /* Munge the name to include the parameter index. */
2847 #define NUMBUF_LEN 128
2848 char numbuf[NUMBUF_LEN];
2849 char* newname;
2850 int newname_len;
2851
2852 snprintf (numbuf, NUMBUF_LEN, "%i", i);
2853 newname_len = IDENTIFIER_LENGTH (name)
2854 + strlen (numbuf) + 2;
2855 newname = (char*)alloca (newname_len);
2856 snprintf (newname, newname_len,
2857 "%s#%i", IDENTIFIER_POINTER (name), i);
2858 return get_identifier (newname);
2859 }
2860
2861 /* Return true if T is a primary function, class or alias template
2862 instantiation. */
2863
2864 bool
2865 primary_template_instantiation_p (const_tree t)
2866 {
2867 if (!t)
2868 return false;
2869
2870 if (TREE_CODE (t) == FUNCTION_DECL)
2871 return DECL_LANG_SPECIFIC (t)
2872 && DECL_TEMPLATE_INSTANTIATION (t)
2873 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
2874 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
2875 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
2876 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
2877 else if (TYPE_P (t)
2878 && TYPE_TEMPLATE_INFO (t)
2879 && PRIMARY_TEMPLATE_P (TYPE_TI_TEMPLATE (t))
2880 && DECL_TEMPLATE_INSTANTIATION (TYPE_NAME (t)))
2881 return true;
2882 return false;
2883 }
2884
2885 /* Return true if PARM is a template template parameter. */
2886
2887 bool
2888 template_template_parameter_p (const_tree parm)
2889 {
2890 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
2891 }
2892
2893 /* Return the template parameters of T if T is a
2894 primary template instantiation, NULL otherwise. */
2895
2896 tree
2897 get_primary_template_innermost_parameters (const_tree t)
2898 {
2899 tree parms = NULL, template_info = NULL;
2900
2901 if ((template_info = get_template_info (t))
2902 && primary_template_instantiation_p (t))
2903 parms = INNERMOST_TEMPLATE_PARMS
2904 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
2905
2906 return parms;
2907 }
2908
2909 /* Return the template parameters of the LEVELth level from the full list
2910 of template parameters PARMS. */
2911
2912 tree
2913 get_template_parms_at_level (tree parms, int level)
2914 {
2915 tree p;
2916 if (!parms
2917 || TREE_CODE (parms) != TREE_LIST
2918 || level > TMPL_PARMS_DEPTH (parms))
2919 return NULL_TREE;
2920
2921 for (p = parms; p; p = TREE_CHAIN (p))
2922 if (TMPL_PARMS_DEPTH (p) == level)
2923 return p;
2924
2925 return NULL_TREE;
2926 }
2927
2928 /* Returns the template arguments of T if T is a template instantiation,
2929 NULL otherwise. */
2930
2931 tree
2932 get_template_innermost_arguments (const_tree t)
2933 {
2934 tree args = NULL, template_info = NULL;
2935
2936 if ((template_info = get_template_info (t))
2937 && TI_ARGS (template_info))
2938 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
2939
2940 return args;
2941 }
2942
2943 /* Return the argument pack elements of T if T is a template argument pack,
2944 NULL otherwise. */
2945
2946 tree
2947 get_template_argument_pack_elems (const_tree t)
2948 {
2949 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
2950 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
2951 return NULL;
2952
2953 return ARGUMENT_PACK_ARGS (t);
2954 }
2955
2956 /* Structure used to track the progress of find_parameter_packs_r. */
2957 struct find_parameter_pack_data
2958 {
2959 /* TREE_LIST that will contain all of the parameter packs found by
2960 the traversal. */
2961 tree* parameter_packs;
2962
2963 /* Set of AST nodes that have been visited by the traversal. */
2964 struct pointer_set_t *visited;
2965 };
2966
2967 /* Identifies all of the argument packs that occur in a template
2968 argument and appends them to the TREE_LIST inside DATA, which is a
2969 find_parameter_pack_data structure. This is a subroutine of
2970 make_pack_expansion and uses_parameter_packs. */
2971 static tree
2972 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
2973 {
2974 tree t = *tp;
2975 struct find_parameter_pack_data* ppd =
2976 (struct find_parameter_pack_data*)data;
2977 bool parameter_pack_p = false;
2978
2979 /* Identify whether this is a parameter pack or not. */
2980 switch (TREE_CODE (t))
2981 {
2982 case TEMPLATE_PARM_INDEX:
2983 if (TEMPLATE_PARM_PARAMETER_PACK (t))
2984 parameter_pack_p = true;
2985 break;
2986
2987 case TEMPLATE_TYPE_PARM:
2988 t = TYPE_MAIN_VARIANT (t);
2989 case TEMPLATE_TEMPLATE_PARM:
2990 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
2991 parameter_pack_p = true;
2992 break;
2993
2994 case PARM_DECL:
2995 if (FUNCTION_PARAMETER_PACK_P (t))
2996 {
2997 /* We don't want to walk into the type of a PARM_DECL,
2998 because we don't want to see the type parameter pack. */
2999 *walk_subtrees = 0;
3000 parameter_pack_p = true;
3001 }
3002 break;
3003
3004 case BASES:
3005 parameter_pack_p = true;
3006 break;
3007 default:
3008 /* Not a parameter pack. */
3009 break;
3010 }
3011
3012 if (parameter_pack_p)
3013 {
3014 /* Add this parameter pack to the list. */
3015 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3016 }
3017
3018 if (TYPE_P (t))
3019 cp_walk_tree (&TYPE_CONTEXT (t),
3020 &find_parameter_packs_r, ppd, ppd->visited);
3021
3022 /* This switch statement will return immediately if we don't find a
3023 parameter pack. */
3024 switch (TREE_CODE (t))
3025 {
3026 case TEMPLATE_PARM_INDEX:
3027 return NULL_TREE;
3028
3029 case BOUND_TEMPLATE_TEMPLATE_PARM:
3030 /* Check the template itself. */
3031 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3032 &find_parameter_packs_r, ppd, ppd->visited);
3033 /* Check the template arguments. */
3034 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3035 ppd->visited);
3036 *walk_subtrees = 0;
3037 return NULL_TREE;
3038
3039 case TEMPLATE_TYPE_PARM:
3040 case TEMPLATE_TEMPLATE_PARM:
3041 return NULL_TREE;
3042
3043 case PARM_DECL:
3044 return NULL_TREE;
3045
3046 case RECORD_TYPE:
3047 if (TYPE_PTRMEMFUNC_P (t))
3048 return NULL_TREE;
3049 /* Fall through. */
3050
3051 case UNION_TYPE:
3052 case ENUMERAL_TYPE:
3053 if (TYPE_TEMPLATE_INFO (t))
3054 cp_walk_tree (&TI_ARGS (TYPE_TEMPLATE_INFO (t)),
3055 &find_parameter_packs_r, ppd, ppd->visited);
3056
3057 *walk_subtrees = 0;
3058 return NULL_TREE;
3059
3060 case CONSTRUCTOR:
3061 case TEMPLATE_DECL:
3062 cp_walk_tree (&TREE_TYPE (t),
3063 &find_parameter_packs_r, ppd, ppd->visited);
3064 return NULL_TREE;
3065
3066 case TYPENAME_TYPE:
3067 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3068 ppd, ppd->visited);
3069 *walk_subtrees = 0;
3070 return NULL_TREE;
3071
3072 case TYPE_PACK_EXPANSION:
3073 case EXPR_PACK_EXPANSION:
3074 *walk_subtrees = 0;
3075 return NULL_TREE;
3076
3077 case INTEGER_TYPE:
3078 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3079 ppd, ppd->visited);
3080 *walk_subtrees = 0;
3081 return NULL_TREE;
3082
3083 case IDENTIFIER_NODE:
3084 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3085 ppd->visited);
3086 *walk_subtrees = 0;
3087 return NULL_TREE;
3088
3089 default:
3090 return NULL_TREE;
3091 }
3092
3093 return NULL_TREE;
3094 }
3095
3096 /* Determines if the expression or type T uses any parameter packs. */
3097 bool
3098 uses_parameter_packs (tree t)
3099 {
3100 tree parameter_packs = NULL_TREE;
3101 struct find_parameter_pack_data ppd;
3102 ppd.parameter_packs = &parameter_packs;
3103 ppd.visited = pointer_set_create ();
3104 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3105 pointer_set_destroy (ppd.visited);
3106 return parameter_packs != NULL_TREE;
3107 }
3108
3109 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3110 representation a base-class initializer into a parameter pack
3111 expansion. If all goes well, the resulting node will be an
3112 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3113 respectively. */
3114 tree
3115 make_pack_expansion (tree arg)
3116 {
3117 tree result;
3118 tree parameter_packs = NULL_TREE;
3119 bool for_types = false;
3120 struct find_parameter_pack_data ppd;
3121
3122 if (!arg || arg == error_mark_node)
3123 return arg;
3124
3125 if (TREE_CODE (arg) == TREE_LIST)
3126 {
3127 /* The only time we will see a TREE_LIST here is for a base
3128 class initializer. In this case, the TREE_PURPOSE will be a
3129 _TYPE node (representing the base class expansion we're
3130 initializing) and the TREE_VALUE will be a TREE_LIST
3131 containing the initialization arguments.
3132
3133 The resulting expansion looks somewhat different from most
3134 expansions. Rather than returning just one _EXPANSION, we
3135 return a TREE_LIST whose TREE_PURPOSE is a
3136 TYPE_PACK_EXPANSION containing the bases that will be
3137 initialized. The TREE_VALUE will be identical to the
3138 original TREE_VALUE, which is a list of arguments that will
3139 be passed to each base. We do not introduce any new pack
3140 expansion nodes into the TREE_VALUE (although it is possible
3141 that some already exist), because the TREE_PURPOSE and
3142 TREE_VALUE all need to be expanded together with the same
3143 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3144 resulting TREE_PURPOSE will mention the parameter packs in
3145 both the bases and the arguments to the bases. */
3146 tree purpose;
3147 tree value;
3148 tree parameter_packs = NULL_TREE;
3149
3150 /* Determine which parameter packs will be used by the base
3151 class expansion. */
3152 ppd.visited = pointer_set_create ();
3153 ppd.parameter_packs = &parameter_packs;
3154 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3155 &ppd, ppd.visited);
3156
3157 if (parameter_packs == NULL_TREE)
3158 {
3159 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3160 pointer_set_destroy (ppd.visited);
3161 return error_mark_node;
3162 }
3163
3164 if (TREE_VALUE (arg) != void_type_node)
3165 {
3166 /* Collect the sets of parameter packs used in each of the
3167 initialization arguments. */
3168 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3169 {
3170 /* Determine which parameter packs will be expanded in this
3171 argument. */
3172 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3173 &ppd, ppd.visited);
3174 }
3175 }
3176
3177 pointer_set_destroy (ppd.visited);
3178
3179 /* Create the pack expansion type for the base type. */
3180 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3181 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3182 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3183
3184 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3185 they will rarely be compared to anything. */
3186 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3187
3188 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3189 }
3190
3191 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3192 for_types = true;
3193
3194 /* Build the PACK_EXPANSION_* node. */
3195 result = for_types
3196 ? cxx_make_type (TYPE_PACK_EXPANSION)
3197 : make_node (EXPR_PACK_EXPANSION);
3198 SET_PACK_EXPANSION_PATTERN (result, arg);
3199 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3200 {
3201 /* Propagate type and const-expression information. */
3202 TREE_TYPE (result) = TREE_TYPE (arg);
3203 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3204 }
3205 else
3206 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3207 they will rarely be compared to anything. */
3208 SET_TYPE_STRUCTURAL_EQUALITY (result);
3209
3210 /* Determine which parameter packs will be expanded. */
3211 ppd.parameter_packs = &parameter_packs;
3212 ppd.visited = pointer_set_create ();
3213 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3214 pointer_set_destroy (ppd.visited);
3215
3216 /* Make sure we found some parameter packs. */
3217 if (parameter_packs == NULL_TREE)
3218 {
3219 if (TYPE_P (arg))
3220 error ("expansion pattern %<%T%> contains no argument packs", arg);
3221 else
3222 error ("expansion pattern %<%E%> contains no argument packs", arg);
3223 return error_mark_node;
3224 }
3225 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3226
3227 return result;
3228 }
3229
3230 /* Checks T for any "bare" parameter packs, which have not yet been
3231 expanded, and issues an error if any are found. This operation can
3232 only be done on full expressions or types (e.g., an expression
3233 statement, "if" condition, etc.), because we could have expressions like:
3234
3235 foo(f(g(h(args)))...)
3236
3237 where "args" is a parameter pack. check_for_bare_parameter_packs
3238 should not be called for the subexpressions args, h(args),
3239 g(h(args)), or f(g(h(args))), because we would produce erroneous
3240 error messages.
3241
3242 Returns TRUE and emits an error if there were bare parameter packs,
3243 returns FALSE otherwise. */
3244 bool
3245 check_for_bare_parameter_packs (tree t)
3246 {
3247 tree parameter_packs = NULL_TREE;
3248 struct find_parameter_pack_data ppd;
3249
3250 if (!processing_template_decl || !t || t == error_mark_node)
3251 return false;
3252
3253 if (TREE_CODE (t) == TYPE_DECL)
3254 t = TREE_TYPE (t);
3255
3256 ppd.parameter_packs = &parameter_packs;
3257 ppd.visited = pointer_set_create ();
3258 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3259 pointer_set_destroy (ppd.visited);
3260
3261 if (parameter_packs)
3262 {
3263 error ("parameter packs not expanded with %<...%>:");
3264 while (parameter_packs)
3265 {
3266 tree pack = TREE_VALUE (parameter_packs);
3267 tree name = NULL_TREE;
3268
3269 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3270 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3271 name = TYPE_NAME (pack);
3272 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3273 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3274 else
3275 name = DECL_NAME (pack);
3276
3277 if (name)
3278 inform (input_location, " %qD", name);
3279 else
3280 inform (input_location, " <anonymous>");
3281
3282 parameter_packs = TREE_CHAIN (parameter_packs);
3283 }
3284
3285 return true;
3286 }
3287
3288 return false;
3289 }
3290
3291 /* Expand any parameter packs that occur in the template arguments in
3292 ARGS. */
3293 tree
3294 expand_template_argument_pack (tree args)
3295 {
3296 tree result_args = NULL_TREE;
3297 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3298 int num_result_args = -1;
3299 int non_default_args_count = -1;
3300
3301 /* First, determine if we need to expand anything, and the number of
3302 slots we'll need. */
3303 for (in_arg = 0; in_arg < nargs; ++in_arg)
3304 {
3305 tree arg = TREE_VEC_ELT (args, in_arg);
3306 if (arg == NULL_TREE)
3307 return args;
3308 if (ARGUMENT_PACK_P (arg))
3309 {
3310 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3311 if (num_result_args < 0)
3312 num_result_args = in_arg + num_packed;
3313 else
3314 num_result_args += num_packed;
3315 }
3316 else
3317 {
3318 if (num_result_args >= 0)
3319 num_result_args++;
3320 }
3321 }
3322
3323 /* If no expansion is necessary, we're done. */
3324 if (num_result_args < 0)
3325 return args;
3326
3327 /* Expand arguments. */
3328 result_args = make_tree_vec (num_result_args);
3329 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3330 non_default_args_count =
3331 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3332 for (in_arg = 0; in_arg < nargs; ++in_arg)
3333 {
3334 tree arg = TREE_VEC_ELT (args, in_arg);
3335 if (ARGUMENT_PACK_P (arg))
3336 {
3337 tree packed = ARGUMENT_PACK_ARGS (arg);
3338 int i, num_packed = TREE_VEC_LENGTH (packed);
3339 for (i = 0; i < num_packed; ++i, ++out_arg)
3340 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3341 if (non_default_args_count > 0)
3342 non_default_args_count += num_packed;
3343 }
3344 else
3345 {
3346 TREE_VEC_ELT (result_args, out_arg) = arg;
3347 ++out_arg;
3348 }
3349 }
3350 if (non_default_args_count >= 0)
3351 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3352 return result_args;
3353 }
3354
3355 /* Checks if DECL shadows a template parameter.
3356
3357 [temp.local]: A template-parameter shall not be redeclared within its
3358 scope (including nested scopes).
3359
3360 Emits an error and returns TRUE if the DECL shadows a parameter,
3361 returns FALSE otherwise. */
3362
3363 bool
3364 check_template_shadow (tree decl)
3365 {
3366 tree olddecl;
3367
3368 /* If we're not in a template, we can't possibly shadow a template
3369 parameter. */
3370 if (!current_template_parms)
3371 return true;
3372
3373 /* Figure out what we're shadowing. */
3374 if (TREE_CODE (decl) == OVERLOAD)
3375 decl = OVL_CURRENT (decl);
3376 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3377
3378 /* If there's no previous binding for this name, we're not shadowing
3379 anything, let alone a template parameter. */
3380 if (!olddecl)
3381 return true;
3382
3383 /* If we're not shadowing a template parameter, we're done. Note
3384 that OLDDECL might be an OVERLOAD (or perhaps even an
3385 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3386 node. */
3387 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3388 return true;
3389
3390 /* We check for decl != olddecl to avoid bogus errors for using a
3391 name inside a class. We check TPFI to avoid duplicate errors for
3392 inline member templates. */
3393 if (decl == olddecl
3394 || TEMPLATE_PARMS_FOR_INLINE (current_template_parms))
3395 return true;
3396
3397 error ("declaration of %q+#D", decl);
3398 error (" shadows template parm %q+#D", olddecl);
3399 return false;
3400 }
3401
3402 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3403 ORIG_LEVEL, DECL, and TYPE. NUM_SIBLINGS is the total number of
3404 template parameters. */
3405
3406 static tree
3407 build_template_parm_index (int index,
3408 int level,
3409 int orig_level,
3410 int num_siblings,
3411 tree decl,
3412 tree type)
3413 {
3414 tree t = make_node (TEMPLATE_PARM_INDEX);
3415 TEMPLATE_PARM_IDX (t) = index;
3416 TEMPLATE_PARM_LEVEL (t) = level;
3417 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3418 TEMPLATE_PARM_NUM_SIBLINGS (t) = num_siblings;
3419 TEMPLATE_PARM_DECL (t) = decl;
3420 TREE_TYPE (t) = type;
3421 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3422 TREE_READONLY (t) = TREE_READONLY (decl);
3423
3424 return t;
3425 }
3426
3427 /* Find the canonical type parameter for the given template type
3428 parameter. Returns the canonical type parameter, which may be TYPE
3429 if no such parameter existed. */
3430
3431 static tree
3432 canonical_type_parameter (tree type)
3433 {
3434 tree list;
3435 int idx = TEMPLATE_TYPE_IDX (type);
3436 if (!canonical_template_parms)
3437 canonical_template_parms = VEC_alloc (tree, gc, idx+1);
3438
3439 while (VEC_length (tree, canonical_template_parms) <= (unsigned)idx)
3440 VEC_safe_push (tree, gc, canonical_template_parms, NULL_TREE);
3441
3442 list = VEC_index (tree, canonical_template_parms, idx);
3443 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3444 list = TREE_CHAIN (list);
3445
3446 if (list)
3447 return TREE_VALUE (list);
3448 else
3449 {
3450 VEC_replace(tree, canonical_template_parms, idx,
3451 tree_cons (NULL_TREE, type,
3452 VEC_index (tree, canonical_template_parms, idx)));
3453 return type;
3454 }
3455 }
3456
3457 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3458 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3459 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3460 new one is created. */
3461
3462 static tree
3463 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3464 tsubst_flags_t complain)
3465 {
3466 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3467 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3468 != TEMPLATE_PARM_LEVEL (index) - levels)
3469 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3470 {
3471 tree orig_decl = TEMPLATE_PARM_DECL (index);
3472 tree decl, t;
3473
3474 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3475 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3476 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3477 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3478 DECL_ARTIFICIAL (decl) = 1;
3479 SET_DECL_TEMPLATE_PARM_P (decl);
3480
3481 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3482 TEMPLATE_PARM_LEVEL (index) - levels,
3483 TEMPLATE_PARM_ORIG_LEVEL (index),
3484 TEMPLATE_PARM_NUM_SIBLINGS (index),
3485 decl, type);
3486 TEMPLATE_PARM_DESCENDANTS (index) = t;
3487 TEMPLATE_PARM_PARAMETER_PACK (t)
3488 = TEMPLATE_PARM_PARAMETER_PACK (index);
3489
3490 /* Template template parameters need this. */
3491 if (TREE_CODE (decl) == TEMPLATE_DECL)
3492 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3493 (DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index)),
3494 args, complain);
3495 }
3496
3497 return TEMPLATE_PARM_DESCENDANTS (index);
3498 }
3499
3500 /* Process information from new template parameter PARM and append it
3501 to the LIST being built. This new parameter is a non-type
3502 parameter iff IS_NON_TYPE is true. This new parameter is a
3503 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
3504 is in PARM_LOC. NUM_TEMPLATE_PARMS is the size of the template
3505 parameter list PARM belongs to. This is used used to create a
3506 proper canonical type for the type of PARM that is to be created,
3507 iff PARM is a type. If the size is not known, this parameter shall
3508 be set to 0. */
3509
3510 tree
3511 process_template_parm (tree list, location_t parm_loc, tree parm,
3512 bool is_non_type, bool is_parameter_pack,
3513 unsigned num_template_parms)
3514 {
3515 tree decl = 0;
3516 tree defval;
3517 tree err_parm_list;
3518 int idx = 0;
3519
3520 gcc_assert (TREE_CODE (parm) == TREE_LIST);
3521 defval = TREE_PURPOSE (parm);
3522
3523 if (list)
3524 {
3525 tree p = tree_last (list);
3526
3527 if (p && TREE_VALUE (p) != error_mark_node)
3528 {
3529 p = TREE_VALUE (p);
3530 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
3531 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
3532 else
3533 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
3534 }
3535
3536 ++idx;
3537 }
3538 else
3539 idx = 0;
3540
3541 if (is_non_type)
3542 {
3543 parm = TREE_VALUE (parm);
3544
3545 SET_DECL_TEMPLATE_PARM_P (parm);
3546
3547 if (TREE_TYPE (parm) == error_mark_node)
3548 {
3549 err_parm_list = build_tree_list (defval, parm);
3550 TREE_VALUE (err_parm_list) = error_mark_node;
3551 return chainon (list, err_parm_list);
3552 }
3553 else
3554 {
3555 /* [temp.param]
3556
3557 The top-level cv-qualifiers on the template-parameter are
3558 ignored when determining its type. */
3559 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
3560 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
3561 {
3562 err_parm_list = build_tree_list (defval, parm);
3563 TREE_VALUE (err_parm_list) = error_mark_node;
3564 return chainon (list, err_parm_list);
3565 }
3566
3567 if (uses_parameter_packs (TREE_TYPE (parm)) && !is_parameter_pack)
3568 {
3569 /* This template parameter is not a parameter pack, but it
3570 should be. Complain about "bare" parameter packs. */
3571 check_for_bare_parameter_packs (TREE_TYPE (parm));
3572
3573 /* Recover by calling this a parameter pack. */
3574 is_parameter_pack = true;
3575 }
3576 }
3577
3578 /* A template parameter is not modifiable. */
3579 TREE_CONSTANT (parm) = 1;
3580 TREE_READONLY (parm) = 1;
3581 decl = build_decl (parm_loc,
3582 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
3583 TREE_CONSTANT (decl) = 1;
3584 TREE_READONLY (decl) = 1;
3585 DECL_INITIAL (parm) = DECL_INITIAL (decl)
3586 = build_template_parm_index (idx, processing_template_decl,
3587 processing_template_decl,
3588 num_template_parms,
3589 decl, TREE_TYPE (parm));
3590
3591 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
3592 = is_parameter_pack;
3593 }
3594 else
3595 {
3596 tree t;
3597 parm = TREE_VALUE (TREE_VALUE (parm));
3598
3599 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
3600 {
3601 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
3602 /* This is for distinguishing between real templates and template
3603 template parameters */
3604 TREE_TYPE (parm) = t;
3605 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
3606 decl = parm;
3607 }
3608 else
3609 {
3610 t = cxx_make_type (TEMPLATE_TYPE_PARM);
3611 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
3612 decl = build_decl (parm_loc,
3613 TYPE_DECL, parm, t);
3614 }
3615
3616 TYPE_NAME (t) = decl;
3617 TYPE_STUB_DECL (t) = decl;
3618 parm = decl;
3619 TEMPLATE_TYPE_PARM_INDEX (t)
3620 = build_template_parm_index (idx, processing_template_decl,
3621 processing_template_decl,
3622 num_template_parms,
3623 decl, TREE_TYPE (parm));
3624 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
3625 TYPE_CANONICAL (t) = canonical_type_parameter (t);
3626 }
3627 DECL_ARTIFICIAL (decl) = 1;
3628 SET_DECL_TEMPLATE_PARM_P (decl);
3629 pushdecl (decl);
3630 parm = build_tree_list (defval, parm);
3631 return chainon (list, parm);
3632 }
3633
3634 /* The end of a template parameter list has been reached. Process the
3635 tree list into a parameter vector, converting each parameter into a more
3636 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
3637 as PARM_DECLs. */
3638
3639 tree
3640 end_template_parm_list (tree parms)
3641 {
3642 int nparms;
3643 tree parm, next;
3644 tree saved_parmlist = make_tree_vec (list_length (parms));
3645
3646 current_template_parms
3647 = tree_cons (size_int (processing_template_decl),
3648 saved_parmlist, current_template_parms);
3649
3650 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
3651 {
3652 next = TREE_CHAIN (parm);
3653 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
3654 TREE_CHAIN (parm) = NULL_TREE;
3655 }
3656
3657 --processing_template_parmlist;
3658
3659 return saved_parmlist;
3660 }
3661
3662 /* Create a new type almost identical to TYPE but which has the
3663 following differences:
3664
3665 1/ T has a new TEMPLATE_PARM_INDEX that carries the new number of
3666 template sibling parameters of T.
3667
3668 2/ T has a new canonical type that matches the new number
3669 of sibling parms.
3670
3671 3/ From now on, T is going to be what lookups referring to the
3672 name of TYPE will return. No lookup should return TYPE anymore.
3673
3674 NUM_PARMS is the new number of sibling parms TYPE belongs to.
3675
3676 This is a subroutine of fixup_template_parms. */
3677
3678 static tree
3679 fixup_template_type_parm_type (tree type, int num_parms)
3680 {
3681 tree orig_idx = TEMPLATE_TYPE_PARM_INDEX (type), idx;
3682 tree t;
3683 /* This is the decl which name is inserted into the symbol table for
3684 the template parm type. So whenever we lookup the type name, this
3685 is the DECL we get. */
3686 tree decl;
3687
3688 /* Do not fix up the type twice. */
3689 if (orig_idx && TEMPLATE_PARM_NUM_SIBLINGS (orig_idx) != 0)
3690 return type;
3691
3692 t = copy_type (type);
3693 decl = TYPE_NAME (t);
3694
3695 TYPE_MAIN_VARIANT (t) = t;
3696 TYPE_NEXT_VARIANT (t)= NULL_TREE;
3697 TYPE_POINTER_TO (t) = 0;
3698 TYPE_REFERENCE_TO (t) = 0;
3699
3700 idx = build_template_parm_index (TEMPLATE_PARM_IDX (orig_idx),
3701 TEMPLATE_PARM_LEVEL (orig_idx),
3702 TEMPLATE_PARM_ORIG_LEVEL (orig_idx),
3703 num_parms,
3704 decl, t);
3705 TEMPLATE_PARM_DESCENDANTS (idx) = TEMPLATE_PARM_DESCENDANTS (orig_idx);
3706 TEMPLATE_PARM_PARAMETER_PACK (idx) = TEMPLATE_PARM_PARAMETER_PACK (orig_idx);
3707 TEMPLATE_TYPE_PARM_INDEX (t) = idx;
3708
3709 TYPE_STUB_DECL (t) = decl;
3710 TEMPLATE_TYPE_DECL (t) = decl;
3711 if (TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
3712 TREE_TYPE (DECL_TEMPLATE_RESULT (decl)) = t;
3713
3714 /* Update the type associated to the type name stored in the symbol
3715 table. Now, whenever the type name is looked up, the resulting
3716 type is properly fixed up. */
3717 TREE_TYPE (decl) = t;
3718
3719 TYPE_CANONICAL (t) = canonical_type_parameter (t);
3720
3721 return t;
3722 }
3723
3724 /* Create and return a new TEMPLATE_PARM_INDEX that is almost
3725 identical to I, but that is fixed up as to:
3726
3727 1/ carry the number of sibling parms (NUM_PARMS) of the template
3728 parm represented by I.
3729
3730 2/ replace all references to template parm types declared before I
3731 (in the same template parm list as I) by references to template
3732 parm types contained in ARGS. ARGS should contain the list of
3733 template parms that have been fixed up so far, in a form suitable
3734 to be passed to tsubst.
3735
3736 This is a subroutine of fixup_template_parms. */
3737
3738 static tree
3739 fixup_template_parm_index (tree i, tree args, int num_parms)
3740 {
3741 tree index, decl, type;
3742
3743 if (i == NULL_TREE
3744 || TREE_CODE (i) != TEMPLATE_PARM_INDEX
3745 /* Do not fix up the index twice. */
3746 || (TEMPLATE_PARM_NUM_SIBLINGS (i) != 0))
3747 return i;
3748
3749 decl = TEMPLATE_PARM_DECL (i);
3750 type = TREE_TYPE (decl);
3751
3752 index = build_template_parm_index (TEMPLATE_PARM_IDX (i),
3753 TEMPLATE_PARM_LEVEL (i),
3754 TEMPLATE_PARM_ORIG_LEVEL (i),
3755 num_parms,
3756 decl, type);
3757
3758 TEMPLATE_PARM_DESCENDANTS (index) = TEMPLATE_PARM_DESCENDANTS (i);
3759 TEMPLATE_PARM_PARAMETER_PACK (index) = TEMPLATE_PARM_PARAMETER_PACK (i);
3760
3761 type = tsubst (type, args, tf_none, NULL_TREE);
3762
3763 TREE_TYPE (decl) = type;
3764 TREE_TYPE (index) = type;
3765
3766 return index;
3767 }
3768
3769 /*
3770 This is a subroutine of fixup_template_parms.
3771
3772 It computes the canonical type of the type of the template
3773 parameter PARM_DESC and update all references to that type so that
3774 they use the newly computed canonical type. No access check is
3775 performed during the fixup. PARM_DESC is a TREE_LIST which
3776 TREE_VALUE is the template parameter and its TREE_PURPOSE is the
3777 default argument of the template parm if any. IDX is the index of
3778 the template parameter, starting at 0. NUM_PARMS is the number of
3779 template parameters in the set PARM_DESC belongs to. ARGLIST is a
3780 TREE_VEC containing the full set of template parameters in a form
3781 suitable to be passed to substs functions as their ARGS
3782 argument. This is what current_template_args returns for a given
3783 template. The innermost vector of args in ARGLIST is the set of
3784 template parms that have been fixed up so far. This function adds
3785 the fixed up parameter into that vector. */
3786
3787 static void
3788 fixup_template_parm (tree parm_desc,
3789 int idx,
3790 int num_parms,
3791 tree arglist)
3792 {
3793 tree parm = TREE_VALUE (parm_desc);
3794 tree fixedup_args = INNERMOST_TEMPLATE_ARGS (arglist);
3795
3796 push_deferring_access_checks (dk_no_check);
3797
3798 if (TREE_CODE (parm) == TYPE_DECL)
3799 {
3800 /* PARM is a template type parameter. Fix up its type, add
3801 the fixed-up template parm to the vector of fixed-up
3802 template parms so far, and substitute the fixed-up
3803 template parms into the default argument of this
3804 parameter. */
3805 tree t =
3806 fixup_template_type_parm_type (TREE_TYPE (parm), num_parms);
3807 TREE_TYPE (parm) = t;
3808
3809 TREE_VEC_ELT (fixedup_args, idx) = template_parm_to_arg (parm_desc);
3810 }
3811 else if (TREE_CODE (parm) == TEMPLATE_DECL)
3812 {
3813 /* PARM is a template template parameter. This is going to
3814 be interesting. */
3815 tree tparms, targs, innermost_args, t;
3816 int j;
3817
3818 /* First, fix up the parms of the template template parm
3819 because the parms are involved in defining the new canonical
3820 type of the template template parm. */
3821
3822 /* So we need to substitute the template parm types that have
3823 been fixed up so far into the template parms of this template
3824 template parm. E.g, consider this:
3825
3826 template<class T, template<T u> class TT> class S;
3827
3828 In this case we want to substitute T into the
3829 template parameters of TT.
3830
3831 So let's walk the template parms of PARM here, and
3832 tsubst ARGLIST into into each of the template
3833 parms. */
3834
3835 /* For this substitution we need to build the full set of
3836 template parameters and use that as arguments for the
3837 tsubsting function. */
3838 tparms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
3839
3840 /* This will contain the innermost parms of PARM into which
3841 we have substituted so far. */
3842 innermost_args = make_tree_vec (TREE_VEC_LENGTH (tparms));
3843 targs = add_to_template_args (arglist, innermost_args);
3844 for (j = 0; j < TREE_VEC_LENGTH (tparms); ++j)
3845 {
3846 tree parameter;
3847
3848 parameter = TREE_VEC_ELT (tparms, j);
3849
3850 /* INNERMOST_ARGS needs to have at least the same number
3851 of elements as the index PARAMETER, ortherwise
3852 tsubsting into PARAMETER will result in partially
3853 instantiating it, reducing its tempate parm
3854 level. Let's tactically fill INNERMOST_ARGS for that
3855 purpose. */
3856 TREE_VEC_ELT (innermost_args, j) =
3857 template_parm_to_arg (parameter);
3858
3859 fixup_template_parm (parameter, j,
3860 TREE_VEC_LENGTH (tparms),
3861 targs);
3862 }
3863
3864 /* Now fix up the type of the template template parm. */
3865
3866 t = fixup_template_type_parm_type (TREE_TYPE (parm), num_parms);
3867 TREE_TYPE (parm) = t;
3868
3869 TREE_VEC_ELT (fixedup_args, idx) =
3870 template_parm_to_arg (parm_desc);
3871 }
3872 else if (TREE_CODE (parm) == PARM_DECL)
3873 {
3874 /* PARM is a non-type template parameter. We need to:
3875
3876 * Fix up its TEMPLATE_PARM_INDEX to make it carry the
3877 proper number of sibling parameters.
3878
3879 * Make lookups of the template parameter return a reference
3880 to the fixed-up index. No lookup should return references
3881 to the former index anymore.
3882
3883 * Substitute the template parms that got fixed up so far
3884
3885 * into the type of PARM. */
3886
3887 tree index = DECL_INITIAL (parm);
3888
3889 /* PUSHED_DECL is the decl added to the symbol table with
3890 the name of the parameter. E,g:
3891
3892 template<class T, T u> //#0
3893 auto my_function(T t) -> decltype(u); //#1
3894
3895 Here, when looking up u at //#1, we get the decl of u
3896 resulting from the declaration in #0. This is what
3897 PUSHED_DECL is. We need to replace the reference to the
3898 old TEMPLATE_PARM_INDEX carried by PUSHED_DECL by the
3899 fixed-up TEMPLATE_PARM_INDEX. */
3900 tree pushed_decl = TEMPLATE_PARM_DECL (index);
3901
3902 /* Let's fix up the TEMPLATE_PARM_INDEX then. Note that we must
3903 fixup the type of PUSHED_DECL as well and luckily
3904 fixup_template_parm_index does it for us too. */
3905 tree fixed_up_index =
3906 fixup_template_parm_index (index, arglist, num_parms);
3907
3908 DECL_INITIAL (pushed_decl) = DECL_INITIAL (parm) = fixed_up_index;
3909
3910 /* Add this fixed up PARM to the template parms we've fixed
3911 up so far and use that to substitute the fixed-up
3912 template parms into the type of PARM. */
3913 TREE_VEC_ELT (fixedup_args, idx) =
3914 template_parm_to_arg (parm_desc);
3915 TREE_TYPE (parm) = tsubst (TREE_TYPE (parm), arglist,
3916 tf_none, NULL_TREE);
3917 }
3918
3919 TREE_PURPOSE (parm_desc) =
3920 tsubst_template_arg (TREE_PURPOSE (parm_desc),
3921 arglist, tf_none, parm);
3922
3923 pop_deferring_access_checks ();
3924 }
3925
3926 /* Walk the current template parms and properly compute the canonical
3927 types of the dependent types created during
3928 cp_parser_template_parameter_list. */
3929
3930 void
3931 fixup_template_parms (void)
3932 {
3933 tree arglist;
3934 tree parameter_vec;
3935 tree fixedup_args;
3936 int i, num_parms;
3937
3938 parameter_vec = INNERMOST_TEMPLATE_PARMS (current_template_parms);
3939 if (parameter_vec == NULL_TREE)
3940 return;
3941
3942 num_parms = TREE_VEC_LENGTH (parameter_vec);
3943
3944 /* This vector contains the current innermost template parms that
3945 have been fixed up so far. The form of FIXEDUP_ARGS is suitable
3946 to be passed to tsubst* functions as their ARGS argument. */
3947 fixedup_args = make_tree_vec (num_parms);
3948
3949 /* This vector contains the full set of template parms in a form
3950 suitable to be passed to substs functions as their ARGS
3951 argument. */
3952 arglist = current_template_args ();
3953 arglist = add_outermost_template_args (arglist, fixedup_args);
3954
3955 /* Let's do the proper fixup now. */
3956 for (i = 0; i < num_parms; ++i)
3957 fixup_template_parm (TREE_VEC_ELT (parameter_vec, i),
3958 i, num_parms, arglist);
3959 }
3960
3961 /* end_template_decl is called after a template declaration is seen. */
3962
3963 void
3964 end_template_decl (void)
3965 {
3966 reset_specialization ();
3967
3968 if (! processing_template_decl)
3969 return;
3970
3971 /* This matches the pushlevel in begin_template_parm_list. */
3972 finish_scope ();
3973
3974 --processing_template_decl;
3975 current_template_parms = TREE_CHAIN (current_template_parms);
3976 }
3977
3978 /* Takes a TREE_LIST representing a template parameter and convert it
3979 into an argument suitable to be passed to the type substitution
3980 functions. Note that If the TREE_LIST contains an error_mark
3981 node, the returned argument is error_mark_node. */
3982
3983 static tree
3984 template_parm_to_arg (tree t)
3985 {
3986
3987 if (t == NULL_TREE
3988 || TREE_CODE (t) != TREE_LIST)
3989 return t;
3990
3991 if (error_operand_p (TREE_VALUE (t)))
3992 return error_mark_node;
3993
3994 t = TREE_VALUE (t);
3995
3996 if (TREE_CODE (t) == TYPE_DECL
3997 || TREE_CODE (t) == TEMPLATE_DECL)
3998 {
3999 t = TREE_TYPE (t);
4000
4001 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
4002 {
4003 /* Turn this argument into a TYPE_ARGUMENT_PACK
4004 with a single element, which expands T. */
4005 tree vec = make_tree_vec (1);
4006 #ifdef ENABLE_CHECKING
4007 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
4008 (vec, TREE_VEC_LENGTH (vec));
4009 #endif
4010 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4011
4012 t = cxx_make_type (TYPE_ARGUMENT_PACK);
4013 SET_ARGUMENT_PACK_ARGS (t, vec);
4014 }
4015 }
4016 else
4017 {
4018 t = DECL_INITIAL (t);
4019
4020 if (TEMPLATE_PARM_PARAMETER_PACK (t))
4021 {
4022 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
4023 with a single element, which expands T. */
4024 tree vec = make_tree_vec (1);
4025 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
4026 #ifdef ENABLE_CHECKING
4027 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
4028 (vec, TREE_VEC_LENGTH (vec));
4029 #endif
4030 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4031
4032 t = make_node (NONTYPE_ARGUMENT_PACK);
4033 SET_ARGUMENT_PACK_ARGS (t, vec);
4034 TREE_TYPE (t) = type;
4035 }
4036 }
4037 return t;
4038 }
4039
4040 /* This function returns TRUE if PARM_PACK is a template parameter
4041 pack and if ARG_PACK is what template_parm_to_arg returned when
4042 passed PARM_PACK. */
4043
4044 static bool
4045 arg_from_parm_pack_p (tree arg_pack, tree parm_pack)
4046 {
4047 /* For clarity in the comments below let's use the representation
4048 argument_pack<elements>' to denote an argument pack and its
4049 elements.
4050
4051 In the 'if' block below, we want to detect cases where
4052 ARG_PACK is argument_pack<PARM_PACK...>. I.e, we want to
4053 check if ARG_PACK is an argument pack which sole element is
4054 the expansion of PARM_PACK. That argument pack is typically
4055 created by template_parm_to_arg when passed a parameter
4056 pack. */
4057
4058 if (arg_pack
4059 && TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack)) == 1
4060 && PACK_EXPANSION_P (TREE_VEC_ELT (ARGUMENT_PACK_ARGS (arg_pack), 0)))
4061 {
4062 tree expansion = TREE_VEC_ELT (ARGUMENT_PACK_ARGS (arg_pack), 0);
4063 tree pattern = PACK_EXPANSION_PATTERN (expansion);
4064 /* So we have an argument_pack<P...>. We want to test if P
4065 is actually PARM_PACK. We will not use cp_tree_equal to
4066 test P and PARM_PACK because during type fixup (by
4067 fixup_template_parm) P can be a pre-fixup version of a
4068 type and PARM_PACK be its post-fixup version.
4069 cp_tree_equal would consider them as different even
4070 though we would want to consider them compatible for our
4071 precise purpose here.
4072
4073 Thus we are going to consider that P and PARM_PACK are
4074 compatible if they have the same DECL. */
4075 if ((/* If ARG_PACK is a type parameter pack named by the
4076 same DECL as parm_pack ... */
4077 (TYPE_P (pattern)
4078 && TYPE_P (parm_pack)
4079 && TYPE_NAME (pattern) == TYPE_NAME (parm_pack))
4080 /* ... or if PARM_PACK is a non-type parameter named by the
4081 same DECL as ARG_PACK. Note that PARM_PACK being a
4082 non-type parameter means it's either a PARM_DECL or a
4083 TEMPLATE_PARM_INDEX. */
4084 || (TREE_CODE (pattern) == TEMPLATE_PARM_INDEX
4085 && ((TREE_CODE (parm_pack) == PARM_DECL
4086 && (TEMPLATE_PARM_DECL (pattern)
4087 == TEMPLATE_PARM_DECL (DECL_INITIAL (parm_pack))))
4088 || (TREE_CODE (parm_pack) == TEMPLATE_PARM_INDEX
4089 && (TEMPLATE_PARM_DECL (pattern)
4090 == TEMPLATE_PARM_DECL (parm_pack))))))
4091 && template_parameter_pack_p (pattern))
4092 return true;
4093 }
4094 return false;
4095 }
4096
4097 /* Within the declaration of a template, return all levels of template
4098 parameters that apply. The template parameters are represented as
4099 a TREE_VEC, in the form documented in cp-tree.h for template
4100 arguments. */
4101
4102 static tree
4103 current_template_args (void)
4104 {
4105 tree header;
4106 tree args = NULL_TREE;
4107 int length = TMPL_PARMS_DEPTH (current_template_parms);
4108 int l = length;
4109
4110 /* If there is only one level of template parameters, we do not
4111 create a TREE_VEC of TREE_VECs. Instead, we return a single
4112 TREE_VEC containing the arguments. */
4113 if (length > 1)
4114 args = make_tree_vec (length);
4115
4116 for (header = current_template_parms; header; header = TREE_CHAIN (header))
4117 {
4118 tree a = copy_node (TREE_VALUE (header));
4119 int i;
4120
4121 TREE_TYPE (a) = NULL_TREE;
4122 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
4123 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
4124
4125 #ifdef ENABLE_CHECKING
4126 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
4127 #endif
4128
4129 if (length > 1)
4130 TREE_VEC_ELT (args, --l) = a;
4131 else
4132 args = a;
4133 }
4134
4135 if (length > 1 && TREE_VEC_ELT (args, 0) == NULL_TREE)
4136 /* This can happen for template parms of a template template
4137 parameter, e.g:
4138
4139 template<template<class T, class U> class TT> struct S;
4140
4141 Consider the level of the parms of TT; T and U both have
4142 level 2; TT has no template parm of level 1. So in this case
4143 the first element of full_template_args is NULL_TREE. If we
4144 leave it like this TMPL_ARG_DEPTH on args returns 1 instead
4145 of 2. This will make tsubst wrongly consider that T and U
4146 have level 1. Instead, let's create a dummy vector as the
4147 first element of full_template_args so that TMPL_ARG_DEPTH
4148 returns the correct depth for args. */
4149 TREE_VEC_ELT (args, 0) = make_tree_vec (1);
4150 return args;
4151 }
4152
4153 /* Update the declared TYPE by doing any lookups which were thought to be
4154 dependent, but are not now that we know the SCOPE of the declarator. */
4155
4156 tree
4157 maybe_update_decl_type (tree orig_type, tree scope)
4158 {
4159 tree type = orig_type;
4160
4161 if (type == NULL_TREE)
4162 return type;
4163
4164 if (TREE_CODE (orig_type) == TYPE_DECL)
4165 type = TREE_TYPE (type);
4166
4167 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4168 && dependent_type_p (type)
4169 /* Don't bother building up the args in this case. */
4170 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4171 {
4172 /* tsubst in the args corresponding to the template parameters,
4173 including auto if present. Most things will be unchanged, but
4174 make_typename_type and tsubst_qualified_id will resolve
4175 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4176 tree args = current_template_args ();
4177 tree auto_node = type_uses_auto (type);
4178 tree pushed;
4179 if (auto_node)
4180 {
4181 tree auto_vec = make_tree_vec (1);
4182 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4183 args = add_to_template_args (args, auto_vec);
4184 }
4185 pushed = push_scope (scope);
4186 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4187 if (pushed)
4188 pop_scope (scope);
4189 }
4190
4191 if (type == error_mark_node)
4192 return orig_type;
4193
4194 if (TREE_CODE (orig_type) == TYPE_DECL)
4195 {
4196 if (same_type_p (type, TREE_TYPE (orig_type)))
4197 type = orig_type;
4198 else
4199 type = TYPE_NAME (type);
4200 }
4201 return type;
4202 }
4203
4204 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4205 template PARMS. If MEMBER_TEMPLATE_P is true, the new template is
4206 a member template. Used by push_template_decl below. */
4207
4208 static tree
4209 build_template_decl (tree decl, tree parms, bool member_template_p)
4210 {
4211 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4212 DECL_TEMPLATE_PARMS (tmpl) = parms;
4213 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4214 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4215 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4216
4217 return tmpl;
4218 }
4219
4220 struct template_parm_data
4221 {
4222 /* The level of the template parameters we are currently
4223 processing. */
4224 int level;
4225
4226 /* The index of the specialization argument we are currently
4227 processing. */
4228 int current_arg;
4229
4230 /* An array whose size is the number of template parameters. The
4231 elements are nonzero if the parameter has been used in any one
4232 of the arguments processed so far. */
4233 int* parms;
4234
4235 /* An array whose size is the number of template arguments. The
4236 elements are nonzero if the argument makes use of template
4237 parameters of this level. */
4238 int* arg_uses_template_parms;
4239 };
4240
4241 /* Subroutine of push_template_decl used to see if each template
4242 parameter in a partial specialization is used in the explicit
4243 argument list. If T is of the LEVEL given in DATA (which is
4244 treated as a template_parm_data*), then DATA->PARMS is marked
4245 appropriately. */
4246
4247 static int
4248 mark_template_parm (tree t, void* data)
4249 {
4250 int level;
4251 int idx;
4252 struct template_parm_data* tpd = (struct template_parm_data*) data;
4253
4254 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
4255 {
4256 level = TEMPLATE_PARM_LEVEL (t);
4257 idx = TEMPLATE_PARM_IDX (t);
4258 }
4259 else
4260 {
4261 level = TEMPLATE_TYPE_LEVEL (t);
4262 idx = TEMPLATE_TYPE_IDX (t);
4263 }
4264
4265 if (level == tpd->level)
4266 {
4267 tpd->parms[idx] = 1;
4268 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4269 }
4270
4271 /* Return zero so that for_each_template_parm will continue the
4272 traversal of the tree; we want to mark *every* template parm. */
4273 return 0;
4274 }
4275
4276 /* Process the partial specialization DECL. */
4277
4278 static tree
4279 process_partial_specialization (tree decl)
4280 {
4281 tree type = TREE_TYPE (decl);
4282 tree maintmpl = CLASSTYPE_TI_TEMPLATE (type);
4283 tree specargs = CLASSTYPE_TI_ARGS (type);
4284 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4285 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4286 tree inner_parms;
4287 tree inst;
4288 int nargs = TREE_VEC_LENGTH (inner_args);
4289 int ntparms;
4290 int i;
4291 bool did_error_intro = false;
4292 struct template_parm_data tpd;
4293 struct template_parm_data tpd2;
4294
4295 gcc_assert (current_template_parms);
4296
4297 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4298 ntparms = TREE_VEC_LENGTH (inner_parms);
4299
4300 /* We check that each of the template parameters given in the
4301 partial specialization is used in the argument list to the
4302 specialization. For example:
4303
4304 template <class T> struct S;
4305 template <class T> struct S<T*>;
4306
4307 The second declaration is OK because `T*' uses the template
4308 parameter T, whereas
4309
4310 template <class T> struct S<int>;
4311
4312 is no good. Even trickier is:
4313
4314 template <class T>
4315 struct S1
4316 {
4317 template <class U>
4318 struct S2;
4319 template <class U>
4320 struct S2<T>;
4321 };
4322
4323 The S2<T> declaration is actually invalid; it is a
4324 full-specialization. Of course,
4325
4326 template <class U>
4327 struct S2<T (*)(U)>;
4328
4329 or some such would have been OK. */
4330 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4331 tpd.parms = XALLOCAVEC (int, ntparms);
4332 memset (tpd.parms, 0, sizeof (int) * ntparms);
4333
4334 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4335 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4336 for (i = 0; i < nargs; ++i)
4337 {
4338 tpd.current_arg = i;
4339 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4340 &mark_template_parm,
4341 &tpd,
4342 NULL,
4343 /*include_nondeduced_p=*/false);
4344 }
4345 for (i = 0; i < ntparms; ++i)
4346 if (tpd.parms[i] == 0)
4347 {
4348 /* One of the template parms was not used in the
4349 specialization. */
4350 if (!did_error_intro)
4351 {
4352 error ("template parameters not used in partial specialization:");
4353 did_error_intro = true;
4354 }
4355
4356 error (" %qD", TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4357 }
4358
4359 if (did_error_intro)
4360 return error_mark_node;
4361
4362 /* [temp.class.spec]
4363
4364 The argument list of the specialization shall not be identical to
4365 the implicit argument list of the primary template. */
4366 if (comp_template_args
4367 (inner_args,
4368 INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE
4369 (maintmpl)))))
4370 error ("partial specialization %qT does not specialize any template arguments", type);
4371
4372 /* [temp.class.spec]
4373
4374 A partially specialized non-type argument expression shall not
4375 involve template parameters of the partial specialization except
4376 when the argument expression is a simple identifier.
4377
4378 The type of a template parameter corresponding to a specialized
4379 non-type argument shall not be dependent on a parameter of the
4380 specialization.
4381
4382 Also, we verify that pack expansions only occur at the
4383 end of the argument list. */
4384 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4385 tpd2.parms = 0;
4386 for (i = 0; i < nargs; ++i)
4387 {
4388 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4389 tree arg = TREE_VEC_ELT (inner_args, i);
4390 tree packed_args = NULL_TREE;
4391 int j, len = 1;
4392
4393 if (ARGUMENT_PACK_P (arg))
4394 {
4395 /* Extract the arguments from the argument pack. We'll be
4396 iterating over these in the following loop. */
4397 packed_args = ARGUMENT_PACK_ARGS (arg);
4398 len = TREE_VEC_LENGTH (packed_args);
4399 }
4400
4401 for (j = 0; j < len; j++)
4402 {
4403 if (packed_args)
4404 /* Get the Jth argument in the parameter pack. */
4405 arg = TREE_VEC_ELT (packed_args, j);
4406
4407 if (PACK_EXPANSION_P (arg))
4408 {
4409 /* Pack expansions must come at the end of the
4410 argument list. */
4411 if ((packed_args && j < len - 1)
4412 || (!packed_args && i < nargs - 1))
4413 {
4414 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4415 error ("parameter pack argument %qE must be at the "
4416 "end of the template argument list", arg);
4417 else
4418 error ("parameter pack argument %qT must be at the "
4419 "end of the template argument list", arg);
4420 }
4421 }
4422
4423 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4424 /* We only care about the pattern. */
4425 arg = PACK_EXPANSION_PATTERN (arg);
4426
4427 if (/* These first two lines are the `non-type' bit. */
4428 !TYPE_P (arg)
4429 && TREE_CODE (arg) != TEMPLATE_DECL
4430 /* This next line is the `argument expression is not just a
4431 simple identifier' condition and also the `specialized
4432 non-type argument' bit. */
4433 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX)
4434 {
4435 if ((!packed_args && tpd.arg_uses_template_parms[i])
4436 || (packed_args && uses_template_parms (arg)))
4437 error ("template argument %qE involves template parameter(s)",
4438 arg);
4439 else
4440 {
4441 /* Look at the corresponding template parameter,
4442 marking which template parameters its type depends
4443 upon. */
4444 tree type = TREE_TYPE (parm);
4445
4446 if (!tpd2.parms)
4447 {
4448 /* We haven't yet initialized TPD2. Do so now. */
4449 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4450 /* The number of parameters here is the number in the
4451 main template, which, as checked in the assertion
4452 above, is NARGS. */
4453 tpd2.parms = XALLOCAVEC (int, nargs);
4454 tpd2.level =
4455 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4456 }
4457
4458 /* Mark the template parameters. But this time, we're
4459 looking for the template parameters of the main
4460 template, not in the specialization. */
4461 tpd2.current_arg = i;
4462 tpd2.arg_uses_template_parms[i] = 0;
4463 memset (tpd2.parms, 0, sizeof (int) * nargs);
4464 for_each_template_parm (type,
4465 &mark_template_parm,
4466 &tpd2,
4467 NULL,
4468 /*include_nondeduced_p=*/false);
4469
4470 if (tpd2.arg_uses_template_parms [i])
4471 {
4472 /* The type depended on some template parameters.
4473 If they are fully specialized in the
4474 specialization, that's OK. */
4475 int j;
4476 int count = 0;
4477 for (j = 0; j < nargs; ++j)
4478 if (tpd2.parms[j] != 0
4479 && tpd.arg_uses_template_parms [j])
4480 ++count;
4481 if (count != 0)
4482 error_n (input_location, count,
4483 "type %qT of template argument %qE depends "
4484 "on a template parameter",
4485 "type %qT of template argument %qE depends "
4486 "on template parameters",
4487 type,
4488 arg);
4489 }
4490 }
4491 }
4492 }
4493 }
4494
4495 /* We should only get here once. */
4496 gcc_assert (!COMPLETE_TYPE_P (type));
4497
4498 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4499 = tree_cons (specargs, inner_parms,
4500 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4501 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4502
4503 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4504 inst = TREE_CHAIN (inst))
4505 {
4506 tree inst_type = TREE_VALUE (inst);
4507 if (COMPLETE_TYPE_P (inst_type)
4508 && CLASSTYPE_IMPLICIT_INSTANTIATION (inst_type))
4509 {
4510 tree spec = most_specialized_class (inst_type, maintmpl, tf_none);
4511 if (spec && TREE_TYPE (spec) == type)
4512 permerror (input_location,
4513 "partial specialization of %qT after instantiation "
4514 "of %qT", type, inst_type);
4515 }
4516 }
4517
4518 return decl;
4519 }
4520
4521 /* Check that a template declaration's use of default arguments and
4522 parameter packs is not invalid. Here, PARMS are the template
4523 parameters. IS_PRIMARY is nonzero if DECL is the thing declared by
4524 a primary template. IS_PARTIAL is nonzero if DECL is a partial
4525 specialization.
4526
4527
4528 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4529 declaration (but not a definition); 1 indicates a declaration, 2
4530 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4531 emitted for extraneous default arguments.
4532
4533 Returns TRUE if there were no errors found, FALSE otherwise. */
4534
4535 bool
4536 check_default_tmpl_args (tree decl, tree parms, int is_primary,
4537 int is_partial, int is_friend_decl)
4538 {
4539 const char *msg;
4540 int last_level_to_check;
4541 tree parm_level;
4542 bool no_errors = true;
4543
4544 /* [temp.param]
4545
4546 A default template-argument shall not be specified in a
4547 function template declaration or a function template definition, nor
4548 in the template-parameter-list of the definition of a member of a
4549 class template. */
4550
4551 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL)
4552 /* You can't have a function template declaration in a local
4553 scope, nor you can you define a member of a class template in a
4554 local scope. */
4555 return true;
4556
4557 if (current_class_type
4558 && !TYPE_BEING_DEFINED (current_class_type)
4559 && DECL_LANG_SPECIFIC (decl)
4560 && DECL_DECLARES_FUNCTION_P (decl)
4561 /* If this is either a friend defined in the scope of the class
4562 or a member function. */
4563 && (DECL_FUNCTION_MEMBER_P (decl)
4564 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4565 : DECL_FRIEND_CONTEXT (decl)
4566 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4567 : false)
4568 /* And, if it was a member function, it really was defined in
4569 the scope of the class. */
4570 && (!DECL_FUNCTION_MEMBER_P (decl)
4571 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4572 /* We already checked these parameters when the template was
4573 declared, so there's no need to do it again now. This function
4574 was defined in class scope, but we're processing it's body now
4575 that the class is complete. */
4576 return true;
4577
4578 /* Core issue 226 (C++0x only): the following only applies to class
4579 templates. */
4580 if ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL)
4581 {
4582 /* [temp.param]
4583
4584 If a template-parameter has a default template-argument, all
4585 subsequent template-parameters shall have a default
4586 template-argument supplied. */
4587 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4588 {
4589 tree inner_parms = TREE_VALUE (parm_level);
4590 int ntparms = TREE_VEC_LENGTH (inner_parms);
4591 int seen_def_arg_p = 0;
4592 int i;
4593
4594 for (i = 0; i < ntparms; ++i)
4595 {
4596 tree parm = TREE_VEC_ELT (inner_parms, i);
4597
4598 if (parm == error_mark_node)
4599 continue;
4600
4601 if (TREE_PURPOSE (parm))
4602 seen_def_arg_p = 1;
4603 else if (seen_def_arg_p
4604 && !template_parameter_pack_p (TREE_VALUE (parm)))
4605 {
4606 error ("no default argument for %qD", TREE_VALUE (parm));
4607 /* For better subsequent error-recovery, we indicate that
4608 there should have been a default argument. */
4609 TREE_PURPOSE (parm) = error_mark_node;
4610 no_errors = false;
4611 }
4612 else if (is_primary
4613 && !is_partial
4614 && !is_friend_decl
4615 /* Don't complain about an enclosing partial
4616 specialization. */
4617 && parm_level == parms
4618 && TREE_CODE (decl) == TYPE_DECL
4619 && i < ntparms - 1
4620 && template_parameter_pack_p (TREE_VALUE (parm)))
4621 {
4622 /* A primary class template can only have one
4623 parameter pack, at the end of the template
4624 parameter list. */
4625
4626 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL)
4627 error ("parameter pack %qE must be at the end of the"
4628 " template parameter list", TREE_VALUE (parm));
4629 else
4630 error ("parameter pack %qT must be at the end of the"
4631 " template parameter list",
4632 TREE_TYPE (TREE_VALUE (parm)));
4633
4634 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4635 = error_mark_node;
4636 no_errors = false;
4637 }
4638 }
4639 }
4640 }
4641
4642 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4643 || is_partial
4644 || !is_primary
4645 || is_friend_decl)
4646 /* For an ordinary class template, default template arguments are
4647 allowed at the innermost level, e.g.:
4648 template <class T = int>
4649 struct S {};
4650 but, in a partial specialization, they're not allowed even
4651 there, as we have in [temp.class.spec]:
4652
4653 The template parameter list of a specialization shall not
4654 contain default template argument values.
4655
4656 So, for a partial specialization, or for a function template
4657 (in C++98/C++03), we look at all of them. */
4658 ;
4659 else
4660 /* But, for a primary class template that is not a partial
4661 specialization we look at all template parameters except the
4662 innermost ones. */
4663 parms = TREE_CHAIN (parms);
4664
4665 /* Figure out what error message to issue. */
4666 if (is_friend_decl == 2)
4667 msg = G_("default template arguments may not be used in function template "
4668 "friend re-declaration");
4669 else if (is_friend_decl)
4670 msg = G_("default template arguments may not be used in function template "
4671 "friend declarations");
4672 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4673 msg = G_("default template arguments may not be used in function templates "
4674 "without -std=c++11 or -std=gnu++11");
4675 else if (is_partial)
4676 msg = G_("default template arguments may not be used in "
4677 "partial specializations");
4678 else
4679 msg = G_("default argument for template parameter for class enclosing %qD");
4680
4681 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4682 /* If we're inside a class definition, there's no need to
4683 examine the parameters to the class itself. On the one
4684 hand, they will be checked when the class is defined, and,
4685 on the other, default arguments are valid in things like:
4686 template <class T = double>
4687 struct S { template <class U> void f(U); };
4688 Here the default argument for `S' has no bearing on the
4689 declaration of `f'. */
4690 last_level_to_check = template_class_depth (current_class_type) + 1;
4691 else
4692 /* Check everything. */
4693 last_level_to_check = 0;
4694
4695 for (parm_level = parms;
4696 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4697 parm_level = TREE_CHAIN (parm_level))
4698 {
4699 tree inner_parms = TREE_VALUE (parm_level);
4700 int i;
4701 int ntparms;
4702
4703 ntparms = TREE_VEC_LENGTH (inner_parms);
4704 for (i = 0; i < ntparms; ++i)
4705 {
4706 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4707 continue;
4708
4709 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4710 {
4711 if (msg)
4712 {
4713 no_errors = false;
4714 if (is_friend_decl == 2)
4715 return no_errors;
4716
4717 error (msg, decl);
4718 msg = 0;
4719 }
4720
4721 /* Clear out the default argument so that we are not
4722 confused later. */
4723 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
4724 }
4725 }
4726
4727 /* At this point, if we're still interested in issuing messages,
4728 they must apply to classes surrounding the object declared. */
4729 if (msg)
4730 msg = G_("default argument for template parameter for class "
4731 "enclosing %qD");
4732 }
4733
4734 return no_errors;
4735 }
4736
4737 /* Worker for push_template_decl_real, called via
4738 for_each_template_parm. DATA is really an int, indicating the
4739 level of the parameters we are interested in. If T is a template
4740 parameter of that level, return nonzero. */
4741
4742 static int
4743 template_parm_this_level_p (tree t, void* data)
4744 {
4745 int this_level = *(int *)data;
4746 int level;
4747
4748 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
4749 level = TEMPLATE_PARM_LEVEL (t);
4750 else
4751 level = TEMPLATE_TYPE_LEVEL (t);
4752 return level == this_level;
4753 }
4754
4755 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
4756 parameters given by current_template_args, or reuses a
4757 previously existing one, if appropriate. Returns the DECL, or an
4758 equivalent one, if it is replaced via a call to duplicate_decls.
4759
4760 If IS_FRIEND is true, DECL is a friend declaration. */
4761
4762 tree
4763 push_template_decl_real (tree decl, bool is_friend)
4764 {
4765 tree tmpl;
4766 tree args;
4767 tree info;
4768 tree ctx;
4769 int primary;
4770 int is_partial;
4771 int new_template_p = 0;
4772 /* True if the template is a member template, in the sense of
4773 [temp.mem]. */
4774 bool member_template_p = false;
4775
4776 if (decl == error_mark_node || !current_template_parms)
4777 return error_mark_node;
4778
4779 /* See if this is a partial specialization. */
4780 is_partial = (DECL_IMPLICIT_TYPEDEF_P (decl)
4781 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
4782 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)));
4783
4784 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
4785 is_friend = true;
4786
4787 if (is_friend)
4788 /* For a friend, we want the context of the friend function, not
4789 the type of which it is a friend. */
4790 ctx = CP_DECL_CONTEXT (decl);
4791 else if (CP_DECL_CONTEXT (decl)
4792 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
4793 /* In the case of a virtual function, we want the class in which
4794 it is defined. */
4795 ctx = CP_DECL_CONTEXT (decl);
4796 else
4797 /* Otherwise, if we're currently defining some class, the DECL
4798 is assumed to be a member of the class. */
4799 ctx = current_scope ();
4800
4801 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
4802 ctx = NULL_TREE;
4803
4804 if (!DECL_CONTEXT (decl))
4805 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
4806
4807 /* See if this is a primary template. */
4808 if (is_friend && ctx)
4809 /* A friend template that specifies a class context, i.e.
4810 template <typename T> friend void A<T>::f();
4811 is not primary. */
4812 primary = 0;
4813 else
4814 primary = template_parm_scope_p ();
4815
4816 if (primary)
4817 {
4818 if (DECL_CLASS_SCOPE_P (decl))
4819 member_template_p = true;
4820 if (TREE_CODE (decl) == TYPE_DECL
4821 && ANON_AGGRNAME_P (DECL_NAME (decl)))
4822 {
4823 error ("template class without a name");
4824 return error_mark_node;
4825 }
4826 else if (TREE_CODE (decl) == FUNCTION_DECL)
4827 {
4828 if (DECL_DESTRUCTOR_P (decl))
4829 {
4830 /* [temp.mem]
4831
4832 A destructor shall not be a member template. */
4833 error ("destructor %qD declared as member template", decl);
4834 return error_mark_node;
4835 }
4836 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
4837 && (!prototype_p (TREE_TYPE (decl))
4838 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
4839 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
4840 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
4841 == void_list_node)))
4842 {
4843 /* [basic.stc.dynamic.allocation]
4844
4845 An allocation function can be a function
4846 template. ... Template allocation functions shall
4847 have two or more parameters. */
4848 error ("invalid template declaration of %qD", decl);
4849 return error_mark_node;
4850 }
4851 }
4852 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4853 && CLASS_TYPE_P (TREE_TYPE (decl)))
4854 /* OK */;
4855 else if (TREE_CODE (decl) == TYPE_DECL
4856 && TYPE_DECL_ALIAS_P (decl))
4857 /* alias-declaration */
4858 gcc_assert (!DECL_ARTIFICIAL (decl));
4859 else
4860 {
4861 error ("template declaration of %q#D", decl);
4862 return error_mark_node;
4863 }
4864 }
4865
4866 /* Check to see that the rules regarding the use of default
4867 arguments are not being violated. */
4868 check_default_tmpl_args (decl, current_template_parms,
4869 primary, is_partial, /*is_friend_decl=*/0);
4870
4871 /* Ensure that there are no parameter packs in the type of this
4872 declaration that have not been expanded. */
4873 if (TREE_CODE (decl) == FUNCTION_DECL)
4874 {
4875 /* Check each of the arguments individually to see if there are
4876 any bare parameter packs. */
4877 tree type = TREE_TYPE (decl);
4878 tree arg = DECL_ARGUMENTS (decl);
4879 tree argtype = TYPE_ARG_TYPES (type);
4880
4881 while (arg && argtype)
4882 {
4883 if (!FUNCTION_PARAMETER_PACK_P (arg)
4884 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
4885 {
4886 /* This is a PARM_DECL that contains unexpanded parameter
4887 packs. We have already complained about this in the
4888 check_for_bare_parameter_packs call, so just replace
4889 these types with ERROR_MARK_NODE. */
4890 TREE_TYPE (arg) = error_mark_node;
4891 TREE_VALUE (argtype) = error_mark_node;
4892 }
4893
4894 arg = DECL_CHAIN (arg);
4895 argtype = TREE_CHAIN (argtype);
4896 }
4897
4898 /* Check for bare parameter packs in the return type and the
4899 exception specifiers. */
4900 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
4901 /* Errors were already issued, set return type to int
4902 as the frontend doesn't expect error_mark_node as
4903 the return type. */
4904 TREE_TYPE (type) = integer_type_node;
4905 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
4906 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
4907 }
4908 else if (check_for_bare_parameter_packs (TREE_TYPE (decl)))
4909 {
4910 TREE_TYPE (decl) = error_mark_node;
4911 return error_mark_node;
4912 }
4913
4914 if (is_partial)
4915 return process_partial_specialization (decl);
4916
4917 args = current_template_args ();
4918
4919 if (!ctx
4920 || TREE_CODE (ctx) == FUNCTION_DECL
4921 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
4922 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
4923 {
4924 if (DECL_LANG_SPECIFIC (decl)
4925 && DECL_TEMPLATE_INFO (decl)
4926 && DECL_TI_TEMPLATE (decl))
4927 tmpl = DECL_TI_TEMPLATE (decl);
4928 /* If DECL is a TYPE_DECL for a class-template, then there won't
4929 be DECL_LANG_SPECIFIC. The information equivalent to
4930 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
4931 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4932 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
4933 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
4934 {
4935 /* Since a template declaration already existed for this
4936 class-type, we must be redeclaring it here. Make sure
4937 that the redeclaration is valid. */
4938 redeclare_class_template (TREE_TYPE (decl),
4939 current_template_parms);
4940 /* We don't need to create a new TEMPLATE_DECL; just use the
4941 one we already had. */
4942 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
4943 }
4944 else
4945 {
4946 tmpl = build_template_decl (decl, current_template_parms,
4947 member_template_p);
4948 new_template_p = 1;
4949
4950 if (DECL_LANG_SPECIFIC (decl)
4951 && DECL_TEMPLATE_SPECIALIZATION (decl))
4952 {
4953 /* A specialization of a member template of a template
4954 class. */
4955 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4956 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
4957 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
4958 }
4959 }
4960 }
4961 else
4962 {
4963 tree a, t, current, parms;
4964 int i;
4965 tree tinfo = get_template_info (decl);
4966
4967 if (!tinfo)
4968 {
4969 error ("template definition of non-template %q#D", decl);
4970 return error_mark_node;
4971 }
4972
4973 tmpl = TI_TEMPLATE (tinfo);
4974
4975 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
4976 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
4977 && DECL_TEMPLATE_SPECIALIZATION (decl)
4978 && DECL_MEMBER_TEMPLATE_P (tmpl))
4979 {
4980 tree new_tmpl;
4981
4982 /* The declaration is a specialization of a member
4983 template, declared outside the class. Therefore, the
4984 innermost template arguments will be NULL, so we
4985 replace them with the arguments determined by the
4986 earlier call to check_explicit_specialization. */
4987 args = DECL_TI_ARGS (decl);
4988
4989 new_tmpl
4990 = build_template_decl (decl, current_template_parms,
4991 member_template_p);
4992 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
4993 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
4994 DECL_TI_TEMPLATE (decl) = new_tmpl;
4995 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
4996 DECL_TEMPLATE_INFO (new_tmpl)
4997 = build_template_info (tmpl, args);
4998
4999 register_specialization (new_tmpl,
5000 most_general_template (tmpl),
5001 args,
5002 is_friend, 0);
5003 return decl;
5004 }
5005
5006 /* Make sure the template headers we got make sense. */
5007
5008 parms = DECL_TEMPLATE_PARMS (tmpl);
5009 i = TMPL_PARMS_DEPTH (parms);
5010 if (TMPL_ARGS_DEPTH (args) != i)
5011 {
5012 error ("expected %d levels of template parms for %q#D, got %d",
5013 i, decl, TMPL_ARGS_DEPTH (args));
5014 }
5015 else
5016 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
5017 {
5018 a = TMPL_ARGS_LEVEL (args, i);
5019 t = INNERMOST_TEMPLATE_PARMS (parms);
5020
5021 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
5022 {
5023 if (current == decl)
5024 error ("got %d template parameters for %q#D",
5025 TREE_VEC_LENGTH (a), decl);
5026 else
5027 error ("got %d template parameters for %q#T",
5028 TREE_VEC_LENGTH (a), current);
5029 error (" but %d required", TREE_VEC_LENGTH (t));
5030 return error_mark_node;
5031 }
5032
5033 if (current == decl)
5034 current = ctx;
5035 else if (current == NULL_TREE)
5036 /* Can happen in erroneous input. */
5037 break;
5038 else
5039 current = (TYPE_P (current)
5040 ? TYPE_CONTEXT (current)
5041 : DECL_CONTEXT (current));
5042 }
5043
5044 /* Check that the parms are used in the appropriate qualifying scopes
5045 in the declarator. */
5046 if (!comp_template_args
5047 (TI_ARGS (tinfo),
5048 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5049 {
5050 error ("\
5051 template arguments to %qD do not match original template %qD",
5052 decl, DECL_TEMPLATE_RESULT (tmpl));
5053 if (!uses_template_parms (TI_ARGS (tinfo)))
5054 inform (input_location, "use template<> for an explicit specialization");
5055 /* Avoid crash in import_export_decl. */
5056 DECL_INTERFACE_KNOWN (decl) = 1;
5057 return error_mark_node;
5058 }
5059 }
5060
5061 DECL_TEMPLATE_RESULT (tmpl) = decl;
5062 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5063
5064 /* Push template declarations for global functions and types. Note
5065 that we do not try to push a global template friend declared in a
5066 template class; such a thing may well depend on the template
5067 parameters of the class. */
5068 if (new_template_p && !ctx
5069 && !(is_friend && template_class_depth (current_class_type) > 0))
5070 {
5071 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5072 if (tmpl == error_mark_node)
5073 return error_mark_node;
5074
5075 /* Hide template friend classes that haven't been declared yet. */
5076 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5077 {
5078 DECL_ANTICIPATED (tmpl) = 1;
5079 DECL_FRIEND_P (tmpl) = 1;
5080 }
5081 }
5082
5083 if (primary)
5084 {
5085 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5086 int i;
5087
5088 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5089 if (DECL_CONV_FN_P (tmpl))
5090 {
5091 int depth = TMPL_PARMS_DEPTH (parms);
5092
5093 /* It is a conversion operator. See if the type converted to
5094 depends on innermost template operands. */
5095
5096 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5097 depth))
5098 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5099 }
5100
5101 /* Give template template parms a DECL_CONTEXT of the template
5102 for which they are a parameter. */
5103 parms = INNERMOST_TEMPLATE_PARMS (parms);
5104 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5105 {
5106 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5107 if (TREE_CODE (parm) == TEMPLATE_DECL)
5108 DECL_CONTEXT (parm) = tmpl;
5109 }
5110 }
5111
5112 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5113 back to its most general template. If TMPL is a specialization,
5114 ARGS may only have the innermost set of arguments. Add the missing
5115 argument levels if necessary. */
5116 if (DECL_TEMPLATE_INFO (tmpl))
5117 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5118
5119 info = build_template_info (tmpl, args);
5120
5121 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5122 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5123 else
5124 {
5125 if (primary && !DECL_LANG_SPECIFIC (decl))
5126 retrofit_lang_decl (decl);
5127 if (DECL_LANG_SPECIFIC (decl))
5128 DECL_TEMPLATE_INFO (decl) = info;
5129 }
5130
5131 return DECL_TEMPLATE_RESULT (tmpl);
5132 }
5133
5134 tree
5135 push_template_decl (tree decl)
5136 {
5137 return push_template_decl_real (decl, false);
5138 }
5139
5140 /* Called when a class template TYPE is redeclared with the indicated
5141 template PARMS, e.g.:
5142
5143 template <class T> struct S;
5144 template <class T> struct S {}; */
5145
5146 bool
5147 redeclare_class_template (tree type, tree parms)
5148 {
5149 tree tmpl;
5150 tree tmpl_parms;
5151 int i;
5152
5153 if (!TYPE_TEMPLATE_INFO (type))
5154 {
5155 error ("%qT is not a template type", type);
5156 return false;
5157 }
5158
5159 tmpl = TYPE_TI_TEMPLATE (type);
5160 if (!PRIMARY_TEMPLATE_P (tmpl))
5161 /* The type is nested in some template class. Nothing to worry
5162 about here; there are no new template parameters for the nested
5163 type. */
5164 return true;
5165
5166 if (!parms)
5167 {
5168 error ("template specifiers not specified in declaration of %qD",
5169 tmpl);
5170 return false;
5171 }
5172
5173 parms = INNERMOST_TEMPLATE_PARMS (parms);
5174 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5175
5176 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5177 {
5178 error_n (input_location, TREE_VEC_LENGTH (parms),
5179 "redeclared with %d template parameter",
5180 "redeclared with %d template parameters",
5181 TREE_VEC_LENGTH (parms));
5182 inform_n (input_location, TREE_VEC_LENGTH (tmpl_parms),
5183 "previous declaration %q+D used %d template parameter",
5184 "previous declaration %q+D used %d template parameters",
5185 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5186 return false;
5187 }
5188
5189 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5190 {
5191 tree tmpl_parm;
5192 tree parm;
5193 tree tmpl_default;
5194 tree parm_default;
5195
5196 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5197 || TREE_VEC_ELT (parms, i) == error_mark_node)
5198 continue;
5199
5200 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5201 if (tmpl_parm == error_mark_node)
5202 return false;
5203
5204 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5205 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5206 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5207
5208 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5209 TEMPLATE_DECL. */
5210 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5211 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5212 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5213 || (TREE_CODE (tmpl_parm) != PARM_DECL
5214 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5215 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5216 || (TREE_CODE (tmpl_parm) == PARM_DECL
5217 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5218 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5219 {
5220 error ("template parameter %q+#D", tmpl_parm);
5221 error ("redeclared here as %q#D", parm);
5222 return false;
5223 }
5224
5225 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5226 {
5227 /* We have in [temp.param]:
5228
5229 A template-parameter may not be given default arguments
5230 by two different declarations in the same scope. */
5231 error_at (input_location, "redefinition of default argument for %q#D", parm);
5232 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5233 "original definition appeared here");
5234 return false;
5235 }
5236
5237 if (parm_default != NULL_TREE)
5238 /* Update the previous template parameters (which are the ones
5239 that will really count) with the new default value. */
5240 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5241 else if (tmpl_default != NULL_TREE)
5242 /* Update the new parameters, too; they'll be used as the
5243 parameters for any members. */
5244 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5245 }
5246
5247 return true;
5248 }
5249
5250 /* Simplify EXPR if it is a non-dependent expression. Returns the
5251 (possibly simplified) expression. */
5252
5253 static tree
5254 fold_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5255 {
5256 if (expr == NULL_TREE)
5257 return NULL_TREE;
5258
5259 /* If we're in a template, but EXPR isn't value dependent, simplify
5260 it. We're supposed to treat:
5261
5262 template <typename T> void f(T[1 + 1]);
5263 template <typename T> void f(T[2]);
5264
5265 as two declarations of the same function, for example. */
5266 if (processing_template_decl
5267 && !type_dependent_expression_p (expr)
5268 && potential_constant_expression (expr)
5269 && !value_dependent_expression_p (expr))
5270 {
5271 HOST_WIDE_INT saved_processing_template_decl;
5272
5273 saved_processing_template_decl = processing_template_decl;
5274 processing_template_decl = 0;
5275 expr = tsubst_copy_and_build (expr,
5276 /*args=*/NULL_TREE,
5277 complain,
5278 /*in_decl=*/NULL_TREE,
5279 /*function_p=*/false,
5280 /*integral_constant_expression_p=*/true);
5281 processing_template_decl = saved_processing_template_decl;
5282 }
5283 return expr;
5284 }
5285
5286 tree
5287 fold_non_dependent_expr (tree expr)
5288 {
5289 return fold_non_dependent_expr_sfinae (expr, tf_error);
5290 }
5291
5292 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5293 template declaration, or a TYPE_DECL for an alias declaration. */
5294
5295 bool
5296 alias_type_or_template_p (tree t)
5297 {
5298 if (t == NULL_TREE)
5299 return false;
5300 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5301 || (TYPE_P (t)
5302 && TYPE_NAME (t)
5303 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5304 || DECL_ALIAS_TEMPLATE_P (t));
5305 }
5306
5307 /* Return TRUE iff is a specialization of an alias template. */
5308
5309 bool
5310 alias_template_specialization_p (tree t)
5311 {
5312 if (t == NULL_TREE)
5313 return false;
5314 return (primary_template_instantiation_p (t)
5315 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (t)));
5316 }
5317
5318 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5319 must be a function or a pointer-to-function type, as specified
5320 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5321 and check that the resulting function has external linkage. */
5322
5323 static tree
5324 convert_nontype_argument_function (tree type, tree expr)
5325 {
5326 tree fns = expr;
5327 tree fn, fn_no_ptr;
5328 linkage_kind linkage;
5329
5330 fn = instantiate_type (type, fns, tf_none);
5331 if (fn == error_mark_node)
5332 return error_mark_node;
5333
5334 fn_no_ptr = fn;
5335 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5336 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5337 if (BASELINK_P (fn_no_ptr))
5338 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5339
5340 /* [temp.arg.nontype]/1
5341
5342 A template-argument for a non-type, non-template template-parameter
5343 shall be one of:
5344 [...]
5345 -- the address of an object or function with external [C++11: or
5346 internal] linkage. */
5347 linkage = decl_linkage (fn_no_ptr);
5348 if (cxx_dialect >= cxx0x ? linkage == lk_none : linkage != lk_external)
5349 {
5350 if (cxx_dialect >= cxx0x)
5351 error ("%qE is not a valid template argument for type %qT "
5352 "because %qD has no linkage",
5353 expr, type, fn_no_ptr);
5354 else
5355 error ("%qE is not a valid template argument for type %qT "
5356 "because %qD does not have external linkage",
5357 expr, type, fn_no_ptr);
5358 return NULL_TREE;
5359 }
5360
5361 return fn;
5362 }
5363
5364 /* Subroutine of convert_nontype_argument.
5365 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5366 Emit an error otherwise. */
5367
5368 static bool
5369 check_valid_ptrmem_cst_expr (tree type, tree expr,
5370 tsubst_flags_t complain)
5371 {
5372 STRIP_NOPS (expr);
5373 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5374 return true;
5375 if (cxx_dialect >= cxx0x && null_member_pointer_value_p (expr))
5376 return true;
5377 if (complain & tf_error)
5378 {
5379 error ("%qE is not a valid template argument for type %qT",
5380 expr, type);
5381 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5382 }
5383 return false;
5384 }
5385
5386 /* Returns TRUE iff the address of OP is value-dependent.
5387
5388 14.6.2.4 [temp.dep.temp]:
5389 A non-integral non-type template-argument is dependent if its type is
5390 dependent or it has either of the following forms
5391 qualified-id
5392 & qualified-id
5393 and contains a nested-name-specifier which specifies a class-name that
5394 names a dependent type.
5395
5396 We generalize this to just say that the address of a member of a
5397 dependent class is value-dependent; the above doesn't cover the
5398 address of a static data member named with an unqualified-id. */
5399
5400 static bool
5401 has_value_dependent_address (tree op)
5402 {
5403 /* We could use get_inner_reference here, but there's no need;
5404 this is only relevant for template non-type arguments, which
5405 can only be expressed as &id-expression. */
5406 if (DECL_P (op))
5407 {
5408 tree ctx = CP_DECL_CONTEXT (op);
5409 if (TYPE_P (ctx) && dependent_type_p (ctx))
5410 return true;
5411 }
5412
5413 return false;
5414 }
5415
5416 /* The next set of functions are used for providing helpful explanatory
5417 diagnostics for failed overload resolution. Their messages should be
5418 indented by two spaces for consistency with the messages in
5419 call.c */
5420
5421 static int
5422 unify_success (bool explain_p ATTRIBUTE_UNUSED)
5423 {
5424 return 0;
5425 }
5426
5427 static int
5428 unify_parameter_deduction_failure (bool explain_p, tree parm)
5429 {
5430 if (explain_p)
5431 inform (input_location,
5432 " couldn't deduce template parameter %qD", parm);
5433 return 1;
5434 }
5435
5436 static int
5437 unify_invalid (bool explain_p ATTRIBUTE_UNUSED)
5438 {
5439 return 1;
5440 }
5441
5442 static int
5443 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5444 {
5445 if (explain_p)
5446 inform (input_location,
5447 " types %qT and %qT have incompatible cv-qualifiers",
5448 parm, arg);
5449 return 1;
5450 }
5451
5452 static int
5453 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5454 {
5455 if (explain_p)
5456 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5457 return 1;
5458 }
5459
5460 static int
5461 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
5462 {
5463 if (explain_p)
5464 inform (input_location,
5465 " template parameter %qD is not a parameter pack, but "
5466 "argument %qD is",
5467 parm, arg);
5468 return 1;
5469 }
5470
5471 static int
5472 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
5473 {
5474 if (explain_p)
5475 inform (input_location,
5476 " template argument %qE does not match "
5477 "pointer-to-member constant %qE",
5478 arg, parm);
5479 return 1;
5480 }
5481
5482 static int
5483 unify_expression_unequal (bool explain_p, tree parm, tree arg)
5484 {
5485 if (explain_p)
5486 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
5487 return 1;
5488 }
5489
5490 static int
5491 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
5492 {
5493 if (explain_p)
5494 inform (input_location,
5495 " inconsistent parameter pack deduction with %qT and %qT",
5496 old_arg, new_arg);
5497 return 1;
5498 }
5499
5500 static int
5501 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
5502 {
5503 if (explain_p)
5504 inform (input_location,
5505 " conflicting deductions for parameter %qE (%qE and %qE)",
5506 parm, first, second);
5507 return 1;
5508 }
5509
5510 static int
5511 unify_vla_arg (bool explain_p, tree arg)
5512 {
5513 if (explain_p)
5514 inform (input_location,
5515 " variable-sized array type %qT is not "
5516 "a valid template argument",
5517 arg);
5518 return 1;
5519 }
5520
5521 static int
5522 unify_method_type_error (bool explain_p, tree arg)
5523 {
5524 if (explain_p)
5525 inform (input_location,
5526 " member function type %qT is not a valid template argument",
5527 arg);
5528 return 1;
5529 }
5530
5531 static int
5532 unify_arity (bool explain_p, int have, int wanted)
5533 {
5534 if (explain_p)
5535 inform_n (input_location, wanted,
5536 " candidate expects %d argument, %d provided",
5537 " candidate expects %d arguments, %d provided",
5538 wanted, have);
5539 return 1;
5540 }
5541
5542 static int
5543 unify_too_many_arguments (bool explain_p, int have, int wanted)
5544 {
5545 return unify_arity (explain_p, have, wanted);
5546 }
5547
5548 static int
5549 unify_too_few_arguments (bool explain_p, int have, int wanted)
5550 {
5551 return unify_arity (explain_p, have, wanted);
5552 }
5553
5554 static int
5555 unify_arg_conversion (bool explain_p, tree to_type,
5556 tree from_type, tree arg)
5557 {
5558 if (explain_p)
5559 inform (input_location, " cannot convert %qE (type %qT) to type %qT",
5560 arg, from_type, to_type);
5561 return 1;
5562 }
5563
5564 static int
5565 unify_no_common_base (bool explain_p, enum template_base_result r,
5566 tree parm, tree arg)
5567 {
5568 if (explain_p)
5569 switch (r)
5570 {
5571 case tbr_ambiguous_baseclass:
5572 inform (input_location, " %qT is an ambiguous base class of %qT",
5573 arg, parm);
5574 break;
5575 default:
5576 inform (input_location, " %qT is not derived from %qT", arg, parm);
5577 break;
5578 }
5579 return 1;
5580 }
5581
5582 static int
5583 unify_inconsistent_template_template_parameters (bool explain_p)
5584 {
5585 if (explain_p)
5586 inform (input_location,
5587 " template parameters of a template template argument are "
5588 "inconsistent with other deduced template arguments");
5589 return 1;
5590 }
5591
5592 static int
5593 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
5594 {
5595 if (explain_p)
5596 inform (input_location,
5597 " can't deduce a template for %qT from non-template type %qT",
5598 parm, arg);
5599 return 1;
5600 }
5601
5602 static int
5603 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
5604 {
5605 if (explain_p)
5606 inform (input_location,
5607 " template argument %qE does not match %qD", arg, parm);
5608 return 1;
5609 }
5610
5611 static int
5612 unify_overload_resolution_failure (bool explain_p, tree arg)
5613 {
5614 if (explain_p)
5615 inform (input_location,
5616 " could not resolve address from overloaded function %qE",
5617 arg);
5618 return 1;
5619 }
5620
5621 /* Attempt to convert the non-type template parameter EXPR to the
5622 indicated TYPE. If the conversion is successful, return the
5623 converted value. If the conversion is unsuccessful, return
5624 NULL_TREE if we issued an error message, or error_mark_node if we
5625 did not. We issue error messages for out-and-out bad template
5626 parameters, but not simply because the conversion failed, since we
5627 might be just trying to do argument deduction. Both TYPE and EXPR
5628 must be non-dependent.
5629
5630 The conversion follows the special rules described in
5631 [temp.arg.nontype], and it is much more strict than an implicit
5632 conversion.
5633
5634 This function is called twice for each template argument (see
5635 lookup_template_class for a more accurate description of this
5636 problem). This means that we need to handle expressions which
5637 are not valid in a C++ source, but can be created from the
5638 first call (for instance, casts to perform conversions). These
5639 hacks can go away after we fix the double coercion problem. */
5640
5641 static tree
5642 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
5643 {
5644 tree expr_type;
5645
5646 /* Detect immediately string literals as invalid non-type argument.
5647 This special-case is not needed for correctness (we would easily
5648 catch this later), but only to provide better diagnostic for this
5649 common user mistake. As suggested by DR 100, we do not mention
5650 linkage issues in the diagnostic as this is not the point. */
5651 /* FIXME we're making this OK. */
5652 if (TREE_CODE (expr) == STRING_CST)
5653 {
5654 if (complain & tf_error)
5655 error ("%qE is not a valid template argument for type %qT "
5656 "because string literals can never be used in this context",
5657 expr, type);
5658 return NULL_TREE;
5659 }
5660
5661 /* Add the ADDR_EXPR now for the benefit of
5662 value_dependent_expression_p. */
5663 if (TYPE_PTROBV_P (type)
5664 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
5665 expr = decay_conversion (expr);
5666
5667 /* If we are in a template, EXPR may be non-dependent, but still
5668 have a syntactic, rather than semantic, form. For example, EXPR
5669 might be a SCOPE_REF, rather than the VAR_DECL to which the
5670 SCOPE_REF refers. Preserving the qualifying scope is necessary
5671 so that access checking can be performed when the template is
5672 instantiated -- but here we need the resolved form so that we can
5673 convert the argument. */
5674 if (TYPE_REF_OBJ_P (type)
5675 && has_value_dependent_address (expr))
5676 /* If we want the address and it's value-dependent, don't fold. */;
5677 else if (!type_unknown_p (expr))
5678 expr = fold_non_dependent_expr_sfinae (expr, complain);
5679 if (error_operand_p (expr))
5680 return error_mark_node;
5681 expr_type = TREE_TYPE (expr);
5682 if (TREE_CODE (type) == REFERENCE_TYPE)
5683 expr = mark_lvalue_use (expr);
5684 else
5685 expr = mark_rvalue_use (expr);
5686
5687 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
5688 to a non-type argument of "nullptr". */
5689 if (expr == nullptr_node
5690 && (TYPE_PTR_P (type) || TYPE_PTR_TO_MEMBER_P (type)))
5691 expr = convert (type, expr);
5692
5693 /* In C++11, integral or enumeration non-type template arguments can be
5694 arbitrary constant expressions. Pointer and pointer to
5695 member arguments can be general constant expressions that evaluate
5696 to a null value, but otherwise still need to be of a specific form. */
5697 if (cxx_dialect >= cxx0x)
5698 {
5699 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5700 expr = maybe_constant_value (expr);
5701 else if (TYPE_PTR_P (type)
5702 || (TYPE_PTR_TO_MEMBER_P (type)
5703 && TREE_CODE (expr) != PTRMEM_CST))
5704 {
5705 tree folded = maybe_constant_value (expr);
5706 if (TYPE_PTR_P (type) ? integer_zerop (folded)
5707 : null_member_pointer_value_p (folded))
5708 expr = folded;
5709 }
5710 }
5711
5712 /* HACK: Due to double coercion, we can get a
5713 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
5714 which is the tree that we built on the first call (see
5715 below when coercing to reference to object or to reference to
5716 function). We just strip everything and get to the arg.
5717 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
5718 for examples. */
5719 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
5720 {
5721 tree probe_type, probe = expr;
5722 if (REFERENCE_REF_P (probe))
5723 probe = TREE_OPERAND (probe, 0);
5724 probe_type = TREE_TYPE (probe);
5725 if (TREE_CODE (probe) == NOP_EXPR)
5726 {
5727 /* ??? Maybe we could use convert_from_reference here, but we
5728 would need to relax its constraints because the NOP_EXPR
5729 could actually change the type to something more cv-qualified,
5730 and this is not folded by convert_from_reference. */
5731 tree addr = TREE_OPERAND (probe, 0);
5732 gcc_assert (TREE_CODE (probe_type) == REFERENCE_TYPE);
5733 gcc_assert (TREE_CODE (addr) == ADDR_EXPR);
5734 gcc_assert (TREE_CODE (TREE_TYPE (addr)) == POINTER_TYPE);
5735 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5736 (TREE_TYPE (probe_type),
5737 TREE_TYPE (TREE_TYPE (addr))));
5738
5739 expr = TREE_OPERAND (addr, 0);
5740 expr_type = TREE_TYPE (expr);
5741 }
5742 }
5743
5744 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
5745 parameter is a pointer to object, through decay and
5746 qualification conversion. Let's strip everything. */
5747 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
5748 {
5749 STRIP_NOPS (expr);
5750 gcc_assert (TREE_CODE (expr) == ADDR_EXPR);
5751 gcc_assert (TREE_CODE (TREE_TYPE (expr)) == POINTER_TYPE);
5752 /* Skip the ADDR_EXPR only if it is part of the decay for
5753 an array. Otherwise, it is part of the original argument
5754 in the source code. */
5755 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == ARRAY_TYPE)
5756 expr = TREE_OPERAND (expr, 0);
5757 expr_type = TREE_TYPE (expr);
5758 }
5759
5760 /* [temp.arg.nontype]/5, bullet 1
5761
5762 For a non-type template-parameter of integral or enumeration type,
5763 integral promotions (_conv.prom_) and integral conversions
5764 (_conv.integral_) are applied. */
5765 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5766 {
5767 tree t = build_integral_nontype_arg_conv (type, expr, complain);
5768 t = maybe_constant_value (t);
5769 if (t != error_mark_node)
5770 expr = t;
5771
5772 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
5773 return error_mark_node;
5774
5775 /* Notice that there are constant expressions like '4 % 0' which
5776 do not fold into integer constants. */
5777 if (TREE_CODE (expr) != INTEGER_CST)
5778 {
5779 if (complain & tf_error)
5780 {
5781 int errs = errorcount, warns = warningcount;
5782 expr = cxx_constant_value (expr);
5783 if (errorcount > errs || warningcount > warns)
5784 inform (EXPR_LOC_OR_HERE (expr),
5785 "in template argument for type %qT ", type);
5786 if (expr == error_mark_node)
5787 return NULL_TREE;
5788 /* else cxx_constant_value complained but gave us
5789 a real constant, so go ahead. */
5790 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
5791 }
5792 else
5793 return NULL_TREE;
5794 }
5795 }
5796 /* [temp.arg.nontype]/5, bullet 2
5797
5798 For a non-type template-parameter of type pointer to object,
5799 qualification conversions (_conv.qual_) and the array-to-pointer
5800 conversion (_conv.array_) are applied. */
5801 else if (TYPE_PTROBV_P (type))
5802 {
5803 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
5804
5805 A template-argument for a non-type, non-template template-parameter
5806 shall be one of: [...]
5807
5808 -- the name of a non-type template-parameter;
5809 -- the address of an object or function with external linkage, [...]
5810 expressed as "& id-expression" where the & is optional if the name
5811 refers to a function or array, or if the corresponding
5812 template-parameter is a reference.
5813
5814 Here, we do not care about functions, as they are invalid anyway
5815 for a parameter of type pointer-to-object. */
5816
5817 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
5818 /* Non-type template parameters are OK. */
5819 ;
5820 else if (cxx_dialect >= cxx0x && integer_zerop (expr))
5821 /* Null pointer values are OK in C++11. */;
5822 else if (TREE_CODE (expr) != ADDR_EXPR
5823 && TREE_CODE (expr_type) != ARRAY_TYPE)
5824 {
5825 if (TREE_CODE (expr) == VAR_DECL)
5826 {
5827 error ("%qD is not a valid template argument "
5828 "because %qD is a variable, not the address of "
5829 "a variable",
5830 expr, expr);
5831 return NULL_TREE;
5832 }
5833 /* Other values, like integer constants, might be valid
5834 non-type arguments of some other type. */
5835 return error_mark_node;
5836 }
5837 else
5838 {
5839 tree decl;
5840
5841 decl = ((TREE_CODE (expr) == ADDR_EXPR)
5842 ? TREE_OPERAND (expr, 0) : expr);
5843 if (TREE_CODE (decl) != VAR_DECL)
5844 {
5845 error ("%qE is not a valid template argument of type %qT "
5846 "because %qE is not a variable",
5847 expr, type, decl);
5848 return NULL_TREE;
5849 }
5850 else if (cxx_dialect < cxx0x && !DECL_EXTERNAL_LINKAGE_P (decl))
5851 {
5852 error ("%qE is not a valid template argument of type %qT "
5853 "because %qD does not have external linkage",
5854 expr, type, decl);
5855 return NULL_TREE;
5856 }
5857 else if (cxx_dialect >= cxx0x && decl_linkage (decl) == lk_none)
5858 {
5859 error ("%qE is not a valid template argument of type %qT "
5860 "because %qD has no linkage",
5861 expr, type, decl);
5862 return NULL_TREE;
5863 }
5864 }
5865
5866 expr = decay_conversion (expr);
5867 if (expr == error_mark_node)
5868 return error_mark_node;
5869
5870 expr = perform_qualification_conversions (type, expr);
5871 if (expr == error_mark_node)
5872 return error_mark_node;
5873 }
5874 /* [temp.arg.nontype]/5, bullet 3
5875
5876 For a non-type template-parameter of type reference to object, no
5877 conversions apply. The type referred to by the reference may be more
5878 cv-qualified than the (otherwise identical) type of the
5879 template-argument. The template-parameter is bound directly to the
5880 template-argument, which must be an lvalue. */
5881 else if (TYPE_REF_OBJ_P (type))
5882 {
5883 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
5884 expr_type))
5885 return error_mark_node;
5886
5887 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
5888 {
5889 error ("%qE is not a valid template argument for type %qT "
5890 "because of conflicts in cv-qualification", expr, type);
5891 return NULL_TREE;
5892 }
5893
5894 if (!real_lvalue_p (expr))
5895 {
5896 error ("%qE is not a valid template argument for type %qT "
5897 "because it is not an lvalue", expr, type);
5898 return NULL_TREE;
5899 }
5900
5901 /* [temp.arg.nontype]/1
5902
5903 A template-argument for a non-type, non-template template-parameter
5904 shall be one of: [...]
5905
5906 -- the address of an object or function with external linkage. */
5907 if (TREE_CODE (expr) == INDIRECT_REF
5908 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
5909 {
5910 expr = TREE_OPERAND (expr, 0);
5911 if (DECL_P (expr))
5912 {
5913 error ("%q#D is not a valid template argument for type %qT "
5914 "because a reference variable does not have a constant "
5915 "address", expr, type);
5916 return NULL_TREE;
5917 }
5918 }
5919
5920 if (!DECL_P (expr))
5921 {
5922 error ("%qE is not a valid template argument for type %qT "
5923 "because it is not an object with external linkage",
5924 expr, type);
5925 return NULL_TREE;
5926 }
5927
5928 if (!DECL_EXTERNAL_LINKAGE_P (expr))
5929 {
5930 error ("%qE is not a valid template argument for type %qT "
5931 "because object %qD has not external linkage",
5932 expr, type, expr);
5933 return NULL_TREE;
5934 }
5935
5936 expr = build_nop (type, build_address (expr));
5937 }
5938 /* [temp.arg.nontype]/5, bullet 4
5939
5940 For a non-type template-parameter of type pointer to function, only
5941 the function-to-pointer conversion (_conv.func_) is applied. If the
5942 template-argument represents a set of overloaded functions (or a
5943 pointer to such), the matching function is selected from the set
5944 (_over.over_). */
5945 else if (TYPE_PTRFN_P (type))
5946 {
5947 /* If the argument is a template-id, we might not have enough
5948 context information to decay the pointer. */
5949 if (!type_unknown_p (expr_type))
5950 {
5951 expr = decay_conversion (expr);
5952 if (expr == error_mark_node)
5953 return error_mark_node;
5954 }
5955
5956 if (cxx_dialect >= cxx0x && integer_zerop (expr))
5957 /* Null pointer values are OK in C++11. */
5958 return perform_qualification_conversions (type, expr);
5959
5960 expr = convert_nontype_argument_function (type, expr);
5961 if (!expr || expr == error_mark_node)
5962 return expr;
5963
5964 if (TREE_CODE (expr) != ADDR_EXPR)
5965 {
5966 error ("%qE is not a valid template argument for type %qT", expr, type);
5967 error ("it must be the address of a function with external linkage");
5968 return NULL_TREE;
5969 }
5970 }
5971 /* [temp.arg.nontype]/5, bullet 5
5972
5973 For a non-type template-parameter of type reference to function, no
5974 conversions apply. If the template-argument represents a set of
5975 overloaded functions, the matching function is selected from the set
5976 (_over.over_). */
5977 else if (TYPE_REFFN_P (type))
5978 {
5979 if (TREE_CODE (expr) == ADDR_EXPR)
5980 {
5981 error ("%qE is not a valid template argument for type %qT "
5982 "because it is a pointer", expr, type);
5983 inform (input_location, "try using %qE instead", TREE_OPERAND (expr, 0));
5984 return NULL_TREE;
5985 }
5986
5987 expr = convert_nontype_argument_function (TREE_TYPE (type), expr);
5988 if (!expr || expr == error_mark_node)
5989 return expr;
5990
5991 expr = build_nop (type, build_address (expr));
5992 }
5993 /* [temp.arg.nontype]/5, bullet 6
5994
5995 For a non-type template-parameter of type pointer to member function,
5996 no conversions apply. If the template-argument represents a set of
5997 overloaded member functions, the matching member function is selected
5998 from the set (_over.over_). */
5999 else if (TYPE_PTRMEMFUNC_P (type))
6000 {
6001 expr = instantiate_type (type, expr, tf_none);
6002 if (expr == error_mark_node)
6003 return error_mark_node;
6004
6005 /* [temp.arg.nontype] bullet 1 says the pointer to member
6006 expression must be a pointer-to-member constant. */
6007 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6008 return error_mark_node;
6009
6010 /* There is no way to disable standard conversions in
6011 resolve_address_of_overloaded_function (called by
6012 instantiate_type). It is possible that the call succeeded by
6013 converting &B::I to &D::I (where B is a base of D), so we need
6014 to reject this conversion here.
6015
6016 Actually, even if there was a way to disable standard conversions,
6017 it would still be better to reject them here so that we can
6018 provide a superior diagnostic. */
6019 if (!same_type_p (TREE_TYPE (expr), type))
6020 {
6021 error ("%qE is not a valid template argument for type %qT "
6022 "because it is of type %qT", expr, type,
6023 TREE_TYPE (expr));
6024 /* If we are just one standard conversion off, explain. */
6025 if (can_convert (type, TREE_TYPE (expr)))
6026 inform (input_location,
6027 "standard conversions are not allowed in this context");
6028 return NULL_TREE;
6029 }
6030 }
6031 /* [temp.arg.nontype]/5, bullet 7
6032
6033 For a non-type template-parameter of type pointer to data member,
6034 qualification conversions (_conv.qual_) are applied. */
6035 else if (TYPE_PTRMEM_P (type))
6036 {
6037 /* [temp.arg.nontype] bullet 1 says the pointer to member
6038 expression must be a pointer-to-member constant. */
6039 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6040 return error_mark_node;
6041
6042 expr = perform_qualification_conversions (type, expr);
6043 if (expr == error_mark_node)
6044 return expr;
6045 }
6046 else if (NULLPTR_TYPE_P (type))
6047 {
6048 if (expr != nullptr_node)
6049 {
6050 error ("%qE is not a valid template argument for type %qT "
6051 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6052 return NULL_TREE;
6053 }
6054 return expr;
6055 }
6056 /* A template non-type parameter must be one of the above. */
6057 else
6058 gcc_unreachable ();
6059
6060 /* Sanity check: did we actually convert the argument to the
6061 right type? */
6062 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6063 (type, TREE_TYPE (expr)));
6064 return expr;
6065 }
6066
6067 /* Subroutine of coerce_template_template_parms, which returns 1 if
6068 PARM_PARM and ARG_PARM match using the rule for the template
6069 parameters of template template parameters. Both PARM and ARG are
6070 template parameters; the rest of the arguments are the same as for
6071 coerce_template_template_parms.
6072 */
6073 static int
6074 coerce_template_template_parm (tree parm,
6075 tree arg,
6076 tsubst_flags_t complain,
6077 tree in_decl,
6078 tree outer_args)
6079 {
6080 if (arg == NULL_TREE || arg == error_mark_node
6081 || parm == NULL_TREE || parm == error_mark_node)
6082 return 0;
6083
6084 if (TREE_CODE (arg) != TREE_CODE (parm))
6085 return 0;
6086
6087 switch (TREE_CODE (parm))
6088 {
6089 case TEMPLATE_DECL:
6090 /* We encounter instantiations of templates like
6091 template <template <template <class> class> class TT>
6092 class C; */
6093 {
6094 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6095 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6096
6097 if (!coerce_template_template_parms
6098 (parmparm, argparm, complain, in_decl, outer_args))
6099 return 0;
6100 }
6101 /* Fall through. */
6102
6103 case TYPE_DECL:
6104 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6105 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6106 /* Argument is a parameter pack but parameter is not. */
6107 return 0;
6108 break;
6109
6110 case PARM_DECL:
6111 /* The tsubst call is used to handle cases such as
6112
6113 template <int> class C {};
6114 template <class T, template <T> class TT> class D {};
6115 D<int, C> d;
6116
6117 i.e. the parameter list of TT depends on earlier parameters. */
6118 if (!uses_template_parms (TREE_TYPE (arg))
6119 && !same_type_p
6120 (tsubst (TREE_TYPE (parm), outer_args, complain, in_decl),
6121 TREE_TYPE (arg)))
6122 return 0;
6123
6124 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6125 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6126 /* Argument is a parameter pack but parameter is not. */
6127 return 0;
6128
6129 break;
6130
6131 default:
6132 gcc_unreachable ();
6133 }
6134
6135 return 1;
6136 }
6137
6138
6139 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6140 template template parameters. Both PARM_PARMS and ARG_PARMS are
6141 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6142 or PARM_DECL.
6143
6144 Consider the example:
6145 template <class T> class A;
6146 template<template <class U> class TT> class B;
6147
6148 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6149 the parameters to A, and OUTER_ARGS contains A. */
6150
6151 static int
6152 coerce_template_template_parms (tree parm_parms,
6153 tree arg_parms,
6154 tsubst_flags_t complain,
6155 tree in_decl,
6156 tree outer_args)
6157 {
6158 int nparms, nargs, i;
6159 tree parm, arg;
6160 int variadic_p = 0;
6161
6162 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
6163 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
6164
6165 nparms = TREE_VEC_LENGTH (parm_parms);
6166 nargs = TREE_VEC_LENGTH (arg_parms);
6167
6168 /* Determine whether we have a parameter pack at the end of the
6169 template template parameter's template parameter list. */
6170 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
6171 {
6172 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
6173
6174 if (parm == error_mark_node)
6175 return 0;
6176
6177 switch (TREE_CODE (parm))
6178 {
6179 case TEMPLATE_DECL:
6180 case TYPE_DECL:
6181 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6182 variadic_p = 1;
6183 break;
6184
6185 case PARM_DECL:
6186 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6187 variadic_p = 1;
6188 break;
6189
6190 default:
6191 gcc_unreachable ();
6192 }
6193 }
6194
6195 if (nargs != nparms
6196 && !(variadic_p && nargs >= nparms - 1))
6197 return 0;
6198
6199 /* Check all of the template parameters except the parameter pack at
6200 the end (if any). */
6201 for (i = 0; i < nparms - variadic_p; ++i)
6202 {
6203 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6204 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6205 continue;
6206
6207 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6208 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6209
6210 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6211 outer_args))
6212 return 0;
6213
6214 }
6215
6216 if (variadic_p)
6217 {
6218 /* Check each of the template parameters in the template
6219 argument against the template parameter pack at the end of
6220 the template template parameter. */
6221 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6222 return 0;
6223
6224 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6225
6226 for (; i < nargs; ++i)
6227 {
6228 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6229 continue;
6230
6231 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6232
6233 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6234 outer_args))
6235 return 0;
6236 }
6237 }
6238
6239 return 1;
6240 }
6241
6242 /* Verifies that the deduced template arguments (in TARGS) for the
6243 template template parameters (in TPARMS) represent valid bindings,
6244 by comparing the template parameter list of each template argument
6245 to the template parameter list of its corresponding template
6246 template parameter, in accordance with DR150. This
6247 routine can only be called after all template arguments have been
6248 deduced. It will return TRUE if all of the template template
6249 parameter bindings are okay, FALSE otherwise. */
6250 bool
6251 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6252 {
6253 int i, ntparms = TREE_VEC_LENGTH (tparms);
6254 bool ret = true;
6255
6256 /* We're dealing with template parms in this process. */
6257 ++processing_template_decl;
6258
6259 targs = INNERMOST_TEMPLATE_ARGS (targs);
6260
6261 for (i = 0; i < ntparms; ++i)
6262 {
6263 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6264 tree targ = TREE_VEC_ELT (targs, i);
6265
6266 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6267 {
6268 tree packed_args = NULL_TREE;
6269 int idx, len = 1;
6270
6271 if (ARGUMENT_PACK_P (targ))
6272 {
6273 /* Look inside the argument pack. */
6274 packed_args = ARGUMENT_PACK_ARGS (targ);
6275 len = TREE_VEC_LENGTH (packed_args);
6276 }
6277
6278 for (idx = 0; idx < len; ++idx)
6279 {
6280 tree targ_parms = NULL_TREE;
6281
6282 if (packed_args)
6283 /* Extract the next argument from the argument
6284 pack. */
6285 targ = TREE_VEC_ELT (packed_args, idx);
6286
6287 if (PACK_EXPANSION_P (targ))
6288 /* Look at the pattern of the pack expansion. */
6289 targ = PACK_EXPANSION_PATTERN (targ);
6290
6291 /* Extract the template parameters from the template
6292 argument. */
6293 if (TREE_CODE (targ) == TEMPLATE_DECL)
6294 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6295 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6296 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6297
6298 /* Verify that we can coerce the template template
6299 parameters from the template argument to the template
6300 parameter. This requires an exact match. */
6301 if (targ_parms
6302 && !coerce_template_template_parms
6303 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6304 targ_parms,
6305 tf_none,
6306 tparm,
6307 targs))
6308 {
6309 ret = false;
6310 goto out;
6311 }
6312 }
6313 }
6314 }
6315
6316 out:
6317
6318 --processing_template_decl;
6319 return ret;
6320 }
6321
6322 /* Since type attributes aren't mangled, we need to strip them from
6323 template type arguments. */
6324
6325 static tree
6326 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6327 {
6328 tree mv;
6329 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6330 return arg;
6331 mv = TYPE_MAIN_VARIANT (arg);
6332 arg = strip_typedefs (arg);
6333 if (TYPE_ALIGN (arg) != TYPE_ALIGN (mv)
6334 || TYPE_ATTRIBUTES (arg) != TYPE_ATTRIBUTES (mv))
6335 {
6336 if (complain & tf_warning)
6337 warning (0, "ignoring attributes on template argument %qT", arg);
6338 arg = build_aligned_type (arg, TYPE_ALIGN (mv));
6339 arg = cp_build_type_attribute_variant (arg, TYPE_ATTRIBUTES (mv));
6340 }
6341 return arg;
6342 }
6343
6344 /* Convert the indicated template ARG as necessary to match the
6345 indicated template PARM. Returns the converted ARG, or
6346 error_mark_node if the conversion was unsuccessful. Error and
6347 warning messages are issued under control of COMPLAIN. This
6348 conversion is for the Ith parameter in the parameter list. ARGS is
6349 the full set of template arguments deduced so far. */
6350
6351 static tree
6352 convert_template_argument (tree parm,
6353 tree arg,
6354 tree args,
6355 tsubst_flags_t complain,
6356 int i,
6357 tree in_decl)
6358 {
6359 tree orig_arg;
6360 tree val;
6361 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
6362
6363 if (TREE_CODE (arg) == TREE_LIST
6364 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
6365 {
6366 /* The template argument was the name of some
6367 member function. That's usually
6368 invalid, but static members are OK. In any
6369 case, grab the underlying fields/functions
6370 and issue an error later if required. */
6371 orig_arg = TREE_VALUE (arg);
6372 TREE_TYPE (arg) = unknown_type_node;
6373 }
6374
6375 orig_arg = arg;
6376
6377 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
6378 requires_type = (TREE_CODE (parm) == TYPE_DECL
6379 || requires_tmpl_type);
6380
6381 /* When determining whether an argument pack expansion is a template,
6382 look at the pattern. */
6383 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
6384 arg = PACK_EXPANSION_PATTERN (arg);
6385
6386 /* Deal with an injected-class-name used as a template template arg. */
6387 if (requires_tmpl_type && CLASS_TYPE_P (arg))
6388 {
6389 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
6390 if (TREE_CODE (t) == TEMPLATE_DECL)
6391 {
6392 if (cxx_dialect >= cxx0x)
6393 /* OK under DR 1004. */;
6394 else if (complain & tf_warning_or_error)
6395 pedwarn (input_location, OPT_pedantic, "injected-class-name %qD"
6396 " used as template template argument", TYPE_NAME (arg));
6397 else if (flag_pedantic_errors)
6398 t = arg;
6399
6400 arg = t;
6401 }
6402 }
6403
6404 is_tmpl_type =
6405 ((TREE_CODE (arg) == TEMPLATE_DECL
6406 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
6407 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6408 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
6409
6410 if (is_tmpl_type
6411 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6412 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
6413 arg = TYPE_STUB_DECL (arg);
6414
6415 is_type = TYPE_P (arg) || is_tmpl_type;
6416
6417 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
6418 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
6419 {
6420 permerror (input_location, "to refer to a type member of a template parameter, "
6421 "use %<typename %E%>", orig_arg);
6422
6423 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
6424 TREE_OPERAND (arg, 1),
6425 typename_type,
6426 complain & tf_error);
6427 arg = orig_arg;
6428 is_type = 1;
6429 }
6430 if (is_type != requires_type)
6431 {
6432 if (in_decl)
6433 {
6434 if (complain & tf_error)
6435 {
6436 error ("type/value mismatch at argument %d in template "
6437 "parameter list for %qD",
6438 i + 1, in_decl);
6439 if (is_type)
6440 error (" expected a constant of type %qT, got %qT",
6441 TREE_TYPE (parm),
6442 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
6443 else if (requires_tmpl_type)
6444 error (" expected a class template, got %qE", orig_arg);
6445 else
6446 error (" expected a type, got %qE", orig_arg);
6447 }
6448 }
6449 return error_mark_node;
6450 }
6451 if (is_tmpl_type ^ requires_tmpl_type)
6452 {
6453 if (in_decl && (complain & tf_error))
6454 {
6455 error ("type/value mismatch at argument %d in template "
6456 "parameter list for %qD",
6457 i + 1, in_decl);
6458 if (is_tmpl_type)
6459 error (" expected a type, got %qT", DECL_NAME (arg));
6460 else
6461 error (" expected a class template, got %qT", orig_arg);
6462 }
6463 return error_mark_node;
6464 }
6465
6466 if (is_type)
6467 {
6468 if (requires_tmpl_type)
6469 {
6470 if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
6471 /* The number of argument required is not known yet.
6472 Just accept it for now. */
6473 val = TREE_TYPE (arg);
6474 else
6475 {
6476 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6477 tree argparm;
6478
6479 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6480
6481 if (coerce_template_template_parms (parmparm, argparm,
6482 complain, in_decl,
6483 args))
6484 {
6485 val = arg;
6486
6487 /* TEMPLATE_TEMPLATE_PARM node is preferred over
6488 TEMPLATE_DECL. */
6489 if (val != error_mark_node)
6490 {
6491 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
6492 val = TREE_TYPE (val);
6493 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
6494 val = make_pack_expansion (val);
6495 }
6496 }
6497 else
6498 {
6499 if (in_decl && (complain & tf_error))
6500 {
6501 error ("type/value mismatch at argument %d in "
6502 "template parameter list for %qD",
6503 i + 1, in_decl);
6504 error (" expected a template of type %qD, got %qT",
6505 parm, orig_arg);
6506 }
6507
6508 val = error_mark_node;
6509 }
6510 }
6511 }
6512 else
6513 val = orig_arg;
6514 /* We only form one instance of each template specialization.
6515 Therefore, if we use a non-canonical variant (i.e., a
6516 typedef), any future messages referring to the type will use
6517 the typedef, which is confusing if those future uses do not
6518 themselves also use the typedef. */
6519 if (TYPE_P (val))
6520 val = canonicalize_type_argument (val, complain);
6521 }
6522 else
6523 {
6524 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
6525
6526 if (invalid_nontype_parm_type_p (t, complain))
6527 return error_mark_node;
6528
6529 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6530 {
6531 if (same_type_p (t, TREE_TYPE (orig_arg)))
6532 val = orig_arg;
6533 else
6534 {
6535 /* Not sure if this is reachable, but it doesn't hurt
6536 to be robust. */
6537 error ("type mismatch in nontype parameter pack");
6538 val = error_mark_node;
6539 }
6540 }
6541 else if (!uses_template_parms (orig_arg) && !uses_template_parms (t))
6542 /* We used to call digest_init here. However, digest_init
6543 will report errors, which we don't want when complain
6544 is zero. More importantly, digest_init will try too
6545 hard to convert things: for example, `0' should not be
6546 converted to pointer type at this point according to
6547 the standard. Accepting this is not merely an
6548 extension, since deciding whether or not these
6549 conversions can occur is part of determining which
6550 function template to call, or whether a given explicit
6551 argument specification is valid. */
6552 val = convert_nontype_argument (t, orig_arg, complain);
6553 else
6554 val = orig_arg;
6555
6556 if (val == NULL_TREE)
6557 val = error_mark_node;
6558 else if (val == error_mark_node && (complain & tf_error))
6559 error ("could not convert template argument %qE to %qT", orig_arg, t);
6560
6561 if (TREE_CODE (val) == SCOPE_REF)
6562 {
6563 /* Strip typedefs from the SCOPE_REF. */
6564 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
6565 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
6566 complain);
6567 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
6568 QUALIFIED_NAME_IS_TEMPLATE (val));
6569 }
6570 }
6571
6572 return val;
6573 }
6574
6575 /* Coerces the remaining template arguments in INNER_ARGS (from
6576 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
6577 Returns the coerced argument pack. PARM_IDX is the position of this
6578 parameter in the template parameter list. ARGS is the original
6579 template argument list. */
6580 static tree
6581 coerce_template_parameter_pack (tree parms,
6582 int parm_idx,
6583 tree args,
6584 tree inner_args,
6585 int arg_idx,
6586 tree new_args,
6587 int* lost,
6588 tree in_decl,
6589 tsubst_flags_t complain)
6590 {
6591 tree parm = TREE_VEC_ELT (parms, parm_idx);
6592 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6593 tree packed_args;
6594 tree argument_pack;
6595 tree packed_types = NULL_TREE;
6596
6597 if (arg_idx > nargs)
6598 arg_idx = nargs;
6599
6600 packed_args = make_tree_vec (nargs - arg_idx);
6601
6602 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL
6603 && uses_parameter_packs (TREE_TYPE (TREE_VALUE (parm))))
6604 {
6605 /* When the template parameter is a non-type template
6606 parameter pack whose type uses parameter packs, we need
6607 to look at each of the template arguments
6608 separately. Build a vector of the types for these
6609 non-type template parameters in PACKED_TYPES. */
6610 tree expansion
6611 = make_pack_expansion (TREE_TYPE (TREE_VALUE (parm)));
6612 packed_types = tsubst_pack_expansion (expansion, args,
6613 complain, in_decl);
6614
6615 if (packed_types == error_mark_node)
6616 return error_mark_node;
6617
6618 /* Check that we have the right number of arguments. */
6619 if (arg_idx < nargs
6620 && !PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx))
6621 && nargs - arg_idx != TREE_VEC_LENGTH (packed_types))
6622 {
6623 int needed_parms
6624 = TREE_VEC_LENGTH (parms) - 1 + TREE_VEC_LENGTH (packed_types);
6625 error ("wrong number of template arguments (%d, should be %d)",
6626 nargs, needed_parms);
6627 return error_mark_node;
6628 }
6629
6630 /* If we aren't able to check the actual arguments now
6631 (because they haven't been expanded yet), we can at least
6632 verify that all of the types used for the non-type
6633 template parameter pack are, in fact, valid for non-type
6634 template parameters. */
6635 if (arg_idx < nargs
6636 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
6637 {
6638 int j, len = TREE_VEC_LENGTH (packed_types);
6639 for (j = 0; j < len; ++j)
6640 {
6641 tree t = TREE_VEC_ELT (packed_types, j);
6642 if (invalid_nontype_parm_type_p (t, complain))
6643 return error_mark_node;
6644 }
6645 }
6646 }
6647
6648 /* Convert the remaining arguments, which will be a part of the
6649 parameter pack "parm". */
6650 for (; arg_idx < nargs; ++arg_idx)
6651 {
6652 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
6653 tree actual_parm = TREE_VALUE (parm);
6654
6655 if (packed_types && !PACK_EXPANSION_P (arg))
6656 {
6657 /* When we have a vector of types (corresponding to the
6658 non-type template parameter pack that uses parameter
6659 packs in its type, as mention above), and the
6660 argument is not an expansion (which expands to a
6661 currently unknown number of arguments), clone the
6662 parm and give it the next type in PACKED_TYPES. */
6663 actual_parm = copy_node (actual_parm);
6664 TREE_TYPE (actual_parm) =
6665 TREE_VEC_ELT (packed_types, arg_idx - parm_idx);
6666 }
6667
6668 if (arg != error_mark_node)
6669 arg = convert_template_argument (actual_parm,
6670 arg, new_args, complain, parm_idx,
6671 in_decl);
6672 if (arg == error_mark_node)
6673 (*lost)++;
6674 TREE_VEC_ELT (packed_args, arg_idx - parm_idx) = arg;
6675 }
6676
6677 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
6678 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
6679 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
6680 else
6681 {
6682 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
6683 TREE_TYPE (argument_pack)
6684 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
6685 TREE_CONSTANT (argument_pack) = 1;
6686 }
6687
6688 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
6689 #ifdef ENABLE_CHECKING
6690 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
6691 TREE_VEC_LENGTH (packed_args));
6692 #endif
6693 return argument_pack;
6694 }
6695
6696 /* Convert all template arguments to their appropriate types, and
6697 return a vector containing the innermost resulting template
6698 arguments. If any error occurs, return error_mark_node. Error and
6699 warning messages are issued under control of COMPLAIN.
6700
6701 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
6702 for arguments not specified in ARGS. Otherwise, if
6703 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
6704 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
6705 USE_DEFAULT_ARGS is false, then all arguments must be specified in
6706 ARGS. */
6707
6708 static tree
6709 coerce_template_parms (tree parms,
6710 tree args,
6711 tree in_decl,
6712 tsubst_flags_t complain,
6713 bool require_all_args,
6714 bool use_default_args)
6715 {
6716 int nparms, nargs, parm_idx, arg_idx, lost = 0;
6717 tree inner_args;
6718 tree new_args;
6719 tree new_inner_args;
6720 int saved_unevaluated_operand;
6721 int saved_inhibit_evaluation_warnings;
6722
6723 /* When used as a boolean value, indicates whether this is a
6724 variadic template parameter list. Since it's an int, we can also
6725 subtract it from nparms to get the number of non-variadic
6726 parameters. */
6727 int variadic_p = 0;
6728 int post_variadic_parms = 0;
6729
6730 if (args == error_mark_node)
6731 return error_mark_node;
6732
6733 nparms = TREE_VEC_LENGTH (parms);
6734
6735 /* Determine if there are any parameter packs. */
6736 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
6737 {
6738 tree tparm = TREE_VALUE (TREE_VEC_ELT (parms, parm_idx));
6739 if (variadic_p)
6740 ++post_variadic_parms;
6741 if (template_parameter_pack_p (tparm))
6742 ++variadic_p;
6743 }
6744
6745 inner_args = INNERMOST_TEMPLATE_ARGS (args);
6746 /* If there are no parameters that follow a parameter pack, we need to
6747 expand any argument packs so that we can deduce a parameter pack from
6748 some non-packed args followed by an argument pack, as in variadic85.C.
6749 If there are such parameters, we need to leave argument packs intact
6750 so the arguments are assigned properly. This can happen when dealing
6751 with a nested class inside a partial specialization of a class
6752 template, as in variadic92.C, or when deducing a template parameter pack
6753 from a sub-declarator, as in variadic114.C. */
6754 if (!post_variadic_parms)
6755 inner_args = expand_template_argument_pack (inner_args);
6756
6757 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6758 if ((nargs > nparms && !variadic_p)
6759 || (nargs < nparms - variadic_p
6760 && require_all_args
6761 && (!use_default_args
6762 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
6763 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
6764 {
6765 if (complain & tf_error)
6766 {
6767 if (variadic_p)
6768 {
6769 nparms -= variadic_p;
6770 error ("wrong number of template arguments "
6771 "(%d, should be %d or more)", nargs, nparms);
6772 }
6773 else
6774 error ("wrong number of template arguments "
6775 "(%d, should be %d)", nargs, nparms);
6776
6777 if (in_decl)
6778 error ("provided for %q+D", in_decl);
6779 }
6780
6781 return error_mark_node;
6782 }
6783
6784 /* We need to evaluate the template arguments, even though this
6785 template-id may be nested within a "sizeof". */
6786 saved_unevaluated_operand = cp_unevaluated_operand;
6787 cp_unevaluated_operand = 0;
6788 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
6789 c_inhibit_evaluation_warnings = 0;
6790 new_inner_args = make_tree_vec (nparms);
6791 new_args = add_outermost_template_args (args, new_inner_args);
6792 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
6793 {
6794 tree arg;
6795 tree parm;
6796
6797 /* Get the Ith template parameter. */
6798 parm = TREE_VEC_ELT (parms, parm_idx);
6799
6800 if (parm == error_mark_node)
6801 {
6802 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
6803 continue;
6804 }
6805
6806 /* Calculate the next argument. */
6807 if (arg_idx < nargs)
6808 arg = TREE_VEC_ELT (inner_args, arg_idx);
6809 else
6810 arg = NULL_TREE;
6811
6812 if (template_parameter_pack_p (TREE_VALUE (parm))
6813 && !(arg && ARGUMENT_PACK_P (arg)))
6814 {
6815 /* All remaining arguments will be placed in the
6816 template parameter pack PARM. */
6817 arg = coerce_template_parameter_pack (parms, parm_idx, args,
6818 inner_args, arg_idx,
6819 new_args, &lost,
6820 in_decl, complain);
6821
6822 /* Store this argument. */
6823 if (arg == error_mark_node)
6824 lost++;
6825 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
6826
6827 /* We are done with all of the arguments. */
6828 arg_idx = nargs;
6829
6830 continue;
6831 }
6832 else if (arg)
6833 {
6834 if (PACK_EXPANSION_P (arg))
6835 {
6836 /* We don't know how many args we have yet, just
6837 use the unconverted ones for now. */
6838 new_inner_args = args;
6839 break;
6840 }
6841 }
6842 else if (require_all_args)
6843 {
6844 /* There must be a default arg in this case. */
6845 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
6846 complain, in_decl);
6847 /* The position of the first default template argument,
6848 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
6849 Record that. */
6850 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
6851 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args, arg_idx);
6852 }
6853 else
6854 break;
6855
6856 if (arg == error_mark_node)
6857 {
6858 if (complain & tf_error)
6859 error ("template argument %d is invalid", arg_idx + 1);
6860 }
6861 else if (!arg)
6862 /* This only occurs if there was an error in the template
6863 parameter list itself (which we would already have
6864 reported) that we are trying to recover from, e.g., a class
6865 template with a parameter list such as
6866 template<typename..., typename>. */
6867 ++lost;
6868 else
6869 arg = convert_template_argument (TREE_VALUE (parm),
6870 arg, new_args, complain,
6871 parm_idx, in_decl);
6872
6873 if (arg == error_mark_node)
6874 lost++;
6875 TREE_VEC_ELT (new_inner_args, arg_idx) = arg;
6876 }
6877 cp_unevaluated_operand = saved_unevaluated_operand;
6878 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
6879
6880 if (lost)
6881 return error_mark_node;
6882
6883 #ifdef ENABLE_CHECKING
6884 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
6885 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
6886 TREE_VEC_LENGTH (new_inner_args));
6887 #endif
6888
6889 return new_inner_args;
6890 }
6891
6892 /* Returns 1 if template args OT and NT are equivalent. */
6893
6894 static int
6895 template_args_equal (tree ot, tree nt)
6896 {
6897 if (nt == ot)
6898 return 1;
6899 if (nt == NULL_TREE || ot == NULL_TREE)
6900 return false;
6901
6902 if (TREE_CODE (nt) == TREE_VEC)
6903 /* For member templates */
6904 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
6905 else if (PACK_EXPANSION_P (ot))
6906 return (PACK_EXPANSION_P (nt)
6907 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
6908 PACK_EXPANSION_PATTERN (nt))
6909 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
6910 PACK_EXPANSION_EXTRA_ARGS (nt)));
6911 else if (ARGUMENT_PACK_P (ot))
6912 {
6913 int i, len;
6914 tree opack, npack;
6915
6916 if (!ARGUMENT_PACK_P (nt))
6917 return 0;
6918
6919 opack = ARGUMENT_PACK_ARGS (ot);
6920 npack = ARGUMENT_PACK_ARGS (nt);
6921 len = TREE_VEC_LENGTH (opack);
6922 if (TREE_VEC_LENGTH (npack) != len)
6923 return 0;
6924 for (i = 0; i < len; ++i)
6925 if (!template_args_equal (TREE_VEC_ELT (opack, i),
6926 TREE_VEC_ELT (npack, i)))
6927 return 0;
6928 return 1;
6929 }
6930 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
6931 {
6932 /* We get here probably because we are in the middle of substituting
6933 into the pattern of a pack expansion. In that case the
6934 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
6935 interested in. So we want to use the initial pack argument for
6936 the comparison. */
6937 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
6938 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
6939 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
6940 return template_args_equal (ot, nt);
6941 }
6942 else if (TYPE_P (nt))
6943 return TYPE_P (ot) && same_type_p (ot, nt);
6944 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
6945 return 0;
6946 else
6947 return cp_tree_equal (ot, nt);
6948 }
6949
6950 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
6951 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
6952 NEWARG_PTR with the offending arguments if they are non-NULL. */
6953
6954 static int
6955 comp_template_args_with_info (tree oldargs, tree newargs,
6956 tree *oldarg_ptr, tree *newarg_ptr)
6957 {
6958 int i;
6959
6960 if (oldargs == newargs)
6961 return 1;
6962
6963 if (!oldargs || !newargs)
6964 return 0;
6965
6966 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
6967 return 0;
6968
6969 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
6970 {
6971 tree nt = TREE_VEC_ELT (newargs, i);
6972 tree ot = TREE_VEC_ELT (oldargs, i);
6973
6974 if (! template_args_equal (ot, nt))
6975 {
6976 if (oldarg_ptr != NULL)
6977 *oldarg_ptr = ot;
6978 if (newarg_ptr != NULL)
6979 *newarg_ptr = nt;
6980 return 0;
6981 }
6982 }
6983 return 1;
6984 }
6985
6986 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
6987 of template arguments. Returns 0 otherwise. */
6988
6989 int
6990 comp_template_args (tree oldargs, tree newargs)
6991 {
6992 return comp_template_args_with_info (oldargs, newargs, NULL, NULL);
6993 }
6994
6995 static void
6996 add_pending_template (tree d)
6997 {
6998 tree ti = (TYPE_P (d)
6999 ? CLASSTYPE_TEMPLATE_INFO (d)
7000 : DECL_TEMPLATE_INFO (d));
7001 struct pending_template *pt;
7002 int level;
7003
7004 if (TI_PENDING_TEMPLATE_FLAG (ti))
7005 return;
7006
7007 /* We are called both from instantiate_decl, where we've already had a
7008 tinst_level pushed, and instantiate_template, where we haven't.
7009 Compensate. */
7010 level = !current_tinst_level || current_tinst_level->decl != d;
7011
7012 if (level)
7013 push_tinst_level (d);
7014
7015 pt = ggc_alloc_pending_template ();
7016 pt->next = NULL;
7017 pt->tinst = current_tinst_level;
7018 if (last_pending_template)
7019 last_pending_template->next = pt;
7020 else
7021 pending_templates = pt;
7022
7023 last_pending_template = pt;
7024
7025 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
7026
7027 if (level)
7028 pop_tinst_level ();
7029 }
7030
7031
7032 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
7033 ARGLIST. Valid choices for FNS are given in the cp-tree.def
7034 documentation for TEMPLATE_ID_EXPR. */
7035
7036 tree
7037 lookup_template_function (tree fns, tree arglist)
7038 {
7039 tree type;
7040
7041 if (fns == error_mark_node || arglist == error_mark_node)
7042 return error_mark_node;
7043
7044 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
7045
7046 if (!is_overloaded_fn (fns) && TREE_CODE (fns) != IDENTIFIER_NODE)
7047 {
7048 error ("%q#D is not a function template", fns);
7049 return error_mark_node;
7050 }
7051
7052 if (BASELINK_P (fns))
7053 {
7054 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
7055 unknown_type_node,
7056 BASELINK_FUNCTIONS (fns),
7057 arglist);
7058 return fns;
7059 }
7060
7061 type = TREE_TYPE (fns);
7062 if (TREE_CODE (fns) == OVERLOAD || !type)
7063 type = unknown_type_node;
7064
7065 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
7066 }
7067
7068 /* Within the scope of a template class S<T>, the name S gets bound
7069 (in build_self_reference) to a TYPE_DECL for the class, not a
7070 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
7071 or one of its enclosing classes, and that type is a template,
7072 return the associated TEMPLATE_DECL. Otherwise, the original
7073 DECL is returned.
7074
7075 Also handle the case when DECL is a TREE_LIST of ambiguous
7076 injected-class-names from different bases. */
7077
7078 tree
7079 maybe_get_template_decl_from_type_decl (tree decl)
7080 {
7081 if (decl == NULL_TREE)
7082 return decl;
7083
7084 /* DR 176: A lookup that finds an injected-class-name (10.2
7085 [class.member.lookup]) can result in an ambiguity in certain cases
7086 (for example, if it is found in more than one base class). If all of
7087 the injected-class-names that are found refer to specializations of
7088 the same class template, and if the name is followed by a
7089 template-argument-list, the reference refers to the class template
7090 itself and not a specialization thereof, and is not ambiguous. */
7091 if (TREE_CODE (decl) == TREE_LIST)
7092 {
7093 tree t, tmpl = NULL_TREE;
7094 for (t = decl; t; t = TREE_CHAIN (t))
7095 {
7096 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
7097 if (!tmpl)
7098 tmpl = elt;
7099 else if (tmpl != elt)
7100 break;
7101 }
7102 if (tmpl && t == NULL_TREE)
7103 return tmpl;
7104 else
7105 return decl;
7106 }
7107
7108 return (decl != NULL_TREE
7109 && DECL_SELF_REFERENCE_P (decl)
7110 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
7111 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
7112 }
7113
7114 /* Given an IDENTIFIER_NODE (type TEMPLATE_DECL) and a chain of
7115 parameters, find the desired type.
7116
7117 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
7118
7119 IN_DECL, if non-NULL, is the template declaration we are trying to
7120 instantiate.
7121
7122 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
7123 the class we are looking up.
7124
7125 Issue error and warning messages under control of COMPLAIN.
7126
7127 If the template class is really a local class in a template
7128 function, then the FUNCTION_CONTEXT is the function in which it is
7129 being instantiated.
7130
7131 ??? Note that this function is currently called *twice* for each
7132 template-id: the first time from the parser, while creating the
7133 incomplete type (finish_template_type), and the second type during the
7134 real instantiation (instantiate_template_class). This is surely something
7135 that we want to avoid. It also causes some problems with argument
7136 coercion (see convert_nontype_argument for more information on this). */
7137
7138 static tree
7139 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
7140 int entering_scope, tsubst_flags_t complain)
7141 {
7142 tree templ = NULL_TREE, parmlist;
7143 tree t;
7144 void **slot;
7145 spec_entry *entry;
7146 spec_entry elt;
7147 hashval_t hash;
7148
7149 if (TREE_CODE (d1) == IDENTIFIER_NODE)
7150 {
7151 tree value = innermost_non_namespace_value (d1);
7152 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
7153 templ = value;
7154 else
7155 {
7156 if (context)
7157 push_decl_namespace (context);
7158 templ = lookup_name (d1);
7159 templ = maybe_get_template_decl_from_type_decl (templ);
7160 if (context)
7161 pop_decl_namespace ();
7162 }
7163 if (templ)
7164 context = DECL_CONTEXT (templ);
7165 }
7166 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
7167 {
7168 tree type = TREE_TYPE (d1);
7169
7170 /* If we are declaring a constructor, say A<T>::A<T>, we will get
7171 an implicit typename for the second A. Deal with it. */
7172 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
7173 type = TREE_TYPE (type);
7174
7175 if (CLASSTYPE_TEMPLATE_INFO (type))
7176 {
7177 templ = CLASSTYPE_TI_TEMPLATE (type);
7178 d1 = DECL_NAME (templ);
7179 }
7180 }
7181 else if (TREE_CODE (d1) == ENUMERAL_TYPE
7182 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
7183 {
7184 templ = TYPE_TI_TEMPLATE (d1);
7185 d1 = DECL_NAME (templ);
7186 }
7187 else if (TREE_CODE (d1) == TEMPLATE_DECL
7188 && DECL_TEMPLATE_RESULT (d1)
7189 && TREE_CODE (DECL_TEMPLATE_RESULT (d1)) == TYPE_DECL)
7190 {
7191 templ = d1;
7192 d1 = DECL_NAME (templ);
7193 context = DECL_CONTEXT (templ);
7194 }
7195
7196 /* Issue an error message if we didn't find a template. */
7197 if (! templ)
7198 {
7199 if (complain & tf_error)
7200 error ("%qT is not a template", d1);
7201 return error_mark_node;
7202 }
7203
7204 if (TREE_CODE (templ) != TEMPLATE_DECL
7205 /* Make sure it's a user visible template, if it was named by
7206 the user. */
7207 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
7208 && !PRIMARY_TEMPLATE_P (templ)))
7209 {
7210 if (complain & tf_error)
7211 {
7212 error ("non-template type %qT used as a template", d1);
7213 if (in_decl)
7214 error ("for template declaration %q+D", in_decl);
7215 }
7216 return error_mark_node;
7217 }
7218
7219 complain &= ~tf_user;
7220
7221 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
7222 {
7223 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
7224 template arguments */
7225
7226 tree parm;
7227 tree arglist2;
7228 tree outer;
7229
7230 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
7231
7232 /* Consider an example where a template template parameter declared as
7233
7234 template <class T, class U = std::allocator<T> > class TT
7235
7236 The template parameter level of T and U are one level larger than
7237 of TT. To proper process the default argument of U, say when an
7238 instantiation `TT<int>' is seen, we need to build the full
7239 arguments containing {int} as the innermost level. Outer levels,
7240 available when not appearing as default template argument, can be
7241 obtained from the arguments of the enclosing template.
7242
7243 Suppose that TT is later substituted with std::vector. The above
7244 instantiation is `TT<int, std::allocator<T> >' with TT at
7245 level 1, and T at level 2, while the template arguments at level 1
7246 becomes {std::vector} and the inner level 2 is {int}. */
7247
7248 outer = DECL_CONTEXT (templ);
7249 if (outer)
7250 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
7251 else if (current_template_parms)
7252 /* This is an argument of the current template, so we haven't set
7253 DECL_CONTEXT yet. */
7254 outer = current_template_args ();
7255
7256 if (outer)
7257 arglist = add_to_template_args (outer, arglist);
7258
7259 arglist2 = coerce_template_parms (parmlist, arglist, templ,
7260 complain,
7261 /*require_all_args=*/true,
7262 /*use_default_args=*/true);
7263 if (arglist2 == error_mark_node
7264 || (!uses_template_parms (arglist2)
7265 && check_instantiated_args (templ, arglist2, complain)))
7266 return error_mark_node;
7267
7268 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
7269 return parm;
7270 }
7271 else
7272 {
7273 tree template_type = TREE_TYPE (templ);
7274 tree gen_tmpl;
7275 tree type_decl;
7276 tree found = NULL_TREE;
7277 int arg_depth;
7278 int parm_depth;
7279 int is_dependent_type;
7280 int use_partial_inst_tmpl = false;
7281
7282 if (template_type == error_mark_node)
7283 /* An error occured while building the template TEMPL, and a
7284 diagnostic has most certainly been emitted for that
7285 already. Let's propagate that error. */
7286 return error_mark_node;
7287
7288 gen_tmpl = most_general_template (templ);
7289 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
7290 parm_depth = TMPL_PARMS_DEPTH (parmlist);
7291 arg_depth = TMPL_ARGS_DEPTH (arglist);
7292
7293 if (arg_depth == 1 && parm_depth > 1)
7294 {
7295 /* We've been given an incomplete set of template arguments.
7296 For example, given:
7297
7298 template <class T> struct S1 {
7299 template <class U> struct S2 {};
7300 template <class U> struct S2<U*> {};
7301 };
7302
7303 we will be called with an ARGLIST of `U*', but the
7304 TEMPLATE will be `template <class T> template
7305 <class U> struct S1<T>::S2'. We must fill in the missing
7306 arguments. */
7307 arglist
7308 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
7309 arglist);
7310 arg_depth = TMPL_ARGS_DEPTH (arglist);
7311 }
7312
7313 /* Now we should have enough arguments. */
7314 gcc_assert (parm_depth == arg_depth);
7315
7316 /* From here on, we're only interested in the most general
7317 template. */
7318
7319 /* Calculate the BOUND_ARGS. These will be the args that are
7320 actually tsubst'd into the definition to create the
7321 instantiation. */
7322 if (parm_depth > 1)
7323 {
7324 /* We have multiple levels of arguments to coerce, at once. */
7325 int i;
7326 int saved_depth = TMPL_ARGS_DEPTH (arglist);
7327
7328 tree bound_args = make_tree_vec (parm_depth);
7329
7330 for (i = saved_depth,
7331 t = DECL_TEMPLATE_PARMS (gen_tmpl);
7332 i > 0 && t != NULL_TREE;
7333 --i, t = TREE_CHAIN (t))
7334 {
7335 tree a;
7336 if (i == saved_depth)
7337 a = coerce_template_parms (TREE_VALUE (t),
7338 arglist, gen_tmpl,
7339 complain,
7340 /*require_all_args=*/true,
7341 /*use_default_args=*/true);
7342 else
7343 /* Outer levels should have already been coerced. */
7344 a = TMPL_ARGS_LEVEL (arglist, i);
7345
7346 /* Don't process further if one of the levels fails. */
7347 if (a == error_mark_node)
7348 {
7349 /* Restore the ARGLIST to its full size. */
7350 TREE_VEC_LENGTH (arglist) = saved_depth;
7351 return error_mark_node;
7352 }
7353
7354 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
7355
7356 /* We temporarily reduce the length of the ARGLIST so
7357 that coerce_template_parms will see only the arguments
7358 corresponding to the template parameters it is
7359 examining. */
7360 TREE_VEC_LENGTH (arglist)--;
7361 }
7362
7363 /* Restore the ARGLIST to its full size. */
7364 TREE_VEC_LENGTH (arglist) = saved_depth;
7365
7366 arglist = bound_args;
7367 }
7368 else
7369 arglist
7370 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
7371 INNERMOST_TEMPLATE_ARGS (arglist),
7372 gen_tmpl,
7373 complain,
7374 /*require_all_args=*/true,
7375 /*use_default_args=*/true);
7376
7377 if (arglist == error_mark_node)
7378 /* We were unable to bind the arguments. */
7379 return error_mark_node;
7380
7381 /* In the scope of a template class, explicit references to the
7382 template class refer to the type of the template, not any
7383 instantiation of it. For example, in:
7384
7385 template <class T> class C { void f(C<T>); }
7386
7387 the `C<T>' is just the same as `C'. Outside of the
7388 class, however, such a reference is an instantiation. */
7389 if ((entering_scope
7390 || !PRIMARY_TEMPLATE_P (gen_tmpl)
7391 || currently_open_class (template_type))
7392 /* comp_template_args is expensive, check it last. */
7393 && comp_template_args (TYPE_TI_ARGS (template_type),
7394 arglist))
7395 return template_type;
7396
7397 /* If we already have this specialization, return it. */
7398 elt.tmpl = gen_tmpl;
7399 elt.args = arglist;
7400 hash = hash_specialization (&elt);
7401 entry = (spec_entry *) htab_find_with_hash (type_specializations,
7402 &elt, hash);
7403
7404 if (entry)
7405 return entry->spec;
7406
7407 is_dependent_type = uses_template_parms (arglist);
7408
7409 /* If the deduced arguments are invalid, then the binding
7410 failed. */
7411 if (!is_dependent_type
7412 && check_instantiated_args (gen_tmpl,
7413 INNERMOST_TEMPLATE_ARGS (arglist),
7414 complain))
7415 return error_mark_node;
7416
7417 if (!is_dependent_type
7418 && !PRIMARY_TEMPLATE_P (gen_tmpl)
7419 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
7420 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
7421 {
7422 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
7423 DECL_NAME (gen_tmpl),
7424 /*tag_scope=*/ts_global);
7425 return found;
7426 }
7427
7428 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
7429 complain, in_decl);
7430 if (!context)
7431 context = global_namespace;
7432
7433 /* Create the type. */
7434 if (TREE_CODE (template_type) == ENUMERAL_TYPE)
7435 {
7436 if (!is_dependent_type)
7437 {
7438 set_current_access_from_decl (TYPE_NAME (template_type));
7439 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
7440 tsubst (ENUM_UNDERLYING_TYPE (template_type),
7441 arglist, complain, in_decl),
7442 SCOPED_ENUM_P (template_type), NULL);
7443 }
7444 else
7445 {
7446 /* We don't want to call start_enum for this type, since
7447 the values for the enumeration constants may involve
7448 template parameters. And, no one should be interested
7449 in the enumeration constants for such a type. */
7450 t = cxx_make_type (ENUMERAL_TYPE);
7451 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
7452 }
7453 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
7454 ENUM_FIXED_UNDERLYING_TYPE_P (t)
7455 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
7456 }
7457 else if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7458 {
7459 /* The user referred to a specialization of an alias
7460 template represented by GEN_TMPL.
7461
7462 [temp.alias]/2 says:
7463
7464 When a template-id refers to the specialization of an
7465 alias template, it is equivalent to the associated
7466 type obtained by substitution of its
7467 template-arguments for the template-parameters in the
7468 type-id of the alias template. */
7469
7470 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
7471 /* Note that the call above (by indirectly calling
7472 register_specialization in tsubst_decl) registers the
7473 TYPE_DECL representing the specialization of the alias
7474 template. So next time someone substitutes ARGLIST for
7475 the template parms into the alias template (GEN_TMPL),
7476 she'll get that TYPE_DECL back. */
7477
7478 if (t == error_mark_node)
7479 return t;
7480 }
7481 else if (CLASS_TYPE_P (template_type))
7482 {
7483 t = make_class_type (TREE_CODE (template_type));
7484 CLASSTYPE_DECLARED_CLASS (t)
7485 = CLASSTYPE_DECLARED_CLASS (template_type);
7486 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
7487 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
7488
7489 /* A local class. Make sure the decl gets registered properly. */
7490 if (context == current_function_decl)
7491 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
7492
7493 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
7494 /* This instantiation is another name for the primary
7495 template type. Set the TYPE_CANONICAL field
7496 appropriately. */
7497 TYPE_CANONICAL (t) = template_type;
7498 else if (any_template_arguments_need_structural_equality_p (arglist))
7499 /* Some of the template arguments require structural
7500 equality testing, so this template class requires
7501 structural equality testing. */
7502 SET_TYPE_STRUCTURAL_EQUALITY (t);
7503 }
7504 else
7505 gcc_unreachable ();
7506
7507 /* If we called start_enum or pushtag above, this information
7508 will already be set up. */
7509 if (!TYPE_NAME (t))
7510 {
7511 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
7512
7513 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
7514 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
7515 DECL_SOURCE_LOCATION (type_decl)
7516 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
7517 }
7518 else
7519 type_decl = TYPE_NAME (t);
7520
7521 if (CLASS_TYPE_P (template_type))
7522 {
7523 TREE_PRIVATE (type_decl)
7524 = TREE_PRIVATE (TYPE_STUB_DECL (template_type));
7525 TREE_PROTECTED (type_decl)
7526 = TREE_PROTECTED (TYPE_STUB_DECL (template_type));
7527 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
7528 {
7529 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
7530 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
7531 }
7532 }
7533
7534 /* Let's consider the explicit specialization of a member
7535 of a class template specialization that is implicitely instantiated,
7536 e.g.:
7537 template<class T>
7538 struct S
7539 {
7540 template<class U> struct M {}; //#0
7541 };
7542
7543 template<>
7544 template<>
7545 struct S<int>::M<char> //#1
7546 {
7547 int i;
7548 };
7549 [temp.expl.spec]/4 says this is valid.
7550
7551 In this case, when we write:
7552 S<int>::M<char> m;
7553
7554 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
7555 the one of #0.
7556
7557 When we encounter #1, we want to store the partial instantiation
7558 of M (template<class T> S<int>::M<T>) in it's CLASSTYPE_TI_TEMPLATE.
7559
7560 For all cases other than this "explicit specialization of member of a
7561 class template", we just want to store the most general template into
7562 the CLASSTYPE_TI_TEMPLATE of M.
7563
7564 This case of "explicit specialization of member of a class template"
7565 only happens when:
7566 1/ the enclosing class is an instantiation of, and therefore not
7567 the same as, the context of the most general template, and
7568 2/ we aren't looking at the partial instantiation itself, i.e.
7569 the innermost arguments are not the same as the innermost parms of
7570 the most general template.
7571
7572 So it's only when 1/ and 2/ happens that we want to use the partial
7573 instantiation of the member template in lieu of its most general
7574 template. */
7575
7576 if (PRIMARY_TEMPLATE_P (gen_tmpl)
7577 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
7578 /* the enclosing class must be an instantiation... */
7579 && CLASS_TYPE_P (context)
7580 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
7581 {
7582 tree partial_inst_args;
7583 TREE_VEC_LENGTH (arglist)--;
7584 ++processing_template_decl;
7585 partial_inst_args =
7586 tsubst (INNERMOST_TEMPLATE_ARGS
7587 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
7588 arglist, complain, NULL_TREE);
7589 --processing_template_decl;
7590 TREE_VEC_LENGTH (arglist)++;
7591 use_partial_inst_tmpl =
7592 /*...and we must not be looking at the partial instantiation
7593 itself. */
7594 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
7595 partial_inst_args);
7596 }
7597
7598 if (!use_partial_inst_tmpl)
7599 /* This case is easy; there are no member templates involved. */
7600 found = gen_tmpl;
7601 else
7602 {
7603 /* This is a full instantiation of a member template. Find
7604 the partial instantiation of which this is an instance. */
7605
7606 /* Temporarily reduce by one the number of levels in the ARGLIST
7607 so as to avoid comparing the last set of arguments. */
7608 TREE_VEC_LENGTH (arglist)--;
7609 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
7610 TREE_VEC_LENGTH (arglist)++;
7611 /* FOUND is either a proper class type, or an alias
7612 template specialization. In the later case, it's a
7613 TYPE_DECL, resulting from the substituting of arguments
7614 for parameters in the TYPE_DECL of the alias template
7615 done earlier. So be careful while getting the template
7616 of FOUND. */
7617 found = TREE_CODE (found) == TYPE_DECL
7618 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
7619 : CLASSTYPE_TI_TEMPLATE (found);
7620 }
7621
7622 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
7623
7624 elt.spec = t;
7625 slot = htab_find_slot_with_hash (type_specializations,
7626 &elt, hash, INSERT);
7627 entry = ggc_alloc_spec_entry ();
7628 *entry = elt;
7629 *slot = entry;
7630
7631 /* Note this use of the partial instantiation so we can check it
7632 later in maybe_process_partial_specialization. */
7633 DECL_TEMPLATE_INSTANTIATIONS (templ)
7634 = tree_cons (arglist, t,
7635 DECL_TEMPLATE_INSTANTIATIONS (templ));
7636
7637 if (TREE_CODE (t) == ENUMERAL_TYPE && !is_dependent_type)
7638 /* Now that the type has been registered on the instantiations
7639 list, we set up the enumerators. Because the enumeration
7640 constants may involve the enumeration type itself, we make
7641 sure to register the type first, and then create the
7642 constants. That way, doing tsubst_expr for the enumeration
7643 constants won't result in recursive calls here; we'll find
7644 the instantiation and exit above. */
7645 tsubst_enum (template_type, t, arglist);
7646
7647 if (CLASS_TYPE_P (template_type) && is_dependent_type)
7648 /* If the type makes use of template parameters, the
7649 code that generates debugging information will crash. */
7650 DECL_IGNORED_P (TYPE_STUB_DECL (t)) = 1;
7651
7652 /* Possibly limit visibility based on template args. */
7653 TREE_PUBLIC (type_decl) = 1;
7654 determine_visibility (type_decl);
7655
7656 return t;
7657 }
7658 }
7659
7660 /* Wrapper for lookup_template_class_1. */
7661
7662 tree
7663 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
7664 int entering_scope, tsubst_flags_t complain)
7665 {
7666 tree ret;
7667 timevar_push (TV_TEMPLATE_INST);
7668 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
7669 entering_scope, complain);
7670 timevar_pop (TV_TEMPLATE_INST);
7671 return ret;
7672 }
7673 \f
7674 struct pair_fn_data
7675 {
7676 tree_fn_t fn;
7677 void *data;
7678 /* True when we should also visit template parameters that occur in
7679 non-deduced contexts. */
7680 bool include_nondeduced_p;
7681 struct pointer_set_t *visited;
7682 };
7683
7684 /* Called from for_each_template_parm via walk_tree. */
7685
7686 static tree
7687 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
7688 {
7689 tree t = *tp;
7690 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
7691 tree_fn_t fn = pfd->fn;
7692 void *data = pfd->data;
7693
7694 if (TYPE_P (t)
7695 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE)
7696 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited,
7697 pfd->include_nondeduced_p))
7698 return error_mark_node;
7699
7700 switch (TREE_CODE (t))
7701 {
7702 case RECORD_TYPE:
7703 if (TYPE_PTRMEMFUNC_P (t))
7704 break;
7705 /* Fall through. */
7706
7707 case UNION_TYPE:
7708 case ENUMERAL_TYPE:
7709 if (!TYPE_TEMPLATE_INFO (t))
7710 *walk_subtrees = 0;
7711 else if (for_each_template_parm (TI_ARGS (TYPE_TEMPLATE_INFO (t)),
7712 fn, data, pfd->visited,
7713 pfd->include_nondeduced_p))
7714 return error_mark_node;
7715 break;
7716
7717 case INTEGER_TYPE:
7718 if (for_each_template_parm (TYPE_MIN_VALUE (t),
7719 fn, data, pfd->visited,
7720 pfd->include_nondeduced_p)
7721 || for_each_template_parm (TYPE_MAX_VALUE (t),
7722 fn, data, pfd->visited,
7723 pfd->include_nondeduced_p))
7724 return error_mark_node;
7725 break;
7726
7727 case METHOD_TYPE:
7728 /* Since we're not going to walk subtrees, we have to do this
7729 explicitly here. */
7730 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
7731 pfd->visited, pfd->include_nondeduced_p))
7732 return error_mark_node;
7733 /* Fall through. */
7734
7735 case FUNCTION_TYPE:
7736 /* Check the return type. */
7737 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
7738 pfd->include_nondeduced_p))
7739 return error_mark_node;
7740
7741 /* Check the parameter types. Since default arguments are not
7742 instantiated until they are needed, the TYPE_ARG_TYPES may
7743 contain expressions that involve template parameters. But,
7744 no-one should be looking at them yet. And, once they're
7745 instantiated, they don't contain template parameters, so
7746 there's no point in looking at them then, either. */
7747 {
7748 tree parm;
7749
7750 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
7751 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
7752 pfd->visited, pfd->include_nondeduced_p))
7753 return error_mark_node;
7754
7755 /* Since we've already handled the TYPE_ARG_TYPES, we don't
7756 want walk_tree walking into them itself. */
7757 *walk_subtrees = 0;
7758 }
7759 break;
7760
7761 case TYPEOF_TYPE:
7762 case UNDERLYING_TYPE:
7763 if (pfd->include_nondeduced_p
7764 && for_each_template_parm (TYPE_FIELDS (t), fn, data,
7765 pfd->visited,
7766 pfd->include_nondeduced_p))
7767 return error_mark_node;
7768 break;
7769
7770 case FUNCTION_DECL:
7771 case VAR_DECL:
7772 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
7773 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
7774 pfd->visited, pfd->include_nondeduced_p))
7775 return error_mark_node;
7776 /* Fall through. */
7777
7778 case PARM_DECL:
7779 case CONST_DECL:
7780 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
7781 && for_each_template_parm (DECL_INITIAL (t), fn, data,
7782 pfd->visited, pfd->include_nondeduced_p))
7783 return error_mark_node;
7784 if (DECL_CONTEXT (t)
7785 && pfd->include_nondeduced_p
7786 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
7787 pfd->visited, pfd->include_nondeduced_p))
7788 return error_mark_node;
7789 break;
7790
7791 case BOUND_TEMPLATE_TEMPLATE_PARM:
7792 /* Record template parameters such as `T' inside `TT<T>'. */
7793 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited,
7794 pfd->include_nondeduced_p))
7795 return error_mark_node;
7796 /* Fall through. */
7797
7798 case TEMPLATE_TEMPLATE_PARM:
7799 case TEMPLATE_TYPE_PARM:
7800 case TEMPLATE_PARM_INDEX:
7801 if (fn && (*fn)(t, data))
7802 return error_mark_node;
7803 else if (!fn)
7804 return error_mark_node;
7805 break;
7806
7807 case TEMPLATE_DECL:
7808 /* A template template parameter is encountered. */
7809 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
7810 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
7811 pfd->include_nondeduced_p))
7812 return error_mark_node;
7813
7814 /* Already substituted template template parameter */
7815 *walk_subtrees = 0;
7816 break;
7817
7818 case TYPENAME_TYPE:
7819 if (!fn
7820 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
7821 data, pfd->visited,
7822 pfd->include_nondeduced_p))
7823 return error_mark_node;
7824 break;
7825
7826 case CONSTRUCTOR:
7827 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
7828 && pfd->include_nondeduced_p
7829 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
7830 (TREE_TYPE (t)), fn, data,
7831 pfd->visited, pfd->include_nondeduced_p))
7832 return error_mark_node;
7833 break;
7834
7835 case INDIRECT_REF:
7836 case COMPONENT_REF:
7837 /* If there's no type, then this thing must be some expression
7838 involving template parameters. */
7839 if (!fn && !TREE_TYPE (t))
7840 return error_mark_node;
7841 break;
7842
7843 case MODOP_EXPR:
7844 case CAST_EXPR:
7845 case IMPLICIT_CONV_EXPR:
7846 case REINTERPRET_CAST_EXPR:
7847 case CONST_CAST_EXPR:
7848 case STATIC_CAST_EXPR:
7849 case DYNAMIC_CAST_EXPR:
7850 case ARROW_EXPR:
7851 case DOTSTAR_EXPR:
7852 case TYPEID_EXPR:
7853 case PSEUDO_DTOR_EXPR:
7854 if (!fn)
7855 return error_mark_node;
7856 break;
7857
7858 default:
7859 break;
7860 }
7861
7862 /* We didn't find any template parameters we liked. */
7863 return NULL_TREE;
7864 }
7865
7866 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
7867 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
7868 call FN with the parameter and the DATA.
7869 If FN returns nonzero, the iteration is terminated, and
7870 for_each_template_parm returns 1. Otherwise, the iteration
7871 continues. If FN never returns a nonzero value, the value
7872 returned by for_each_template_parm is 0. If FN is NULL, it is
7873 considered to be the function which always returns 1.
7874
7875 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
7876 parameters that occur in non-deduced contexts. When false, only
7877 visits those template parameters that can be deduced. */
7878
7879 static int
7880 for_each_template_parm (tree t, tree_fn_t fn, void* data,
7881 struct pointer_set_t *visited,
7882 bool include_nondeduced_p)
7883 {
7884 struct pair_fn_data pfd;
7885 int result;
7886
7887 /* Set up. */
7888 pfd.fn = fn;
7889 pfd.data = data;
7890 pfd.include_nondeduced_p = include_nondeduced_p;
7891
7892 /* Walk the tree. (Conceptually, we would like to walk without
7893 duplicates, but for_each_template_parm_r recursively calls
7894 for_each_template_parm, so we would need to reorganize a fair
7895 bit to use walk_tree_without_duplicates, so we keep our own
7896 visited list.) */
7897 if (visited)
7898 pfd.visited = visited;
7899 else
7900 pfd.visited = pointer_set_create ();
7901 result = cp_walk_tree (&t,
7902 for_each_template_parm_r,
7903 &pfd,
7904 pfd.visited) != NULL_TREE;
7905
7906 /* Clean up. */
7907 if (!visited)
7908 {
7909 pointer_set_destroy (pfd.visited);
7910 pfd.visited = 0;
7911 }
7912
7913 return result;
7914 }
7915
7916 /* Returns true if T depends on any template parameter. */
7917
7918 int
7919 uses_template_parms (tree t)
7920 {
7921 bool dependent_p;
7922 int saved_processing_template_decl;
7923
7924 saved_processing_template_decl = processing_template_decl;
7925 if (!saved_processing_template_decl)
7926 processing_template_decl = 1;
7927 if (TYPE_P (t))
7928 dependent_p = dependent_type_p (t);
7929 else if (TREE_CODE (t) == TREE_VEC)
7930 dependent_p = any_dependent_template_arguments_p (t);
7931 else if (TREE_CODE (t) == TREE_LIST)
7932 dependent_p = (uses_template_parms (TREE_VALUE (t))
7933 || uses_template_parms (TREE_CHAIN (t)));
7934 else if (TREE_CODE (t) == TYPE_DECL)
7935 dependent_p = dependent_type_p (TREE_TYPE (t));
7936 else if (DECL_P (t)
7937 || EXPR_P (t)
7938 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
7939 || TREE_CODE (t) == OVERLOAD
7940 || BASELINK_P (t)
7941 || TREE_CODE (t) == IDENTIFIER_NODE
7942 || TREE_CODE (t) == TRAIT_EXPR
7943 || TREE_CODE (t) == CONSTRUCTOR
7944 || CONSTANT_CLASS_P (t))
7945 dependent_p = (type_dependent_expression_p (t)
7946 || value_dependent_expression_p (t));
7947 else
7948 {
7949 gcc_assert (t == error_mark_node);
7950 dependent_p = false;
7951 }
7952
7953 processing_template_decl = saved_processing_template_decl;
7954
7955 return dependent_p;
7956 }
7957
7958 /* Returns true if T depends on any template parameter with level LEVEL. */
7959
7960 int
7961 uses_template_parms_level (tree t, int level)
7962 {
7963 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
7964 /*include_nondeduced_p=*/true);
7965 }
7966
7967 /* Returns TRUE iff INST is an instantiation we don't need to do in an
7968 ill-formed translation unit, i.e. a variable or function that isn't
7969 usable in a constant expression. */
7970
7971 static inline bool
7972 neglectable_inst_p (tree d)
7973 {
7974 return (DECL_P (d)
7975 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
7976 : decl_maybe_constant_var_p (d)));
7977 }
7978
7979 /* Returns TRUE iff we should refuse to instantiate DECL because it's
7980 neglectable and instantiated from within an erroneous instantiation. */
7981
7982 static bool
7983 limit_bad_template_recursion (tree decl)
7984 {
7985 struct tinst_level *lev = current_tinst_level;
7986 int errs = errorcount + sorrycount;
7987 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
7988 return false;
7989
7990 for (; lev; lev = lev->next)
7991 if (neglectable_inst_p (lev->decl))
7992 break;
7993
7994 return (lev && errs > lev->errors);
7995 }
7996
7997 static int tinst_depth;
7998 extern int max_tinst_depth;
7999 #ifdef GATHER_STATISTICS
8000 int depth_reached;
8001 #endif
8002 static GTY(()) struct tinst_level *last_error_tinst_level;
8003
8004 /* We're starting to instantiate D; record the template instantiation context
8005 for diagnostics and to restore it later. */
8006
8007 int
8008 push_tinst_level (tree d)
8009 {
8010 struct tinst_level *new_level;
8011
8012 if (tinst_depth >= max_tinst_depth)
8013 {
8014 last_error_tinst_level = current_tinst_level;
8015 if (TREE_CODE (d) == TREE_LIST)
8016 error ("template instantiation depth exceeds maximum of %d (use "
8017 "-ftemplate-depth= to increase the maximum) substituting %qS",
8018 max_tinst_depth, d);
8019 else
8020 error ("template instantiation depth exceeds maximum of %d (use "
8021 "-ftemplate-depth= to increase the maximum) instantiating %qD",
8022 max_tinst_depth, d);
8023
8024 print_instantiation_context ();
8025
8026 return 0;
8027 }
8028
8029 /* If the current instantiation caused problems, don't let it instantiate
8030 anything else. Do allow deduction substitution and decls usable in
8031 constant expressions. */
8032 if (limit_bad_template_recursion (d))
8033 return 0;
8034
8035 new_level = ggc_alloc_tinst_level ();
8036 new_level->decl = d;
8037 new_level->locus = input_location;
8038 new_level->errors = errorcount+sorrycount;
8039 new_level->in_system_header_p = in_system_header;
8040 new_level->next = current_tinst_level;
8041 current_tinst_level = new_level;
8042
8043 ++tinst_depth;
8044 #ifdef GATHER_STATISTICS
8045 if (tinst_depth > depth_reached)
8046 depth_reached = tinst_depth;
8047 #endif
8048
8049 return 1;
8050 }
8051
8052 /* We're done instantiating this template; return to the instantiation
8053 context. */
8054
8055 void
8056 pop_tinst_level (void)
8057 {
8058 /* Restore the filename and line number stashed away when we started
8059 this instantiation. */
8060 input_location = current_tinst_level->locus;
8061 current_tinst_level = current_tinst_level->next;
8062 --tinst_depth;
8063 }
8064
8065 /* We're instantiating a deferred template; restore the template
8066 instantiation context in which the instantiation was requested, which
8067 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
8068
8069 static tree
8070 reopen_tinst_level (struct tinst_level *level)
8071 {
8072 struct tinst_level *t;
8073
8074 tinst_depth = 0;
8075 for (t = level; t; t = t->next)
8076 ++tinst_depth;
8077
8078 current_tinst_level = level;
8079 pop_tinst_level ();
8080 if (current_tinst_level)
8081 current_tinst_level->errors = errorcount+sorrycount;
8082 return level->decl;
8083 }
8084
8085 /* Returns the TINST_LEVEL which gives the original instantiation
8086 context. */
8087
8088 struct tinst_level *
8089 outermost_tinst_level (void)
8090 {
8091 struct tinst_level *level = current_tinst_level;
8092 if (level)
8093 while (level->next)
8094 level = level->next;
8095 return level;
8096 }
8097
8098 /* Returns TRUE if PARM is a parameter of the template TEMPL. */
8099
8100 bool
8101 parameter_of_template_p (tree parm, tree templ)
8102 {
8103 tree parms;
8104 int i;
8105
8106 if (!parm || !templ)
8107 return false;
8108
8109 gcc_assert (DECL_TEMPLATE_PARM_P (parm));
8110 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
8111
8112 parms = DECL_TEMPLATE_PARMS (templ);
8113 parms = INNERMOST_TEMPLATE_PARMS (parms);
8114
8115 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
8116 {
8117 tree p = TREE_VALUE (TREE_VEC_ELT (parms, i));
8118 if (parm == p
8119 || (DECL_INITIAL (parm)
8120 && DECL_INITIAL (parm) == DECL_INITIAL (p)))
8121 return true;
8122 }
8123
8124 return false;
8125 }
8126
8127 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
8128 vector of template arguments, as for tsubst.
8129
8130 Returns an appropriate tsubst'd friend declaration. */
8131
8132 static tree
8133 tsubst_friend_function (tree decl, tree args)
8134 {
8135 tree new_friend;
8136
8137 if (TREE_CODE (decl) == FUNCTION_DECL
8138 && DECL_TEMPLATE_INSTANTIATION (decl)
8139 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
8140 /* This was a friend declared with an explicit template
8141 argument list, e.g.:
8142
8143 friend void f<>(T);
8144
8145 to indicate that f was a template instantiation, not a new
8146 function declaration. Now, we have to figure out what
8147 instantiation of what template. */
8148 {
8149 tree template_id, arglist, fns;
8150 tree new_args;
8151 tree tmpl;
8152 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
8153
8154 /* Friend functions are looked up in the containing namespace scope.
8155 We must enter that scope, to avoid finding member functions of the
8156 current class with same name. */
8157 push_nested_namespace (ns);
8158 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
8159 tf_warning_or_error, NULL_TREE,
8160 /*integral_constant_expression_p=*/false);
8161 pop_nested_namespace (ns);
8162 arglist = tsubst (DECL_TI_ARGS (decl), args,
8163 tf_warning_or_error, NULL_TREE);
8164 template_id = lookup_template_function (fns, arglist);
8165
8166 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8167 tmpl = determine_specialization (template_id, new_friend,
8168 &new_args,
8169 /*need_member_template=*/0,
8170 TREE_VEC_LENGTH (args),
8171 tsk_none);
8172 return instantiate_template (tmpl, new_args, tf_error);
8173 }
8174
8175 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8176
8177 /* The NEW_FRIEND will look like an instantiation, to the
8178 compiler, but is not an instantiation from the point of view of
8179 the language. For example, we might have had:
8180
8181 template <class T> struct S {
8182 template <class U> friend void f(T, U);
8183 };
8184
8185 Then, in S<int>, template <class U> void f(int, U) is not an
8186 instantiation of anything. */
8187 if (new_friend == error_mark_node)
8188 return error_mark_node;
8189
8190 DECL_USE_TEMPLATE (new_friend) = 0;
8191 if (TREE_CODE (decl) == TEMPLATE_DECL)
8192 {
8193 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
8194 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
8195 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
8196 }
8197
8198 /* The mangled name for the NEW_FRIEND is incorrect. The function
8199 is not a template instantiation and should not be mangled like
8200 one. Therefore, we forget the mangling here; we'll recompute it
8201 later if we need it. */
8202 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
8203 {
8204 SET_DECL_RTL (new_friend, NULL);
8205 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
8206 }
8207
8208 if (DECL_NAMESPACE_SCOPE_P (new_friend))
8209 {
8210 tree old_decl;
8211 tree new_friend_template_info;
8212 tree new_friend_result_template_info;
8213 tree ns;
8214 int new_friend_is_defn;
8215
8216 /* We must save some information from NEW_FRIEND before calling
8217 duplicate decls since that function will free NEW_FRIEND if
8218 possible. */
8219 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
8220 new_friend_is_defn =
8221 (DECL_INITIAL (DECL_TEMPLATE_RESULT
8222 (template_for_substitution (new_friend)))
8223 != NULL_TREE);
8224 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
8225 {
8226 /* This declaration is a `primary' template. */
8227 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
8228
8229 new_friend_result_template_info
8230 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
8231 }
8232 else
8233 new_friend_result_template_info = NULL_TREE;
8234
8235 /* Make the init_value nonzero so pushdecl knows this is a defn. */
8236 if (new_friend_is_defn)
8237 DECL_INITIAL (new_friend) = error_mark_node;
8238
8239 /* Inside pushdecl_namespace_level, we will push into the
8240 current namespace. However, the friend function should go
8241 into the namespace of the template. */
8242 ns = decl_namespace_context (new_friend);
8243 push_nested_namespace (ns);
8244 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
8245 pop_nested_namespace (ns);
8246
8247 if (old_decl == error_mark_node)
8248 return error_mark_node;
8249
8250 if (old_decl != new_friend)
8251 {
8252 /* This new friend declaration matched an existing
8253 declaration. For example, given:
8254
8255 template <class T> void f(T);
8256 template <class U> class C {
8257 template <class T> friend void f(T) {}
8258 };
8259
8260 the friend declaration actually provides the definition
8261 of `f', once C has been instantiated for some type. So,
8262 old_decl will be the out-of-class template declaration,
8263 while new_friend is the in-class definition.
8264
8265 But, if `f' was called before this point, the
8266 instantiation of `f' will have DECL_TI_ARGS corresponding
8267 to `T' but not to `U', references to which might appear
8268 in the definition of `f'. Previously, the most general
8269 template for an instantiation of `f' was the out-of-class
8270 version; now it is the in-class version. Therefore, we
8271 run through all specialization of `f', adding to their
8272 DECL_TI_ARGS appropriately. In particular, they need a
8273 new set of outer arguments, corresponding to the
8274 arguments for this class instantiation.
8275
8276 The same situation can arise with something like this:
8277
8278 friend void f(int);
8279 template <class T> class C {
8280 friend void f(T) {}
8281 };
8282
8283 when `C<int>' is instantiated. Now, `f(int)' is defined
8284 in the class. */
8285
8286 if (!new_friend_is_defn)
8287 /* On the other hand, if the in-class declaration does
8288 *not* provide a definition, then we don't want to alter
8289 existing definitions. We can just leave everything
8290 alone. */
8291 ;
8292 else
8293 {
8294 tree new_template = TI_TEMPLATE (new_friend_template_info);
8295 tree new_args = TI_ARGS (new_friend_template_info);
8296
8297 /* Overwrite whatever template info was there before, if
8298 any, with the new template information pertaining to
8299 the declaration. */
8300 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
8301
8302 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
8303 {
8304 /* We should have called reregister_specialization in
8305 duplicate_decls. */
8306 gcc_assert (retrieve_specialization (new_template,
8307 new_args, 0)
8308 == old_decl);
8309
8310 /* Instantiate it if the global has already been used. */
8311 if (DECL_ODR_USED (old_decl))
8312 instantiate_decl (old_decl, /*defer_ok=*/true,
8313 /*expl_inst_class_mem_p=*/false);
8314 }
8315 else
8316 {
8317 tree t;
8318
8319 /* Indicate that the old function template is a partial
8320 instantiation. */
8321 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
8322 = new_friend_result_template_info;
8323
8324 gcc_assert (new_template
8325 == most_general_template (new_template));
8326 gcc_assert (new_template != old_decl);
8327
8328 /* Reassign any specializations already in the hash table
8329 to the new more general template, and add the
8330 additional template args. */
8331 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
8332 t != NULL_TREE;
8333 t = TREE_CHAIN (t))
8334 {
8335 tree spec = TREE_VALUE (t);
8336 spec_entry elt;
8337
8338 elt.tmpl = old_decl;
8339 elt.args = DECL_TI_ARGS (spec);
8340 elt.spec = NULL_TREE;
8341
8342 htab_remove_elt (decl_specializations, &elt);
8343
8344 DECL_TI_ARGS (spec)
8345 = add_outermost_template_args (new_args,
8346 DECL_TI_ARGS (spec));
8347
8348 register_specialization
8349 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
8350
8351 }
8352 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
8353 }
8354 }
8355
8356 /* The information from NEW_FRIEND has been merged into OLD_DECL
8357 by duplicate_decls. */
8358 new_friend = old_decl;
8359 }
8360 }
8361 else
8362 {
8363 tree context = DECL_CONTEXT (new_friend);
8364 bool dependent_p;
8365
8366 /* In the code
8367 template <class T> class C {
8368 template <class U> friend void C1<U>::f (); // case 1
8369 friend void C2<T>::f (); // case 2
8370 };
8371 we only need to make sure CONTEXT is a complete type for
8372 case 2. To distinguish between the two cases, we note that
8373 CONTEXT of case 1 remains dependent type after tsubst while
8374 this isn't true for case 2. */
8375 ++processing_template_decl;
8376 dependent_p = dependent_type_p (context);
8377 --processing_template_decl;
8378
8379 if (!dependent_p
8380 && !complete_type_or_else (context, NULL_TREE))
8381 return error_mark_node;
8382
8383 if (COMPLETE_TYPE_P (context))
8384 {
8385 /* Check to see that the declaration is really present, and,
8386 possibly obtain an improved declaration. */
8387 tree fn = check_classfn (context,
8388 new_friend, NULL_TREE);
8389
8390 if (fn)
8391 new_friend = fn;
8392 }
8393 }
8394
8395 return new_friend;
8396 }
8397
8398 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
8399 template arguments, as for tsubst.
8400
8401 Returns an appropriate tsubst'd friend type or error_mark_node on
8402 failure. */
8403
8404 static tree
8405 tsubst_friend_class (tree friend_tmpl, tree args)
8406 {
8407 tree friend_type;
8408 tree tmpl;
8409 tree context;
8410
8411 context = CP_DECL_CONTEXT (friend_tmpl);
8412
8413 if (context != global_namespace)
8414 {
8415 if (TREE_CODE (context) == NAMESPACE_DECL)
8416 push_nested_namespace (context);
8417 else
8418 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
8419 }
8420
8421 /* Look for a class template declaration. We look for hidden names
8422 because two friend declarations of the same template are the
8423 same. For example, in:
8424
8425 struct A {
8426 template <typename> friend class F;
8427 };
8428 template <typename> struct B {
8429 template <typename> friend class F;
8430 };
8431
8432 both F templates are the same. */
8433 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
8434 /*block_p=*/true, 0,
8435 LOOKUP_COMPLAIN | LOOKUP_HIDDEN);
8436
8437 /* But, if we don't find one, it might be because we're in a
8438 situation like this:
8439
8440 template <class T>
8441 struct S {
8442 template <class U>
8443 friend struct S;
8444 };
8445
8446 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
8447 for `S<int>', not the TEMPLATE_DECL. */
8448 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
8449 {
8450 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
8451 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
8452 }
8453
8454 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
8455 {
8456 /* The friend template has already been declared. Just
8457 check to see that the declarations match, and install any new
8458 default parameters. We must tsubst the default parameters,
8459 of course. We only need the innermost template parameters
8460 because that is all that redeclare_class_template will look
8461 at. */
8462 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
8463 > TMPL_ARGS_DEPTH (args))
8464 {
8465 tree parms;
8466 location_t saved_input_location;
8467 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
8468 args, tf_warning_or_error);
8469
8470 saved_input_location = input_location;
8471 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
8472 redeclare_class_template (TREE_TYPE (tmpl), parms);
8473 input_location = saved_input_location;
8474
8475 }
8476
8477 friend_type = TREE_TYPE (tmpl);
8478 }
8479 else
8480 {
8481 /* The friend template has not already been declared. In this
8482 case, the instantiation of the template class will cause the
8483 injection of this template into the global scope. */
8484 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
8485 if (tmpl == error_mark_node)
8486 return error_mark_node;
8487
8488 /* The new TMPL is not an instantiation of anything, so we
8489 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
8490 the new type because that is supposed to be the corresponding
8491 template decl, i.e., TMPL. */
8492 DECL_USE_TEMPLATE (tmpl) = 0;
8493 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
8494 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
8495 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
8496 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
8497
8498 /* Inject this template into the global scope. */
8499 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
8500 }
8501
8502 if (context != global_namespace)
8503 {
8504 if (TREE_CODE (context) == NAMESPACE_DECL)
8505 pop_nested_namespace (context);
8506 else
8507 pop_nested_class ();
8508 }
8509
8510 return friend_type;
8511 }
8512
8513 /* Returns zero if TYPE cannot be completed later due to circularity.
8514 Otherwise returns one. */
8515
8516 static int
8517 can_complete_type_without_circularity (tree type)
8518 {
8519 if (type == NULL_TREE || type == error_mark_node)
8520 return 0;
8521 else if (COMPLETE_TYPE_P (type))
8522 return 1;
8523 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
8524 return can_complete_type_without_circularity (TREE_TYPE (type));
8525 else if (CLASS_TYPE_P (type)
8526 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
8527 return 0;
8528 else
8529 return 1;
8530 }
8531
8532 /* Apply any attributes which had to be deferred until instantiation
8533 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
8534 ARGS, COMPLAIN, IN_DECL are as tsubst. */
8535
8536 static void
8537 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
8538 tree args, tsubst_flags_t complain, tree in_decl)
8539 {
8540 tree last_dep = NULL_TREE;
8541 tree t;
8542 tree *p;
8543
8544 for (t = attributes; t; t = TREE_CHAIN (t))
8545 if (ATTR_IS_DEPENDENT (t))
8546 {
8547 last_dep = t;
8548 attributes = copy_list (attributes);
8549 break;
8550 }
8551
8552 if (DECL_P (*decl_p))
8553 {
8554 if (TREE_TYPE (*decl_p) == error_mark_node)
8555 return;
8556 p = &DECL_ATTRIBUTES (*decl_p);
8557 }
8558 else
8559 p = &TYPE_ATTRIBUTES (*decl_p);
8560
8561 if (last_dep)
8562 {
8563 tree late_attrs = NULL_TREE;
8564 tree *q = &late_attrs;
8565
8566 for (*p = attributes; *p; )
8567 {
8568 t = *p;
8569 if (ATTR_IS_DEPENDENT (t))
8570 {
8571 *p = TREE_CHAIN (t);
8572 TREE_CHAIN (t) = NULL_TREE;
8573 /* If the first attribute argument is an identifier, don't
8574 pass it through tsubst. Attributes like mode, format,
8575 cleanup and several target specific attributes expect it
8576 unmodified. */
8577 if (TREE_VALUE (t)
8578 && TREE_CODE (TREE_VALUE (t)) == TREE_LIST
8579 && TREE_VALUE (TREE_VALUE (t))
8580 && (TREE_CODE (TREE_VALUE (TREE_VALUE (t)))
8581 == IDENTIFIER_NODE))
8582 {
8583 tree chain
8584 = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain,
8585 in_decl,
8586 /*integral_constant_expression_p=*/false);
8587 if (chain != TREE_CHAIN (TREE_VALUE (t)))
8588 TREE_VALUE (t)
8589 = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)),
8590 chain);
8591 }
8592 else
8593 TREE_VALUE (t)
8594 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
8595 /*integral_constant_expression_p=*/false);
8596 *q = t;
8597 q = &TREE_CHAIN (t);
8598 }
8599 else
8600 p = &TREE_CHAIN (t);
8601 }
8602
8603 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
8604 }
8605 }
8606
8607 /* Perform (or defer) access check for typedefs that were referenced
8608 from within the template TMPL code.
8609 This is a subroutine of instantiate_template and instantiate_class_template.
8610 TMPL is the template to consider and TARGS is the list of arguments of
8611 that template. */
8612
8613 static void
8614 perform_typedefs_access_check (tree tmpl, tree targs)
8615 {
8616 location_t saved_location;
8617 int i;
8618 qualified_typedef_usage_t *iter;
8619
8620 if (!tmpl
8621 || (!CLASS_TYPE_P (tmpl)
8622 && TREE_CODE (tmpl) != FUNCTION_DECL))
8623 return;
8624
8625 saved_location = input_location;
8626 FOR_EACH_VEC_ELT (qualified_typedef_usage_t,
8627 get_types_needing_access_check (tmpl),
8628 i, iter)
8629 {
8630 tree type_decl = iter->typedef_decl;
8631 tree type_scope = iter->context;
8632
8633 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
8634 continue;
8635
8636 if (uses_template_parms (type_decl))
8637 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
8638 if (uses_template_parms (type_scope))
8639 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
8640
8641 /* Make access check error messages point to the location
8642 of the use of the typedef. */
8643 input_location = iter->locus;
8644 perform_or_defer_access_check (TYPE_BINFO (type_scope),
8645 type_decl, type_decl);
8646 }
8647 input_location = saved_location;
8648 }
8649
8650 static tree
8651 instantiate_class_template_1 (tree type)
8652 {
8653 tree templ, args, pattern, t, member;
8654 tree typedecl;
8655 tree pbinfo;
8656 tree base_list;
8657 unsigned int saved_maximum_field_alignment;
8658
8659 if (type == error_mark_node)
8660 return error_mark_node;
8661
8662 if (COMPLETE_OR_OPEN_TYPE_P (type)
8663 || uses_template_parms (type))
8664 return type;
8665
8666 /* Figure out which template is being instantiated. */
8667 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
8668 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
8669
8670 /* Determine what specialization of the original template to
8671 instantiate. */
8672 t = most_specialized_class (type, templ, tf_warning_or_error);
8673 if (t == error_mark_node)
8674 {
8675 TYPE_BEING_DEFINED (type) = 1;
8676 return error_mark_node;
8677 }
8678 else if (t)
8679 {
8680 /* This TYPE is actually an instantiation of a partial
8681 specialization. We replace the innermost set of ARGS with
8682 the arguments appropriate for substitution. For example,
8683 given:
8684
8685 template <class T> struct S {};
8686 template <class T> struct S<T*> {};
8687
8688 and supposing that we are instantiating S<int*>, ARGS will
8689 presently be {int*} -- but we need {int}. */
8690 pattern = TREE_TYPE (t);
8691 args = TREE_PURPOSE (t);
8692 }
8693 else
8694 {
8695 pattern = TREE_TYPE (templ);
8696 args = CLASSTYPE_TI_ARGS (type);
8697 }
8698
8699 /* If the template we're instantiating is incomplete, then clearly
8700 there's nothing we can do. */
8701 if (!COMPLETE_TYPE_P (pattern))
8702 return type;
8703
8704 /* If we've recursively instantiated too many templates, stop. */
8705 if (! push_tinst_level (type))
8706 return type;
8707
8708 /* Now we're really doing the instantiation. Mark the type as in
8709 the process of being defined. */
8710 TYPE_BEING_DEFINED (type) = 1;
8711
8712 /* We may be in the middle of deferred access check. Disable
8713 it now. */
8714 push_deferring_access_checks (dk_no_deferred);
8715
8716 push_to_top_level ();
8717 /* Use #pragma pack from the template context. */
8718 saved_maximum_field_alignment = maximum_field_alignment;
8719 maximum_field_alignment = TYPE_PRECISION (pattern);
8720
8721 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
8722
8723 /* Set the input location to the most specialized template definition.
8724 This is needed if tsubsting causes an error. */
8725 typedecl = TYPE_MAIN_DECL (pattern);
8726 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
8727 DECL_SOURCE_LOCATION (typedecl);
8728
8729 TYPE_PACKED (type) = TYPE_PACKED (pattern);
8730 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
8731 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
8732 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
8733 if (ANON_AGGR_TYPE_P (pattern))
8734 SET_ANON_AGGR_TYPE_P (type);
8735 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
8736 {
8737 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
8738 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
8739 /* Adjust visibility for template arguments. */
8740 determine_visibility (TYPE_MAIN_DECL (type));
8741 }
8742 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
8743
8744 pbinfo = TYPE_BINFO (pattern);
8745
8746 /* We should never instantiate a nested class before its enclosing
8747 class; we need to look up the nested class by name before we can
8748 instantiate it, and that lookup should instantiate the enclosing
8749 class. */
8750 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
8751 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
8752
8753 base_list = NULL_TREE;
8754 if (BINFO_N_BASE_BINFOS (pbinfo))
8755 {
8756 tree pbase_binfo;
8757 tree pushed_scope;
8758 int i;
8759
8760 /* We must enter the scope containing the type, as that is where
8761 the accessibility of types named in dependent bases are
8762 looked up from. */
8763 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
8764
8765 /* Substitute into each of the bases to determine the actual
8766 basetypes. */
8767 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
8768 {
8769 tree base;
8770 tree access = BINFO_BASE_ACCESS (pbinfo, i);
8771 tree expanded_bases = NULL_TREE;
8772 int idx, len = 1;
8773
8774 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
8775 {
8776 expanded_bases =
8777 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
8778 args, tf_error, NULL_TREE);
8779 if (expanded_bases == error_mark_node)
8780 continue;
8781
8782 len = TREE_VEC_LENGTH (expanded_bases);
8783 }
8784
8785 for (idx = 0; idx < len; idx++)
8786 {
8787 if (expanded_bases)
8788 /* Extract the already-expanded base class. */
8789 base = TREE_VEC_ELT (expanded_bases, idx);
8790 else
8791 /* Substitute to figure out the base class. */
8792 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
8793 NULL_TREE);
8794
8795 if (base == error_mark_node)
8796 continue;
8797
8798 base_list = tree_cons (access, base, base_list);
8799 if (BINFO_VIRTUAL_P (pbase_binfo))
8800 TREE_TYPE (base_list) = integer_type_node;
8801 }
8802 }
8803
8804 /* The list is now in reverse order; correct that. */
8805 base_list = nreverse (base_list);
8806
8807 if (pushed_scope)
8808 pop_scope (pushed_scope);
8809 }
8810 /* Now call xref_basetypes to set up all the base-class
8811 information. */
8812 xref_basetypes (type, base_list);
8813
8814 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
8815 (int) ATTR_FLAG_TYPE_IN_PLACE,
8816 args, tf_error, NULL_TREE);
8817 fixup_attribute_variants (type);
8818
8819 /* Now that our base classes are set up, enter the scope of the
8820 class, so that name lookups into base classes, etc. will work
8821 correctly. This is precisely analogous to what we do in
8822 begin_class_definition when defining an ordinary non-template
8823 class, except we also need to push the enclosing classes. */
8824 push_nested_class (type);
8825
8826 /* Now members are processed in the order of declaration. */
8827 for (member = CLASSTYPE_DECL_LIST (pattern);
8828 member; member = TREE_CHAIN (member))
8829 {
8830 tree t = TREE_VALUE (member);
8831
8832 if (TREE_PURPOSE (member))
8833 {
8834 if (TYPE_P (t))
8835 {
8836 /* Build new CLASSTYPE_NESTED_UTDS. */
8837
8838 tree newtag;
8839 bool class_template_p;
8840
8841 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
8842 && TYPE_LANG_SPECIFIC (t)
8843 && CLASSTYPE_IS_TEMPLATE (t));
8844 /* If the member is a class template, then -- even after
8845 substitution -- there may be dependent types in the
8846 template argument list for the class. We increment
8847 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
8848 that function will assume that no types are dependent
8849 when outside of a template. */
8850 if (class_template_p)
8851 ++processing_template_decl;
8852 newtag = tsubst (t, args, tf_error, NULL_TREE);
8853 if (class_template_p)
8854 --processing_template_decl;
8855 if (newtag == error_mark_node)
8856 continue;
8857
8858 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
8859 {
8860 tree name = TYPE_IDENTIFIER (t);
8861
8862 if (class_template_p)
8863 /* Unfortunately, lookup_template_class sets
8864 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
8865 instantiation (i.e., for the type of a member
8866 template class nested within a template class.)
8867 This behavior is required for
8868 maybe_process_partial_specialization to work
8869 correctly, but is not accurate in this case;
8870 the TAG is not an instantiation of anything.
8871 (The corresponding TEMPLATE_DECL is an
8872 instantiation, but the TYPE is not.) */
8873 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
8874
8875 /* Now, we call pushtag to put this NEWTAG into the scope of
8876 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
8877 pushtag calling push_template_decl. We don't have to do
8878 this for enums because it will already have been done in
8879 tsubst_enum. */
8880 if (name)
8881 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
8882 pushtag (name, newtag, /*tag_scope=*/ts_current);
8883 }
8884 }
8885 else if (TREE_CODE (t) == FUNCTION_DECL
8886 || DECL_FUNCTION_TEMPLATE_P (t))
8887 {
8888 /* Build new TYPE_METHODS. */
8889 tree r;
8890
8891 if (TREE_CODE (t) == TEMPLATE_DECL)
8892 ++processing_template_decl;
8893 r = tsubst (t, args, tf_error, NULL_TREE);
8894 if (TREE_CODE (t) == TEMPLATE_DECL)
8895 --processing_template_decl;
8896 set_current_access_from_decl (r);
8897 finish_member_declaration (r);
8898 /* Instantiate members marked with attribute used. */
8899 if (r != error_mark_node && DECL_PRESERVE_P (r))
8900 mark_used (r);
8901 }
8902 else
8903 {
8904 /* Build new TYPE_FIELDS. */
8905 if (TREE_CODE (t) == STATIC_ASSERT)
8906 {
8907 tree condition =
8908 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
8909 tf_warning_or_error, NULL_TREE,
8910 /*integral_constant_expression_p=*/true);
8911 finish_static_assert (condition,
8912 STATIC_ASSERT_MESSAGE (t),
8913 STATIC_ASSERT_SOURCE_LOCATION (t),
8914 /*member_p=*/true);
8915 }
8916 else if (TREE_CODE (t) != CONST_DECL)
8917 {
8918 tree r;
8919
8920 /* The file and line for this declaration, to
8921 assist in error message reporting. Since we
8922 called push_tinst_level above, we don't need to
8923 restore these. */
8924 input_location = DECL_SOURCE_LOCATION (t);
8925
8926 if (TREE_CODE (t) == TEMPLATE_DECL)
8927 ++processing_template_decl;
8928 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
8929 if (TREE_CODE (t) == TEMPLATE_DECL)
8930 --processing_template_decl;
8931 if (TREE_CODE (r) == VAR_DECL)
8932 {
8933 /* In [temp.inst]:
8934
8935 [t]he initialization (and any associated
8936 side-effects) of a static data member does
8937 not occur unless the static data member is
8938 itself used in a way that requires the
8939 definition of the static data member to
8940 exist.
8941
8942 Therefore, we do not substitute into the
8943 initialized for the static data member here. */
8944 finish_static_data_member_decl
8945 (r,
8946 /*init=*/NULL_TREE,
8947 /*init_const_expr_p=*/false,
8948 /*asmspec_tree=*/NULL_TREE,
8949 /*flags=*/0);
8950 /* Instantiate members marked with attribute used. */
8951 if (r != error_mark_node && DECL_PRESERVE_P (r))
8952 mark_used (r);
8953 }
8954 else if (TREE_CODE (r) == FIELD_DECL)
8955 {
8956 /* Determine whether R has a valid type and can be
8957 completed later. If R is invalid, then it is
8958 replaced by error_mark_node so that it will not be
8959 added to TYPE_FIELDS. */
8960 tree rtype = TREE_TYPE (r);
8961 if (can_complete_type_without_circularity (rtype))
8962 complete_type (rtype);
8963
8964 if (!COMPLETE_TYPE_P (rtype))
8965 {
8966 cxx_incomplete_type_error (r, rtype);
8967 r = error_mark_node;
8968 }
8969 }
8970
8971 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
8972 such a thing will already have been added to the field
8973 list by tsubst_enum in finish_member_declaration in the
8974 CLASSTYPE_NESTED_UTDS case above. */
8975 if (!(TREE_CODE (r) == TYPE_DECL
8976 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
8977 && DECL_ARTIFICIAL (r)))
8978 {
8979 set_current_access_from_decl (r);
8980 finish_member_declaration (r);
8981 }
8982 }
8983 }
8984 }
8985 else
8986 {
8987 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t))
8988 {
8989 /* Build new CLASSTYPE_FRIEND_CLASSES. */
8990
8991 tree friend_type = t;
8992 bool adjust_processing_template_decl = false;
8993
8994 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
8995 {
8996 /* template <class T> friend class C; */
8997 friend_type = tsubst_friend_class (friend_type, args);
8998 adjust_processing_template_decl = true;
8999 }
9000 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
9001 {
9002 /* template <class T> friend class C::D; */
9003 friend_type = tsubst (friend_type, args,
9004 tf_warning_or_error, NULL_TREE);
9005 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
9006 friend_type = TREE_TYPE (friend_type);
9007 adjust_processing_template_decl = true;
9008 }
9009 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
9010 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
9011 {
9012 /* This could be either
9013
9014 friend class T::C;
9015
9016 when dependent_type_p is false or
9017
9018 template <class U> friend class T::C;
9019
9020 otherwise. */
9021 friend_type = tsubst (friend_type, args,
9022 tf_warning_or_error, NULL_TREE);
9023 /* Bump processing_template_decl for correct
9024 dependent_type_p calculation. */
9025 ++processing_template_decl;
9026 if (dependent_type_p (friend_type))
9027 adjust_processing_template_decl = true;
9028 --processing_template_decl;
9029 }
9030 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
9031 && hidden_name_p (TYPE_NAME (friend_type)))
9032 {
9033 /* friend class C;
9034
9035 where C hasn't been declared yet. Let's lookup name
9036 from namespace scope directly, bypassing any name that
9037 come from dependent base class. */
9038 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
9039
9040 /* The call to xref_tag_from_type does injection for friend
9041 classes. */
9042 push_nested_namespace (ns);
9043 friend_type =
9044 xref_tag_from_type (friend_type, NULL_TREE,
9045 /*tag_scope=*/ts_current);
9046 pop_nested_namespace (ns);
9047 }
9048 else if (uses_template_parms (friend_type))
9049 /* friend class C<T>; */
9050 friend_type = tsubst (friend_type, args,
9051 tf_warning_or_error, NULL_TREE);
9052 /* Otherwise it's
9053
9054 friend class C;
9055
9056 where C is already declared or
9057
9058 friend class C<int>;
9059
9060 We don't have to do anything in these cases. */
9061
9062 if (adjust_processing_template_decl)
9063 /* Trick make_friend_class into realizing that the friend
9064 we're adding is a template, not an ordinary class. It's
9065 important that we use make_friend_class since it will
9066 perform some error-checking and output cross-reference
9067 information. */
9068 ++processing_template_decl;
9069
9070 if (friend_type != error_mark_node)
9071 make_friend_class (type, friend_type, /*complain=*/false);
9072
9073 if (adjust_processing_template_decl)
9074 --processing_template_decl;
9075 }
9076 else
9077 {
9078 /* Build new DECL_FRIENDLIST. */
9079 tree r;
9080
9081 /* The file and line for this declaration, to
9082 assist in error message reporting. Since we
9083 called push_tinst_level above, we don't need to
9084 restore these. */
9085 input_location = DECL_SOURCE_LOCATION (t);
9086
9087 if (TREE_CODE (t) == TEMPLATE_DECL)
9088 {
9089 ++processing_template_decl;
9090 push_deferring_access_checks (dk_no_check);
9091 }
9092
9093 r = tsubst_friend_function (t, args);
9094 add_friend (type, r, /*complain=*/false);
9095 if (TREE_CODE (t) == TEMPLATE_DECL)
9096 {
9097 pop_deferring_access_checks ();
9098 --processing_template_decl;
9099 }
9100 }
9101 }
9102 }
9103
9104 if (CLASSTYPE_LAMBDA_EXPR (type))
9105 {
9106 tree decl = lambda_function (type);
9107 if (decl)
9108 {
9109 tree lambda = CLASSTYPE_LAMBDA_EXPR (type);
9110 if (LAMBDA_EXPR_DEDUCE_RETURN_TYPE_P (lambda))
9111 {
9112 apply_lambda_return_type (lambda, void_type_node);
9113 LAMBDA_EXPR_RETURN_TYPE (lambda) = NULL_TREE;
9114 }
9115 instantiate_decl (decl, false, false);
9116 maybe_add_lambda_conv_op (type);
9117 }
9118 else
9119 gcc_assert (errorcount);
9120 }
9121
9122 /* Set the file and line number information to whatever is given for
9123 the class itself. This puts error messages involving generated
9124 implicit functions at a predictable point, and the same point
9125 that would be used for non-template classes. */
9126 input_location = DECL_SOURCE_LOCATION (typedecl);
9127
9128 unreverse_member_declarations (type);
9129 finish_struct_1 (type);
9130 TYPE_BEING_DEFINED (type) = 0;
9131
9132 /* We don't instantiate default arguments for member functions. 14.7.1:
9133
9134 The implicit instantiation of a class template specialization causes
9135 the implicit instantiation of the declarations, but not of the
9136 definitions or default arguments, of the class member functions,
9137 member classes, static data members and member templates.... */
9138
9139 /* Some typedefs referenced from within the template code need to be access
9140 checked at template instantiation time, i.e now. These types were
9141 added to the template at parsing time. Let's get those and perform
9142 the access checks then. */
9143 perform_typedefs_access_check (pattern, args);
9144 perform_deferred_access_checks ();
9145 pop_nested_class ();
9146 maximum_field_alignment = saved_maximum_field_alignment;
9147 pop_from_top_level ();
9148 pop_deferring_access_checks ();
9149 pop_tinst_level ();
9150
9151 /* The vtable for a template class can be emitted in any translation
9152 unit in which the class is instantiated. When there is no key
9153 method, however, finish_struct_1 will already have added TYPE to
9154 the keyed_classes list. */
9155 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
9156 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
9157
9158 return type;
9159 }
9160
9161 /* Wrapper for instantiate_class_template_1. */
9162
9163 tree
9164 instantiate_class_template (tree type)
9165 {
9166 tree ret;
9167 timevar_push (TV_TEMPLATE_INST);
9168 ret = instantiate_class_template_1 (type);
9169 timevar_pop (TV_TEMPLATE_INST);
9170 return ret;
9171 }
9172
9173 static tree
9174 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9175 {
9176 tree r;
9177
9178 if (!t)
9179 r = t;
9180 else if (TYPE_P (t))
9181 r = tsubst (t, args, complain, in_decl);
9182 else
9183 {
9184 if (!(complain & tf_warning))
9185 ++c_inhibit_evaluation_warnings;
9186 r = tsubst_expr (t, args, complain, in_decl,
9187 /*integral_constant_expression_p=*/true);
9188 if (!(complain & tf_warning))
9189 --c_inhibit_evaluation_warnings;
9190 /* Preserve the raw-reference nature of T. */
9191 if (TREE_TYPE (t) && TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE
9192 && REFERENCE_REF_P (r))
9193 r = TREE_OPERAND (r, 0);
9194 }
9195 return r;
9196 }
9197
9198 /* Given a function parameter pack TMPL_PARM and some function parameters
9199 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
9200 and set *SPEC_P to point at the next point in the list. */
9201
9202 static tree
9203 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
9204 {
9205 /* Collect all of the extra "packed" parameters into an
9206 argument pack. */
9207 tree parmvec;
9208 tree parmtypevec;
9209 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
9210 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
9211 tree spec_parm = *spec_p;
9212 int i, len;
9213
9214 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
9215 if (tmpl_parm
9216 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
9217 break;
9218
9219 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
9220 parmvec = make_tree_vec (len);
9221 parmtypevec = make_tree_vec (len);
9222 spec_parm = *spec_p;
9223 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
9224 {
9225 TREE_VEC_ELT (parmvec, i) = spec_parm;
9226 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
9227 }
9228
9229 /* Build the argument packs. */
9230 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
9231 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
9232 TREE_TYPE (argpack) = argtypepack;
9233 *spec_p = spec_parm;
9234
9235 return argpack;
9236 }
9237
9238 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
9239 NONTYPE_ARGUMENT_PACK. */
9240
9241 static tree
9242 make_fnparm_pack (tree spec_parm)
9243 {
9244 return extract_fnparm_pack (NULL_TREE, &spec_parm);
9245 }
9246
9247 /* Substitute ARGS into T, which is an pack expansion
9248 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
9249 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
9250 (if only a partial substitution could be performed) or
9251 ERROR_MARK_NODE if there was an error. */
9252 tree
9253 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
9254 tree in_decl)
9255 {
9256 tree pattern;
9257 tree pack, packs = NULL_TREE;
9258 bool unsubstituted_packs = false;
9259 bool real_packs = false;
9260 int missing_level = 0;
9261 int i, len = -1;
9262 tree result;
9263 htab_t saved_local_specializations = NULL;
9264 int levels;
9265
9266 gcc_assert (PACK_EXPANSION_P (t));
9267 pattern = PACK_EXPANSION_PATTERN (t);
9268
9269 /* Add in any args remembered from an earlier partial instantiation. */
9270 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
9271
9272 levels = TMPL_ARGS_DEPTH (args);
9273
9274 /* Determine the argument packs that will instantiate the parameter
9275 packs used in the expansion expression. While we're at it,
9276 compute the number of arguments to be expanded and make sure it
9277 is consistent. */
9278 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
9279 pack = TREE_CHAIN (pack))
9280 {
9281 tree parm_pack = TREE_VALUE (pack);
9282 tree arg_pack = NULL_TREE;
9283 tree orig_arg = NULL_TREE;
9284 int level = 0;
9285
9286 if (TREE_CODE (parm_pack) == BASES)
9287 {
9288 if (BASES_DIRECT (parm_pack))
9289 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
9290 args, complain, in_decl, false));
9291 else
9292 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
9293 args, complain, in_decl, false));
9294 }
9295 if (TREE_CODE (parm_pack) == PARM_DECL)
9296 {
9297 if (!cp_unevaluated_operand)
9298 arg_pack = retrieve_local_specialization (parm_pack);
9299 else
9300 {
9301 /* We can't rely on local_specializations for a parameter
9302 name used later in a function declaration (such as in a
9303 late-specified return type). Even if it exists, it might
9304 have the wrong value for a recursive call. Just make a
9305 dummy decl, since it's only used for its type. */
9306 arg_pack = tsubst_decl (parm_pack, args, complain);
9307 if (arg_pack && FUNCTION_PARAMETER_PACK_P (arg_pack))
9308 /* Partial instantiation of the parm_pack, we can't build
9309 up an argument pack yet. */
9310 arg_pack = NULL_TREE;
9311 else
9312 arg_pack = make_fnparm_pack (arg_pack);
9313 }
9314 }
9315 else
9316 {
9317 int idx;
9318 template_parm_level_and_index (parm_pack, &level, &idx);
9319
9320 if (level <= levels)
9321 arg_pack = TMPL_ARG (args, level, idx);
9322 }
9323
9324 orig_arg = arg_pack;
9325 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
9326 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
9327
9328 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
9329 /* This can only happen if we forget to expand an argument
9330 pack somewhere else. Just return an error, silently. */
9331 {
9332 result = make_tree_vec (1);
9333 TREE_VEC_ELT (result, 0) = error_mark_node;
9334 return result;
9335 }
9336
9337 if (arg_from_parm_pack_p (arg_pack, parm_pack))
9338 /* The argument pack that the parameter maps to is just an
9339 expansion of the parameter itself, such as one would find
9340 in the implicit typedef of a class inside the class itself.
9341 Consider this parameter "unsubstituted", so that we will
9342 maintain the outer pack expansion. */
9343 arg_pack = NULL_TREE;
9344
9345 if (arg_pack)
9346 {
9347 int my_len =
9348 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
9349
9350 /* Don't bother trying to do a partial substitution with
9351 incomplete packs; we'll try again after deduction. */
9352 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
9353 return t;
9354
9355 if (len < 0)
9356 len = my_len;
9357 else if (len != my_len)
9358 {
9359 if (!(complain & tf_error))
9360 /* Fail quietly. */;
9361 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
9362 error ("mismatched argument pack lengths while expanding "
9363 "%<%T%>",
9364 pattern);
9365 else
9366 error ("mismatched argument pack lengths while expanding "
9367 "%<%E%>",
9368 pattern);
9369 return error_mark_node;
9370 }
9371
9372 if (TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack)) == 1
9373 && PACK_EXPANSION_P (TREE_VEC_ELT (ARGUMENT_PACK_ARGS (arg_pack),
9374 0)))
9375 /* This isn't a real argument pack yet. */;
9376 else
9377 real_packs = true;
9378
9379 /* Keep track of the parameter packs and their corresponding
9380 argument packs. */
9381 packs = tree_cons (parm_pack, arg_pack, packs);
9382 TREE_TYPE (packs) = orig_arg;
9383 }
9384 else
9385 {
9386 /* We can't substitute for this parameter pack. We use a flag as
9387 well as the missing_level counter because function parameter
9388 packs don't have a level. */
9389 unsubstituted_packs = true;
9390 if (!missing_level || missing_level > level)
9391 missing_level = level;
9392 }
9393 }
9394
9395 /* We cannot expand this expansion expression, because we don't have
9396 all of the argument packs we need. */
9397 if (unsubstituted_packs)
9398 {
9399 if (real_packs)
9400 {
9401 /* We got some full packs, but we can't substitute them in until we
9402 have values for all the packs. So remember these until then. */
9403 tree save_args;
9404
9405 t = make_pack_expansion (pattern);
9406
9407 /* The call to add_to_template_args above assumes no overlap
9408 between saved args and new args, so prune away any fake
9409 args, i.e. those that satisfied arg_from_parm_pack_p above. */
9410 if (missing_level && levels >= missing_level)
9411 {
9412 gcc_assert (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args)
9413 && missing_level > 1);
9414 TREE_VEC_LENGTH (args) = missing_level - 1;
9415 save_args = copy_node (args);
9416 TREE_VEC_LENGTH (args) = levels;
9417 }
9418 else
9419 save_args = args;
9420
9421 PACK_EXPANSION_EXTRA_ARGS (t) = save_args;
9422 }
9423 else
9424 {
9425 /* There were no real arguments, we're just replacing a parameter
9426 pack with another version of itself. Substitute into the
9427 pattern and return a PACK_EXPANSION_*. The caller will need to
9428 deal with that. */
9429 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
9430 t = tsubst_expr (pattern, args, complain, in_decl,
9431 /*integral_constant_expression_p=*/false);
9432 else
9433 t = tsubst (pattern, args, complain, in_decl);
9434 t = make_pack_expansion (t);
9435 }
9436 return t;
9437 }
9438
9439 /* We could not find any argument packs that work. */
9440 if (len < 0)
9441 return error_mark_node;
9442
9443 if (cp_unevaluated_operand)
9444 {
9445 /* We're in a late-specified return type, so create our own local
9446 specializations table; the current table is either NULL or (in the
9447 case of recursive unification) might have bindings that we don't
9448 want to use or alter. */
9449 saved_local_specializations = local_specializations;
9450 local_specializations = htab_create (37,
9451 hash_local_specialization,
9452 eq_local_specializations,
9453 NULL);
9454 }
9455
9456 /* For each argument in each argument pack, substitute into the
9457 pattern. */
9458 result = make_tree_vec (len);
9459 for (i = 0; i < len; ++i)
9460 {
9461 /* For parameter pack, change the substitution of the parameter
9462 pack to the ith argument in its argument pack, then expand
9463 the pattern. */
9464 for (pack = packs; pack; pack = TREE_CHAIN (pack))
9465 {
9466 tree parm = TREE_PURPOSE (pack);
9467 tree arg;
9468
9469 /* Select the Ith argument from the pack. */
9470 if (TREE_CODE (parm) == PARM_DECL)
9471 {
9472 if (i == 0)
9473 {
9474 arg = make_node (ARGUMENT_PACK_SELECT);
9475 ARGUMENT_PACK_SELECT_FROM_PACK (arg) = TREE_VALUE (pack);
9476 mark_used (parm);
9477 register_local_specialization (arg, parm);
9478 }
9479 else
9480 arg = retrieve_local_specialization (parm);
9481 }
9482 else
9483 {
9484 int idx, level;
9485 template_parm_level_and_index (parm, &level, &idx);
9486
9487 if (i == 0)
9488 {
9489 arg = make_node (ARGUMENT_PACK_SELECT);
9490 ARGUMENT_PACK_SELECT_FROM_PACK (arg) = TREE_VALUE (pack);
9491 /* Update the corresponding argument. */
9492 TMPL_ARG (args, level, idx) = arg;
9493 }
9494 else
9495 /* Re-use the ARGUMENT_PACK_SELECT. */
9496 arg = TMPL_ARG (args, level, idx);
9497 }
9498 ARGUMENT_PACK_SELECT_INDEX (arg) = i;
9499 }
9500
9501 /* Substitute into the PATTERN with the altered arguments. */
9502 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
9503 TREE_VEC_ELT (result, i) =
9504 tsubst_expr (pattern, args, complain, in_decl,
9505 /*integral_constant_expression_p=*/false);
9506 else
9507 TREE_VEC_ELT (result, i) = tsubst (pattern, args, complain, in_decl);
9508
9509 if (TREE_VEC_ELT (result, i) == error_mark_node)
9510 {
9511 result = error_mark_node;
9512 break;
9513 }
9514 }
9515
9516 /* Update ARGS to restore the substitution from parameter packs to
9517 their argument packs. */
9518 for (pack = packs; pack; pack = TREE_CHAIN (pack))
9519 {
9520 tree parm = TREE_PURPOSE (pack);
9521
9522 if (TREE_CODE (parm) == PARM_DECL)
9523 register_local_specialization (TREE_TYPE (pack), parm);
9524 else
9525 {
9526 int idx, level;
9527 template_parm_level_and_index (parm, &level, &idx);
9528
9529 /* Update the corresponding argument. */
9530 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
9531 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
9532 TREE_TYPE (pack);
9533 else
9534 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
9535 }
9536 }
9537
9538 if (saved_local_specializations)
9539 {
9540 htab_delete (local_specializations);
9541 local_specializations = saved_local_specializations;
9542 }
9543
9544 return result;
9545 }
9546
9547 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
9548 TMPL. We do this using DECL_PARM_INDEX, which should work even with
9549 parameter packs; all parms generated from a function parameter pack will
9550 have the same DECL_PARM_INDEX. */
9551
9552 tree
9553 get_pattern_parm (tree parm, tree tmpl)
9554 {
9555 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
9556 tree patparm;
9557
9558 if (DECL_ARTIFICIAL (parm))
9559 {
9560 for (patparm = DECL_ARGUMENTS (pattern);
9561 patparm; patparm = DECL_CHAIN (patparm))
9562 if (DECL_ARTIFICIAL (patparm)
9563 && DECL_NAME (parm) == DECL_NAME (patparm))
9564 break;
9565 }
9566 else
9567 {
9568 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
9569 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
9570 gcc_assert (DECL_PARM_INDEX (patparm)
9571 == DECL_PARM_INDEX (parm));
9572 }
9573
9574 return patparm;
9575 }
9576
9577 /* Substitute ARGS into the vector or list of template arguments T. */
9578
9579 static tree
9580 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9581 {
9582 tree orig_t = t;
9583 int len, need_new = 0, i, expanded_len_adjust = 0, out;
9584 tree *elts;
9585
9586 if (t == error_mark_node)
9587 return error_mark_node;
9588
9589 len = TREE_VEC_LENGTH (t);
9590 elts = XALLOCAVEC (tree, len);
9591
9592 for (i = 0; i < len; i++)
9593 {
9594 tree orig_arg = TREE_VEC_ELT (t, i);
9595 tree new_arg;
9596
9597 if (TREE_CODE (orig_arg) == TREE_VEC)
9598 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
9599 else if (PACK_EXPANSION_P (orig_arg))
9600 {
9601 /* Substitute into an expansion expression. */
9602 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
9603
9604 if (TREE_CODE (new_arg) == TREE_VEC)
9605 /* Add to the expanded length adjustment the number of
9606 expanded arguments. We subtract one from this
9607 measurement, because the argument pack expression
9608 itself is already counted as 1 in
9609 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
9610 the argument pack is empty. */
9611 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
9612 }
9613 else if (ARGUMENT_PACK_P (orig_arg))
9614 {
9615 /* Substitute into each of the arguments. */
9616 new_arg = TYPE_P (orig_arg)
9617 ? cxx_make_type (TREE_CODE (orig_arg))
9618 : make_node (TREE_CODE (orig_arg));
9619
9620 SET_ARGUMENT_PACK_ARGS (
9621 new_arg,
9622 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
9623 args, complain, in_decl));
9624
9625 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
9626 new_arg = error_mark_node;
9627
9628 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
9629 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
9630 complain, in_decl);
9631 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
9632
9633 if (TREE_TYPE (new_arg) == error_mark_node)
9634 new_arg = error_mark_node;
9635 }
9636 }
9637 else
9638 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
9639
9640 if (new_arg == error_mark_node)
9641 return error_mark_node;
9642
9643 elts[i] = new_arg;
9644 if (new_arg != orig_arg)
9645 need_new = 1;
9646 }
9647
9648 if (!need_new)
9649 return t;
9650
9651 /* Make space for the expanded arguments coming from template
9652 argument packs. */
9653 t = make_tree_vec (len + expanded_len_adjust);
9654 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
9655 arguments for a member template.
9656 In that case each TREE_VEC in ORIG_T represents a level of template
9657 arguments, and ORIG_T won't carry any non defaulted argument count.
9658 It will rather be the nested TREE_VECs that will carry one.
9659 In other words, ORIG_T carries a non defaulted argument count only
9660 if it doesn't contain any nested TREE_VEC. */
9661 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
9662 {
9663 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
9664 count += expanded_len_adjust;
9665 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
9666 }
9667 for (i = 0, out = 0; i < len; i++)
9668 {
9669 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
9670 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
9671 && TREE_CODE (elts[i]) == TREE_VEC)
9672 {
9673 int idx;
9674
9675 /* Now expand the template argument pack "in place". */
9676 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
9677 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
9678 }
9679 else
9680 {
9681 TREE_VEC_ELT (t, out) = elts[i];
9682 out++;
9683 }
9684 }
9685
9686 return t;
9687 }
9688
9689 /* Return the result of substituting ARGS into the template parameters
9690 given by PARMS. If there are m levels of ARGS and m + n levels of
9691 PARMS, then the result will contain n levels of PARMS. For
9692 example, if PARMS is `template <class T> template <class U>
9693 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
9694 result will be `template <int*, double, class V>'. */
9695
9696 static tree
9697 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
9698 {
9699 tree r = NULL_TREE;
9700 tree* new_parms;
9701
9702 /* When substituting into a template, we must set
9703 PROCESSING_TEMPLATE_DECL as the template parameters may be
9704 dependent if they are based on one-another, and the dependency
9705 predicates are short-circuit outside of templates. */
9706 ++processing_template_decl;
9707
9708 for (new_parms = &r;
9709 TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
9710 new_parms = &(TREE_CHAIN (*new_parms)),
9711 parms = TREE_CHAIN (parms))
9712 {
9713 tree new_vec =
9714 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
9715 int i;
9716
9717 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
9718 {
9719 tree tuple;
9720
9721 if (parms == error_mark_node)
9722 continue;
9723
9724 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
9725
9726 if (tuple == error_mark_node)
9727 continue;
9728
9729 TREE_VEC_ELT (new_vec, i) =
9730 tsubst_template_parm (tuple, args, complain);
9731 }
9732
9733 *new_parms =
9734 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
9735 - TMPL_ARGS_DEPTH (args)),
9736 new_vec, NULL_TREE);
9737 }
9738
9739 --processing_template_decl;
9740
9741 return r;
9742 }
9743
9744 /* Return the result of substituting ARGS into one template parameter
9745 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
9746 parameter and which TREE_PURPOSE is the default argument of the
9747 template parameter. */
9748
9749 static tree
9750 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
9751 {
9752 tree default_value, parm_decl;
9753
9754 if (args == NULL_TREE
9755 || t == NULL_TREE
9756 || t == error_mark_node)
9757 return t;
9758
9759 gcc_assert (TREE_CODE (t) == TREE_LIST);
9760
9761 default_value = TREE_PURPOSE (t);
9762 parm_decl = TREE_VALUE (t);
9763
9764 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
9765 if (TREE_CODE (parm_decl) == PARM_DECL
9766 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
9767 parm_decl = error_mark_node;
9768 default_value = tsubst_template_arg (default_value, args,
9769 complain, NULL_TREE);
9770
9771 return build_tree_list (default_value, parm_decl);
9772 }
9773
9774 /* Substitute the ARGS into the indicated aggregate (or enumeration)
9775 type T. If T is not an aggregate or enumeration type, it is
9776 handled as if by tsubst. IN_DECL is as for tsubst. If
9777 ENTERING_SCOPE is nonzero, T is the context for a template which
9778 we are presently tsubst'ing. Return the substituted value. */
9779
9780 static tree
9781 tsubst_aggr_type (tree t,
9782 tree args,
9783 tsubst_flags_t complain,
9784 tree in_decl,
9785 int entering_scope)
9786 {
9787 if (t == NULL_TREE)
9788 return NULL_TREE;
9789
9790 switch (TREE_CODE (t))
9791 {
9792 case RECORD_TYPE:
9793 if (TYPE_PTRMEMFUNC_P (t))
9794 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
9795
9796 /* Else fall through. */
9797 case ENUMERAL_TYPE:
9798 case UNION_TYPE:
9799 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
9800 {
9801 tree argvec;
9802 tree context;
9803 tree r;
9804 int saved_unevaluated_operand;
9805 int saved_inhibit_evaluation_warnings;
9806
9807 /* In "sizeof(X<I>)" we need to evaluate "I". */
9808 saved_unevaluated_operand = cp_unevaluated_operand;
9809 cp_unevaluated_operand = 0;
9810 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
9811 c_inhibit_evaluation_warnings = 0;
9812
9813 /* First, determine the context for the type we are looking
9814 up. */
9815 context = TYPE_CONTEXT (t);
9816 if (context && TYPE_P (context))
9817 {
9818 context = tsubst_aggr_type (context, args, complain,
9819 in_decl, /*entering_scope=*/1);
9820 /* If context is a nested class inside a class template,
9821 it may still need to be instantiated (c++/33959). */
9822 context = complete_type (context);
9823 }
9824
9825 /* Then, figure out what arguments are appropriate for the
9826 type we are trying to find. For example, given:
9827
9828 template <class T> struct S;
9829 template <class T, class U> void f(T, U) { S<U> su; }
9830
9831 and supposing that we are instantiating f<int, double>,
9832 then our ARGS will be {int, double}, but, when looking up
9833 S we only want {double}. */
9834 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
9835 complain, in_decl);
9836 if (argvec == error_mark_node)
9837 r = error_mark_node;
9838 else
9839 {
9840 r = lookup_template_class (t, argvec, in_decl, context,
9841 entering_scope, complain);
9842 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
9843 }
9844
9845 cp_unevaluated_operand = saved_unevaluated_operand;
9846 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
9847
9848 return r;
9849 }
9850 else
9851 /* This is not a template type, so there's nothing to do. */
9852 return t;
9853
9854 default:
9855 return tsubst (t, args, complain, in_decl);
9856 }
9857 }
9858
9859 /* Substitute into the default argument ARG (a default argument for
9860 FN), which has the indicated TYPE. */
9861
9862 tree
9863 tsubst_default_argument (tree fn, tree type, tree arg)
9864 {
9865 tree saved_class_ptr = NULL_TREE;
9866 tree saved_class_ref = NULL_TREE;
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 /* Make sure the default argument is reasonable. */
9915 arg = check_default_argument (type, arg);
9916
9917 pop_access_scope (fn);
9918
9919 return arg;
9920 }
9921
9922 /* Substitute into all the default arguments for FN. */
9923
9924 static void
9925 tsubst_default_arguments (tree fn)
9926 {
9927 tree arg;
9928 tree tmpl_args;
9929
9930 tmpl_args = DECL_TI_ARGS (fn);
9931
9932 /* If this function is not yet instantiated, we certainly don't need
9933 its default arguments. */
9934 if (uses_template_parms (tmpl_args))
9935 return;
9936 /* Don't do this again for clones. */
9937 if (DECL_CLONED_FUNCTION_P (fn))
9938 return;
9939
9940 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
9941 arg;
9942 arg = TREE_CHAIN (arg))
9943 if (TREE_PURPOSE (arg))
9944 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
9945 TREE_VALUE (arg),
9946 TREE_PURPOSE (arg));
9947 }
9948
9949 /* Substitute the ARGS into the T, which is a _DECL. Return the
9950 result of the substitution. Issue error and warning messages under
9951 control of COMPLAIN. */
9952
9953 static tree
9954 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
9955 {
9956 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
9957 location_t saved_loc;
9958 tree r = NULL_TREE;
9959 tree in_decl = t;
9960 hashval_t hash = 0;
9961
9962 /* Set the filename and linenumber to improve error-reporting. */
9963 saved_loc = input_location;
9964 input_location = DECL_SOURCE_LOCATION (t);
9965
9966 switch (TREE_CODE (t))
9967 {
9968 case TEMPLATE_DECL:
9969 {
9970 /* We can get here when processing a member function template,
9971 member class template, or template template parameter. */
9972 tree decl = DECL_TEMPLATE_RESULT (t);
9973 tree spec;
9974 tree tmpl_args;
9975 tree full_args;
9976
9977 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
9978 {
9979 /* Template template parameter is treated here. */
9980 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
9981 if (new_type == error_mark_node)
9982 RETURN (error_mark_node);
9983
9984 r = copy_decl (t);
9985 DECL_CHAIN (r) = NULL_TREE;
9986 TREE_TYPE (r) = new_type;
9987 DECL_TEMPLATE_RESULT (r)
9988 = build_decl (DECL_SOURCE_LOCATION (decl),
9989 TYPE_DECL, DECL_NAME (decl), new_type);
9990 DECL_TEMPLATE_PARMS (r)
9991 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
9992 complain);
9993 TYPE_NAME (new_type) = r;
9994 break;
9995 }
9996
9997 /* We might already have an instance of this template.
9998 The ARGS are for the surrounding class type, so the
9999 full args contain the tsubst'd args for the context,
10000 plus the innermost args from the template decl. */
10001 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
10002 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
10003 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
10004 /* Because this is a template, the arguments will still be
10005 dependent, even after substitution. If
10006 PROCESSING_TEMPLATE_DECL is not set, the dependency
10007 predicates will short-circuit. */
10008 ++processing_template_decl;
10009 full_args = tsubst_template_args (tmpl_args, args,
10010 complain, in_decl);
10011 --processing_template_decl;
10012 if (full_args == error_mark_node)
10013 RETURN (error_mark_node);
10014
10015 /* If this is a default template template argument,
10016 tsubst might not have changed anything. */
10017 if (full_args == tmpl_args)
10018 RETURN (t);
10019
10020 hash = hash_tmpl_and_args (t, full_args);
10021 spec = retrieve_specialization (t, full_args, hash);
10022 if (spec != NULL_TREE)
10023 {
10024 r = spec;
10025 break;
10026 }
10027
10028 /* Make a new template decl. It will be similar to the
10029 original, but will record the current template arguments.
10030 We also create a new function declaration, which is just
10031 like the old one, but points to this new template, rather
10032 than the old one. */
10033 r = copy_decl (t);
10034 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
10035 DECL_CHAIN (r) = NULL_TREE;
10036
10037 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
10038
10039 if (TREE_CODE (decl) == TYPE_DECL
10040 && !TYPE_DECL_ALIAS_P (decl))
10041 {
10042 tree new_type;
10043 ++processing_template_decl;
10044 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10045 --processing_template_decl;
10046 if (new_type == error_mark_node)
10047 RETURN (error_mark_node);
10048
10049 TREE_TYPE (r) = new_type;
10050 CLASSTYPE_TI_TEMPLATE (new_type) = r;
10051 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
10052 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
10053 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
10054 }
10055 else
10056 {
10057 tree new_decl;
10058 ++processing_template_decl;
10059 new_decl = tsubst (decl, args, complain, in_decl);
10060 --processing_template_decl;
10061 if (new_decl == error_mark_node)
10062 RETURN (error_mark_node);
10063
10064 DECL_TEMPLATE_RESULT (r) = new_decl;
10065 DECL_TI_TEMPLATE (new_decl) = r;
10066 TREE_TYPE (r) = TREE_TYPE (new_decl);
10067 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
10068 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
10069 }
10070
10071 SET_DECL_IMPLICIT_INSTANTIATION (r);
10072 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
10073 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
10074
10075 /* The template parameters for this new template are all the
10076 template parameters for the old template, except the
10077 outermost level of parameters. */
10078 DECL_TEMPLATE_PARMS (r)
10079 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
10080 complain);
10081
10082 if (PRIMARY_TEMPLATE_P (t))
10083 DECL_PRIMARY_TEMPLATE (r) = r;
10084
10085 if (TREE_CODE (decl) != TYPE_DECL)
10086 /* Record this non-type partial instantiation. */
10087 register_specialization (r, t,
10088 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
10089 false, hash);
10090 }
10091 break;
10092
10093 case FUNCTION_DECL:
10094 {
10095 tree ctx;
10096 tree argvec = NULL_TREE;
10097 tree *friends;
10098 tree gen_tmpl;
10099 tree type;
10100 int member;
10101 int args_depth;
10102 int parms_depth;
10103
10104 /* Nobody should be tsubst'ing into non-template functions. */
10105 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
10106
10107 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
10108 {
10109 tree spec;
10110 bool dependent_p;
10111
10112 /* If T is not dependent, just return it. We have to
10113 increment PROCESSING_TEMPLATE_DECL because
10114 value_dependent_expression_p assumes that nothing is
10115 dependent when PROCESSING_TEMPLATE_DECL is zero. */
10116 ++processing_template_decl;
10117 dependent_p = value_dependent_expression_p (t);
10118 --processing_template_decl;
10119 if (!dependent_p)
10120 RETURN (t);
10121
10122 /* Calculate the most general template of which R is a
10123 specialization, and the complete set of arguments used to
10124 specialize R. */
10125 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
10126 argvec = tsubst_template_args (DECL_TI_ARGS
10127 (DECL_TEMPLATE_RESULT
10128 (DECL_TI_TEMPLATE (t))),
10129 args, complain, in_decl);
10130 if (argvec == error_mark_node)
10131 RETURN (error_mark_node);
10132
10133 /* Check to see if we already have this specialization. */
10134 hash = hash_tmpl_and_args (gen_tmpl, argvec);
10135 spec = retrieve_specialization (gen_tmpl, argvec, hash);
10136
10137 if (spec)
10138 {
10139 r = spec;
10140 break;
10141 }
10142
10143 /* We can see more levels of arguments than parameters if
10144 there was a specialization of a member template, like
10145 this:
10146
10147 template <class T> struct S { template <class U> void f(); }
10148 template <> template <class U> void S<int>::f(U);
10149
10150 Here, we'll be substituting into the specialization,
10151 because that's where we can find the code we actually
10152 want to generate, but we'll have enough arguments for
10153 the most general template.
10154
10155 We also deal with the peculiar case:
10156
10157 template <class T> struct S {
10158 template <class U> friend void f();
10159 };
10160 template <class U> void f() {}
10161 template S<int>;
10162 template void f<double>();
10163
10164 Here, the ARGS for the instantiation of will be {int,
10165 double}. But, we only need as many ARGS as there are
10166 levels of template parameters in CODE_PATTERN. We are
10167 careful not to get fooled into reducing the ARGS in
10168 situations like:
10169
10170 template <class T> struct S { template <class U> void f(U); }
10171 template <class T> template <> void S<T>::f(int) {}
10172
10173 which we can spot because the pattern will be a
10174 specialization in this case. */
10175 args_depth = TMPL_ARGS_DEPTH (args);
10176 parms_depth =
10177 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
10178 if (args_depth > parms_depth
10179 && !DECL_TEMPLATE_SPECIALIZATION (t))
10180 args = get_innermost_template_args (args, parms_depth);
10181 }
10182 else
10183 {
10184 /* This special case arises when we have something like this:
10185
10186 template <class T> struct S {
10187 friend void f<int>(int, double);
10188 };
10189
10190 Here, the DECL_TI_TEMPLATE for the friend declaration
10191 will be an IDENTIFIER_NODE. We are being called from
10192 tsubst_friend_function, and we want only to create a
10193 new decl (R) with appropriate types so that we can call
10194 determine_specialization. */
10195 gen_tmpl = NULL_TREE;
10196 }
10197
10198 if (DECL_CLASS_SCOPE_P (t))
10199 {
10200 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
10201 member = 2;
10202 else
10203 member = 1;
10204 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
10205 complain, t, /*entering_scope=*/1);
10206 }
10207 else
10208 {
10209 member = 0;
10210 ctx = DECL_CONTEXT (t);
10211 }
10212 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10213 if (type == error_mark_node)
10214 RETURN (error_mark_node);
10215
10216 /* We do NOT check for matching decls pushed separately at this
10217 point, as they may not represent instantiations of this
10218 template, and in any case are considered separate under the
10219 discrete model. */
10220 r = copy_decl (t);
10221 DECL_USE_TEMPLATE (r) = 0;
10222 TREE_TYPE (r) = type;
10223 /* Clear out the mangled name and RTL for the instantiation. */
10224 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
10225 SET_DECL_RTL (r, NULL);
10226 /* Leave DECL_INITIAL set on deleted instantiations. */
10227 if (!DECL_DELETED_FN (r))
10228 DECL_INITIAL (r) = NULL_TREE;
10229 DECL_CONTEXT (r) = ctx;
10230
10231 if (member && DECL_CONV_FN_P (r))
10232 /* Type-conversion operator. Reconstruct the name, in
10233 case it's the name of one of the template's parameters. */
10234 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
10235
10236 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
10237 complain, t);
10238 DECL_RESULT (r) = NULL_TREE;
10239
10240 TREE_STATIC (r) = 0;
10241 TREE_PUBLIC (r) = TREE_PUBLIC (t);
10242 DECL_EXTERNAL (r) = 1;
10243 /* If this is an instantiation of a function with internal
10244 linkage, we already know what object file linkage will be
10245 assigned to the instantiation. */
10246 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
10247 DECL_DEFER_OUTPUT (r) = 0;
10248 DECL_CHAIN (r) = NULL_TREE;
10249 DECL_PENDING_INLINE_INFO (r) = 0;
10250 DECL_PENDING_INLINE_P (r) = 0;
10251 DECL_SAVED_TREE (r) = NULL_TREE;
10252 DECL_STRUCT_FUNCTION (r) = NULL;
10253 TREE_USED (r) = 0;
10254 /* We'll re-clone as appropriate in instantiate_template. */
10255 DECL_CLONED_FUNCTION (r) = NULL_TREE;
10256
10257 /* If we aren't complaining now, return on error before we register
10258 the specialization so that we'll complain eventually. */
10259 if ((complain & tf_error) == 0
10260 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10261 && !grok_op_properties (r, /*complain=*/false))
10262 RETURN (error_mark_node);
10263
10264 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
10265 this in the special friend case mentioned above where
10266 GEN_TMPL is NULL. */
10267 if (gen_tmpl)
10268 {
10269 DECL_TEMPLATE_INFO (r)
10270 = build_template_info (gen_tmpl, argvec);
10271 SET_DECL_IMPLICIT_INSTANTIATION (r);
10272 register_specialization (r, gen_tmpl, argvec, false, hash);
10273
10274 /* We're not supposed to instantiate default arguments
10275 until they are called, for a template. But, for a
10276 declaration like:
10277
10278 template <class T> void f ()
10279 { extern void g(int i = T()); }
10280
10281 we should do the substitution when the template is
10282 instantiated. We handle the member function case in
10283 instantiate_class_template since the default arguments
10284 might refer to other members of the class. */
10285 if (!member
10286 && !PRIMARY_TEMPLATE_P (gen_tmpl)
10287 && !uses_template_parms (argvec))
10288 tsubst_default_arguments (r);
10289 }
10290 else
10291 DECL_TEMPLATE_INFO (r) = NULL_TREE;
10292
10293 /* Copy the list of befriending classes. */
10294 for (friends = &DECL_BEFRIENDING_CLASSES (r);
10295 *friends;
10296 friends = &TREE_CHAIN (*friends))
10297 {
10298 *friends = copy_node (*friends);
10299 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
10300 args, complain,
10301 in_decl);
10302 }
10303
10304 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
10305 {
10306 maybe_retrofit_in_chrg (r);
10307 if (DECL_CONSTRUCTOR_P (r))
10308 grok_ctor_properties (ctx, r);
10309 /* If this is an instantiation of a member template, clone it.
10310 If it isn't, that'll be handled by
10311 clone_constructors_and_destructors. */
10312 if (PRIMARY_TEMPLATE_P (gen_tmpl))
10313 clone_function_decl (r, /*update_method_vec_p=*/0);
10314 }
10315 else if ((complain & tf_error) != 0
10316 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10317 && !grok_op_properties (r, /*complain=*/true))
10318 RETURN (error_mark_node);
10319
10320 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
10321 SET_DECL_FRIEND_CONTEXT (r,
10322 tsubst (DECL_FRIEND_CONTEXT (t),
10323 args, complain, in_decl));
10324
10325 /* Possibly limit visibility based on template args. */
10326 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
10327 if (DECL_VISIBILITY_SPECIFIED (t))
10328 {
10329 DECL_VISIBILITY_SPECIFIED (r) = 0;
10330 DECL_ATTRIBUTES (r)
10331 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
10332 }
10333 determine_visibility (r);
10334 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
10335 && !processing_template_decl)
10336 defaulted_late_check (r);
10337
10338 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10339 args, complain, in_decl);
10340 }
10341 break;
10342
10343 case PARM_DECL:
10344 {
10345 tree type = NULL_TREE;
10346 int i, len = 1;
10347 tree expanded_types = NULL_TREE;
10348 tree prev_r = NULL_TREE;
10349 tree first_r = NULL_TREE;
10350
10351 if (FUNCTION_PARAMETER_PACK_P (t))
10352 {
10353 /* If there is a local specialization that isn't a
10354 parameter pack, it means that we're doing a "simple"
10355 substitution from inside tsubst_pack_expansion. Just
10356 return the local specialization (which will be a single
10357 parm). */
10358 tree spec = retrieve_local_specialization (t);
10359 if (spec
10360 && TREE_CODE (spec) == PARM_DECL
10361 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
10362 RETURN (spec);
10363
10364 /* Expand the TYPE_PACK_EXPANSION that provides the types for
10365 the parameters in this function parameter pack. */
10366 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
10367 complain, in_decl);
10368 if (TREE_CODE (expanded_types) == TREE_VEC)
10369 {
10370 len = TREE_VEC_LENGTH (expanded_types);
10371
10372 /* Zero-length parameter packs are boring. Just substitute
10373 into the chain. */
10374 if (len == 0)
10375 RETURN (tsubst (TREE_CHAIN (t), args, complain,
10376 TREE_CHAIN (t)));
10377 }
10378 else
10379 {
10380 /* All we did was update the type. Make a note of that. */
10381 type = expanded_types;
10382 expanded_types = NULL_TREE;
10383 }
10384 }
10385
10386 /* Loop through all of the parameter's we'll build. When T is
10387 a function parameter pack, LEN is the number of expanded
10388 types in EXPANDED_TYPES; otherwise, LEN is 1. */
10389 r = NULL_TREE;
10390 for (i = 0; i < len; ++i)
10391 {
10392 prev_r = r;
10393 r = copy_node (t);
10394 if (DECL_TEMPLATE_PARM_P (t))
10395 SET_DECL_TEMPLATE_PARM_P (r);
10396
10397 if (expanded_types)
10398 /* We're on the Ith parameter of the function parameter
10399 pack. */
10400 {
10401 /* An argument of a function parameter pack is not a parameter
10402 pack. */
10403 FUNCTION_PARAMETER_PACK_P (r) = false;
10404
10405 /* Get the Ith type. */
10406 type = TREE_VEC_ELT (expanded_types, i);
10407
10408 if (DECL_NAME (r))
10409 /* Rename the parameter to include the index. */
10410 DECL_NAME (r) =
10411 make_ith_pack_parameter_name (DECL_NAME (r), i);
10412 }
10413 else if (!type)
10414 /* We're dealing with a normal parameter. */
10415 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10416
10417 type = type_decays_to (type);
10418 TREE_TYPE (r) = type;
10419 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10420
10421 if (DECL_INITIAL (r))
10422 {
10423 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
10424 DECL_INITIAL (r) = TREE_TYPE (r);
10425 else
10426 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
10427 complain, in_decl);
10428 }
10429
10430 DECL_CONTEXT (r) = NULL_TREE;
10431
10432 if (!DECL_TEMPLATE_PARM_P (r))
10433 DECL_ARG_TYPE (r) = type_passed_as (type);
10434
10435 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10436 args, complain, in_decl);
10437
10438 /* Keep track of the first new parameter we
10439 generate. That's what will be returned to the
10440 caller. */
10441 if (!first_r)
10442 first_r = r;
10443
10444 /* Build a proper chain of parameters when substituting
10445 into a function parameter pack. */
10446 if (prev_r)
10447 DECL_CHAIN (prev_r) = r;
10448 }
10449
10450 if (DECL_CHAIN (t))
10451 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
10452 complain, DECL_CHAIN (t));
10453
10454 /* FIRST_R contains the start of the chain we've built. */
10455 r = first_r;
10456 }
10457 break;
10458
10459 case FIELD_DECL:
10460 {
10461 tree type;
10462
10463 r = copy_decl (t);
10464 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10465 if (type == error_mark_node)
10466 RETURN (error_mark_node);
10467 TREE_TYPE (r) = type;
10468 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10469
10470 if (DECL_C_BIT_FIELD (r))
10471 /* For bit-fields, DECL_INITIAL gives the number of bits. For
10472 non-bit-fields DECL_INITIAL is a non-static data member
10473 initializer, which gets deferred instantiation. */
10474 DECL_INITIAL (r)
10475 = tsubst_expr (DECL_INITIAL (t), args,
10476 complain, in_decl,
10477 /*integral_constant_expression_p=*/true);
10478 else if (DECL_INITIAL (t))
10479 {
10480 /* Set up DECL_TEMPLATE_INFO so that we can get at the
10481 NSDMI in perform_member_init. Still set DECL_INITIAL
10482 so that we know there is one. */
10483 DECL_INITIAL (r) = void_zero_node;
10484 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
10485 retrofit_lang_decl (r);
10486 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
10487 }
10488 /* We don't have to set DECL_CONTEXT here; it is set by
10489 finish_member_declaration. */
10490 DECL_CHAIN (r) = NULL_TREE;
10491 if (VOID_TYPE_P (type))
10492 error ("instantiation of %q+D as type %qT", r, type);
10493
10494 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10495 args, complain, in_decl);
10496 }
10497 break;
10498
10499 case USING_DECL:
10500 /* We reach here only for member using decls. */
10501 if (DECL_DEPENDENT_P (t))
10502 {
10503 r = do_class_using_decl
10504 (tsubst_copy (USING_DECL_SCOPE (t), args, complain, in_decl),
10505 tsubst_copy (DECL_NAME (t), args, complain, in_decl));
10506 if (!r)
10507 r = error_mark_node;
10508 else
10509 {
10510 TREE_PROTECTED (r) = TREE_PROTECTED (t);
10511 TREE_PRIVATE (r) = TREE_PRIVATE (t);
10512 }
10513 }
10514 else
10515 {
10516 r = copy_node (t);
10517 DECL_CHAIN (r) = NULL_TREE;
10518 }
10519 break;
10520
10521 case TYPE_DECL:
10522 case VAR_DECL:
10523 {
10524 tree argvec = NULL_TREE;
10525 tree gen_tmpl = NULL_TREE;
10526 tree spec;
10527 tree tmpl = NULL_TREE;
10528 tree ctx;
10529 tree type = NULL_TREE;
10530 bool local_p;
10531
10532 if (TREE_CODE (t) == TYPE_DECL
10533 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
10534 {
10535 /* If this is the canonical decl, we don't have to
10536 mess with instantiations, and often we can't (for
10537 typename, template type parms and such). Note that
10538 TYPE_NAME is not correct for the above test if
10539 we've copied the type for a typedef. */
10540 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10541 if (type == error_mark_node)
10542 RETURN (error_mark_node);
10543 r = TYPE_NAME (type);
10544 break;
10545 }
10546
10547 /* Check to see if we already have the specialization we
10548 need. */
10549 spec = NULL_TREE;
10550 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
10551 {
10552 /* T is a static data member or namespace-scope entity.
10553 We have to substitute into namespace-scope variables
10554 (even though such entities are never templates) because
10555 of cases like:
10556
10557 template <class T> void f() { extern T t; }
10558
10559 where the entity referenced is not known until
10560 instantiation time. */
10561 local_p = false;
10562 ctx = DECL_CONTEXT (t);
10563 if (DECL_CLASS_SCOPE_P (t))
10564 {
10565 ctx = tsubst_aggr_type (ctx, args,
10566 complain,
10567 in_decl, /*entering_scope=*/1);
10568 /* If CTX is unchanged, then T is in fact the
10569 specialization we want. That situation occurs when
10570 referencing a static data member within in its own
10571 class. We can use pointer equality, rather than
10572 same_type_p, because DECL_CONTEXT is always
10573 canonical... */
10574 if (ctx == DECL_CONTEXT (t)
10575 && (TREE_CODE (t) != TYPE_DECL
10576 /* ... unless T is a member template; in which
10577 case our caller can be willing to create a
10578 specialization of that template represented
10579 by T. */
10580 || !(DECL_TI_TEMPLATE (t)
10581 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t)))))
10582 spec = t;
10583 }
10584
10585 if (!spec)
10586 {
10587 tmpl = DECL_TI_TEMPLATE (t);
10588 gen_tmpl = most_general_template (tmpl);
10589 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
10590 hash = hash_tmpl_and_args (gen_tmpl, argvec);
10591 spec = retrieve_specialization (gen_tmpl, argvec, hash);
10592 }
10593 }
10594 else
10595 {
10596 /* A local variable. */
10597 local_p = true;
10598 /* Subsequent calls to pushdecl will fill this in. */
10599 ctx = NULL_TREE;
10600 spec = retrieve_local_specialization (t);
10601 }
10602 /* If we already have the specialization we need, there is
10603 nothing more to do. */
10604 if (spec)
10605 {
10606 r = spec;
10607 break;
10608 }
10609
10610 /* Create a new node for the specialization we need. */
10611 r = copy_decl (t);
10612 if (type == NULL_TREE)
10613 {
10614 if (is_typedef_decl (t))
10615 type = DECL_ORIGINAL_TYPE (t);
10616 else
10617 type = TREE_TYPE (t);
10618 if (TREE_CODE (t) == VAR_DECL && VAR_HAD_UNKNOWN_BOUND (t))
10619 type = strip_array_domain (type);
10620 type = tsubst (type, args, complain, in_decl);
10621 }
10622 if (TREE_CODE (r) == VAR_DECL)
10623 {
10624 /* Even if the original location is out of scope, the
10625 newly substituted one is not. */
10626 DECL_DEAD_FOR_LOCAL (r) = 0;
10627 DECL_INITIALIZED_P (r) = 0;
10628 DECL_TEMPLATE_INSTANTIATED (r) = 0;
10629 if (type == error_mark_node)
10630 RETURN (error_mark_node);
10631 if (TREE_CODE (type) == FUNCTION_TYPE)
10632 {
10633 /* It may seem that this case cannot occur, since:
10634
10635 typedef void f();
10636 void g() { f x; }
10637
10638 declares a function, not a variable. However:
10639
10640 typedef void f();
10641 template <typename T> void g() { T t; }
10642 template void g<f>();
10643
10644 is an attempt to declare a variable with function
10645 type. */
10646 error ("variable %qD has function type",
10647 /* R is not yet sufficiently initialized, so we
10648 just use its name. */
10649 DECL_NAME (r));
10650 RETURN (error_mark_node);
10651 }
10652 type = complete_type (type);
10653 /* Wait until cp_finish_decl to set this again, to handle
10654 circular dependency (template/instantiate6.C). */
10655 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
10656 type = check_var_type (DECL_NAME (r), type);
10657
10658 if (DECL_HAS_VALUE_EXPR_P (t))
10659 {
10660 tree ve = DECL_VALUE_EXPR (t);
10661 ve = tsubst_expr (ve, args, complain, in_decl,
10662 /*constant_expression_p=*/false);
10663 if (REFERENCE_REF_P (ve))
10664 {
10665 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
10666 ve = TREE_OPERAND (ve, 0);
10667 }
10668 SET_DECL_VALUE_EXPR (r, ve);
10669 }
10670 }
10671 else if (DECL_SELF_REFERENCE_P (t))
10672 SET_DECL_SELF_REFERENCE_P (r);
10673 TREE_TYPE (r) = type;
10674 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10675 DECL_CONTEXT (r) = ctx;
10676 /* Clear out the mangled name and RTL for the instantiation. */
10677 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
10678 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
10679 SET_DECL_RTL (r, NULL);
10680 /* The initializer must not be expanded until it is required;
10681 see [temp.inst]. */
10682 DECL_INITIAL (r) = NULL_TREE;
10683 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
10684 SET_DECL_RTL (r, NULL);
10685 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
10686 if (TREE_CODE (r) == VAR_DECL)
10687 {
10688 /* Possibly limit visibility based on template args. */
10689 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
10690 if (DECL_VISIBILITY_SPECIFIED (t))
10691 {
10692 DECL_VISIBILITY_SPECIFIED (r) = 0;
10693 DECL_ATTRIBUTES (r)
10694 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
10695 }
10696 determine_visibility (r);
10697 }
10698
10699 if (!local_p)
10700 {
10701 /* A static data member declaration is always marked
10702 external when it is declared in-class, even if an
10703 initializer is present. We mimic the non-template
10704 processing here. */
10705 DECL_EXTERNAL (r) = 1;
10706
10707 register_specialization (r, gen_tmpl, argvec, false, hash);
10708 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
10709 SET_DECL_IMPLICIT_INSTANTIATION (r);
10710 }
10711 else if (cp_unevaluated_operand)
10712 {
10713 /* We're substituting this var in a decltype outside of its
10714 scope, such as for a lambda return type. Don't add it to
10715 local_specializations, do perform auto deduction. */
10716 tree auto_node = type_uses_auto (type);
10717 if (auto_node)
10718 {
10719 tree init
10720 = tsubst_expr (DECL_INITIAL (t), args, complain, in_decl,
10721 /*constant_expression_p=*/false);
10722 init = resolve_nondeduced_context (init);
10723 TREE_TYPE (r) = type
10724 = do_auto_deduction (type, init, auto_node);
10725 }
10726 }
10727 else
10728 register_local_specialization (r, t);
10729
10730 DECL_CHAIN (r) = NULL_TREE;
10731
10732 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
10733 /*flags=*/0,
10734 args, complain, in_decl);
10735
10736 /* Preserve a typedef that names a type. */
10737 if (is_typedef_decl (r))
10738 {
10739 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
10740 set_underlying_type (r);
10741 }
10742
10743 layout_decl (r, 0);
10744 }
10745 break;
10746
10747 default:
10748 gcc_unreachable ();
10749 }
10750 #undef RETURN
10751
10752 out:
10753 /* Restore the file and line information. */
10754 input_location = saved_loc;
10755
10756 return r;
10757 }
10758
10759 /* Substitute into the ARG_TYPES of a function type. */
10760
10761 static tree
10762 tsubst_arg_types (tree arg_types,
10763 tree args,
10764 tsubst_flags_t complain,
10765 tree in_decl)
10766 {
10767 tree remaining_arg_types;
10768 tree type = NULL_TREE;
10769 int i = 1;
10770 tree expanded_args = NULL_TREE;
10771 tree default_arg;
10772
10773 if (!arg_types || arg_types == void_list_node)
10774 return arg_types;
10775
10776 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
10777 args, complain, in_decl);
10778 if (remaining_arg_types == error_mark_node)
10779 return error_mark_node;
10780
10781 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
10782 {
10783 /* For a pack expansion, perform substitution on the
10784 entire expression. Later on, we'll handle the arguments
10785 one-by-one. */
10786 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
10787 args, complain, in_decl);
10788
10789 if (TREE_CODE (expanded_args) == TREE_VEC)
10790 /* So that we'll spin through the parameters, one by one. */
10791 i = TREE_VEC_LENGTH (expanded_args);
10792 else
10793 {
10794 /* We only partially substituted into the parameter
10795 pack. Our type is TYPE_PACK_EXPANSION. */
10796 type = expanded_args;
10797 expanded_args = NULL_TREE;
10798 }
10799 }
10800
10801 while (i > 0) {
10802 --i;
10803
10804 if (expanded_args)
10805 type = TREE_VEC_ELT (expanded_args, i);
10806 else if (!type)
10807 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
10808
10809 if (type == error_mark_node)
10810 return error_mark_node;
10811 if (VOID_TYPE_P (type))
10812 {
10813 if (complain & tf_error)
10814 {
10815 error ("invalid parameter type %qT", type);
10816 if (in_decl)
10817 error ("in declaration %q+D", in_decl);
10818 }
10819 return error_mark_node;
10820 }
10821
10822 /* Do array-to-pointer, function-to-pointer conversion, and ignore
10823 top-level qualifiers as required. */
10824 type = cv_unqualified (type_decays_to (type));
10825
10826 /* We do not substitute into default arguments here. The standard
10827 mandates that they be instantiated only when needed, which is
10828 done in build_over_call. */
10829 default_arg = TREE_PURPOSE (arg_types);
10830
10831 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
10832 {
10833 /* We've instantiated a template before its default arguments
10834 have been parsed. This can happen for a nested template
10835 class, and is not an error unless we require the default
10836 argument in a call of this function. */
10837 remaining_arg_types =
10838 tree_cons (default_arg, type, remaining_arg_types);
10839 VEC_safe_push (tree, gc, DEFARG_INSTANTIATIONS (default_arg),
10840 remaining_arg_types);
10841 }
10842 else
10843 remaining_arg_types =
10844 hash_tree_cons (default_arg, type, remaining_arg_types);
10845 }
10846
10847 return remaining_arg_types;
10848 }
10849
10850 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
10851 *not* handle the exception-specification for FNTYPE, because the
10852 initial substitution of explicitly provided template parameters
10853 during argument deduction forbids substitution into the
10854 exception-specification:
10855
10856 [temp.deduct]
10857
10858 All references in the function type of the function template to the
10859 corresponding template parameters are replaced by the specified tem-
10860 plate argument values. If a substitution in a template parameter or
10861 in the function type of the function template results in an invalid
10862 type, type deduction fails. [Note: The equivalent substitution in
10863 exception specifications is done only when the function is instanti-
10864 ated, at which point a program is ill-formed if the substitution
10865 results in an invalid type.] */
10866
10867 static tree
10868 tsubst_function_type (tree t,
10869 tree args,
10870 tsubst_flags_t complain,
10871 tree in_decl)
10872 {
10873 tree return_type;
10874 tree arg_types;
10875 tree fntype;
10876
10877 /* The TYPE_CONTEXT is not used for function/method types. */
10878 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
10879
10880 /* Substitute the return type. */
10881 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10882 if (return_type == error_mark_node)
10883 return error_mark_node;
10884 /* The standard does not presently indicate that creation of a
10885 function type with an invalid return type is a deduction failure.
10886 However, that is clearly analogous to creating an array of "void"
10887 or a reference to a reference. This is core issue #486. */
10888 if (TREE_CODE (return_type) == ARRAY_TYPE
10889 || TREE_CODE (return_type) == FUNCTION_TYPE)
10890 {
10891 if (complain & tf_error)
10892 {
10893 if (TREE_CODE (return_type) == ARRAY_TYPE)
10894 error ("function returning an array");
10895 else
10896 error ("function returning a function");
10897 }
10898 return error_mark_node;
10899 }
10900
10901 /* Substitute the argument types. */
10902 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args,
10903 complain, in_decl);
10904 if (arg_types == error_mark_node)
10905 return error_mark_node;
10906
10907 /* Construct a new type node and return it. */
10908 if (TREE_CODE (t) == FUNCTION_TYPE)
10909 {
10910 fntype = build_function_type (return_type, arg_types);
10911 fntype = apply_memfn_quals (fntype, type_memfn_quals (t));
10912 }
10913 else
10914 {
10915 tree r = TREE_TYPE (TREE_VALUE (arg_types));
10916 if (! MAYBE_CLASS_TYPE_P (r))
10917 {
10918 /* [temp.deduct]
10919
10920 Type deduction may fail for any of the following
10921 reasons:
10922
10923 -- Attempting to create "pointer to member of T" when T
10924 is not a class type. */
10925 if (complain & tf_error)
10926 error ("creating pointer to member function of non-class type %qT",
10927 r);
10928 return error_mark_node;
10929 }
10930
10931 fntype = build_method_type_directly (r, return_type,
10932 TREE_CHAIN (arg_types));
10933 }
10934 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
10935
10936 return fntype;
10937 }
10938
10939 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
10940 ARGS into that specification, and return the substituted
10941 specification. If there is no specification, return NULL_TREE. */
10942
10943 static tree
10944 tsubst_exception_specification (tree fntype,
10945 tree args,
10946 tsubst_flags_t complain,
10947 tree in_decl,
10948 bool defer_ok)
10949 {
10950 tree specs;
10951 tree new_specs;
10952
10953 specs = TYPE_RAISES_EXCEPTIONS (fntype);
10954 new_specs = NULL_TREE;
10955 if (specs && TREE_PURPOSE (specs))
10956 {
10957 /* A noexcept-specifier. */
10958 tree expr = TREE_PURPOSE (specs);
10959 if (expr == boolean_true_node || expr == boolean_false_node)
10960 new_specs = expr;
10961 else if (defer_ok)
10962 {
10963 /* Defer instantiation of noexcept-specifiers to avoid
10964 excessive instantiations (c++/49107). */
10965 new_specs = make_node (DEFERRED_NOEXCEPT);
10966 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
10967 {
10968 /* We already partially instantiated this member template,
10969 so combine the new args with the old. */
10970 DEFERRED_NOEXCEPT_PATTERN (new_specs)
10971 = DEFERRED_NOEXCEPT_PATTERN (expr);
10972 DEFERRED_NOEXCEPT_ARGS (new_specs)
10973 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
10974 }
10975 else
10976 {
10977 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
10978 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
10979 }
10980 }
10981 else
10982 new_specs = tsubst_copy_and_build
10983 (expr, args, complain, in_decl, /*function_p=*/false,
10984 /*integral_constant_expression_p=*/true);
10985 new_specs = build_noexcept_spec (new_specs, complain);
10986 }
10987 else if (specs)
10988 {
10989 if (! TREE_VALUE (specs))
10990 new_specs = specs;
10991 else
10992 while (specs)
10993 {
10994 tree spec;
10995 int i, len = 1;
10996 tree expanded_specs = NULL_TREE;
10997
10998 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
10999 {
11000 /* Expand the pack expansion type. */
11001 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
11002 args, complain,
11003 in_decl);
11004
11005 if (expanded_specs == error_mark_node)
11006 return error_mark_node;
11007 else if (TREE_CODE (expanded_specs) == TREE_VEC)
11008 len = TREE_VEC_LENGTH (expanded_specs);
11009 else
11010 {
11011 /* We're substituting into a member template, so
11012 we got a TYPE_PACK_EXPANSION back. Add that
11013 expansion and move on. */
11014 gcc_assert (TREE_CODE (expanded_specs)
11015 == TYPE_PACK_EXPANSION);
11016 new_specs = add_exception_specifier (new_specs,
11017 expanded_specs,
11018 complain);
11019 specs = TREE_CHAIN (specs);
11020 continue;
11021 }
11022 }
11023
11024 for (i = 0; i < len; ++i)
11025 {
11026 if (expanded_specs)
11027 spec = TREE_VEC_ELT (expanded_specs, i);
11028 else
11029 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
11030 if (spec == error_mark_node)
11031 return spec;
11032 new_specs = add_exception_specifier (new_specs, spec,
11033 complain);
11034 }
11035
11036 specs = TREE_CHAIN (specs);
11037 }
11038 }
11039 return new_specs;
11040 }
11041
11042 /* Take the tree structure T and replace template parameters used
11043 therein with the argument vector ARGS. IN_DECL is an associated
11044 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
11045 Issue error and warning messages under control of COMPLAIN. Note
11046 that we must be relatively non-tolerant of extensions here, in
11047 order to preserve conformance; if we allow substitutions that
11048 should not be allowed, we may allow argument deductions that should
11049 not succeed, and therefore report ambiguous overload situations
11050 where there are none. In theory, we could allow the substitution,
11051 but indicate that it should have failed, and allow our caller to
11052 make sure that the right thing happens, but we don't try to do this
11053 yet.
11054
11055 This function is used for dealing with types, decls and the like;
11056 for expressions, use tsubst_expr or tsubst_copy. */
11057
11058 tree
11059 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11060 {
11061 enum tree_code code;
11062 tree type, r = NULL_TREE;
11063
11064 if (t == NULL_TREE || t == error_mark_node
11065 || t == integer_type_node
11066 || t == void_type_node
11067 || t == char_type_node
11068 || t == unknown_type_node
11069 || TREE_CODE (t) == NAMESPACE_DECL
11070 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
11071 return t;
11072
11073 if (DECL_P (t))
11074 return tsubst_decl (t, args, complain);
11075
11076 if (args == NULL_TREE)
11077 return t;
11078
11079 code = TREE_CODE (t);
11080
11081 if (code == IDENTIFIER_NODE)
11082 type = IDENTIFIER_TYPE_VALUE (t);
11083 else
11084 type = TREE_TYPE (t);
11085
11086 gcc_assert (type != unknown_type_node);
11087
11088 /* Reuse typedefs. We need to do this to handle dependent attributes,
11089 such as attribute aligned. */
11090 if (TYPE_P (t)
11091 && typedef_variant_p (t))
11092 {
11093 tree decl = TYPE_NAME (t);
11094
11095 if (TYPE_DECL_ALIAS_P (decl)
11096 && DECL_LANG_SPECIFIC (decl)
11097 && DECL_TEMPLATE_INFO (decl)
11098 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
11099 {
11100 /* DECL represents an alias template and we want to
11101 instantiate it. Let's substitute our arguments for the
11102 template parameters into the declaration and get the
11103 resulting type. */
11104 r = tsubst (decl, args, complain, decl);
11105 }
11106 else if (DECL_CLASS_SCOPE_P (decl)
11107 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
11108 && uses_template_parms (DECL_CONTEXT (decl)))
11109 {
11110 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11111 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11112 r = retrieve_specialization (tmpl, gen_args, 0);
11113 }
11114 else if (DECL_FUNCTION_SCOPE_P (decl)
11115 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
11116 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
11117 r = retrieve_local_specialization (decl);
11118 else
11119 /* The typedef is from a non-template context. */
11120 return t;
11121
11122 if (r)
11123 {
11124 r = TREE_TYPE (r);
11125 r = cp_build_qualified_type_real
11126 (r, cp_type_quals (t) | cp_type_quals (r),
11127 complain | tf_ignore_bad_quals);
11128 return r;
11129 }
11130 /* Else we must be instantiating the typedef, so fall through. */
11131 }
11132
11133 if (type
11134 && code != TYPENAME_TYPE
11135 && code != TEMPLATE_TYPE_PARM
11136 && code != IDENTIFIER_NODE
11137 && code != FUNCTION_TYPE
11138 && code != METHOD_TYPE)
11139 type = tsubst (type, args, complain, in_decl);
11140 if (type == error_mark_node)
11141 return error_mark_node;
11142
11143 switch (code)
11144 {
11145 case RECORD_TYPE:
11146 case UNION_TYPE:
11147 case ENUMERAL_TYPE:
11148 return tsubst_aggr_type (t, args, complain, in_decl,
11149 /*entering_scope=*/0);
11150
11151 case ERROR_MARK:
11152 case IDENTIFIER_NODE:
11153 case VOID_TYPE:
11154 case REAL_TYPE:
11155 case COMPLEX_TYPE:
11156 case VECTOR_TYPE:
11157 case BOOLEAN_TYPE:
11158 case NULLPTR_TYPE:
11159 case LANG_TYPE:
11160 return t;
11161
11162 case INTEGER_TYPE:
11163 if (t == integer_type_node)
11164 return t;
11165
11166 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
11167 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
11168 return t;
11169
11170 {
11171 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
11172
11173 max = tsubst_expr (omax, args, complain, in_decl,
11174 /*integral_constant_expression_p=*/false);
11175
11176 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
11177 needed. */
11178 if (TREE_CODE (max) == NOP_EXPR
11179 && TREE_SIDE_EFFECTS (omax)
11180 && !TREE_TYPE (max))
11181 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
11182
11183 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
11184 with TREE_SIDE_EFFECTS that indicates this is not an integral
11185 constant expression. */
11186 if (processing_template_decl
11187 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
11188 {
11189 gcc_assert (TREE_CODE (max) == NOP_EXPR);
11190 TREE_SIDE_EFFECTS (max) = 1;
11191 }
11192
11193 return compute_array_index_type (NULL_TREE, max, complain);
11194 }
11195
11196 case TEMPLATE_TYPE_PARM:
11197 case TEMPLATE_TEMPLATE_PARM:
11198 case BOUND_TEMPLATE_TEMPLATE_PARM:
11199 case TEMPLATE_PARM_INDEX:
11200 {
11201 int idx;
11202 int level;
11203 int levels;
11204 tree arg = NULL_TREE;
11205
11206 r = NULL_TREE;
11207
11208 gcc_assert (TREE_VEC_LENGTH (args) > 0);
11209 template_parm_level_and_index (t, &level, &idx);
11210
11211 levels = TMPL_ARGS_DEPTH (args);
11212 if (level <= levels)
11213 {
11214 arg = TMPL_ARG (args, level, idx);
11215
11216 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
11217 /* See through ARGUMENT_PACK_SELECT arguments. */
11218 arg = ARGUMENT_PACK_SELECT_ARG (arg);
11219 }
11220
11221 if (arg == error_mark_node)
11222 return error_mark_node;
11223 else if (arg != NULL_TREE)
11224 {
11225 if (ARGUMENT_PACK_P (arg))
11226 /* If ARG is an argument pack, we don't actually want to
11227 perform a substitution here, because substitutions
11228 for argument packs are only done
11229 element-by-element. We can get to this point when
11230 substituting the type of a non-type template
11231 parameter pack, when that type actually contains
11232 template parameter packs from an outer template, e.g.,
11233
11234 template<typename... Types> struct A {
11235 template<Types... Values> struct B { };
11236 }; */
11237 return t;
11238
11239 if (code == TEMPLATE_TYPE_PARM)
11240 {
11241 int quals;
11242 gcc_assert (TYPE_P (arg));
11243
11244 quals = cp_type_quals (arg) | cp_type_quals (t);
11245
11246 return cp_build_qualified_type_real
11247 (arg, quals, complain | tf_ignore_bad_quals);
11248 }
11249 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
11250 {
11251 /* We are processing a type constructed from a
11252 template template parameter. */
11253 tree argvec = tsubst (TYPE_TI_ARGS (t),
11254 args, complain, in_decl);
11255 if (argvec == error_mark_node)
11256 return error_mark_node;
11257
11258 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
11259 || TREE_CODE (arg) == TEMPLATE_DECL
11260 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
11261
11262 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
11263 /* Consider this code:
11264
11265 template <template <class> class Template>
11266 struct Internal {
11267 template <class Arg> using Bind = Template<Arg>;
11268 };
11269
11270 template <template <class> class Template, class Arg>
11271 using Instantiate = Template<Arg>; //#0
11272
11273 template <template <class> class Template,
11274 class Argument>
11275 using Bind =
11276 Instantiate<Internal<Template>::template Bind,
11277 Argument>; //#1
11278
11279 When #1 is parsed, the
11280 BOUND_TEMPLATE_TEMPLATE_PARM representing the
11281 parameter `Template' in #0 matches the
11282 UNBOUND_CLASS_TEMPLATE representing the argument
11283 `Internal<Template>::template Bind'; We then want
11284 to assemble the type `Bind<Argument>' that can't
11285 be fully created right now, because
11286 `Internal<Template>' not being complete, the Bind
11287 template cannot be looked up in that context. So
11288 we need to "store" `Bind<Argument>' for later
11289 when the context of Bind becomes complete. Let's
11290 store that in a TYPENAME_TYPE. */
11291 return make_typename_type (TYPE_CONTEXT (arg),
11292 build_nt (TEMPLATE_ID_EXPR,
11293 TYPE_IDENTIFIER (arg),
11294 argvec),
11295 typename_type,
11296 complain);
11297
11298 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
11299 are resolving nested-types in the signature of a
11300 member function templates. Otherwise ARG is a
11301 TEMPLATE_DECL and is the real template to be
11302 instantiated. */
11303 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
11304 arg = TYPE_NAME (arg);
11305
11306 r = lookup_template_class (arg,
11307 argvec, in_decl,
11308 DECL_CONTEXT (arg),
11309 /*entering_scope=*/0,
11310 complain);
11311 return cp_build_qualified_type_real
11312 (r, cp_type_quals (t), complain);
11313 }
11314 else
11315 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
11316 return convert_from_reference (unshare_expr (arg));
11317 }
11318
11319 if (level == 1)
11320 /* This can happen during the attempted tsubst'ing in
11321 unify. This means that we don't yet have any information
11322 about the template parameter in question. */
11323 return t;
11324
11325 /* If we get here, we must have been looking at a parm for a
11326 more deeply nested template. Make a new version of this
11327 template parameter, but with a lower level. */
11328 switch (code)
11329 {
11330 case TEMPLATE_TYPE_PARM:
11331 case TEMPLATE_TEMPLATE_PARM:
11332 case BOUND_TEMPLATE_TEMPLATE_PARM:
11333 if (cp_type_quals (t))
11334 {
11335 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
11336 r = cp_build_qualified_type_real
11337 (r, cp_type_quals (t),
11338 complain | (code == TEMPLATE_TYPE_PARM
11339 ? tf_ignore_bad_quals : 0));
11340 }
11341 else
11342 {
11343 r = copy_type (t);
11344 TEMPLATE_TYPE_PARM_INDEX (r)
11345 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
11346 r, levels, args, complain);
11347 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
11348 TYPE_MAIN_VARIANT (r) = r;
11349 TYPE_POINTER_TO (r) = NULL_TREE;
11350 TYPE_REFERENCE_TO (r) = NULL_TREE;
11351
11352 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
11353 /* We have reduced the level of the template
11354 template parameter, but not the levels of its
11355 template parameters, so canonical_type_parameter
11356 will not be able to find the canonical template
11357 template parameter for this level. Thus, we
11358 require structural equality checking to compare
11359 TEMPLATE_TEMPLATE_PARMs. */
11360 SET_TYPE_STRUCTURAL_EQUALITY (r);
11361 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
11362 SET_TYPE_STRUCTURAL_EQUALITY (r);
11363 else
11364 TYPE_CANONICAL (r) = canonical_type_parameter (r);
11365
11366 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
11367 {
11368 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
11369 complain, in_decl);
11370 if (argvec == error_mark_node)
11371 return error_mark_node;
11372
11373 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
11374 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
11375 }
11376 }
11377 break;
11378
11379 case TEMPLATE_PARM_INDEX:
11380 r = reduce_template_parm_level (t, type, levels, args, complain);
11381 break;
11382
11383 default:
11384 gcc_unreachable ();
11385 }
11386
11387 return r;
11388 }
11389
11390 case TREE_LIST:
11391 {
11392 tree purpose, value, chain;
11393
11394 if (t == void_list_node)
11395 return t;
11396
11397 purpose = TREE_PURPOSE (t);
11398 if (purpose)
11399 {
11400 purpose = tsubst (purpose, args, complain, in_decl);
11401 if (purpose == error_mark_node)
11402 return error_mark_node;
11403 }
11404 value = TREE_VALUE (t);
11405 if (value)
11406 {
11407 value = tsubst (value, args, complain, in_decl);
11408 if (value == error_mark_node)
11409 return error_mark_node;
11410 }
11411 chain = TREE_CHAIN (t);
11412 if (chain && chain != void_type_node)
11413 {
11414 chain = tsubst (chain, args, complain, in_decl);
11415 if (chain == error_mark_node)
11416 return error_mark_node;
11417 }
11418 if (purpose == TREE_PURPOSE (t)
11419 && value == TREE_VALUE (t)
11420 && chain == TREE_CHAIN (t))
11421 return t;
11422 return hash_tree_cons (purpose, value, chain);
11423 }
11424
11425 case TREE_BINFO:
11426 /* We should never be tsubsting a binfo. */
11427 gcc_unreachable ();
11428
11429 case TREE_VEC:
11430 /* A vector of template arguments. */
11431 gcc_assert (!type);
11432 return tsubst_template_args (t, args, complain, in_decl);
11433
11434 case POINTER_TYPE:
11435 case REFERENCE_TYPE:
11436 {
11437 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
11438 return t;
11439
11440 /* [temp.deduct]
11441
11442 Type deduction may fail for any of the following
11443 reasons:
11444
11445 -- Attempting to create a pointer to reference type.
11446 -- Attempting to create a reference to a reference type or
11447 a reference to void.
11448
11449 Core issue 106 says that creating a reference to a reference
11450 during instantiation is no longer a cause for failure. We
11451 only enforce this check in strict C++98 mode. */
11452 if ((TREE_CODE (type) == REFERENCE_TYPE
11453 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
11454 || (code == REFERENCE_TYPE && TREE_CODE (type) == VOID_TYPE))
11455 {
11456 static location_t last_loc;
11457
11458 /* We keep track of the last time we issued this error
11459 message to avoid spewing a ton of messages during a
11460 single bad template instantiation. */
11461 if (complain & tf_error
11462 && last_loc != input_location)
11463 {
11464 if (TREE_CODE (type) == VOID_TYPE)
11465 error ("forming reference to void");
11466 else if (code == POINTER_TYPE)
11467 error ("forming pointer to reference type %qT", type);
11468 else
11469 error ("forming reference to reference type %qT", type);
11470 last_loc = input_location;
11471 }
11472
11473 return error_mark_node;
11474 }
11475 else if (code == POINTER_TYPE)
11476 {
11477 r = build_pointer_type (type);
11478 if (TREE_CODE (type) == METHOD_TYPE)
11479 r = build_ptrmemfunc_type (r);
11480 }
11481 else if (TREE_CODE (type) == REFERENCE_TYPE)
11482 /* In C++0x, during template argument substitution, when there is an
11483 attempt to create a reference to a reference type, reference
11484 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
11485
11486 "If a template-argument for a template-parameter T names a type
11487 that is a reference to a type A, an attempt to create the type
11488 'lvalue reference to cv T' creates the type 'lvalue reference to
11489 A,' while an attempt to create the type type rvalue reference to
11490 cv T' creates the type T"
11491 */
11492 r = cp_build_reference_type
11493 (TREE_TYPE (type),
11494 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
11495 else
11496 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
11497 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11498
11499 if (r != error_mark_node)
11500 /* Will this ever be needed for TYPE_..._TO values? */
11501 layout_type (r);
11502
11503 return r;
11504 }
11505 case OFFSET_TYPE:
11506 {
11507 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
11508 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
11509 {
11510 /* [temp.deduct]
11511
11512 Type deduction may fail for any of the following
11513 reasons:
11514
11515 -- Attempting to create "pointer to member of T" when T
11516 is not a class type. */
11517 if (complain & tf_error)
11518 error ("creating pointer to member of non-class type %qT", r);
11519 return error_mark_node;
11520 }
11521 if (TREE_CODE (type) == REFERENCE_TYPE)
11522 {
11523 if (complain & tf_error)
11524 error ("creating pointer to member reference type %qT", type);
11525 return error_mark_node;
11526 }
11527 if (TREE_CODE (type) == VOID_TYPE)
11528 {
11529 if (complain & tf_error)
11530 error ("creating pointer to member of type void");
11531 return error_mark_node;
11532 }
11533 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
11534 if (TREE_CODE (type) == FUNCTION_TYPE)
11535 {
11536 /* The type of the implicit object parameter gets its
11537 cv-qualifiers from the FUNCTION_TYPE. */
11538 tree memptr;
11539 tree method_type = build_memfn_type (type, r, type_memfn_quals (type));
11540 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
11541 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
11542 complain);
11543 }
11544 else
11545 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
11546 cp_type_quals (t),
11547 complain);
11548 }
11549 case FUNCTION_TYPE:
11550 case METHOD_TYPE:
11551 {
11552 tree fntype;
11553 tree specs;
11554 fntype = tsubst_function_type (t, args, complain, in_decl);
11555 if (fntype == error_mark_node)
11556 return error_mark_node;
11557
11558 /* Substitute the exception specification. */
11559 specs = tsubst_exception_specification (t, args, complain,
11560 in_decl, /*defer_ok*/true);
11561 if (specs == error_mark_node)
11562 return error_mark_node;
11563 if (specs)
11564 fntype = build_exception_variant (fntype, specs);
11565 return fntype;
11566 }
11567 case ARRAY_TYPE:
11568 {
11569 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
11570 if (domain == error_mark_node)
11571 return error_mark_node;
11572
11573 /* As an optimization, we avoid regenerating the array type if
11574 it will obviously be the same as T. */
11575 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
11576 return t;
11577
11578 /* These checks should match the ones in grokdeclarator.
11579
11580 [temp.deduct]
11581
11582 The deduction may fail for any of the following reasons:
11583
11584 -- Attempting to create an array with an element type that
11585 is void, a function type, or a reference type, or [DR337]
11586 an abstract class type. */
11587 if (TREE_CODE (type) == VOID_TYPE
11588 || TREE_CODE (type) == FUNCTION_TYPE
11589 || TREE_CODE (type) == REFERENCE_TYPE)
11590 {
11591 if (complain & tf_error)
11592 error ("creating array of %qT", type);
11593 return error_mark_node;
11594 }
11595 if (CLASS_TYPE_P (type) && CLASSTYPE_PURE_VIRTUALS (type))
11596 {
11597 if (complain & tf_error)
11598 error ("creating array of %qT, which is an abstract class type",
11599 type);
11600 return error_mark_node;
11601 }
11602
11603 r = build_cplus_array_type (type, domain);
11604
11605 if (TYPE_USER_ALIGN (t))
11606 {
11607 TYPE_ALIGN (r) = TYPE_ALIGN (t);
11608 TYPE_USER_ALIGN (r) = 1;
11609 }
11610
11611 return r;
11612 }
11613
11614 case TYPENAME_TYPE:
11615 {
11616 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
11617 in_decl, /*entering_scope=*/1);
11618 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
11619 complain, in_decl);
11620
11621 if (ctx == error_mark_node || f == error_mark_node)
11622 return error_mark_node;
11623
11624 if (!MAYBE_CLASS_TYPE_P (ctx))
11625 {
11626 if (complain & tf_error)
11627 error ("%qT is not a class, struct, or union type", ctx);
11628 return error_mark_node;
11629 }
11630 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
11631 {
11632 /* Normally, make_typename_type does not require that the CTX
11633 have complete type in order to allow things like:
11634
11635 template <class T> struct S { typename S<T>::X Y; };
11636
11637 But, such constructs have already been resolved by this
11638 point, so here CTX really should have complete type, unless
11639 it's a partial instantiation. */
11640 ctx = complete_type (ctx);
11641 if (!COMPLETE_TYPE_P (ctx))
11642 {
11643 if (complain & tf_error)
11644 cxx_incomplete_type_error (NULL_TREE, ctx);
11645 return error_mark_node;
11646 }
11647 }
11648
11649 f = make_typename_type (ctx, f, typename_type,
11650 (complain & tf_error) | tf_keep_type_decl);
11651 if (f == error_mark_node)
11652 return f;
11653 if (TREE_CODE (f) == TYPE_DECL)
11654 {
11655 complain |= tf_ignore_bad_quals;
11656 f = TREE_TYPE (f);
11657 }
11658
11659 if (TREE_CODE (f) != TYPENAME_TYPE)
11660 {
11661 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
11662 {
11663 if (complain & tf_error)
11664 error ("%qT resolves to %qT, which is not an enumeration type",
11665 t, f);
11666 else
11667 return error_mark_node;
11668 }
11669 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
11670 {
11671 if (complain & tf_error)
11672 error ("%qT resolves to %qT, which is is not a class type",
11673 t, f);
11674 else
11675 return error_mark_node;
11676 }
11677 }
11678
11679 return cp_build_qualified_type_real
11680 (f, cp_type_quals (f) | cp_type_quals (t), complain);
11681 }
11682
11683 case UNBOUND_CLASS_TEMPLATE:
11684 {
11685 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
11686 in_decl, /*entering_scope=*/1);
11687 tree name = TYPE_IDENTIFIER (t);
11688 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
11689
11690 if (ctx == error_mark_node || name == error_mark_node)
11691 return error_mark_node;
11692
11693 if (parm_list)
11694 parm_list = tsubst_template_parms (parm_list, args, complain);
11695 return make_unbound_class_template (ctx, name, parm_list, complain);
11696 }
11697
11698 case TYPEOF_TYPE:
11699 {
11700 tree type;
11701
11702 ++cp_unevaluated_operand;
11703 ++c_inhibit_evaluation_warnings;
11704
11705 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
11706 complain, in_decl,
11707 /*integral_constant_expression_p=*/false);
11708
11709 --cp_unevaluated_operand;
11710 --c_inhibit_evaluation_warnings;
11711
11712 type = finish_typeof (type);
11713 return cp_build_qualified_type_real (type,
11714 cp_type_quals (t)
11715 | cp_type_quals (type),
11716 complain);
11717 }
11718
11719 case DECLTYPE_TYPE:
11720 {
11721 tree type;
11722
11723 ++cp_unevaluated_operand;
11724 ++c_inhibit_evaluation_warnings;
11725
11726 type = tsubst_expr (DECLTYPE_TYPE_EXPR (t), args,
11727 complain, in_decl,
11728 /*integral_constant_expression_p=*/false);
11729
11730 --cp_unevaluated_operand;
11731 --c_inhibit_evaluation_warnings;
11732
11733 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
11734 type = lambda_capture_field_type (type);
11735 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
11736 type = lambda_proxy_type (type);
11737 else
11738 type = finish_decltype_type
11739 (type, DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t), complain);
11740 return cp_build_qualified_type_real (type,
11741 cp_type_quals (t)
11742 | cp_type_quals (type),
11743 complain);
11744 }
11745
11746 case UNDERLYING_TYPE:
11747 {
11748 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
11749 complain, in_decl);
11750 return finish_underlying_type (type);
11751 }
11752
11753 case TYPE_ARGUMENT_PACK:
11754 case NONTYPE_ARGUMENT_PACK:
11755 {
11756 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
11757 tree packed_out =
11758 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
11759 args,
11760 complain,
11761 in_decl);
11762 SET_ARGUMENT_PACK_ARGS (r, packed_out);
11763
11764 /* For template nontype argument packs, also substitute into
11765 the type. */
11766 if (code == NONTYPE_ARGUMENT_PACK)
11767 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
11768
11769 return r;
11770 }
11771 break;
11772
11773 case INTEGER_CST:
11774 case REAL_CST:
11775 case STRING_CST:
11776 case PLUS_EXPR:
11777 case MINUS_EXPR:
11778 case NEGATE_EXPR:
11779 case NOP_EXPR:
11780 case INDIRECT_REF:
11781 case ADDR_EXPR:
11782 case CALL_EXPR:
11783 case ARRAY_REF:
11784 case SCOPE_REF:
11785 /* We should use one of the expression tsubsts for these codes. */
11786 gcc_unreachable ();
11787
11788 default:
11789 sorry ("use of %qs in template", tree_code_name [(int) code]);
11790 return error_mark_node;
11791 }
11792 }
11793
11794 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
11795 type of the expression on the left-hand side of the "." or "->"
11796 operator. */
11797
11798 static tree
11799 tsubst_baselink (tree baselink, tree object_type,
11800 tree args, tsubst_flags_t complain, tree in_decl)
11801 {
11802 tree name;
11803 tree qualifying_scope;
11804 tree fns;
11805 tree optype;
11806 tree template_args = 0;
11807 bool template_id_p = false;
11808
11809 /* A baselink indicates a function from a base class. Both the
11810 BASELINK_ACCESS_BINFO and the base class referenced may
11811 indicate bases of the template class, rather than the
11812 instantiated class. In addition, lookups that were not
11813 ambiguous before may be ambiguous now. Therefore, we perform
11814 the lookup again. */
11815 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
11816 qualifying_scope = tsubst (qualifying_scope, args,
11817 complain, in_decl);
11818 fns = BASELINK_FUNCTIONS (baselink);
11819 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
11820 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
11821 {
11822 template_id_p = true;
11823 template_args = TREE_OPERAND (fns, 1);
11824 fns = TREE_OPERAND (fns, 0);
11825 if (template_args)
11826 template_args = tsubst_template_args (template_args, args,
11827 complain, in_decl);
11828 }
11829 name = DECL_NAME (get_first_fn (fns));
11830 if (IDENTIFIER_TYPENAME_P (name))
11831 name = mangle_conv_op_name_for_type (optype);
11832 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
11833 if (!baselink)
11834 return error_mark_node;
11835
11836 /* If lookup found a single function, mark it as used at this
11837 point. (If it lookup found multiple functions the one selected
11838 later by overload resolution will be marked as used at that
11839 point.) */
11840 if (BASELINK_P (baselink))
11841 fns = BASELINK_FUNCTIONS (baselink);
11842 if (!template_id_p && !really_overloaded_fn (fns))
11843 mark_used (OVL_CURRENT (fns));
11844
11845 /* Add back the template arguments, if present. */
11846 if (BASELINK_P (baselink) && template_id_p)
11847 BASELINK_FUNCTIONS (baselink)
11848 = build_nt (TEMPLATE_ID_EXPR,
11849 BASELINK_FUNCTIONS (baselink),
11850 template_args);
11851 /* Update the conversion operator type. */
11852 BASELINK_OPTYPE (baselink) = optype;
11853
11854 if (!object_type)
11855 object_type = current_class_type;
11856 return adjust_result_of_qualified_name_lookup (baselink,
11857 qualifying_scope,
11858 object_type);
11859 }
11860
11861 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
11862 true if the qualified-id will be a postfix-expression in-and-of
11863 itself; false if more of the postfix-expression follows the
11864 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
11865 of "&". */
11866
11867 static tree
11868 tsubst_qualified_id (tree qualified_id, tree args,
11869 tsubst_flags_t complain, tree in_decl,
11870 bool done, bool address_p)
11871 {
11872 tree expr;
11873 tree scope;
11874 tree name;
11875 bool is_template;
11876 tree template_args;
11877
11878 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
11879
11880 /* Figure out what name to look up. */
11881 name = TREE_OPERAND (qualified_id, 1);
11882 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
11883 {
11884 is_template = true;
11885 template_args = TREE_OPERAND (name, 1);
11886 if (template_args)
11887 template_args = tsubst_template_args (template_args, args,
11888 complain, in_decl);
11889 name = TREE_OPERAND (name, 0);
11890 }
11891 else
11892 {
11893 is_template = false;
11894 template_args = NULL_TREE;
11895 }
11896
11897 /* Substitute into the qualifying scope. When there are no ARGS, we
11898 are just trying to simplify a non-dependent expression. In that
11899 case the qualifying scope may be dependent, and, in any case,
11900 substituting will not help. */
11901 scope = TREE_OPERAND (qualified_id, 0);
11902 if (args)
11903 {
11904 scope = tsubst (scope, args, complain, in_decl);
11905 expr = tsubst_copy (name, args, complain, in_decl);
11906 }
11907 else
11908 expr = name;
11909
11910 if (dependent_scope_p (scope))
11911 {
11912 if (is_template)
11913 expr = build_min_nt (TEMPLATE_ID_EXPR, expr, template_args);
11914 return build_qualified_name (NULL_TREE, scope, expr,
11915 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
11916 }
11917
11918 if (!BASELINK_P (name) && !DECL_P (expr))
11919 {
11920 if (TREE_CODE (expr) == BIT_NOT_EXPR)
11921 {
11922 /* A BIT_NOT_EXPR is used to represent a destructor. */
11923 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
11924 {
11925 error ("qualifying type %qT does not match destructor name ~%qT",
11926 scope, TREE_OPERAND (expr, 0));
11927 expr = error_mark_node;
11928 }
11929 else
11930 expr = lookup_qualified_name (scope, complete_dtor_identifier,
11931 /*is_type_p=*/0, false);
11932 }
11933 else
11934 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
11935 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
11936 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
11937 {
11938 if (complain & tf_error)
11939 {
11940 error ("dependent-name %qE is parsed as a non-type, but "
11941 "instantiation yields a type", qualified_id);
11942 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
11943 }
11944 return error_mark_node;
11945 }
11946 }
11947
11948 if (DECL_P (expr))
11949 {
11950 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
11951 scope);
11952 /* Remember that there was a reference to this entity. */
11953 mark_used (expr);
11954 }
11955
11956 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
11957 {
11958 if (complain & tf_error)
11959 qualified_name_lookup_error (scope,
11960 TREE_OPERAND (qualified_id, 1),
11961 expr, input_location);
11962 return error_mark_node;
11963 }
11964
11965 if (is_template)
11966 expr = lookup_template_function (expr, template_args);
11967
11968 if (expr == error_mark_node && complain & tf_error)
11969 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
11970 expr, input_location);
11971 else if (TYPE_P (scope))
11972 {
11973 expr = (adjust_result_of_qualified_name_lookup
11974 (expr, scope, current_class_type));
11975 expr = (finish_qualified_id_expr
11976 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
11977 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
11978 /*template_arg_p=*/false));
11979 }
11980
11981 /* Expressions do not generally have reference type. */
11982 if (TREE_CODE (expr) != SCOPE_REF
11983 /* However, if we're about to form a pointer-to-member, we just
11984 want the referenced member referenced. */
11985 && TREE_CODE (expr) != OFFSET_REF)
11986 expr = convert_from_reference (expr);
11987
11988 return expr;
11989 }
11990
11991 /* Like tsubst, but deals with expressions. This function just replaces
11992 template parms; to finish processing the resultant expression, use
11993 tsubst_copy_and_build or tsubst_expr. */
11994
11995 static tree
11996 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11997 {
11998 enum tree_code code;
11999 tree r;
12000
12001 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
12002 return t;
12003
12004 code = TREE_CODE (t);
12005
12006 switch (code)
12007 {
12008 case PARM_DECL:
12009 r = retrieve_local_specialization (t);
12010
12011 if (r == NULL)
12012 {
12013 tree c;
12014
12015 /* We get here for a use of 'this' in an NSDMI. */
12016 if (DECL_NAME (t) == this_identifier
12017 && at_function_scope_p ()
12018 && DECL_CONSTRUCTOR_P (current_function_decl))
12019 return current_class_ptr;
12020
12021 /* This can happen for a parameter name used later in a function
12022 declaration (such as in a late-specified return type). Just
12023 make a dummy decl, since it's only used for its type. */
12024 gcc_assert (cp_unevaluated_operand != 0);
12025 /* We copy T because want to tsubst the PARM_DECL only,
12026 not the following PARM_DECLs that are chained to T. */
12027 c = copy_node (t);
12028 r = tsubst_decl (c, args, complain);
12029 /* Give it the template pattern as its context; its true context
12030 hasn't been instantiated yet and this is good enough for
12031 mangling. */
12032 DECL_CONTEXT (r) = DECL_CONTEXT (t);
12033 }
12034
12035 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
12036 r = ARGUMENT_PACK_SELECT_ARG (r);
12037 mark_used (r);
12038 return r;
12039
12040 case CONST_DECL:
12041 {
12042 tree enum_type;
12043 tree v;
12044
12045 if (DECL_TEMPLATE_PARM_P (t))
12046 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
12047 /* There is no need to substitute into namespace-scope
12048 enumerators. */
12049 if (DECL_NAMESPACE_SCOPE_P (t))
12050 return t;
12051 /* If ARGS is NULL, then T is known to be non-dependent. */
12052 if (args == NULL_TREE)
12053 return integral_constant_value (t);
12054
12055 /* Unfortunately, we cannot just call lookup_name here.
12056 Consider:
12057
12058 template <int I> int f() {
12059 enum E { a = I };
12060 struct S { void g() { E e = a; } };
12061 };
12062
12063 When we instantiate f<7>::S::g(), say, lookup_name is not
12064 clever enough to find f<7>::a. */
12065 enum_type
12066 = tsubst_aggr_type (TREE_TYPE (t), args, complain, in_decl,
12067 /*entering_scope=*/0);
12068
12069 for (v = TYPE_VALUES (enum_type);
12070 v != NULL_TREE;
12071 v = TREE_CHAIN (v))
12072 if (TREE_PURPOSE (v) == DECL_NAME (t))
12073 return TREE_VALUE (v);
12074
12075 /* We didn't find the name. That should never happen; if
12076 name-lookup found it during preliminary parsing, we
12077 should find it again here during instantiation. */
12078 gcc_unreachable ();
12079 }
12080 return t;
12081
12082 case FIELD_DECL:
12083 if (DECL_CONTEXT (t))
12084 {
12085 tree ctx;
12086
12087 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12088 /*entering_scope=*/1);
12089 if (ctx != DECL_CONTEXT (t))
12090 {
12091 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
12092 if (!r)
12093 {
12094 if (complain & tf_error)
12095 error ("using invalid field %qD", t);
12096 return error_mark_node;
12097 }
12098 return r;
12099 }
12100 }
12101
12102 return t;
12103
12104 case VAR_DECL:
12105 case FUNCTION_DECL:
12106 if ((DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
12107 || local_variable_p (t))
12108 t = tsubst (t, args, complain, in_decl);
12109 mark_used (t);
12110 return t;
12111
12112 case NAMESPACE_DECL:
12113 return t;
12114
12115 case OVERLOAD:
12116 /* An OVERLOAD will always be a non-dependent overload set; an
12117 overload set from function scope will just be represented with an
12118 IDENTIFIER_NODE, and from class scope with a BASELINK. */
12119 gcc_assert (!uses_template_parms (t));
12120 return t;
12121
12122 case BASELINK:
12123 return tsubst_baselink (t, current_class_type, args, complain, in_decl);
12124
12125 case TEMPLATE_DECL:
12126 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
12127 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
12128 args, complain, in_decl);
12129 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
12130 return tsubst (t, args, complain, in_decl);
12131 else if (DECL_CLASS_SCOPE_P (t)
12132 && uses_template_parms (DECL_CONTEXT (t)))
12133 {
12134 /* Template template argument like the following example need
12135 special treatment:
12136
12137 template <template <class> class TT> struct C {};
12138 template <class T> struct D {
12139 template <class U> struct E {};
12140 C<E> c; // #1
12141 };
12142 D<int> d; // #2
12143
12144 We are processing the template argument `E' in #1 for
12145 the template instantiation #2. Originally, `E' is a
12146 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
12147 have to substitute this with one having context `D<int>'. */
12148
12149 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
12150 return lookup_field (context, DECL_NAME(t), 0, false);
12151 }
12152 else
12153 /* Ordinary template template argument. */
12154 return t;
12155
12156 case CAST_EXPR:
12157 case REINTERPRET_CAST_EXPR:
12158 case CONST_CAST_EXPR:
12159 case STATIC_CAST_EXPR:
12160 case DYNAMIC_CAST_EXPR:
12161 case IMPLICIT_CONV_EXPR:
12162 case CONVERT_EXPR:
12163 case NOP_EXPR:
12164 return build1
12165 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12166 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
12167
12168 case SIZEOF_EXPR:
12169 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
12170 {
12171
12172 tree expanded;
12173 int len = 0;
12174
12175 ++cp_unevaluated_operand;
12176 ++c_inhibit_evaluation_warnings;
12177 /* We only want to compute the number of arguments. */
12178 expanded = tsubst_pack_expansion (TREE_OPERAND (t, 0), args,
12179 complain, in_decl);
12180 --cp_unevaluated_operand;
12181 --c_inhibit_evaluation_warnings;
12182
12183 if (TREE_CODE (expanded) == TREE_VEC)
12184 len = TREE_VEC_LENGTH (expanded);
12185
12186 if (expanded == error_mark_node)
12187 return error_mark_node;
12188 else if (PACK_EXPANSION_P (expanded)
12189 || (TREE_CODE (expanded) == TREE_VEC
12190 && len > 0
12191 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
12192 {
12193 if (TREE_CODE (expanded) == TREE_VEC)
12194 expanded = TREE_VEC_ELT (expanded, len - 1);
12195
12196 if (TYPE_P (expanded))
12197 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
12198 complain & tf_error);
12199 else
12200 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
12201 complain & tf_error);
12202 }
12203 else
12204 return build_int_cst (size_type_node, len);
12205 }
12206 /* Fall through */
12207
12208 case INDIRECT_REF:
12209 case NEGATE_EXPR:
12210 case TRUTH_NOT_EXPR:
12211 case BIT_NOT_EXPR:
12212 case ADDR_EXPR:
12213 case UNARY_PLUS_EXPR: /* Unary + */
12214 case ALIGNOF_EXPR:
12215 case AT_ENCODE_EXPR:
12216 case ARROW_EXPR:
12217 case THROW_EXPR:
12218 case TYPEID_EXPR:
12219 case REALPART_EXPR:
12220 case IMAGPART_EXPR:
12221 return build1
12222 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12223 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
12224
12225 case COMPONENT_REF:
12226 {
12227 tree object;
12228 tree name;
12229
12230 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
12231 name = TREE_OPERAND (t, 1);
12232 if (TREE_CODE (name) == BIT_NOT_EXPR)
12233 {
12234 name = tsubst_copy (TREE_OPERAND (name, 0), args,
12235 complain, in_decl);
12236 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
12237 }
12238 else if (TREE_CODE (name) == SCOPE_REF
12239 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
12240 {
12241 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
12242 complain, in_decl);
12243 name = TREE_OPERAND (name, 1);
12244 name = tsubst_copy (TREE_OPERAND (name, 0), args,
12245 complain, in_decl);
12246 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
12247 name = build_qualified_name (/*type=*/NULL_TREE,
12248 base, name,
12249 /*template_p=*/false);
12250 }
12251 else if (BASELINK_P (name))
12252 name = tsubst_baselink (name,
12253 non_reference (TREE_TYPE (object)),
12254 args, complain,
12255 in_decl);
12256 else
12257 name = tsubst_copy (name, args, complain, in_decl);
12258 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
12259 }
12260
12261 case PLUS_EXPR:
12262 case MINUS_EXPR:
12263 case MULT_EXPR:
12264 case TRUNC_DIV_EXPR:
12265 case CEIL_DIV_EXPR:
12266 case FLOOR_DIV_EXPR:
12267 case ROUND_DIV_EXPR:
12268 case EXACT_DIV_EXPR:
12269 case BIT_AND_EXPR:
12270 case BIT_IOR_EXPR:
12271 case BIT_XOR_EXPR:
12272 case TRUNC_MOD_EXPR:
12273 case FLOOR_MOD_EXPR:
12274 case TRUTH_ANDIF_EXPR:
12275 case TRUTH_ORIF_EXPR:
12276 case TRUTH_AND_EXPR:
12277 case TRUTH_OR_EXPR:
12278 case RSHIFT_EXPR:
12279 case LSHIFT_EXPR:
12280 case RROTATE_EXPR:
12281 case LROTATE_EXPR:
12282 case EQ_EXPR:
12283 case NE_EXPR:
12284 case MAX_EXPR:
12285 case MIN_EXPR:
12286 case LE_EXPR:
12287 case GE_EXPR:
12288 case LT_EXPR:
12289 case GT_EXPR:
12290 case COMPOUND_EXPR:
12291 case DOTSTAR_EXPR:
12292 case MEMBER_REF:
12293 case PREDECREMENT_EXPR:
12294 case PREINCREMENT_EXPR:
12295 case POSTDECREMENT_EXPR:
12296 case POSTINCREMENT_EXPR:
12297 return build_nt
12298 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12299 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12300
12301 case SCOPE_REF:
12302 return build_qualified_name (/*type=*/NULL_TREE,
12303 tsubst_copy (TREE_OPERAND (t, 0),
12304 args, complain, in_decl),
12305 tsubst_copy (TREE_OPERAND (t, 1),
12306 args, complain, in_decl),
12307 QUALIFIED_NAME_IS_TEMPLATE (t));
12308
12309 case ARRAY_REF:
12310 return build_nt
12311 (ARRAY_REF,
12312 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12313 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12314 NULL_TREE, NULL_TREE);
12315
12316 case CALL_EXPR:
12317 {
12318 int n = VL_EXP_OPERAND_LENGTH (t);
12319 tree result = build_vl_exp (CALL_EXPR, n);
12320 int i;
12321 for (i = 0; i < n; i++)
12322 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
12323 complain, in_decl);
12324 return result;
12325 }
12326
12327 case COND_EXPR:
12328 case MODOP_EXPR:
12329 case PSEUDO_DTOR_EXPR:
12330 {
12331 r = build_nt
12332 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12333 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12334 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
12335 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
12336 return r;
12337 }
12338
12339 case NEW_EXPR:
12340 {
12341 r = build_nt
12342 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12343 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12344 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
12345 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
12346 return r;
12347 }
12348
12349 case DELETE_EXPR:
12350 {
12351 r = build_nt
12352 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12353 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12354 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
12355 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
12356 return r;
12357 }
12358
12359 case TEMPLATE_ID_EXPR:
12360 {
12361 /* Substituted template arguments */
12362 tree fn = TREE_OPERAND (t, 0);
12363 tree targs = TREE_OPERAND (t, 1);
12364
12365 fn = tsubst_copy (fn, args, complain, in_decl);
12366 if (targs)
12367 targs = tsubst_template_args (targs, args, complain, in_decl);
12368
12369 return lookup_template_function (fn, targs);
12370 }
12371
12372 case TREE_LIST:
12373 {
12374 tree purpose, value, chain;
12375
12376 if (t == void_list_node)
12377 return t;
12378
12379 purpose = TREE_PURPOSE (t);
12380 if (purpose)
12381 purpose = tsubst_copy (purpose, args, complain, in_decl);
12382 value = TREE_VALUE (t);
12383 if (value)
12384 value = tsubst_copy (value, args, complain, in_decl);
12385 chain = TREE_CHAIN (t);
12386 if (chain && chain != void_type_node)
12387 chain = tsubst_copy (chain, args, complain, in_decl);
12388 if (purpose == TREE_PURPOSE (t)
12389 && value == TREE_VALUE (t)
12390 && chain == TREE_CHAIN (t))
12391 return t;
12392 return tree_cons (purpose, value, chain);
12393 }
12394
12395 case RECORD_TYPE:
12396 case UNION_TYPE:
12397 case ENUMERAL_TYPE:
12398 case INTEGER_TYPE:
12399 case TEMPLATE_TYPE_PARM:
12400 case TEMPLATE_TEMPLATE_PARM:
12401 case BOUND_TEMPLATE_TEMPLATE_PARM:
12402 case TEMPLATE_PARM_INDEX:
12403 case POINTER_TYPE:
12404 case REFERENCE_TYPE:
12405 case OFFSET_TYPE:
12406 case FUNCTION_TYPE:
12407 case METHOD_TYPE:
12408 case ARRAY_TYPE:
12409 case TYPENAME_TYPE:
12410 case UNBOUND_CLASS_TEMPLATE:
12411 case TYPEOF_TYPE:
12412 case DECLTYPE_TYPE:
12413 case TYPE_DECL:
12414 return tsubst (t, args, complain, in_decl);
12415
12416 case IDENTIFIER_NODE:
12417 if (IDENTIFIER_TYPENAME_P (t))
12418 {
12419 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12420 return mangle_conv_op_name_for_type (new_type);
12421 }
12422 else
12423 return t;
12424
12425 case CONSTRUCTOR:
12426 /* This is handled by tsubst_copy_and_build. */
12427 gcc_unreachable ();
12428
12429 case VA_ARG_EXPR:
12430 return build_x_va_arg (tsubst_copy (TREE_OPERAND (t, 0), args, complain,
12431 in_decl),
12432 tsubst (TREE_TYPE (t), args, complain, in_decl));
12433
12434 case CLEANUP_POINT_EXPR:
12435 /* We shouldn't have built any of these during initial template
12436 generation. Instead, they should be built during instantiation
12437 in response to the saved STMT_IS_FULL_EXPR_P setting. */
12438 gcc_unreachable ();
12439
12440 case OFFSET_REF:
12441 r = build2
12442 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12443 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12444 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12445 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
12446 mark_used (TREE_OPERAND (r, 1));
12447 return r;
12448
12449 case EXPR_PACK_EXPANSION:
12450 error ("invalid use of pack expansion expression");
12451 return error_mark_node;
12452
12453 case NONTYPE_ARGUMENT_PACK:
12454 error ("use %<...%> to expand argument pack");
12455 return error_mark_node;
12456
12457 case INTEGER_CST:
12458 case REAL_CST:
12459 case STRING_CST:
12460 case COMPLEX_CST:
12461 {
12462 /* Instantiate any typedefs in the type. */
12463 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12464 r = fold_convert (type, t);
12465 gcc_assert (TREE_CODE (r) == code);
12466 return r;
12467 }
12468
12469 case PTRMEM_CST:
12470 /* These can sometimes show up in a partial instantiation, but never
12471 involve template parms. */
12472 gcc_assert (!uses_template_parms (t));
12473 return t;
12474
12475 default:
12476 /* We shouldn't get here, but keep going if !ENABLE_CHECKING. */
12477 gcc_checking_assert (false);
12478 return t;
12479 }
12480 }
12481
12482 /* Like tsubst_copy, but specifically for OpenMP clauses. */
12483
12484 static tree
12485 tsubst_omp_clauses (tree clauses, tree args, tsubst_flags_t complain,
12486 tree in_decl)
12487 {
12488 tree new_clauses = NULL, nc, oc;
12489
12490 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
12491 {
12492 nc = copy_node (oc);
12493 OMP_CLAUSE_CHAIN (nc) = new_clauses;
12494 new_clauses = nc;
12495
12496 switch (OMP_CLAUSE_CODE (nc))
12497 {
12498 case OMP_CLAUSE_LASTPRIVATE:
12499 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
12500 {
12501 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
12502 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
12503 in_decl, /*integral_constant_expression_p=*/false);
12504 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
12505 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
12506 }
12507 /* FALLTHRU */
12508 case OMP_CLAUSE_PRIVATE:
12509 case OMP_CLAUSE_SHARED:
12510 case OMP_CLAUSE_FIRSTPRIVATE:
12511 case OMP_CLAUSE_REDUCTION:
12512 case OMP_CLAUSE_COPYIN:
12513 case OMP_CLAUSE_COPYPRIVATE:
12514 case OMP_CLAUSE_IF:
12515 case OMP_CLAUSE_NUM_THREADS:
12516 case OMP_CLAUSE_SCHEDULE:
12517 case OMP_CLAUSE_COLLAPSE:
12518 case OMP_CLAUSE_FINAL:
12519 OMP_CLAUSE_OPERAND (nc, 0)
12520 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
12521 in_decl, /*integral_constant_expression_p=*/false);
12522 break;
12523 case OMP_CLAUSE_NOWAIT:
12524 case OMP_CLAUSE_ORDERED:
12525 case OMP_CLAUSE_DEFAULT:
12526 case OMP_CLAUSE_UNTIED:
12527 case OMP_CLAUSE_MERGEABLE:
12528 break;
12529 default:
12530 gcc_unreachable ();
12531 }
12532 }
12533
12534 return finish_omp_clauses (nreverse (new_clauses));
12535 }
12536
12537 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
12538
12539 static tree
12540 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
12541 tree in_decl)
12542 {
12543 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
12544
12545 tree purpose, value, chain;
12546
12547 if (t == NULL)
12548 return t;
12549
12550 if (TREE_CODE (t) != TREE_LIST)
12551 return tsubst_copy_and_build (t, args, complain, in_decl,
12552 /*function_p=*/false,
12553 /*integral_constant_expression_p=*/false);
12554
12555 if (t == void_list_node)
12556 return t;
12557
12558 purpose = TREE_PURPOSE (t);
12559 if (purpose)
12560 purpose = RECUR (purpose);
12561 value = TREE_VALUE (t);
12562 if (value && TREE_CODE (value) != LABEL_DECL)
12563 value = RECUR (value);
12564 chain = TREE_CHAIN (t);
12565 if (chain && chain != void_type_node)
12566 chain = RECUR (chain);
12567 return tree_cons (purpose, value, chain);
12568 #undef RECUR
12569 }
12570
12571 /* Substitute one OMP_FOR iterator. */
12572
12573 static void
12574 tsubst_omp_for_iterator (tree t, int i, tree declv, tree initv,
12575 tree condv, tree incrv, tree *clauses,
12576 tree args, tsubst_flags_t complain, tree in_decl,
12577 bool integral_constant_expression_p)
12578 {
12579 #define RECUR(NODE) \
12580 tsubst_expr ((NODE), args, complain, in_decl, \
12581 integral_constant_expression_p)
12582 tree decl, init, cond, incr, auto_node;
12583
12584 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
12585 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
12586 decl = RECUR (TREE_OPERAND (init, 0));
12587 init = TREE_OPERAND (init, 1);
12588 auto_node = type_uses_auto (TREE_TYPE (decl));
12589 if (auto_node && init)
12590 {
12591 tree init_expr = init;
12592 if (TREE_CODE (init_expr) == DECL_EXPR)
12593 init_expr = DECL_INITIAL (DECL_EXPR_DECL (init_expr));
12594 init_expr = RECUR (init_expr);
12595 TREE_TYPE (decl)
12596 = do_auto_deduction (TREE_TYPE (decl), init_expr, auto_node);
12597 }
12598 gcc_assert (!type_dependent_expression_p (decl));
12599
12600 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
12601 {
12602 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
12603 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
12604 if (TREE_CODE (incr) == MODIFY_EXPR)
12605 incr = build_x_modify_expr (RECUR (TREE_OPERAND (incr, 0)), NOP_EXPR,
12606 RECUR (TREE_OPERAND (incr, 1)),
12607 complain);
12608 else
12609 incr = RECUR (incr);
12610 TREE_VEC_ELT (declv, i) = decl;
12611 TREE_VEC_ELT (initv, i) = init;
12612 TREE_VEC_ELT (condv, i) = cond;
12613 TREE_VEC_ELT (incrv, i) = incr;
12614 return;
12615 }
12616
12617 if (init && TREE_CODE (init) != DECL_EXPR)
12618 {
12619 tree c;
12620 for (c = *clauses; c ; c = OMP_CLAUSE_CHAIN (c))
12621 {
12622 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
12623 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
12624 && OMP_CLAUSE_DECL (c) == decl)
12625 break;
12626 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
12627 && OMP_CLAUSE_DECL (c) == decl)
12628 error ("iteration variable %qD should not be firstprivate", decl);
12629 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
12630 && OMP_CLAUSE_DECL (c) == decl)
12631 error ("iteration variable %qD should not be reduction", decl);
12632 }
12633 if (c == NULL)
12634 {
12635 c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
12636 OMP_CLAUSE_DECL (c) = decl;
12637 c = finish_omp_clauses (c);
12638 if (c)
12639 {
12640 OMP_CLAUSE_CHAIN (c) = *clauses;
12641 *clauses = c;
12642 }
12643 }
12644 }
12645 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
12646 if (COMPARISON_CLASS_P (cond))
12647 cond = build2 (TREE_CODE (cond), boolean_type_node,
12648 RECUR (TREE_OPERAND (cond, 0)),
12649 RECUR (TREE_OPERAND (cond, 1)));
12650 else
12651 cond = RECUR (cond);
12652 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
12653 switch (TREE_CODE (incr))
12654 {
12655 case PREINCREMENT_EXPR:
12656 case PREDECREMENT_EXPR:
12657 case POSTINCREMENT_EXPR:
12658 case POSTDECREMENT_EXPR:
12659 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
12660 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
12661 break;
12662 case MODIFY_EXPR:
12663 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
12664 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
12665 {
12666 tree rhs = TREE_OPERAND (incr, 1);
12667 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl),
12668 RECUR (TREE_OPERAND (incr, 0)),
12669 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
12670 RECUR (TREE_OPERAND (rhs, 0)),
12671 RECUR (TREE_OPERAND (rhs, 1))));
12672 }
12673 else
12674 incr = RECUR (incr);
12675 break;
12676 case MODOP_EXPR:
12677 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
12678 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
12679 {
12680 tree lhs = RECUR (TREE_OPERAND (incr, 0));
12681 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
12682 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
12683 TREE_TYPE (decl), lhs,
12684 RECUR (TREE_OPERAND (incr, 2))));
12685 }
12686 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
12687 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
12688 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
12689 {
12690 tree rhs = TREE_OPERAND (incr, 2);
12691 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl),
12692 RECUR (TREE_OPERAND (incr, 0)),
12693 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
12694 RECUR (TREE_OPERAND (rhs, 0)),
12695 RECUR (TREE_OPERAND (rhs, 1))));
12696 }
12697 else
12698 incr = RECUR (incr);
12699 break;
12700 default:
12701 incr = RECUR (incr);
12702 break;
12703 }
12704
12705 TREE_VEC_ELT (declv, i) = decl;
12706 TREE_VEC_ELT (initv, i) = init;
12707 TREE_VEC_ELT (condv, i) = cond;
12708 TREE_VEC_ELT (incrv, i) = incr;
12709 #undef RECUR
12710 }
12711
12712 /* Like tsubst_copy for expressions, etc. but also does semantic
12713 processing. */
12714
12715 static tree
12716 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
12717 bool integral_constant_expression_p)
12718 {
12719 #define RECUR(NODE) \
12720 tsubst_expr ((NODE), args, complain, in_decl, \
12721 integral_constant_expression_p)
12722
12723 tree stmt, tmp;
12724
12725 if (t == NULL_TREE || t == error_mark_node)
12726 return t;
12727
12728 if (EXPR_HAS_LOCATION (t))
12729 input_location = EXPR_LOCATION (t);
12730 if (STATEMENT_CODE_P (TREE_CODE (t)))
12731 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
12732
12733 switch (TREE_CODE (t))
12734 {
12735 case STATEMENT_LIST:
12736 {
12737 tree_stmt_iterator i;
12738 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
12739 RECUR (tsi_stmt (i));
12740 break;
12741 }
12742
12743 case CTOR_INITIALIZER:
12744 finish_mem_initializers (tsubst_initializer_list
12745 (TREE_OPERAND (t, 0), args));
12746 break;
12747
12748 case RETURN_EXPR:
12749 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
12750 break;
12751
12752 case EXPR_STMT:
12753 tmp = RECUR (EXPR_STMT_EXPR (t));
12754 if (EXPR_STMT_STMT_EXPR_RESULT (t))
12755 finish_stmt_expr_expr (tmp, cur_stmt_expr);
12756 else
12757 finish_expr_stmt (tmp);
12758 break;
12759
12760 case USING_STMT:
12761 do_using_directive (USING_STMT_NAMESPACE (t));
12762 break;
12763
12764 case DECL_EXPR:
12765 {
12766 tree decl, pattern_decl;
12767 tree init;
12768
12769 pattern_decl = decl = DECL_EXPR_DECL (t);
12770 if (TREE_CODE (decl) == LABEL_DECL)
12771 finish_label_decl (DECL_NAME (decl));
12772 else if (TREE_CODE (decl) == USING_DECL)
12773 {
12774 tree scope = USING_DECL_SCOPE (decl);
12775 tree name = DECL_NAME (decl);
12776 tree decl;
12777
12778 scope = tsubst (scope, args, complain, in_decl);
12779 decl = lookup_qualified_name (scope, name,
12780 /*is_type_p=*/false,
12781 /*complain=*/false);
12782 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
12783 qualified_name_lookup_error (scope, name, decl, input_location);
12784 else
12785 do_local_using_decl (decl, scope, name);
12786 }
12787 else
12788 {
12789 init = DECL_INITIAL (decl);
12790 decl = tsubst (decl, args, complain, in_decl);
12791 if (decl != error_mark_node)
12792 {
12793 /* By marking the declaration as instantiated, we avoid
12794 trying to instantiate it. Since instantiate_decl can't
12795 handle local variables, and since we've already done
12796 all that needs to be done, that's the right thing to
12797 do. */
12798 if (TREE_CODE (decl) == VAR_DECL)
12799 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
12800 if (TREE_CODE (decl) == VAR_DECL
12801 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
12802 /* Anonymous aggregates are a special case. */
12803 finish_anon_union (decl);
12804 else
12805 {
12806 int const_init = false;
12807 maybe_push_decl (decl);
12808 if (TREE_CODE (decl) == VAR_DECL
12809 && DECL_PRETTY_FUNCTION_P (decl))
12810 {
12811 /* For __PRETTY_FUNCTION__ we have to adjust the
12812 initializer. */
12813 const char *const name
12814 = cxx_printable_name (current_function_decl, 2);
12815 init = cp_fname_init (name, &TREE_TYPE (decl));
12816 }
12817 else
12818 {
12819 tree t = RECUR (init);
12820
12821 if (init && !t)
12822 {
12823 /* If we had an initializer but it
12824 instantiated to nothing,
12825 value-initialize the object. This will
12826 only occur when the initializer was a
12827 pack expansion where the parameter packs
12828 used in that expansion were of length
12829 zero. */
12830 init = build_value_init (TREE_TYPE (decl),
12831 complain);
12832 if (TREE_CODE (init) == AGGR_INIT_EXPR)
12833 init = get_target_expr_sfinae (init, complain);
12834 }
12835 else
12836 init = t;
12837 }
12838
12839 if (TREE_CODE (decl) == VAR_DECL)
12840 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
12841 (pattern_decl));
12842 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
12843 }
12844 }
12845 }
12846
12847 /* A DECL_EXPR can also be used as an expression, in the condition
12848 clause of an if/for/while construct. */
12849 return decl;
12850 }
12851
12852 case FOR_STMT:
12853 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
12854 RECUR (FOR_INIT_STMT (t));
12855 finish_for_init_stmt (stmt);
12856 tmp = RECUR (FOR_COND (t));
12857 finish_for_cond (tmp, stmt);
12858 tmp = RECUR (FOR_EXPR (t));
12859 finish_for_expr (tmp, stmt);
12860 RECUR (FOR_BODY (t));
12861 finish_for_stmt (stmt);
12862 break;
12863
12864 case RANGE_FOR_STMT:
12865 {
12866 tree decl, expr;
12867 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
12868 decl = RANGE_FOR_DECL (t);
12869 decl = tsubst (decl, args, complain, in_decl);
12870 maybe_push_decl (decl);
12871 expr = RECUR (RANGE_FOR_EXPR (t));
12872 stmt = cp_convert_range_for (stmt, decl, expr);
12873 RECUR (RANGE_FOR_BODY (t));
12874 finish_for_stmt (stmt);
12875 }
12876 break;
12877
12878 case WHILE_STMT:
12879 stmt = begin_while_stmt ();
12880 tmp = RECUR (WHILE_COND (t));
12881 finish_while_stmt_cond (tmp, stmt);
12882 RECUR (WHILE_BODY (t));
12883 finish_while_stmt (stmt);
12884 break;
12885
12886 case DO_STMT:
12887 stmt = begin_do_stmt ();
12888 RECUR (DO_BODY (t));
12889 finish_do_body (stmt);
12890 tmp = RECUR (DO_COND (t));
12891 finish_do_stmt (tmp, stmt);
12892 break;
12893
12894 case IF_STMT:
12895 stmt = begin_if_stmt ();
12896 tmp = RECUR (IF_COND (t));
12897 finish_if_stmt_cond (tmp, stmt);
12898 RECUR (THEN_CLAUSE (t));
12899 finish_then_clause (stmt);
12900
12901 if (ELSE_CLAUSE (t))
12902 {
12903 begin_else_clause (stmt);
12904 RECUR (ELSE_CLAUSE (t));
12905 finish_else_clause (stmt);
12906 }
12907
12908 finish_if_stmt (stmt);
12909 break;
12910
12911 case BIND_EXPR:
12912 if (BIND_EXPR_BODY_BLOCK (t))
12913 stmt = begin_function_body ();
12914 else
12915 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
12916 ? BCS_TRY_BLOCK : 0);
12917
12918 RECUR (BIND_EXPR_BODY (t));
12919
12920 if (BIND_EXPR_BODY_BLOCK (t))
12921 finish_function_body (stmt);
12922 else
12923 finish_compound_stmt (stmt);
12924 break;
12925
12926 case BREAK_STMT:
12927 finish_break_stmt ();
12928 break;
12929
12930 case CONTINUE_STMT:
12931 finish_continue_stmt ();
12932 break;
12933
12934 case SWITCH_STMT:
12935 stmt = begin_switch_stmt ();
12936 tmp = RECUR (SWITCH_STMT_COND (t));
12937 finish_switch_cond (tmp, stmt);
12938 RECUR (SWITCH_STMT_BODY (t));
12939 finish_switch_stmt (stmt);
12940 break;
12941
12942 case CASE_LABEL_EXPR:
12943 finish_case_label (EXPR_LOCATION (t),
12944 RECUR (CASE_LOW (t)),
12945 RECUR (CASE_HIGH (t)));
12946 break;
12947
12948 case LABEL_EXPR:
12949 {
12950 tree decl = LABEL_EXPR_LABEL (t);
12951 tree label;
12952
12953 label = finish_label_stmt (DECL_NAME (decl));
12954 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
12955 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
12956 }
12957 break;
12958
12959 case GOTO_EXPR:
12960 tmp = GOTO_DESTINATION (t);
12961 if (TREE_CODE (tmp) != LABEL_DECL)
12962 /* Computed goto's must be tsubst'd into. On the other hand,
12963 non-computed gotos must not be; the identifier in question
12964 will have no binding. */
12965 tmp = RECUR (tmp);
12966 else
12967 tmp = DECL_NAME (tmp);
12968 finish_goto_stmt (tmp);
12969 break;
12970
12971 case ASM_EXPR:
12972 tmp = finish_asm_stmt
12973 (ASM_VOLATILE_P (t),
12974 RECUR (ASM_STRING (t)),
12975 tsubst_copy_asm_operands (ASM_OUTPUTS (t), args, complain, in_decl),
12976 tsubst_copy_asm_operands (ASM_INPUTS (t), args, complain, in_decl),
12977 tsubst_copy_asm_operands (ASM_CLOBBERS (t), args, complain, in_decl),
12978 tsubst_copy_asm_operands (ASM_LABELS (t), args, complain, in_decl));
12979 {
12980 tree asm_expr = tmp;
12981 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
12982 asm_expr = TREE_OPERAND (asm_expr, 0);
12983 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
12984 }
12985 break;
12986
12987 case TRY_BLOCK:
12988 if (CLEANUP_P (t))
12989 {
12990 stmt = begin_try_block ();
12991 RECUR (TRY_STMTS (t));
12992 finish_cleanup_try_block (stmt);
12993 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
12994 }
12995 else
12996 {
12997 tree compound_stmt = NULL_TREE;
12998
12999 if (FN_TRY_BLOCK_P (t))
13000 stmt = begin_function_try_block (&compound_stmt);
13001 else
13002 stmt = begin_try_block ();
13003
13004 RECUR (TRY_STMTS (t));
13005
13006 if (FN_TRY_BLOCK_P (t))
13007 finish_function_try_block (stmt);
13008 else
13009 finish_try_block (stmt);
13010
13011 RECUR (TRY_HANDLERS (t));
13012 if (FN_TRY_BLOCK_P (t))
13013 finish_function_handler_sequence (stmt, compound_stmt);
13014 else
13015 finish_handler_sequence (stmt);
13016 }
13017 break;
13018
13019 case HANDLER:
13020 {
13021 tree decl = HANDLER_PARMS (t);
13022
13023 if (decl)
13024 {
13025 decl = tsubst (decl, args, complain, in_decl);
13026 /* Prevent instantiate_decl from trying to instantiate
13027 this variable. We've already done all that needs to be
13028 done. */
13029 if (decl != error_mark_node)
13030 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
13031 }
13032 stmt = begin_handler ();
13033 finish_handler_parms (decl, stmt);
13034 RECUR (HANDLER_BODY (t));
13035 finish_handler (stmt);
13036 }
13037 break;
13038
13039 case TAG_DEFN:
13040 tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
13041 break;
13042
13043 case STATIC_ASSERT:
13044 {
13045 tree condition =
13046 tsubst_expr (STATIC_ASSERT_CONDITION (t),
13047 args,
13048 complain, in_decl,
13049 /*integral_constant_expression_p=*/true);
13050 finish_static_assert (condition,
13051 STATIC_ASSERT_MESSAGE (t),
13052 STATIC_ASSERT_SOURCE_LOCATION (t),
13053 /*member_p=*/false);
13054 }
13055 break;
13056
13057 case OMP_PARALLEL:
13058 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t),
13059 args, complain, in_decl);
13060 stmt = begin_omp_parallel ();
13061 RECUR (OMP_PARALLEL_BODY (t));
13062 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
13063 = OMP_PARALLEL_COMBINED (t);
13064 break;
13065
13066 case OMP_TASK:
13067 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t),
13068 args, complain, in_decl);
13069 stmt = begin_omp_task ();
13070 RECUR (OMP_TASK_BODY (t));
13071 finish_omp_task (tmp, stmt);
13072 break;
13073
13074 case OMP_FOR:
13075 {
13076 tree clauses, body, pre_body;
13077 tree declv, initv, condv, incrv;
13078 int i;
13079
13080 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t),
13081 args, complain, in_decl);
13082 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13083 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13084 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13085 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13086
13087 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
13088 tsubst_omp_for_iterator (t, i, declv, initv, condv, incrv,
13089 &clauses, args, complain, in_decl,
13090 integral_constant_expression_p);
13091
13092 stmt = begin_omp_structured_block ();
13093
13094 for (i = 0; i < TREE_VEC_LENGTH (initv); i++)
13095 if (TREE_VEC_ELT (initv, i) == NULL
13096 || TREE_CODE (TREE_VEC_ELT (initv, i)) != DECL_EXPR)
13097 TREE_VEC_ELT (initv, i) = RECUR (TREE_VEC_ELT (initv, i));
13098 else if (CLASS_TYPE_P (TREE_TYPE (TREE_VEC_ELT (initv, i))))
13099 {
13100 tree init = RECUR (TREE_VEC_ELT (initv, i));
13101 gcc_assert (init == TREE_VEC_ELT (declv, i));
13102 TREE_VEC_ELT (initv, i) = NULL_TREE;
13103 }
13104 else
13105 {
13106 tree decl_expr = TREE_VEC_ELT (initv, i);
13107 tree init = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
13108 gcc_assert (init != NULL);
13109 TREE_VEC_ELT (initv, i) = RECUR (init);
13110 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL;
13111 RECUR (decl_expr);
13112 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init;
13113 }
13114
13115 pre_body = push_stmt_list ();
13116 RECUR (OMP_FOR_PRE_BODY (t));
13117 pre_body = pop_stmt_list (pre_body);
13118
13119 body = push_stmt_list ();
13120 RECUR (OMP_FOR_BODY (t));
13121 body = pop_stmt_list (body);
13122
13123 t = finish_omp_for (EXPR_LOCATION (t), declv, initv, condv, incrv,
13124 body, pre_body, clauses);
13125
13126 add_stmt (finish_omp_structured_block (stmt));
13127 }
13128 break;
13129
13130 case OMP_SECTIONS:
13131 case OMP_SINGLE:
13132 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), args, complain, in_decl);
13133 stmt = push_stmt_list ();
13134 RECUR (OMP_BODY (t));
13135 stmt = pop_stmt_list (stmt);
13136
13137 t = copy_node (t);
13138 OMP_BODY (t) = stmt;
13139 OMP_CLAUSES (t) = tmp;
13140 add_stmt (t);
13141 break;
13142
13143 case OMP_SECTION:
13144 case OMP_CRITICAL:
13145 case OMP_MASTER:
13146 case OMP_ORDERED:
13147 stmt = push_stmt_list ();
13148 RECUR (OMP_BODY (t));
13149 stmt = pop_stmt_list (stmt);
13150
13151 t = copy_node (t);
13152 OMP_BODY (t) = stmt;
13153 add_stmt (t);
13154 break;
13155
13156 case OMP_ATOMIC:
13157 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
13158 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
13159 {
13160 tree op1 = TREE_OPERAND (t, 1);
13161 tree rhs1 = NULL_TREE;
13162 tree lhs, rhs;
13163 if (TREE_CODE (op1) == COMPOUND_EXPR)
13164 {
13165 rhs1 = RECUR (TREE_OPERAND (op1, 0));
13166 op1 = TREE_OPERAND (op1, 1);
13167 }
13168 lhs = RECUR (TREE_OPERAND (op1, 0));
13169 rhs = RECUR (TREE_OPERAND (op1, 1));
13170 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
13171 NULL_TREE, NULL_TREE, rhs1);
13172 }
13173 else
13174 {
13175 tree op1 = TREE_OPERAND (t, 1);
13176 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
13177 tree rhs1 = NULL_TREE;
13178 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
13179 enum tree_code opcode = NOP_EXPR;
13180 if (code == OMP_ATOMIC_READ)
13181 {
13182 v = RECUR (TREE_OPERAND (op1, 0));
13183 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
13184 }
13185 else if (code == OMP_ATOMIC_CAPTURE_OLD
13186 || code == OMP_ATOMIC_CAPTURE_NEW)
13187 {
13188 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
13189 v = RECUR (TREE_OPERAND (op1, 0));
13190 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
13191 if (TREE_CODE (op11) == COMPOUND_EXPR)
13192 {
13193 rhs1 = RECUR (TREE_OPERAND (op11, 0));
13194 op11 = TREE_OPERAND (op11, 1);
13195 }
13196 lhs = RECUR (TREE_OPERAND (op11, 0));
13197 rhs = RECUR (TREE_OPERAND (op11, 1));
13198 opcode = TREE_CODE (op11);
13199 }
13200 else
13201 {
13202 code = OMP_ATOMIC;
13203 lhs = RECUR (TREE_OPERAND (op1, 0));
13204 rhs = RECUR (TREE_OPERAND (op1, 1));
13205 }
13206 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1);
13207 }
13208 break;
13209
13210 case TRANSACTION_EXPR:
13211 {
13212 int flags = 0;
13213 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
13214 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
13215
13216 if (TRANSACTION_EXPR_IS_STMT (t))
13217 {
13218 stmt = begin_transaction_stmt (input_location, NULL, flags);
13219 RECUR (TRANSACTION_EXPR_BODY (t));
13220 finish_transaction_stmt (stmt, NULL, flags);
13221 }
13222 else
13223 {
13224 stmt = build_transaction_expr (EXPR_LOCATION (t),
13225 RECUR (TRANSACTION_EXPR_BODY (t)),
13226 flags);
13227 return stmt;
13228 }
13229 }
13230 break;
13231
13232 case EXPR_PACK_EXPANSION:
13233 error ("invalid use of pack expansion expression");
13234 return error_mark_node;
13235
13236 case NONTYPE_ARGUMENT_PACK:
13237 error ("use %<...%> to expand argument pack");
13238 return error_mark_node;
13239
13240 default:
13241 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
13242
13243 return tsubst_copy_and_build (t, args, complain, in_decl,
13244 /*function_p=*/false,
13245 integral_constant_expression_p);
13246 }
13247
13248 return NULL_TREE;
13249 #undef RECUR
13250 }
13251
13252 /* T is a postfix-expression that is not being used in a function
13253 call. Return the substituted version of T. */
13254
13255 static tree
13256 tsubst_non_call_postfix_expression (tree t, tree args,
13257 tsubst_flags_t complain,
13258 tree in_decl)
13259 {
13260 if (TREE_CODE (t) == SCOPE_REF)
13261 t = tsubst_qualified_id (t, args, complain, in_decl,
13262 /*done=*/false, /*address_p=*/false);
13263 else
13264 t = tsubst_copy_and_build (t, args, complain, in_decl,
13265 /*function_p=*/false,
13266 /*integral_constant_expression_p=*/false);
13267
13268 return t;
13269 }
13270
13271 /* Like tsubst but deals with expressions and performs semantic
13272 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
13273
13274 tree
13275 tsubst_copy_and_build (tree t,
13276 tree args,
13277 tsubst_flags_t complain,
13278 tree in_decl,
13279 bool function_p,
13280 bool integral_constant_expression_p)
13281 {
13282 #define RECUR(NODE) \
13283 tsubst_copy_and_build (NODE, args, complain, in_decl, \
13284 /*function_p=*/false, \
13285 integral_constant_expression_p)
13286
13287 tree op1;
13288
13289 if (t == NULL_TREE || t == error_mark_node)
13290 return t;
13291
13292 switch (TREE_CODE (t))
13293 {
13294 case USING_DECL:
13295 t = DECL_NAME (t);
13296 /* Fall through. */
13297 case IDENTIFIER_NODE:
13298 {
13299 tree decl;
13300 cp_id_kind idk;
13301 bool non_integral_constant_expression_p;
13302 const char *error_msg;
13303
13304 if (IDENTIFIER_TYPENAME_P (t))
13305 {
13306 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13307 t = mangle_conv_op_name_for_type (new_type);
13308 }
13309
13310 /* Look up the name. */
13311 decl = lookup_name (t);
13312
13313 /* By convention, expressions use ERROR_MARK_NODE to indicate
13314 failure, not NULL_TREE. */
13315 if (decl == NULL_TREE)
13316 decl = error_mark_node;
13317
13318 decl = finish_id_expression (t, decl, NULL_TREE,
13319 &idk,
13320 integral_constant_expression_p,
13321 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx0x),
13322 &non_integral_constant_expression_p,
13323 /*template_p=*/false,
13324 /*done=*/true,
13325 /*address_p=*/false,
13326 /*template_arg_p=*/false,
13327 &error_msg,
13328 input_location);
13329 if (error_msg)
13330 error (error_msg);
13331 if (!function_p && TREE_CODE (decl) == IDENTIFIER_NODE)
13332 {
13333 if (complain & tf_error)
13334 unqualified_name_lookup_error (decl);
13335 decl = error_mark_node;
13336 }
13337 return decl;
13338 }
13339
13340 case TEMPLATE_ID_EXPR:
13341 {
13342 tree object;
13343 tree templ = RECUR (TREE_OPERAND (t, 0));
13344 tree targs = TREE_OPERAND (t, 1);
13345
13346 if (targs)
13347 targs = tsubst_template_args (targs, args, complain, in_decl);
13348
13349 if (TREE_CODE (templ) == COMPONENT_REF)
13350 {
13351 object = TREE_OPERAND (templ, 0);
13352 templ = TREE_OPERAND (templ, 1);
13353 }
13354 else
13355 object = NULL_TREE;
13356 templ = lookup_template_function (templ, targs);
13357
13358 if (object)
13359 return build3 (COMPONENT_REF, TREE_TYPE (templ),
13360 object, templ, NULL_TREE);
13361 else
13362 return baselink_for_fns (templ);
13363 }
13364
13365 case INDIRECT_REF:
13366 {
13367 tree r = RECUR (TREE_OPERAND (t, 0));
13368
13369 if (REFERENCE_REF_P (t))
13370 {
13371 /* A type conversion to reference type will be enclosed in
13372 such an indirect ref, but the substitution of the cast
13373 will have also added such an indirect ref. */
13374 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
13375 r = convert_from_reference (r);
13376 }
13377 else
13378 r = build_x_indirect_ref (r, RO_UNARY_STAR, complain);
13379 return r;
13380 }
13381
13382 case NOP_EXPR:
13383 return build_nop
13384 (tsubst (TREE_TYPE (t), args, complain, in_decl),
13385 RECUR (TREE_OPERAND (t, 0)));
13386
13387 case IMPLICIT_CONV_EXPR:
13388 {
13389 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13390 tree expr = RECUR (TREE_OPERAND (t, 0));
13391 int flags = LOOKUP_IMPLICIT;
13392 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
13393 flags = LOOKUP_NORMAL;
13394 return perform_implicit_conversion_flags (type, expr, complain,
13395 flags);
13396 }
13397
13398 case CONVERT_EXPR:
13399 return build1
13400 (CONVERT_EXPR,
13401 tsubst (TREE_TYPE (t), args, complain, in_decl),
13402 RECUR (TREE_OPERAND (t, 0)));
13403
13404 case CAST_EXPR:
13405 case REINTERPRET_CAST_EXPR:
13406 case CONST_CAST_EXPR:
13407 case DYNAMIC_CAST_EXPR:
13408 case STATIC_CAST_EXPR:
13409 {
13410 tree type;
13411 tree op;
13412
13413 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13414 if (integral_constant_expression_p
13415 && !cast_valid_in_integral_constant_expression_p (type))
13416 {
13417 if (complain & tf_error)
13418 error ("a cast to a type other than an integral or "
13419 "enumeration type cannot appear in a constant-expression");
13420 return error_mark_node;
13421 }
13422
13423 op = RECUR (TREE_OPERAND (t, 0));
13424
13425 switch (TREE_CODE (t))
13426 {
13427 case CAST_EXPR:
13428 return build_functional_cast (type, op, complain);
13429 case REINTERPRET_CAST_EXPR:
13430 return build_reinterpret_cast (type, op, complain);
13431 case CONST_CAST_EXPR:
13432 return build_const_cast (type, op, complain);
13433 case DYNAMIC_CAST_EXPR:
13434 return build_dynamic_cast (type, op, complain);
13435 case STATIC_CAST_EXPR:
13436 return build_static_cast (type, op, complain);
13437 default:
13438 gcc_unreachable ();
13439 }
13440 }
13441
13442 case POSTDECREMENT_EXPR:
13443 case POSTINCREMENT_EXPR:
13444 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13445 args, complain, in_decl);
13446 return build_x_unary_op (TREE_CODE (t), op1, complain);
13447
13448 case PREDECREMENT_EXPR:
13449 case PREINCREMENT_EXPR:
13450 case NEGATE_EXPR:
13451 case BIT_NOT_EXPR:
13452 case ABS_EXPR:
13453 case TRUTH_NOT_EXPR:
13454 case UNARY_PLUS_EXPR: /* Unary + */
13455 case REALPART_EXPR:
13456 case IMAGPART_EXPR:
13457 return build_x_unary_op (TREE_CODE (t), RECUR (TREE_OPERAND (t, 0)),
13458 complain);
13459
13460 case FIX_TRUNC_EXPR:
13461 return cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
13462 0, complain);
13463
13464 case ADDR_EXPR:
13465 op1 = TREE_OPERAND (t, 0);
13466 if (TREE_CODE (op1) == LABEL_DECL)
13467 return finish_label_address_expr (DECL_NAME (op1),
13468 EXPR_LOCATION (op1));
13469 if (TREE_CODE (op1) == SCOPE_REF)
13470 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
13471 /*done=*/true, /*address_p=*/true);
13472 else
13473 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
13474 in_decl);
13475 return build_x_unary_op (ADDR_EXPR, op1, complain);
13476
13477 case PLUS_EXPR:
13478 case MINUS_EXPR:
13479 case MULT_EXPR:
13480 case TRUNC_DIV_EXPR:
13481 case CEIL_DIV_EXPR:
13482 case FLOOR_DIV_EXPR:
13483 case ROUND_DIV_EXPR:
13484 case EXACT_DIV_EXPR:
13485 case BIT_AND_EXPR:
13486 case BIT_IOR_EXPR:
13487 case BIT_XOR_EXPR:
13488 case TRUNC_MOD_EXPR:
13489 case FLOOR_MOD_EXPR:
13490 case TRUTH_ANDIF_EXPR:
13491 case TRUTH_ORIF_EXPR:
13492 case TRUTH_AND_EXPR:
13493 case TRUTH_OR_EXPR:
13494 case RSHIFT_EXPR:
13495 case LSHIFT_EXPR:
13496 case RROTATE_EXPR:
13497 case LROTATE_EXPR:
13498 case EQ_EXPR:
13499 case NE_EXPR:
13500 case MAX_EXPR:
13501 case MIN_EXPR:
13502 case LE_EXPR:
13503 case GE_EXPR:
13504 case LT_EXPR:
13505 case GT_EXPR:
13506 case MEMBER_REF:
13507 case DOTSTAR_EXPR:
13508 return build_x_binary_op
13509 (TREE_CODE (t),
13510 RECUR (TREE_OPERAND (t, 0)),
13511 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
13512 ? ERROR_MARK
13513 : TREE_CODE (TREE_OPERAND (t, 0))),
13514 RECUR (TREE_OPERAND (t, 1)),
13515 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
13516 ? ERROR_MARK
13517 : TREE_CODE (TREE_OPERAND (t, 1))),
13518 /*overload=*/NULL,
13519 complain);
13520
13521 case SCOPE_REF:
13522 return tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
13523 /*address_p=*/false);
13524 case ARRAY_REF:
13525 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13526 args, complain, in_decl);
13527 return build_x_array_ref (op1, RECUR (TREE_OPERAND (t, 1)), complain);
13528
13529 case SIZEOF_EXPR:
13530 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
13531 return tsubst_copy (t, args, complain, in_decl);
13532 /* Fall through */
13533
13534 case ALIGNOF_EXPR:
13535 op1 = TREE_OPERAND (t, 0);
13536 if (!args)
13537 {
13538 /* When there are no ARGS, we are trying to evaluate a
13539 non-dependent expression from the parser. Trying to do
13540 the substitutions may not work. */
13541 if (!TYPE_P (op1))
13542 op1 = TREE_TYPE (op1);
13543 }
13544 else
13545 {
13546 ++cp_unevaluated_operand;
13547 ++c_inhibit_evaluation_warnings;
13548 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
13549 /*function_p=*/false,
13550 /*integral_constant_expression_p=*/false);
13551 --cp_unevaluated_operand;
13552 --c_inhibit_evaluation_warnings;
13553 }
13554 if (TYPE_P (op1))
13555 return cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
13556 complain & tf_error);
13557 else
13558 return cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
13559 complain & tf_error);
13560
13561 case AT_ENCODE_EXPR:
13562 {
13563 op1 = TREE_OPERAND (t, 0);
13564 ++cp_unevaluated_operand;
13565 ++c_inhibit_evaluation_warnings;
13566 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
13567 /*function_p=*/false,
13568 /*integral_constant_expression_p=*/false);
13569 --cp_unevaluated_operand;
13570 --c_inhibit_evaluation_warnings;
13571 return objc_build_encode_expr (op1);
13572 }
13573
13574 case NOEXCEPT_EXPR:
13575 op1 = TREE_OPERAND (t, 0);
13576 ++cp_unevaluated_operand;
13577 ++c_inhibit_evaluation_warnings;
13578 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
13579 /*function_p=*/false,
13580 /*integral_constant_expression_p=*/false);
13581 --cp_unevaluated_operand;
13582 --c_inhibit_evaluation_warnings;
13583 return finish_noexcept_expr (op1, complain);
13584
13585 case MODOP_EXPR:
13586 {
13587 tree r = build_x_modify_expr
13588 (RECUR (TREE_OPERAND (t, 0)),
13589 TREE_CODE (TREE_OPERAND (t, 1)),
13590 RECUR (TREE_OPERAND (t, 2)),
13591 complain);
13592 /* TREE_NO_WARNING must be set if either the expression was
13593 parenthesized or it uses an operator such as >>= rather
13594 than plain assignment. In the former case, it was already
13595 set and must be copied. In the latter case,
13596 build_x_modify_expr sets it and it must not be reset
13597 here. */
13598 if (TREE_NO_WARNING (t))
13599 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
13600 return r;
13601 }
13602
13603 case ARROW_EXPR:
13604 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13605 args, complain, in_decl);
13606 /* Remember that there was a reference to this entity. */
13607 if (DECL_P (op1))
13608 mark_used (op1);
13609 return build_x_arrow (op1);
13610
13611 case NEW_EXPR:
13612 {
13613 tree placement = RECUR (TREE_OPERAND (t, 0));
13614 tree init = RECUR (TREE_OPERAND (t, 3));
13615 VEC(tree,gc) *placement_vec;
13616 VEC(tree,gc) *init_vec;
13617 tree ret;
13618
13619 if (placement == NULL_TREE)
13620 placement_vec = NULL;
13621 else
13622 {
13623 placement_vec = make_tree_vector ();
13624 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
13625 VEC_safe_push (tree, gc, placement_vec, TREE_VALUE (placement));
13626 }
13627
13628 /* If there was an initializer in the original tree, but it
13629 instantiated to an empty list, then we should pass a
13630 non-NULL empty vector to tell build_new that it was an
13631 empty initializer() rather than no initializer. This can
13632 only happen when the initializer is a pack expansion whose
13633 parameter packs are of length zero. */
13634 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
13635 init_vec = NULL;
13636 else
13637 {
13638 init_vec = make_tree_vector ();
13639 if (init == void_zero_node)
13640 gcc_assert (init_vec != NULL);
13641 else
13642 {
13643 for (; init != NULL_TREE; init = TREE_CHAIN (init))
13644 VEC_safe_push (tree, gc, init_vec, TREE_VALUE (init));
13645 }
13646 }
13647
13648 ret = build_new (&placement_vec,
13649 tsubst (TREE_OPERAND (t, 1), args, complain, in_decl),
13650 RECUR (TREE_OPERAND (t, 2)),
13651 &init_vec,
13652 NEW_EXPR_USE_GLOBAL (t),
13653 complain);
13654
13655 if (placement_vec != NULL)
13656 release_tree_vector (placement_vec);
13657 if (init_vec != NULL)
13658 release_tree_vector (init_vec);
13659
13660 return ret;
13661 }
13662
13663 case DELETE_EXPR:
13664 return delete_sanity
13665 (RECUR (TREE_OPERAND (t, 0)),
13666 RECUR (TREE_OPERAND (t, 1)),
13667 DELETE_EXPR_USE_VEC (t),
13668 DELETE_EXPR_USE_GLOBAL (t),
13669 complain);
13670
13671 case COMPOUND_EXPR:
13672 return build_x_compound_expr (RECUR (TREE_OPERAND (t, 0)),
13673 RECUR (TREE_OPERAND (t, 1)),
13674 complain);
13675
13676 case CALL_EXPR:
13677 {
13678 tree function;
13679 VEC(tree,gc) *call_args;
13680 unsigned int nargs, i;
13681 bool qualified_p;
13682 bool koenig_p;
13683 tree ret;
13684
13685 function = CALL_EXPR_FN (t);
13686 /* When we parsed the expression, we determined whether or
13687 not Koenig lookup should be performed. */
13688 koenig_p = KOENIG_LOOKUP_P (t);
13689 if (TREE_CODE (function) == SCOPE_REF)
13690 {
13691 qualified_p = true;
13692 function = tsubst_qualified_id (function, args, complain, in_decl,
13693 /*done=*/false,
13694 /*address_p=*/false);
13695 }
13696 else if (koenig_p && TREE_CODE (function) == IDENTIFIER_NODE)
13697 {
13698 /* Do nothing; calling tsubst_copy_and_build on an identifier
13699 would incorrectly perform unqualified lookup again.
13700
13701 Note that we can also have an IDENTIFIER_NODE if the earlier
13702 unqualified lookup found a member function; in that case
13703 koenig_p will be false and we do want to do the lookup
13704 again to find the instantiated member function.
13705
13706 FIXME but doing that causes c++/15272, so we need to stop
13707 using IDENTIFIER_NODE in that situation. */
13708 qualified_p = false;
13709 }
13710 else
13711 {
13712 if (TREE_CODE (function) == COMPONENT_REF)
13713 {
13714 tree op = TREE_OPERAND (function, 1);
13715
13716 qualified_p = (TREE_CODE (op) == SCOPE_REF
13717 || (BASELINK_P (op)
13718 && BASELINK_QUALIFIED_P (op)));
13719 }
13720 else
13721 qualified_p = false;
13722
13723 function = tsubst_copy_and_build (function, args, complain,
13724 in_decl,
13725 !qualified_p,
13726 integral_constant_expression_p);
13727
13728 if (BASELINK_P (function))
13729 qualified_p = true;
13730 }
13731
13732 nargs = call_expr_nargs (t);
13733 call_args = make_tree_vector ();
13734 for (i = 0; i < nargs; ++i)
13735 {
13736 tree arg = CALL_EXPR_ARG (t, i);
13737
13738 if (!PACK_EXPANSION_P (arg))
13739 VEC_safe_push (tree, gc, call_args,
13740 RECUR (CALL_EXPR_ARG (t, i)));
13741 else
13742 {
13743 /* Expand the pack expansion and push each entry onto
13744 CALL_ARGS. */
13745 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
13746 if (TREE_CODE (arg) == TREE_VEC)
13747 {
13748 unsigned int len, j;
13749
13750 len = TREE_VEC_LENGTH (arg);
13751 for (j = 0; j < len; ++j)
13752 {
13753 tree value = TREE_VEC_ELT (arg, j);
13754 if (value != NULL_TREE)
13755 value = convert_from_reference (value);
13756 VEC_safe_push (tree, gc, call_args, value);
13757 }
13758 }
13759 else
13760 {
13761 /* A partial substitution. Add one entry. */
13762 VEC_safe_push (tree, gc, call_args, arg);
13763 }
13764 }
13765 }
13766
13767 /* We do not perform argument-dependent lookup if normal
13768 lookup finds a non-function, in accordance with the
13769 expected resolution of DR 218. */
13770 if (koenig_p
13771 && ((is_overloaded_fn (function)
13772 /* If lookup found a member function, the Koenig lookup is
13773 not appropriate, even if an unqualified-name was used
13774 to denote the function. */
13775 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
13776 || TREE_CODE (function) == IDENTIFIER_NODE)
13777 /* Only do this when substitution turns a dependent call
13778 into a non-dependent call. */
13779 && type_dependent_expression_p_push (t)
13780 && !any_type_dependent_arguments_p (call_args))
13781 function = perform_koenig_lookup (function, call_args, false,
13782 tf_none);
13783
13784 if (TREE_CODE (function) == IDENTIFIER_NODE
13785 && !any_type_dependent_arguments_p (call_args))
13786 {
13787 if (koenig_p && (complain & tf_warning_or_error))
13788 {
13789 /* For backwards compatibility and good diagnostics, try
13790 the unqualified lookup again if we aren't in SFINAE
13791 context. */
13792 tree unq = (tsubst_copy_and_build
13793 (function, args, complain, in_decl, true,
13794 integral_constant_expression_p));
13795 if (unq == error_mark_node)
13796 return error_mark_node;
13797
13798 if (unq != function)
13799 {
13800 tree fn = unq;
13801 if (TREE_CODE (fn) == INDIRECT_REF)
13802 fn = TREE_OPERAND (fn, 0);
13803 if (TREE_CODE (fn) == COMPONENT_REF)
13804 fn = TREE_OPERAND (fn, 1);
13805 if (is_overloaded_fn (fn))
13806 fn = get_first_fn (fn);
13807 permerror (EXPR_LOC_OR_HERE (t),
13808 "%qD was not declared in this scope, "
13809 "and no declarations were found by "
13810 "argument-dependent lookup at the point "
13811 "of instantiation", function);
13812 if (!DECL_P (fn))
13813 /* Can't say anything more. */;
13814 else if (DECL_CLASS_SCOPE_P (fn))
13815 {
13816 inform (EXPR_LOC_OR_HERE (t),
13817 "declarations in dependent base %qT are "
13818 "not found by unqualified lookup",
13819 DECL_CLASS_CONTEXT (fn));
13820 if (current_class_ptr)
13821 inform (EXPR_LOC_OR_HERE (t),
13822 "use %<this->%D%> instead", function);
13823 else
13824 inform (EXPR_LOC_OR_HERE (t),
13825 "use %<%T::%D%> instead",
13826 current_class_name, function);
13827 }
13828 else
13829 inform (0, "%q+D declared here, later in the "
13830 "translation unit", fn);
13831 function = unq;
13832 }
13833 }
13834 if (TREE_CODE (function) == IDENTIFIER_NODE)
13835 {
13836 unqualified_name_lookup_error (function);
13837 release_tree_vector (call_args);
13838 return error_mark_node;
13839 }
13840 }
13841
13842 /* Remember that there was a reference to this entity. */
13843 if (DECL_P (function))
13844 mark_used (function);
13845
13846 if (TREE_CODE (function) == OFFSET_REF)
13847 ret = build_offset_ref_call_from_tree (function, &call_args);
13848 else if (TREE_CODE (function) == COMPONENT_REF)
13849 {
13850 tree instance = TREE_OPERAND (function, 0);
13851 tree fn = TREE_OPERAND (function, 1);
13852
13853 if (processing_template_decl
13854 && (type_dependent_expression_p (instance)
13855 || (!BASELINK_P (fn)
13856 && TREE_CODE (fn) != FIELD_DECL)
13857 || type_dependent_expression_p (fn)
13858 || any_type_dependent_arguments_p (call_args)))
13859 ret = build_nt_call_vec (function, call_args);
13860 else if (!BASELINK_P (fn))
13861 ret = finish_call_expr (function, &call_args,
13862 /*disallow_virtual=*/false,
13863 /*koenig_p=*/false,
13864 complain);
13865 else
13866 ret = (build_new_method_call
13867 (instance, fn,
13868 &call_args, NULL_TREE,
13869 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
13870 /*fn_p=*/NULL,
13871 complain));
13872 }
13873 else
13874 ret = finish_call_expr (function, &call_args,
13875 /*disallow_virtual=*/qualified_p,
13876 koenig_p,
13877 complain);
13878
13879 release_tree_vector (call_args);
13880
13881 return ret;
13882 }
13883
13884 case COND_EXPR:
13885 return build_x_conditional_expr
13886 (RECUR (TREE_OPERAND (t, 0)),
13887 RECUR (TREE_OPERAND (t, 1)),
13888 RECUR (TREE_OPERAND (t, 2)),
13889 complain);
13890
13891 case PSEUDO_DTOR_EXPR:
13892 return finish_pseudo_destructor_expr
13893 (RECUR (TREE_OPERAND (t, 0)),
13894 RECUR (TREE_OPERAND (t, 1)),
13895 tsubst (TREE_OPERAND (t, 2), args, complain, in_decl));
13896
13897 case TREE_LIST:
13898 {
13899 tree purpose, value, chain;
13900
13901 if (t == void_list_node)
13902 return t;
13903
13904 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
13905 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
13906 {
13907 /* We have pack expansions, so expand those and
13908 create a new list out of it. */
13909 tree purposevec = NULL_TREE;
13910 tree valuevec = NULL_TREE;
13911 tree chain;
13912 int i, len = -1;
13913
13914 /* Expand the argument expressions. */
13915 if (TREE_PURPOSE (t))
13916 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
13917 complain, in_decl);
13918 if (TREE_VALUE (t))
13919 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
13920 complain, in_decl);
13921
13922 /* Build the rest of the list. */
13923 chain = TREE_CHAIN (t);
13924 if (chain && chain != void_type_node)
13925 chain = RECUR (chain);
13926
13927 /* Determine the number of arguments. */
13928 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
13929 {
13930 len = TREE_VEC_LENGTH (purposevec);
13931 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
13932 }
13933 else if (TREE_CODE (valuevec) == TREE_VEC)
13934 len = TREE_VEC_LENGTH (valuevec);
13935 else
13936 {
13937 /* Since we only performed a partial substitution into
13938 the argument pack, we only return a single list
13939 node. */
13940 if (purposevec == TREE_PURPOSE (t)
13941 && valuevec == TREE_VALUE (t)
13942 && chain == TREE_CHAIN (t))
13943 return t;
13944
13945 return tree_cons (purposevec, valuevec, chain);
13946 }
13947
13948 /* Convert the argument vectors into a TREE_LIST */
13949 i = len;
13950 while (i > 0)
13951 {
13952 /* Grab the Ith values. */
13953 i--;
13954 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
13955 : NULL_TREE;
13956 value
13957 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
13958 : NULL_TREE;
13959
13960 /* Build the list (backwards). */
13961 chain = tree_cons (purpose, value, chain);
13962 }
13963
13964 return chain;
13965 }
13966
13967 purpose = TREE_PURPOSE (t);
13968 if (purpose)
13969 purpose = RECUR (purpose);
13970 value = TREE_VALUE (t);
13971 if (value)
13972 value = RECUR (value);
13973 chain = TREE_CHAIN (t);
13974 if (chain && chain != void_type_node)
13975 chain = RECUR (chain);
13976 if (purpose == TREE_PURPOSE (t)
13977 && value == TREE_VALUE (t)
13978 && chain == TREE_CHAIN (t))
13979 return t;
13980 return tree_cons (purpose, value, chain);
13981 }
13982
13983 case COMPONENT_REF:
13984 {
13985 tree object;
13986 tree object_type;
13987 tree member;
13988
13989 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13990 args, complain, in_decl);
13991 /* Remember that there was a reference to this entity. */
13992 if (DECL_P (object))
13993 mark_used (object);
13994 object_type = TREE_TYPE (object);
13995
13996 member = TREE_OPERAND (t, 1);
13997 if (BASELINK_P (member))
13998 member = tsubst_baselink (member,
13999 non_reference (TREE_TYPE (object)),
14000 args, complain, in_decl);
14001 else
14002 member = tsubst_copy (member, args, complain, in_decl);
14003 if (member == error_mark_node)
14004 return error_mark_node;
14005
14006 if (type_dependent_expression_p (object))
14007 /* We can't do much here. */;
14008 else if (!CLASS_TYPE_P (object_type))
14009 {
14010 if (SCALAR_TYPE_P (object_type))
14011 {
14012 tree s = NULL_TREE;
14013 tree dtor = member;
14014
14015 if (TREE_CODE (dtor) == SCOPE_REF)
14016 {
14017 s = TREE_OPERAND (dtor, 0);
14018 dtor = TREE_OPERAND (dtor, 1);
14019 }
14020 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
14021 {
14022 dtor = TREE_OPERAND (dtor, 0);
14023 if (TYPE_P (dtor))
14024 return finish_pseudo_destructor_expr (object, s, dtor);
14025 }
14026 }
14027 }
14028 else if (TREE_CODE (member) == SCOPE_REF
14029 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
14030 {
14031 /* Lookup the template functions now that we know what the
14032 scope is. */
14033 tree scope = TREE_OPERAND (member, 0);
14034 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
14035 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
14036 member = lookup_qualified_name (scope, tmpl,
14037 /*is_type_p=*/false,
14038 /*complain=*/false);
14039 if (BASELINK_P (member))
14040 {
14041 BASELINK_FUNCTIONS (member)
14042 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
14043 args);
14044 member = (adjust_result_of_qualified_name_lookup
14045 (member, BINFO_TYPE (BASELINK_BINFO (member)),
14046 object_type));
14047 }
14048 else
14049 {
14050 qualified_name_lookup_error (scope, tmpl, member,
14051 input_location);
14052 return error_mark_node;
14053 }
14054 }
14055 else if (TREE_CODE (member) == SCOPE_REF
14056 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
14057 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
14058 {
14059 if (complain & tf_error)
14060 {
14061 if (TYPE_P (TREE_OPERAND (member, 0)))
14062 error ("%qT is not a class or namespace",
14063 TREE_OPERAND (member, 0));
14064 else
14065 error ("%qD is not a class or namespace",
14066 TREE_OPERAND (member, 0));
14067 }
14068 return error_mark_node;
14069 }
14070 else if (TREE_CODE (member) == FIELD_DECL)
14071 return finish_non_static_data_member (member, object, NULL_TREE);
14072
14073 return finish_class_member_access_expr (object, member,
14074 /*template_p=*/false,
14075 complain);
14076 }
14077
14078 case THROW_EXPR:
14079 return build_throw
14080 (RECUR (TREE_OPERAND (t, 0)));
14081
14082 case CONSTRUCTOR:
14083 {
14084 VEC(constructor_elt,gc) *n;
14085 constructor_elt *ce;
14086 unsigned HOST_WIDE_INT idx;
14087 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14088 bool process_index_p;
14089 int newlen;
14090 bool need_copy_p = false;
14091 tree r;
14092
14093 if (type == error_mark_node)
14094 return error_mark_node;
14095
14096 /* digest_init will do the wrong thing if we let it. */
14097 if (type && TYPE_PTRMEMFUNC_P (type))
14098 return t;
14099
14100 /* We do not want to process the index of aggregate
14101 initializers as they are identifier nodes which will be
14102 looked up by digest_init. */
14103 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
14104
14105 n = VEC_copy (constructor_elt, gc, CONSTRUCTOR_ELTS (t));
14106 newlen = VEC_length (constructor_elt, n);
14107 FOR_EACH_VEC_ELT (constructor_elt, n, idx, ce)
14108 {
14109 if (ce->index && process_index_p)
14110 ce->index = RECUR (ce->index);
14111
14112 if (PACK_EXPANSION_P (ce->value))
14113 {
14114 /* Substitute into the pack expansion. */
14115 ce->value = tsubst_pack_expansion (ce->value, args, complain,
14116 in_decl);
14117
14118 if (ce->value == error_mark_node
14119 || PACK_EXPANSION_P (ce->value))
14120 ;
14121 else if (TREE_VEC_LENGTH (ce->value) == 1)
14122 /* Just move the argument into place. */
14123 ce->value = TREE_VEC_ELT (ce->value, 0);
14124 else
14125 {
14126 /* Update the length of the final CONSTRUCTOR
14127 arguments vector, and note that we will need to
14128 copy.*/
14129 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
14130 need_copy_p = true;
14131 }
14132 }
14133 else
14134 ce->value = RECUR (ce->value);
14135 }
14136
14137 if (need_copy_p)
14138 {
14139 VEC(constructor_elt,gc) *old_n = n;
14140
14141 n = VEC_alloc (constructor_elt, gc, newlen);
14142 FOR_EACH_VEC_ELT (constructor_elt, old_n, idx, ce)
14143 {
14144 if (TREE_CODE (ce->value) == TREE_VEC)
14145 {
14146 int i, len = TREE_VEC_LENGTH (ce->value);
14147 for (i = 0; i < len; ++i)
14148 CONSTRUCTOR_APPEND_ELT (n, 0,
14149 TREE_VEC_ELT (ce->value, i));
14150 }
14151 else
14152 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
14153 }
14154 }
14155
14156 r = build_constructor (init_list_type_node, n);
14157 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
14158
14159 if (TREE_HAS_CONSTRUCTOR (t))
14160 return finish_compound_literal (type, r, complain);
14161
14162 TREE_TYPE (r) = type;
14163 return r;
14164 }
14165
14166 case TYPEID_EXPR:
14167 {
14168 tree operand_0 = TREE_OPERAND (t, 0);
14169 if (TYPE_P (operand_0))
14170 {
14171 operand_0 = tsubst (operand_0, args, complain, in_decl);
14172 return get_typeid (operand_0);
14173 }
14174 else
14175 {
14176 operand_0 = RECUR (operand_0);
14177 return build_typeid (operand_0);
14178 }
14179 }
14180
14181 case VAR_DECL:
14182 if (!args)
14183 return t;
14184 /* Fall through */
14185
14186 case PARM_DECL:
14187 {
14188 tree r = tsubst_copy (t, args, complain, in_decl);
14189
14190 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
14191 /* If the original type was a reference, we'll be wrapped in
14192 the appropriate INDIRECT_REF. */
14193 r = convert_from_reference (r);
14194 return r;
14195 }
14196
14197 case VA_ARG_EXPR:
14198 return build_x_va_arg (RECUR (TREE_OPERAND (t, 0)),
14199 tsubst (TREE_TYPE (t), args, complain, in_decl));
14200
14201 case OFFSETOF_EXPR:
14202 return finish_offsetof (RECUR (TREE_OPERAND (t, 0)));
14203
14204 case TRAIT_EXPR:
14205 {
14206 tree type1 = tsubst_copy (TRAIT_EXPR_TYPE1 (t), args,
14207 complain, in_decl);
14208
14209 tree type2 = TRAIT_EXPR_TYPE2 (t);
14210 if (type2)
14211 type2 = tsubst_copy (type2, args, complain, in_decl);
14212
14213 return finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2);
14214 }
14215
14216 case STMT_EXPR:
14217 {
14218 tree old_stmt_expr = cur_stmt_expr;
14219 tree stmt_expr = begin_stmt_expr ();
14220
14221 cur_stmt_expr = stmt_expr;
14222 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
14223 integral_constant_expression_p);
14224 stmt_expr = finish_stmt_expr (stmt_expr, false);
14225 cur_stmt_expr = old_stmt_expr;
14226
14227 /* If the resulting list of expression statement is empty,
14228 fold it further into void_zero_node. */
14229 if (empty_expr_stmt_p (stmt_expr))
14230 stmt_expr = void_zero_node;
14231
14232 return stmt_expr;
14233 }
14234
14235 case CONST_DECL:
14236 t = tsubst_copy (t, args, complain, in_decl);
14237 /* As in finish_id_expression, we resolve enumeration constants
14238 to their underlying values. */
14239 if (TREE_CODE (t) == CONST_DECL && !processing_template_decl)
14240 {
14241 used_types_insert (TREE_TYPE (t));
14242 return DECL_INITIAL (t);
14243 }
14244 return t;
14245
14246 case LAMBDA_EXPR:
14247 {
14248 tree r = build_lambda_expr ();
14249
14250 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
14251 LAMBDA_EXPR_CLOSURE (r) = type;
14252 CLASSTYPE_LAMBDA_EXPR (type) = r;
14253
14254 LAMBDA_EXPR_LOCATION (r)
14255 = LAMBDA_EXPR_LOCATION (t);
14256 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
14257 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
14258 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
14259 LAMBDA_EXPR_DISCRIMINATOR (r)
14260 = (LAMBDA_EXPR_DISCRIMINATOR (t));
14261 LAMBDA_EXPR_EXTRA_SCOPE (r)
14262 = RECUR (LAMBDA_EXPR_EXTRA_SCOPE (t));
14263 if (LAMBDA_EXPR_RETURN_TYPE (t) == dependent_lambda_return_type_node)
14264 {
14265 LAMBDA_EXPR_RETURN_TYPE (r) = dependent_lambda_return_type_node;
14266 LAMBDA_EXPR_DEDUCE_RETURN_TYPE_P (r) = true;
14267 }
14268 else
14269 LAMBDA_EXPR_RETURN_TYPE (r)
14270 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
14271
14272 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
14273 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
14274
14275 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
14276 determine_visibility (TYPE_NAME (type));
14277 /* Now that we know visibility, instantiate the type so we have a
14278 declaration of the op() for later calls to lambda_function. */
14279 complete_type (type);
14280
14281 /* The capture list refers to closure members, so this needs to
14282 wait until after we finish instantiating the type. */
14283 LAMBDA_EXPR_CAPTURE_LIST (r)
14284 = RECUR (LAMBDA_EXPR_CAPTURE_LIST (t));
14285
14286 return build_lambda_object (r);
14287 }
14288
14289 case TARGET_EXPR:
14290 /* We can get here for a constant initializer of non-dependent type.
14291 FIXME stop folding in cp_parser_initializer_clause. */
14292 gcc_assert (TREE_CONSTANT (t));
14293 {
14294 tree r = get_target_expr (RECUR (TARGET_EXPR_INITIAL (t)));
14295 TREE_CONSTANT (r) = true;
14296 return r;
14297 }
14298
14299 case TRANSACTION_EXPR:
14300 return tsubst_expr(t, args, complain, in_decl,
14301 integral_constant_expression_p);
14302
14303 default:
14304 /* Handle Objective-C++ constructs, if appropriate. */
14305 {
14306 tree subst
14307 = objcp_tsubst_copy_and_build (t, args, complain,
14308 in_decl, /*function_p=*/false);
14309 if (subst)
14310 return subst;
14311 }
14312 return tsubst_copy (t, args, complain, in_decl);
14313 }
14314
14315 #undef RECUR
14316 }
14317
14318 /* Verify that the instantiated ARGS are valid. For type arguments,
14319 make sure that the type's linkage is ok. For non-type arguments,
14320 make sure they are constants if they are integral or enumerations.
14321 Emit an error under control of COMPLAIN, and return TRUE on error. */
14322
14323 static bool
14324 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
14325 {
14326 if (ARGUMENT_PACK_P (t))
14327 {
14328 tree vec = ARGUMENT_PACK_ARGS (t);
14329 int len = TREE_VEC_LENGTH (vec);
14330 bool result = false;
14331 int i;
14332
14333 for (i = 0; i < len; ++i)
14334 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
14335 result = true;
14336 return result;
14337 }
14338 else if (TYPE_P (t))
14339 {
14340 /* [basic.link]: A name with no linkage (notably, the name
14341 of a class or enumeration declared in a local scope)
14342 shall not be used to declare an entity with linkage.
14343 This implies that names with no linkage cannot be used as
14344 template arguments
14345
14346 DR 757 relaxes this restriction for C++0x. */
14347 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
14348 : no_linkage_check (t, /*relaxed_p=*/false));
14349
14350 if (nt)
14351 {
14352 /* DR 488 makes use of a type with no linkage cause
14353 type deduction to fail. */
14354 if (complain & tf_error)
14355 {
14356 if (TYPE_ANONYMOUS_P (nt))
14357 error ("%qT is/uses anonymous type", t);
14358 else
14359 error ("template argument for %qD uses local type %qT",
14360 tmpl, t);
14361 }
14362 return true;
14363 }
14364 /* In order to avoid all sorts of complications, we do not
14365 allow variably-modified types as template arguments. */
14366 else if (variably_modified_type_p (t, NULL_TREE))
14367 {
14368 if (complain & tf_error)
14369 error ("%qT is a variably modified type", t);
14370 return true;
14371 }
14372 }
14373 /* A non-type argument of integral or enumerated type must be a
14374 constant. */
14375 else if (TREE_TYPE (t)
14376 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
14377 && !TREE_CONSTANT (t))
14378 {
14379 if (complain & tf_error)
14380 error ("integral expression %qE is not constant", t);
14381 return true;
14382 }
14383 return false;
14384 }
14385
14386 static bool
14387 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
14388 {
14389 int ix, len = DECL_NTPARMS (tmpl);
14390 bool result = false;
14391
14392 for (ix = 0; ix != len; ix++)
14393 {
14394 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
14395 result = true;
14396 }
14397 if (result && (complain & tf_error))
14398 error (" trying to instantiate %qD", tmpl);
14399 return result;
14400 }
14401
14402 /* In C++0x, it's possible to have a function template whose type depends
14403 on itself recursively. This is most obvious with decltype, but can also
14404 occur with enumeration scope (c++/48969). So we need to catch infinite
14405 recursion and reject the substitution at deduction time; this function
14406 will return error_mark_node for any repeated substitution.
14407
14408 This also catches excessive recursion such as when f<N> depends on
14409 f<N-1> across all integers, and returns error_mark_node for all the
14410 substitutions back up to the initial one.
14411
14412 This is, of course, not reentrant. */
14413
14414 static tree
14415 deduction_tsubst_fntype (tree fn, tree targs, tsubst_flags_t complain)
14416 {
14417 static bool excessive_deduction_depth;
14418 static int deduction_depth;
14419 struct pending_template *old_last_pend = last_pending_template;
14420 struct tinst_level *old_error_tinst = last_error_tinst_level;
14421
14422 tree fntype = TREE_TYPE (fn);
14423 tree tinst;
14424 tree r;
14425
14426 if (excessive_deduction_depth)
14427 return error_mark_node;
14428
14429 tinst = build_tree_list (fn, targs);
14430 if (!push_tinst_level (tinst))
14431 {
14432 excessive_deduction_depth = true;
14433 ggc_free (tinst);
14434 return error_mark_node;
14435 }
14436
14437 input_location = DECL_SOURCE_LOCATION (fn);
14438 ++deduction_depth;
14439 push_deduction_access_scope (fn);
14440 r = tsubst (fntype, targs, complain, NULL_TREE);
14441 pop_deduction_access_scope (fn);
14442 --deduction_depth;
14443
14444 if (excessive_deduction_depth)
14445 {
14446 r = error_mark_node;
14447 if (deduction_depth == 0)
14448 /* Reset once we're all the way out. */
14449 excessive_deduction_depth = false;
14450 }
14451
14452 pop_tinst_level ();
14453 /* We can't free this if a pending_template entry or last_error_tinst_level
14454 is pointing at it. */
14455 if (last_pending_template == old_last_pend
14456 && last_error_tinst_level == old_error_tinst)
14457 ggc_free (tinst);
14458 return r;
14459 }
14460
14461 /* Instantiate the indicated variable or function template TMPL with
14462 the template arguments in TARG_PTR. */
14463
14464 static tree
14465 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
14466 {
14467 tree targ_ptr = orig_args;
14468 tree fndecl;
14469 tree gen_tmpl;
14470 tree spec;
14471 HOST_WIDE_INT saved_processing_template_decl;
14472
14473 if (tmpl == error_mark_node)
14474 return error_mark_node;
14475
14476 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
14477
14478 /* If this function is a clone, handle it specially. */
14479 if (DECL_CLONED_FUNCTION_P (tmpl))
14480 {
14481 tree spec;
14482 tree clone;
14483
14484 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
14485 DECL_CLONED_FUNCTION. */
14486 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
14487 targ_ptr, complain);
14488 if (spec == error_mark_node)
14489 return error_mark_node;
14490
14491 /* Look for the clone. */
14492 FOR_EACH_CLONE (clone, spec)
14493 if (DECL_NAME (clone) == DECL_NAME (tmpl))
14494 return clone;
14495 /* We should always have found the clone by now. */
14496 gcc_unreachable ();
14497 return NULL_TREE;
14498 }
14499
14500 /* Check to see if we already have this specialization. */
14501 gen_tmpl = most_general_template (tmpl);
14502 if (tmpl != gen_tmpl)
14503 /* The TMPL is a partial instantiation. To get a full set of
14504 arguments we must add the arguments used to perform the
14505 partial instantiation. */
14506 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
14507 targ_ptr);
14508
14509 /* It would be nice to avoid hashing here and then again in tsubst_decl,
14510 but it doesn't seem to be on the hot path. */
14511 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
14512
14513 gcc_assert (tmpl == gen_tmpl
14514 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
14515 == spec)
14516 || fndecl == NULL_TREE);
14517
14518 if (spec != NULL_TREE)
14519 return spec;
14520
14521 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
14522 complain))
14523 return error_mark_node;
14524
14525 /* We are building a FUNCTION_DECL, during which the access of its
14526 parameters and return types have to be checked. However this
14527 FUNCTION_DECL which is the desired context for access checking
14528 is not built yet. We solve this chicken-and-egg problem by
14529 deferring all checks until we have the FUNCTION_DECL. */
14530 push_deferring_access_checks (dk_deferred);
14531
14532 /* Although PROCESSING_TEMPLATE_DECL may be true at this point
14533 (because, for example, we have encountered a non-dependent
14534 function call in the body of a template function and must now
14535 determine which of several overloaded functions will be called),
14536 within the instantiation itself we are not processing a
14537 template. */
14538 saved_processing_template_decl = processing_template_decl;
14539 processing_template_decl = 0;
14540 /* Substitute template parameters to obtain the specialization. */
14541 fndecl = tsubst (DECL_TEMPLATE_RESULT (gen_tmpl),
14542 targ_ptr, complain, gen_tmpl);
14543 processing_template_decl = saved_processing_template_decl;
14544 if (fndecl == error_mark_node)
14545 return error_mark_node;
14546
14547 /* Now we know the specialization, compute access previously
14548 deferred. */
14549 push_access_scope (fndecl);
14550
14551 /* Some typedefs referenced from within the template code need to be access
14552 checked at template instantiation time, i.e now. These types were
14553 added to the template at parsing time. Let's get those and perfom
14554 the acces checks then. */
14555 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (tmpl), targ_ptr);
14556 perform_deferred_access_checks ();
14557 pop_access_scope (fndecl);
14558 pop_deferring_access_checks ();
14559
14560 /* The DECL_TI_TEMPLATE should always be the immediate parent
14561 template, not the most general template. */
14562 DECL_TI_TEMPLATE (fndecl) = tmpl;
14563
14564 /* If we've just instantiated the main entry point for a function,
14565 instantiate all the alternate entry points as well. We do this
14566 by cloning the instantiation of the main entry point, not by
14567 instantiating the template clones. */
14568 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
14569 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
14570
14571 return fndecl;
14572 }
14573
14574 /* Wrapper for instantiate_template_1. */
14575
14576 tree
14577 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
14578 {
14579 tree ret;
14580 timevar_push (TV_TEMPLATE_INST);
14581 ret = instantiate_template_1 (tmpl, orig_args, complain);
14582 timevar_pop (TV_TEMPLATE_INST);
14583 return ret;
14584 }
14585
14586 /* We're going to do deduction substitution on the type of TMPL, a function
14587 template. In C++11 mode, push into that access scope. In C++03 mode,
14588 disable access checking. */
14589
14590 static void
14591 push_deduction_access_scope (tree tmpl)
14592 {
14593 if (cxx_dialect >= cxx0x)
14594 {
14595 int ptd = processing_template_decl;
14596 push_access_scope (DECL_TEMPLATE_RESULT (tmpl));
14597 /* Preserve processing_template_decl across push_to_top_level. */
14598 if (ptd && !processing_template_decl)
14599 ++processing_template_decl;
14600 }
14601 else
14602 push_deferring_access_checks (dk_no_check);
14603 }
14604
14605 /* And pop back out. */
14606
14607 static void
14608 pop_deduction_access_scope (tree tmpl)
14609 {
14610 if (cxx_dialect >= cxx0x)
14611 pop_access_scope (DECL_TEMPLATE_RESULT (tmpl));
14612 else
14613 pop_deferring_access_checks ();
14614 }
14615
14616 /* PARM is a template parameter pack for FN. Returns true iff
14617 PARM is used in a deducible way in the argument list of FN. */
14618
14619 static bool
14620 pack_deducible_p (tree parm, tree fn)
14621 {
14622 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
14623 for (; t; t = TREE_CHAIN (t))
14624 {
14625 tree type = TREE_VALUE (t);
14626 tree packs;
14627 if (!PACK_EXPANSION_P (type))
14628 continue;
14629 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
14630 packs; packs = TREE_CHAIN (packs))
14631 if (TREE_VALUE (packs) == parm)
14632 {
14633 /* The template parameter pack is used in a function parameter
14634 pack. If this is the end of the parameter list, the
14635 template parameter pack is deducible. */
14636 if (TREE_CHAIN (t) == void_list_node)
14637 return true;
14638 else
14639 /* Otherwise, not. Well, it could be deduced from
14640 a non-pack parameter, but doing so would end up with
14641 a deduction mismatch, so don't bother. */
14642 return false;
14643 }
14644 }
14645 /* The template parameter pack isn't used in any function parameter
14646 packs, but it might be used deeper, e.g. tuple<Args...>. */
14647 return true;
14648 }
14649
14650 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
14651 NARGS elements of the arguments that are being used when calling
14652 it. TARGS is a vector into which the deduced template arguments
14653 are placed.
14654
14655 Return zero for success, 2 for an incomplete match that doesn't resolve
14656 all the types, and 1 for complete failure. An error message will be
14657 printed only for an incomplete match.
14658
14659 If FN is a conversion operator, or we are trying to produce a specific
14660 specialization, RETURN_TYPE is the return type desired.
14661
14662 The EXPLICIT_TARGS are explicit template arguments provided via a
14663 template-id.
14664
14665 The parameter STRICT is one of:
14666
14667 DEDUCE_CALL:
14668 We are deducing arguments for a function call, as in
14669 [temp.deduct.call].
14670
14671 DEDUCE_CONV:
14672 We are deducing arguments for a conversion function, as in
14673 [temp.deduct.conv].
14674
14675 DEDUCE_EXACT:
14676 We are deducing arguments when doing an explicit instantiation
14677 as in [temp.explicit], when determining an explicit specialization
14678 as in [temp.expl.spec], or when taking the address of a function
14679 template, as in [temp.deduct.funcaddr]. */
14680
14681 int
14682 fn_type_unification (tree fn,
14683 tree explicit_targs,
14684 tree targs,
14685 const tree *args,
14686 unsigned int nargs,
14687 tree return_type,
14688 unification_kind_t strict,
14689 int flags,
14690 bool explain_p)
14691 {
14692 tree parms;
14693 tree fntype;
14694 int result;
14695
14696 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
14697
14698 fntype = TREE_TYPE (fn);
14699 if (explicit_targs)
14700 {
14701 /* [temp.deduct]
14702
14703 The specified template arguments must match the template
14704 parameters in kind (i.e., type, nontype, template), and there
14705 must not be more arguments than there are parameters;
14706 otherwise type deduction fails.
14707
14708 Nontype arguments must match the types of the corresponding
14709 nontype template parameters, or must be convertible to the
14710 types of the corresponding nontype parameters as specified in
14711 _temp.arg.nontype_, otherwise type deduction fails.
14712
14713 All references in the function type of the function template
14714 to the corresponding template parameters are replaced by the
14715 specified template argument values. If a substitution in a
14716 template parameter or in the function type of the function
14717 template results in an invalid type, type deduction fails. */
14718 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
14719 int i, len = TREE_VEC_LENGTH (tparms);
14720 tree converted_args;
14721 bool incomplete = false;
14722
14723 if (explicit_targs == error_mark_node)
14724 return unify_invalid (explain_p);
14725
14726 converted_args
14727 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
14728 (explain_p
14729 ? tf_warning_or_error
14730 : tf_none),
14731 /*require_all_args=*/false,
14732 /*use_default_args=*/false));
14733 if (converted_args == error_mark_node)
14734 return 1;
14735
14736 /* Substitute the explicit args into the function type. This is
14737 necessary so that, for instance, explicitly declared function
14738 arguments can match null pointed constants. If we were given
14739 an incomplete set of explicit args, we must not do semantic
14740 processing during substitution as we could create partial
14741 instantiations. */
14742 for (i = 0; i < len; i++)
14743 {
14744 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
14745 bool parameter_pack = false;
14746 tree targ = TREE_VEC_ELT (converted_args, i);
14747
14748 /* Dig out the actual parm. */
14749 if (TREE_CODE (parm) == TYPE_DECL
14750 || TREE_CODE (parm) == TEMPLATE_DECL)
14751 {
14752 parm = TREE_TYPE (parm);
14753 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
14754 }
14755 else if (TREE_CODE (parm) == PARM_DECL)
14756 {
14757 parm = DECL_INITIAL (parm);
14758 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
14759 }
14760
14761 if (!parameter_pack && targ == NULL_TREE)
14762 /* No explicit argument for this template parameter. */
14763 incomplete = true;
14764
14765 if (parameter_pack && pack_deducible_p (parm, fn))
14766 {
14767 /* Mark the argument pack as "incomplete". We could
14768 still deduce more arguments during unification.
14769 We remove this mark in type_unification_real. */
14770 if (targ)
14771 {
14772 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
14773 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
14774 = ARGUMENT_PACK_ARGS (targ);
14775 }
14776
14777 /* We have some incomplete argument packs. */
14778 incomplete = true;
14779 }
14780 }
14781
14782 processing_template_decl += incomplete;
14783 fntype = deduction_tsubst_fntype (fn, converted_args,
14784 (explain_p
14785 ? tf_warning_or_error
14786 : tf_none));
14787 processing_template_decl -= incomplete;
14788
14789 if (fntype == error_mark_node)
14790 return 1;
14791
14792 /* Place the explicitly specified arguments in TARGS. */
14793 for (i = NUM_TMPL_ARGS (converted_args); i--;)
14794 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (converted_args, i);
14795 }
14796
14797 /* Never do unification on the 'this' parameter. */
14798 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
14799
14800 if (return_type)
14801 {
14802 tree *new_args;
14803
14804 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
14805 new_args = XALLOCAVEC (tree, nargs + 1);
14806 new_args[0] = return_type;
14807 memcpy (new_args + 1, args, nargs * sizeof (tree));
14808 args = new_args;
14809 ++nargs;
14810 }
14811
14812 /* We allow incomplete unification without an error message here
14813 because the standard doesn't seem to explicitly prohibit it. Our
14814 callers must be ready to deal with unification failures in any
14815 event. */
14816 result = type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
14817 targs, parms, args, nargs, /*subr=*/0,
14818 strict, flags, explain_p);
14819
14820 /* Now that we have bindings for all of the template arguments,
14821 ensure that the arguments deduced for the template template
14822 parameters have compatible template parameter lists. We cannot
14823 check this property before we have deduced all template
14824 arguments, because the template parameter types of a template
14825 template parameter might depend on prior template parameters
14826 deduced after the template template parameter. The following
14827 ill-formed example illustrates this issue:
14828
14829 template<typename T, template<T> class C> void f(C<5>, T);
14830
14831 template<int N> struct X {};
14832
14833 void g() {
14834 f(X<5>(), 5l); // error: template argument deduction fails
14835 }
14836
14837 The template parameter list of 'C' depends on the template type
14838 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
14839 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
14840 time that we deduce 'C'. */
14841 if (result == 0
14842 && !template_template_parm_bindings_ok_p
14843 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
14844 return unify_inconsistent_template_template_parameters (explain_p);
14845
14846 if (result == 0)
14847 /* All is well so far. Now, check:
14848
14849 [temp.deduct]
14850
14851 When all template arguments have been deduced, all uses of
14852 template parameters in nondeduced contexts are replaced with
14853 the corresponding deduced argument values. If the
14854 substitution results in an invalid type, as described above,
14855 type deduction fails. */
14856 {
14857 tree substed = deduction_tsubst_fntype (fn, targs,
14858 (explain_p
14859 ? tf_warning_or_error
14860 : tf_none));
14861 if (substed == error_mark_node)
14862 return 1;
14863
14864 /* If we're looking for an exact match, check that what we got
14865 is indeed an exact match. It might not be if some template
14866 parameters are used in non-deduced contexts. */
14867 if (strict == DEDUCE_EXACT)
14868 {
14869 unsigned int i;
14870
14871 tree sarg
14872 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (substed));
14873 if (return_type)
14874 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
14875 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
14876 if (!same_type_p (args[i], TREE_VALUE (sarg)))
14877 return unify_type_mismatch (explain_p, args[i],
14878 TREE_VALUE (sarg));
14879 }
14880 }
14881
14882 return result;
14883 }
14884
14885 /* Adjust types before performing type deduction, as described in
14886 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
14887 sections are symmetric. PARM is the type of a function parameter
14888 or the return type of the conversion function. ARG is the type of
14889 the argument passed to the call, or the type of the value
14890 initialized with the result of the conversion function.
14891 ARG_EXPR is the original argument expression, which may be null. */
14892
14893 static int
14894 maybe_adjust_types_for_deduction (unification_kind_t strict,
14895 tree* parm,
14896 tree* arg,
14897 tree arg_expr)
14898 {
14899 int result = 0;
14900
14901 switch (strict)
14902 {
14903 case DEDUCE_CALL:
14904 break;
14905
14906 case DEDUCE_CONV:
14907 {
14908 /* Swap PARM and ARG throughout the remainder of this
14909 function; the handling is precisely symmetric since PARM
14910 will initialize ARG rather than vice versa. */
14911 tree* temp = parm;
14912 parm = arg;
14913 arg = temp;
14914 break;
14915 }
14916
14917 case DEDUCE_EXACT:
14918 /* Core issue #873: Do the DR606 thing (see below) for these cases,
14919 too, but here handle it by stripping the reference from PARM
14920 rather than by adding it to ARG. */
14921 if (TREE_CODE (*parm) == REFERENCE_TYPE
14922 && TYPE_REF_IS_RVALUE (*parm)
14923 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
14924 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
14925 && TREE_CODE (*arg) == REFERENCE_TYPE
14926 && !TYPE_REF_IS_RVALUE (*arg))
14927 *parm = TREE_TYPE (*parm);
14928 /* Nothing else to do in this case. */
14929 return 0;
14930
14931 default:
14932 gcc_unreachable ();
14933 }
14934
14935 if (TREE_CODE (*parm) != REFERENCE_TYPE)
14936 {
14937 /* [temp.deduct.call]
14938
14939 If P is not a reference type:
14940
14941 --If A is an array type, the pointer type produced by the
14942 array-to-pointer standard conversion (_conv.array_) is
14943 used in place of A for type deduction; otherwise,
14944
14945 --If A is a function type, the pointer type produced by
14946 the function-to-pointer standard conversion
14947 (_conv.func_) is used in place of A for type deduction;
14948 otherwise,
14949
14950 --If A is a cv-qualified type, the top level
14951 cv-qualifiers of A's type are ignored for type
14952 deduction. */
14953 if (TREE_CODE (*arg) == ARRAY_TYPE)
14954 *arg = build_pointer_type (TREE_TYPE (*arg));
14955 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
14956 *arg = build_pointer_type (*arg);
14957 else
14958 *arg = TYPE_MAIN_VARIANT (*arg);
14959 }
14960
14961 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
14962 of the form T&&, where T is a template parameter, and the argument
14963 is an lvalue, T is deduced as A& */
14964 if (TREE_CODE (*parm) == REFERENCE_TYPE
14965 && TYPE_REF_IS_RVALUE (*parm)
14966 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
14967 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
14968 && (arg_expr ? real_lvalue_p (arg_expr)
14969 /* try_one_overload doesn't provide an arg_expr, but
14970 functions are always lvalues. */
14971 : TREE_CODE (*arg) == FUNCTION_TYPE))
14972 *arg = build_reference_type (*arg);
14973
14974 /* [temp.deduct.call]
14975
14976 If P is a cv-qualified type, the top level cv-qualifiers
14977 of P's type are ignored for type deduction. If P is a
14978 reference type, the type referred to by P is used for
14979 type deduction. */
14980 *parm = TYPE_MAIN_VARIANT (*parm);
14981 if (TREE_CODE (*parm) == REFERENCE_TYPE)
14982 {
14983 *parm = TREE_TYPE (*parm);
14984 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
14985 }
14986
14987 /* DR 322. For conversion deduction, remove a reference type on parm
14988 too (which has been swapped into ARG). */
14989 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
14990 *arg = TREE_TYPE (*arg);
14991
14992 return result;
14993 }
14994
14995 /* Subroutine of unify_one_argument. PARM is a function parameter of a
14996 template which does contain any deducible template parameters; check if
14997 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
14998 unify_one_argument. */
14999
15000 static int
15001 check_non_deducible_conversion (tree parm, tree arg, int strict,
15002 int flags, bool explain_p)
15003 {
15004 tree type;
15005
15006 if (!TYPE_P (arg))
15007 type = TREE_TYPE (arg);
15008 else
15009 type = arg;
15010
15011 if (same_type_p (parm, type))
15012 return unify_success (explain_p);
15013
15014 if (strict == DEDUCE_CONV)
15015 {
15016 if (can_convert_arg (type, parm, NULL_TREE, flags))
15017 return unify_success (explain_p);
15018 }
15019 else if (strict != DEDUCE_EXACT)
15020 {
15021 if (can_convert_arg (parm, type,
15022 TYPE_P (arg) ? NULL_TREE : arg,
15023 flags))
15024 return unify_success (explain_p);
15025 }
15026
15027 if (strict == DEDUCE_EXACT)
15028 return unify_type_mismatch (explain_p, parm, arg);
15029 else
15030 return unify_arg_conversion (explain_p, parm, type, arg);
15031 }
15032
15033 /* Subroutine of type_unification_real and unify_pack_expansion to
15034 handle unification of a single P/A pair. Parameters are as
15035 for those functions. */
15036
15037 static int
15038 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
15039 int subr, unification_kind_t strict, int flags,
15040 bool explain_p)
15041 {
15042 tree arg_expr = NULL_TREE;
15043 int arg_strict;
15044
15045 if (arg == error_mark_node || parm == error_mark_node)
15046 return unify_invalid (explain_p);
15047 if (arg == unknown_type_node)
15048 /* We can't deduce anything from this, but we might get all the
15049 template args from other function args. */
15050 return unify_success (explain_p);
15051
15052 /* FIXME uses_deducible_template_parms */
15053 if (TYPE_P (parm) && !uses_template_parms (parm))
15054 return check_non_deducible_conversion (parm, arg, strict, flags,
15055 explain_p);
15056
15057 switch (strict)
15058 {
15059 case DEDUCE_CALL:
15060 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
15061 | UNIFY_ALLOW_MORE_CV_QUAL
15062 | UNIFY_ALLOW_DERIVED);
15063 break;
15064
15065 case DEDUCE_CONV:
15066 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
15067 break;
15068
15069 case DEDUCE_EXACT:
15070 arg_strict = UNIFY_ALLOW_NONE;
15071 break;
15072
15073 default:
15074 gcc_unreachable ();
15075 }
15076
15077 /* We only do these transformations if this is the top-level
15078 parameter_type_list in a call or declaration matching; in other
15079 situations (nested function declarators, template argument lists) we
15080 won't be comparing a type to an expression, and we don't do any type
15081 adjustments. */
15082 if (!subr)
15083 {
15084 if (!TYPE_P (arg))
15085 {
15086 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
15087 if (type_unknown_p (arg))
15088 {
15089 /* [temp.deduct.type] A template-argument can be
15090 deduced from a pointer to function or pointer
15091 to member function argument if the set of
15092 overloaded functions does not contain function
15093 templates and at most one of a set of
15094 overloaded functions provides a unique
15095 match. */
15096
15097 if (resolve_overloaded_unification
15098 (tparms, targs, parm, arg, strict,
15099 arg_strict, explain_p))
15100 return unify_success (explain_p);
15101 return unify_overload_resolution_failure (explain_p, arg);
15102 }
15103
15104 arg_expr = arg;
15105 arg = unlowered_expr_type (arg);
15106 if (arg == error_mark_node)
15107 return unify_invalid (explain_p);
15108 }
15109
15110 arg_strict |=
15111 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
15112 }
15113 else
15114 gcc_assert ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
15115 == (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL));
15116
15117 /* For deduction from an init-list we need the actual list. */
15118 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
15119 arg = arg_expr;
15120 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
15121 }
15122
15123 /* Most parms like fn_type_unification.
15124
15125 If SUBR is 1, we're being called recursively (to unify the
15126 arguments of a function or method parameter of a function
15127 template). */
15128
15129 static int
15130 type_unification_real (tree tparms,
15131 tree targs,
15132 tree xparms,
15133 const tree *xargs,
15134 unsigned int xnargs,
15135 int subr,
15136 unification_kind_t strict,
15137 int flags,
15138 bool explain_p)
15139 {
15140 tree parm, arg;
15141 int i;
15142 int ntparms = TREE_VEC_LENGTH (tparms);
15143 int saw_undeduced = 0;
15144 tree parms;
15145 const tree *args;
15146 unsigned int nargs;
15147 unsigned int ia;
15148
15149 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
15150 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
15151 gcc_assert (ntparms > 0);
15152
15153 /* Reset the number of non-defaulted template arguments contained
15154 in TARGS. */
15155 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
15156
15157 again:
15158 parms = xparms;
15159 args = xargs;
15160 nargs = xnargs;
15161
15162 ia = 0;
15163 while (parms && parms != void_list_node
15164 && ia < nargs)
15165 {
15166 parm = TREE_VALUE (parms);
15167
15168 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
15169 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
15170 /* For a function parameter pack that occurs at the end of the
15171 parameter-declaration-list, the type A of each remaining
15172 argument of the call is compared with the type P of the
15173 declarator-id of the function parameter pack. */
15174 break;
15175
15176 parms = TREE_CHAIN (parms);
15177
15178 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
15179 /* For a function parameter pack that does not occur at the
15180 end of the parameter-declaration-list, the type of the
15181 parameter pack is a non-deduced context. */
15182 continue;
15183
15184 arg = args[ia];
15185 ++ia;
15186
15187 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
15188 flags, explain_p))
15189 return 1;
15190 }
15191
15192 if (parms
15193 && parms != void_list_node
15194 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
15195 {
15196 /* Unify the remaining arguments with the pack expansion type. */
15197 tree argvec;
15198 tree parmvec = make_tree_vec (1);
15199
15200 /* Allocate a TREE_VEC and copy in all of the arguments */
15201 argvec = make_tree_vec (nargs - ia);
15202 for (i = 0; ia < nargs; ++ia, ++i)
15203 TREE_VEC_ELT (argvec, i) = args[ia];
15204
15205 /* Copy the parameter into parmvec. */
15206 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
15207 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
15208 /*subr=*/subr, explain_p))
15209 return 1;
15210
15211 /* Advance to the end of the list of parameters. */
15212 parms = TREE_CHAIN (parms);
15213 }
15214
15215 /* Fail if we've reached the end of the parm list, and more args
15216 are present, and the parm list isn't variadic. */
15217 if (ia < nargs && parms == void_list_node)
15218 return unify_too_many_arguments (explain_p, nargs, ia);
15219 /* Fail if parms are left and they don't have default values. */
15220 if (parms && parms != void_list_node
15221 && TREE_PURPOSE (parms) == NULL_TREE)
15222 {
15223 unsigned int count = nargs;
15224 tree p = parms;
15225 while (p && p != void_list_node)
15226 {
15227 count++;
15228 p = TREE_CHAIN (p);
15229 }
15230 return unify_too_few_arguments (explain_p, ia, count);
15231 }
15232
15233 if (!subr)
15234 {
15235 tsubst_flags_t complain = (explain_p
15236 ? tf_warning_or_error
15237 : tf_none);
15238
15239 /* Check to see if we need another pass before we start clearing
15240 ARGUMENT_PACK_INCOMPLETE_P. */
15241 for (i = 0; i < ntparms; i++)
15242 {
15243 tree targ = TREE_VEC_ELT (targs, i);
15244 tree tparm = TREE_VEC_ELT (tparms, i);
15245
15246 if (targ || tparm == error_mark_node)
15247 continue;
15248 tparm = TREE_VALUE (tparm);
15249
15250 /* If this is an undeduced nontype parameter that depends on
15251 a type parameter, try another pass; its type may have been
15252 deduced from a later argument than the one from which
15253 this parameter can be deduced. */
15254 if (TREE_CODE (tparm) == PARM_DECL
15255 && uses_template_parms (TREE_TYPE (tparm))
15256 && !saw_undeduced++)
15257 goto again;
15258 }
15259
15260 for (i = 0; i < ntparms; i++)
15261 {
15262 tree targ = TREE_VEC_ELT (targs, i);
15263 tree tparm = TREE_VEC_ELT (tparms, i);
15264
15265 /* Clear the "incomplete" flags on all argument packs now so that
15266 substituting them into later default arguments works. */
15267 if (targ && ARGUMENT_PACK_P (targ))
15268 {
15269 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
15270 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
15271 }
15272
15273 if (targ || tparm == error_mark_node)
15274 continue;
15275 tparm = TREE_VALUE (tparm);
15276
15277 /* Core issue #226 (C++0x) [temp.deduct]:
15278
15279 If a template argument has not been deduced, its
15280 default template argument, if any, is used.
15281
15282 When we are in C++98 mode, TREE_PURPOSE will either
15283 be NULL_TREE or ERROR_MARK_NODE, so we do not need
15284 to explicitly check cxx_dialect here. */
15285 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
15286 {
15287 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
15288 tree arg = TREE_PURPOSE (TREE_VEC_ELT (tparms, i));
15289 location_t save_loc = input_location;
15290 if (DECL_P (parm))
15291 input_location = DECL_SOURCE_LOCATION (parm);
15292 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
15293 arg = convert_template_argument (parm, arg, targs, complain,
15294 i, NULL_TREE);
15295 input_location = save_loc;
15296 if (arg == error_mark_node)
15297 return 1;
15298 else
15299 {
15300 TREE_VEC_ELT (targs, i) = arg;
15301 /* The position of the first default template argument,
15302 is also the number of non-defaulted arguments in TARGS.
15303 Record that. */
15304 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
15305 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
15306 continue;
15307 }
15308 }
15309
15310 /* If the type parameter is a parameter pack, then it will
15311 be deduced to an empty parameter pack. */
15312 if (template_parameter_pack_p (tparm))
15313 {
15314 tree arg;
15315
15316 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
15317 {
15318 arg = make_node (NONTYPE_ARGUMENT_PACK);
15319 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
15320 TREE_CONSTANT (arg) = 1;
15321 }
15322 else
15323 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
15324
15325 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
15326
15327 TREE_VEC_ELT (targs, i) = arg;
15328 continue;
15329 }
15330
15331 return unify_parameter_deduction_failure (explain_p, tparm);
15332 }
15333 }
15334 #ifdef ENABLE_CHECKING
15335 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
15336 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
15337 #endif
15338
15339 return unify_success (explain_p);
15340 }
15341
15342 /* Subroutine of type_unification_real. Args are like the variables
15343 at the call site. ARG is an overloaded function (or template-id);
15344 we try deducing template args from each of the overloads, and if
15345 only one succeeds, we go with that. Modifies TARGS and returns
15346 true on success. */
15347
15348 static bool
15349 resolve_overloaded_unification (tree tparms,
15350 tree targs,
15351 tree parm,
15352 tree arg,
15353 unification_kind_t strict,
15354 int sub_strict,
15355 bool explain_p)
15356 {
15357 tree tempargs = copy_node (targs);
15358 int good = 0;
15359 tree goodfn = NULL_TREE;
15360 bool addr_p;
15361
15362 if (TREE_CODE (arg) == ADDR_EXPR)
15363 {
15364 arg = TREE_OPERAND (arg, 0);
15365 addr_p = true;
15366 }
15367 else
15368 addr_p = false;
15369
15370 if (TREE_CODE (arg) == COMPONENT_REF)
15371 /* Handle `&x' where `x' is some static or non-static member
15372 function name. */
15373 arg = TREE_OPERAND (arg, 1);
15374
15375 if (TREE_CODE (arg) == OFFSET_REF)
15376 arg = TREE_OPERAND (arg, 1);
15377
15378 /* Strip baselink information. */
15379 if (BASELINK_P (arg))
15380 arg = BASELINK_FUNCTIONS (arg);
15381
15382 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
15383 {
15384 /* If we got some explicit template args, we need to plug them into
15385 the affected templates before we try to unify, in case the
15386 explicit args will completely resolve the templates in question. */
15387
15388 int ok = 0;
15389 tree expl_subargs = TREE_OPERAND (arg, 1);
15390 arg = TREE_OPERAND (arg, 0);
15391
15392 for (; arg; arg = OVL_NEXT (arg))
15393 {
15394 tree fn = OVL_CURRENT (arg);
15395 tree subargs, elem;
15396
15397 if (TREE_CODE (fn) != TEMPLATE_DECL)
15398 continue;
15399
15400 ++processing_template_decl;
15401 subargs = get_bindings (fn, DECL_TEMPLATE_RESULT (fn),
15402 expl_subargs, /*check_ret=*/false);
15403 if (subargs && !any_dependent_template_arguments_p (subargs))
15404 {
15405 elem = tsubst (TREE_TYPE (fn), subargs, tf_none, NULL_TREE);
15406 if (try_one_overload (tparms, targs, tempargs, parm,
15407 elem, strict, sub_strict, addr_p, explain_p)
15408 && (!goodfn || !decls_match (goodfn, elem)))
15409 {
15410 goodfn = elem;
15411 ++good;
15412 }
15413 }
15414 else if (subargs)
15415 ++ok;
15416 --processing_template_decl;
15417 }
15418 /* If no templates (or more than one) are fully resolved by the
15419 explicit arguments, this template-id is a non-deduced context; it
15420 could still be OK if we deduce all template arguments for the
15421 enclosing call through other arguments. */
15422 if (good != 1)
15423 good = ok;
15424 }
15425 else if (TREE_CODE (arg) != OVERLOAD
15426 && TREE_CODE (arg) != FUNCTION_DECL)
15427 /* If ARG is, for example, "(0, &f)" then its type will be unknown
15428 -- but the deduction does not succeed because the expression is
15429 not just the function on its own. */
15430 return false;
15431 else
15432 for (; arg; arg = OVL_NEXT (arg))
15433 if (try_one_overload (tparms, targs, tempargs, parm,
15434 TREE_TYPE (OVL_CURRENT (arg)),
15435 strict, sub_strict, addr_p, explain_p)
15436 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
15437 {
15438 goodfn = OVL_CURRENT (arg);
15439 ++good;
15440 }
15441
15442 /* [temp.deduct.type] A template-argument can be deduced from a pointer
15443 to function or pointer to member function argument if the set of
15444 overloaded functions does not contain function templates and at most
15445 one of a set of overloaded functions provides a unique match.
15446
15447 So if we found multiple possibilities, we return success but don't
15448 deduce anything. */
15449
15450 if (good == 1)
15451 {
15452 int i = TREE_VEC_LENGTH (targs);
15453 for (; i--; )
15454 if (TREE_VEC_ELT (tempargs, i))
15455 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (tempargs, i);
15456 }
15457 if (good)
15458 return true;
15459
15460 return false;
15461 }
15462
15463 /* Core DR 115: In contexts where deduction is done and fails, or in
15464 contexts where deduction is not done, if a template argument list is
15465 specified and it, along with any default template arguments, identifies
15466 a single function template specialization, then the template-id is an
15467 lvalue for the function template specialization. */
15468
15469 tree
15470 resolve_nondeduced_context (tree orig_expr)
15471 {
15472 tree expr, offset, baselink;
15473 bool addr;
15474
15475 if (!type_unknown_p (orig_expr))
15476 return orig_expr;
15477
15478 expr = orig_expr;
15479 addr = false;
15480 offset = NULL_TREE;
15481 baselink = NULL_TREE;
15482
15483 if (TREE_CODE (expr) == ADDR_EXPR)
15484 {
15485 expr = TREE_OPERAND (expr, 0);
15486 addr = true;
15487 }
15488 if (TREE_CODE (expr) == OFFSET_REF)
15489 {
15490 offset = expr;
15491 expr = TREE_OPERAND (expr, 1);
15492 }
15493 if (BASELINK_P (expr))
15494 {
15495 baselink = expr;
15496 expr = BASELINK_FUNCTIONS (expr);
15497 }
15498
15499 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
15500 {
15501 int good = 0;
15502 tree goodfn = NULL_TREE;
15503
15504 /* If we got some explicit template args, we need to plug them into
15505 the affected templates before we try to unify, in case the
15506 explicit args will completely resolve the templates in question. */
15507
15508 tree expl_subargs = TREE_OPERAND (expr, 1);
15509 tree arg = TREE_OPERAND (expr, 0);
15510 tree badfn = NULL_TREE;
15511 tree badargs = NULL_TREE;
15512
15513 for (; arg; arg = OVL_NEXT (arg))
15514 {
15515 tree fn = OVL_CURRENT (arg);
15516 tree subargs, elem;
15517
15518 if (TREE_CODE (fn) != TEMPLATE_DECL)
15519 continue;
15520
15521 ++processing_template_decl;
15522 subargs = get_bindings (fn, DECL_TEMPLATE_RESULT (fn),
15523 expl_subargs, /*check_ret=*/false);
15524 if (subargs && !any_dependent_template_arguments_p (subargs))
15525 {
15526 elem = instantiate_template (fn, subargs, tf_none);
15527 if (elem == error_mark_node)
15528 {
15529 badfn = fn;
15530 badargs = subargs;
15531 }
15532 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
15533 {
15534 goodfn = elem;
15535 ++good;
15536 }
15537 }
15538 --processing_template_decl;
15539 }
15540 if (good == 1)
15541 {
15542 mark_used (goodfn);
15543 expr = goodfn;
15544 if (baselink)
15545 expr = build_baselink (BASELINK_BINFO (baselink),
15546 BASELINK_ACCESS_BINFO (baselink),
15547 expr, BASELINK_OPTYPE (baselink));
15548 if (offset)
15549 {
15550 tree base
15551 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
15552 expr = build_offset_ref (base, expr, addr);
15553 }
15554 if (addr)
15555 expr = cp_build_addr_expr (expr, tf_warning_or_error);
15556 return expr;
15557 }
15558 else if (good == 0 && badargs)
15559 /* There were no good options and at least one bad one, so let the
15560 user know what the problem is. */
15561 instantiate_template (badfn, badargs, tf_warning_or_error);
15562 }
15563 return orig_expr;
15564 }
15565
15566 /* Subroutine of resolve_overloaded_unification; does deduction for a single
15567 overload. Fills TARGS with any deduced arguments, or error_mark_node if
15568 different overloads deduce different arguments for a given parm.
15569 ADDR_P is true if the expression for which deduction is being
15570 performed was of the form "& fn" rather than simply "fn".
15571
15572 Returns 1 on success. */
15573
15574 static int
15575 try_one_overload (tree tparms,
15576 tree orig_targs,
15577 tree targs,
15578 tree parm,
15579 tree arg,
15580 unification_kind_t strict,
15581 int sub_strict,
15582 bool addr_p,
15583 bool explain_p)
15584 {
15585 int nargs;
15586 tree tempargs;
15587 int i;
15588
15589 /* [temp.deduct.type] A template-argument can be deduced from a pointer
15590 to function or pointer to member function argument if the set of
15591 overloaded functions does not contain function templates and at most
15592 one of a set of overloaded functions provides a unique match.
15593
15594 So if this is a template, just return success. */
15595
15596 if (uses_template_parms (arg))
15597 return 1;
15598
15599 if (TREE_CODE (arg) == METHOD_TYPE)
15600 arg = build_ptrmemfunc_type (build_pointer_type (arg));
15601 else if (addr_p)
15602 arg = build_pointer_type (arg);
15603
15604 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
15605
15606 /* We don't copy orig_targs for this because if we have already deduced
15607 some template args from previous args, unify would complain when we
15608 try to deduce a template parameter for the same argument, even though
15609 there isn't really a conflict. */
15610 nargs = TREE_VEC_LENGTH (targs);
15611 tempargs = make_tree_vec (nargs);
15612
15613 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
15614 return 0;
15615
15616 /* First make sure we didn't deduce anything that conflicts with
15617 explicitly specified args. */
15618 for (i = nargs; i--; )
15619 {
15620 tree elt = TREE_VEC_ELT (tempargs, i);
15621 tree oldelt = TREE_VEC_ELT (orig_targs, i);
15622
15623 if (!elt)
15624 /*NOP*/;
15625 else if (uses_template_parms (elt))
15626 /* Since we're unifying against ourselves, we will fill in
15627 template args used in the function parm list with our own
15628 template parms. Discard them. */
15629 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
15630 else if (oldelt && !template_args_equal (oldelt, elt))
15631 return 0;
15632 }
15633
15634 for (i = nargs; i--; )
15635 {
15636 tree elt = TREE_VEC_ELT (tempargs, i);
15637
15638 if (elt)
15639 TREE_VEC_ELT (targs, i) = elt;
15640 }
15641
15642 return 1;
15643 }
15644
15645 /* PARM is a template class (perhaps with unbound template
15646 parameters). ARG is a fully instantiated type. If ARG can be
15647 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
15648 TARGS are as for unify. */
15649
15650 static tree
15651 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
15652 bool explain_p)
15653 {
15654 tree copy_of_targs;
15655
15656 if (!CLASSTYPE_TEMPLATE_INFO (arg)
15657 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
15658 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
15659 return NULL_TREE;
15660
15661 /* We need to make a new template argument vector for the call to
15662 unify. If we used TARGS, we'd clutter it up with the result of
15663 the attempted unification, even if this class didn't work out.
15664 We also don't want to commit ourselves to all the unifications
15665 we've already done, since unification is supposed to be done on
15666 an argument-by-argument basis. In other words, consider the
15667 following pathological case:
15668
15669 template <int I, int J, int K>
15670 struct S {};
15671
15672 template <int I, int J>
15673 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
15674
15675 template <int I, int J, int K>
15676 void f(S<I, J, K>, S<I, I, I>);
15677
15678 void g() {
15679 S<0, 0, 0> s0;
15680 S<0, 1, 2> s2;
15681
15682 f(s0, s2);
15683 }
15684
15685 Now, by the time we consider the unification involving `s2', we
15686 already know that we must have `f<0, 0, 0>'. But, even though
15687 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
15688 because there are two ways to unify base classes of S<0, 1, 2>
15689 with S<I, I, I>. If we kept the already deduced knowledge, we
15690 would reject the possibility I=1. */
15691 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
15692
15693 /* If unification failed, we're done. */
15694 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
15695 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
15696 return NULL_TREE;
15697
15698 return arg;
15699 }
15700
15701 /* Given a template type PARM and a class type ARG, find the unique
15702 base type in ARG that is an instance of PARM. We do not examine
15703 ARG itself; only its base-classes. If there is not exactly one
15704 appropriate base class, return NULL_TREE. PARM may be the type of
15705 a partial specialization, as well as a plain template type. Used
15706 by unify. */
15707
15708 static enum template_base_result
15709 get_template_base (tree tparms, tree targs, tree parm, tree arg,
15710 bool explain_p, tree *result)
15711 {
15712 tree rval = NULL_TREE;
15713 tree binfo;
15714
15715 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
15716
15717 binfo = TYPE_BINFO (complete_type (arg));
15718 if (!binfo)
15719 {
15720 /* The type could not be completed. */
15721 *result = NULL_TREE;
15722 return tbr_incomplete_type;
15723 }
15724
15725 /* Walk in inheritance graph order. The search order is not
15726 important, and this avoids multiple walks of virtual bases. */
15727 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
15728 {
15729 tree r = try_class_unification (tparms, targs, parm,
15730 BINFO_TYPE (binfo), explain_p);
15731
15732 if (r)
15733 {
15734 /* If there is more than one satisfactory baseclass, then:
15735
15736 [temp.deduct.call]
15737
15738 If they yield more than one possible deduced A, the type
15739 deduction fails.
15740
15741 applies. */
15742 if (rval && !same_type_p (r, rval))
15743 {
15744 *result = NULL_TREE;
15745 return tbr_ambiguous_baseclass;
15746 }
15747
15748 rval = r;
15749 }
15750 }
15751
15752 *result = rval;
15753 return tbr_success;
15754 }
15755
15756 /* Returns the level of DECL, which declares a template parameter. */
15757
15758 static int
15759 template_decl_level (tree decl)
15760 {
15761 switch (TREE_CODE (decl))
15762 {
15763 case TYPE_DECL:
15764 case TEMPLATE_DECL:
15765 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
15766
15767 case PARM_DECL:
15768 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
15769
15770 default:
15771 gcc_unreachable ();
15772 }
15773 return 0;
15774 }
15775
15776 /* Decide whether ARG can be unified with PARM, considering only the
15777 cv-qualifiers of each type, given STRICT as documented for unify.
15778 Returns nonzero iff the unification is OK on that basis. */
15779
15780 static int
15781 check_cv_quals_for_unify (int strict, tree arg, tree parm)
15782 {
15783 int arg_quals = cp_type_quals (arg);
15784 int parm_quals = cp_type_quals (parm);
15785
15786 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
15787 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
15788 {
15789 /* Although a CVR qualifier is ignored when being applied to a
15790 substituted template parameter ([8.3.2]/1 for example), that
15791 does not allow us to unify "const T" with "int&" because both
15792 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
15793 It is ok when we're allowing additional CV qualifiers
15794 at the outer level [14.8.2.1]/3,1st bullet. */
15795 if ((TREE_CODE (arg) == REFERENCE_TYPE
15796 || TREE_CODE (arg) == FUNCTION_TYPE
15797 || TREE_CODE (arg) == METHOD_TYPE)
15798 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
15799 return 0;
15800
15801 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
15802 && (parm_quals & TYPE_QUAL_RESTRICT))
15803 return 0;
15804 }
15805
15806 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
15807 && (arg_quals & parm_quals) != parm_quals)
15808 return 0;
15809
15810 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
15811 && (parm_quals & arg_quals) != arg_quals)
15812 return 0;
15813
15814 return 1;
15815 }
15816
15817 /* Determines the LEVEL and INDEX for the template parameter PARM. */
15818 void
15819 template_parm_level_and_index (tree parm, int* level, int* index)
15820 {
15821 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
15822 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
15823 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
15824 {
15825 *index = TEMPLATE_TYPE_IDX (parm);
15826 *level = TEMPLATE_TYPE_LEVEL (parm);
15827 }
15828 else
15829 {
15830 *index = TEMPLATE_PARM_IDX (parm);
15831 *level = TEMPLATE_PARM_LEVEL (parm);
15832 }
15833 }
15834
15835 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
15836 do { \
15837 if (unify (TP, TA, P, A, S, EP)) \
15838 return 1; \
15839 } while (0);
15840
15841 /* Unifies the remaining arguments in PACKED_ARGS with the pack
15842 expansion at the end of PACKED_PARMS. Returns 0 if the type
15843 deduction succeeds, 1 otherwise. STRICT is the same as in
15844 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
15845 call argument list. We'll need to adjust the arguments to make them
15846 types. SUBR tells us if this is from a recursive call to
15847 type_unification_real, or for comparing two template argument
15848 lists. */
15849
15850 static int
15851 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
15852 tree packed_args, unification_kind_t strict,
15853 bool subr, bool explain_p)
15854 {
15855 tree parm
15856 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
15857 tree pattern = PACK_EXPANSION_PATTERN (parm);
15858 tree pack, packs = NULL_TREE;
15859 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
15860 int len = TREE_VEC_LENGTH (packed_args);
15861
15862 /* Determine the parameter packs we will be deducing from the
15863 pattern, and record their current deductions. */
15864 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
15865 pack; pack = TREE_CHAIN (pack))
15866 {
15867 tree parm_pack = TREE_VALUE (pack);
15868 int idx, level;
15869
15870 /* Determine the index and level of this parameter pack. */
15871 template_parm_level_and_index (parm_pack, &level, &idx);
15872
15873 /* Keep track of the parameter packs and their corresponding
15874 argument packs. */
15875 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
15876 TREE_TYPE (packs) = make_tree_vec (len - start);
15877 }
15878
15879 /* Loop through all of the arguments that have not yet been
15880 unified and unify each with the pattern. */
15881 for (i = start; i < len; i++)
15882 {
15883 tree parm;
15884 bool any_explicit = false;
15885 tree arg = TREE_VEC_ELT (packed_args, i);
15886
15887 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
15888 or the element of its argument pack at the current index if
15889 this argument was explicitly specified. */
15890 for (pack = packs; pack; pack = TREE_CHAIN (pack))
15891 {
15892 int idx, level;
15893 tree arg, pargs;
15894 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
15895
15896 arg = NULL_TREE;
15897 if (TREE_VALUE (pack)
15898 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
15899 && (i < TREE_VEC_LENGTH (pargs)))
15900 {
15901 any_explicit = true;
15902 arg = TREE_VEC_ELT (pargs, i);
15903 }
15904 TMPL_ARG (targs, level, idx) = arg;
15905 }
15906
15907 /* If we had explicit template arguments, substitute them into the
15908 pattern before deduction. */
15909 if (any_explicit)
15910 {
15911 /* Some arguments might still be unspecified or dependent. */
15912 bool dependent;
15913 ++processing_template_decl;
15914 dependent = any_dependent_template_arguments_p (targs);
15915 if (!dependent)
15916 --processing_template_decl;
15917 parm = tsubst (pattern, targs,
15918 explain_p ? tf_warning_or_error : tf_none,
15919 NULL_TREE);
15920 if (dependent)
15921 --processing_template_decl;
15922 if (parm == error_mark_node)
15923 return 1;
15924 }
15925 else
15926 parm = pattern;
15927
15928 /* Unify the pattern with the current argument. */
15929 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
15930 LOOKUP_IMPLICIT, explain_p))
15931 return 1;
15932
15933 /* For each parameter pack, collect the deduced value. */
15934 for (pack = packs; pack; pack = TREE_CHAIN (pack))
15935 {
15936 int idx, level;
15937 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
15938
15939 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
15940 TMPL_ARG (targs, level, idx);
15941 }
15942 }
15943
15944 /* Verify that the results of unification with the parameter packs
15945 produce results consistent with what we've seen before, and make
15946 the deduced argument packs available. */
15947 for (pack = packs; pack; pack = TREE_CHAIN (pack))
15948 {
15949 tree old_pack = TREE_VALUE (pack);
15950 tree new_args = TREE_TYPE (pack);
15951 int i, len = TREE_VEC_LENGTH (new_args);
15952 int idx, level;
15953 bool nondeduced_p = false;
15954
15955 /* By default keep the original deduced argument pack.
15956 If necessary, more specific code is going to update the
15957 resulting deduced argument later down in this function. */
15958 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
15959 TMPL_ARG (targs, level, idx) = old_pack;
15960
15961 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
15962 actually deduce anything. */
15963 for (i = 0; i < len && !nondeduced_p; ++i)
15964 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
15965 nondeduced_p = true;
15966 if (nondeduced_p)
15967 continue;
15968
15969 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
15970 {
15971 /* If we had fewer function args than explicit template args,
15972 just use the explicits. */
15973 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
15974 int explicit_len = TREE_VEC_LENGTH (explicit_args);
15975 if (len < explicit_len)
15976 new_args = explicit_args;
15977 }
15978
15979 if (!old_pack)
15980 {
15981 tree result;
15982 /* Build the deduced *_ARGUMENT_PACK. */
15983 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
15984 {
15985 result = make_node (NONTYPE_ARGUMENT_PACK);
15986 TREE_TYPE (result) =
15987 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
15988 TREE_CONSTANT (result) = 1;
15989 }
15990 else
15991 result = cxx_make_type (TYPE_ARGUMENT_PACK);
15992
15993 SET_ARGUMENT_PACK_ARGS (result, new_args);
15994
15995 /* Note the deduced argument packs for this parameter
15996 pack. */
15997 TMPL_ARG (targs, level, idx) = result;
15998 }
15999 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
16000 && (ARGUMENT_PACK_ARGS (old_pack)
16001 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
16002 {
16003 /* We only had the explicitly-provided arguments before, but
16004 now we have a complete set of arguments. */
16005 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
16006
16007 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
16008 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
16009 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
16010 }
16011 else
16012 {
16013 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
16014 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
16015
16016 if (!comp_template_args_with_info (old_args, new_args,
16017 &bad_old_arg, &bad_new_arg))
16018 /* Inconsistent unification of this parameter pack. */
16019 return unify_parameter_pack_inconsistent (explain_p,
16020 bad_old_arg,
16021 bad_new_arg);
16022 }
16023 }
16024
16025 return unify_success (explain_p);
16026 }
16027
16028 /* Deduce the value of template parameters. TPARMS is the (innermost)
16029 set of template parameters to a template. TARGS is the bindings
16030 for those template parameters, as determined thus far; TARGS may
16031 include template arguments for outer levels of template parameters
16032 as well. PARM is a parameter to a template function, or a
16033 subcomponent of that parameter; ARG is the corresponding argument.
16034 This function attempts to match PARM with ARG in a manner
16035 consistent with the existing assignments in TARGS. If more values
16036 are deduced, then TARGS is updated.
16037
16038 Returns 0 if the type deduction succeeds, 1 otherwise. The
16039 parameter STRICT is a bitwise or of the following flags:
16040
16041 UNIFY_ALLOW_NONE:
16042 Require an exact match between PARM and ARG.
16043 UNIFY_ALLOW_MORE_CV_QUAL:
16044 Allow the deduced ARG to be more cv-qualified (by qualification
16045 conversion) than ARG.
16046 UNIFY_ALLOW_LESS_CV_QUAL:
16047 Allow the deduced ARG to be less cv-qualified than ARG.
16048 UNIFY_ALLOW_DERIVED:
16049 Allow the deduced ARG to be a template base class of ARG,
16050 or a pointer to a template base class of the type pointed to by
16051 ARG.
16052 UNIFY_ALLOW_INTEGER:
16053 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
16054 case for more information.
16055 UNIFY_ALLOW_OUTER_LEVEL:
16056 This is the outermost level of a deduction. Used to determine validity
16057 of qualification conversions. A valid qualification conversion must
16058 have const qualified pointers leading up to the inner type which
16059 requires additional CV quals, except at the outer level, where const
16060 is not required [conv.qual]. It would be normal to set this flag in
16061 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
16062 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
16063 This is the outermost level of a deduction, and PARM can be more CV
16064 qualified at this point.
16065 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
16066 This is the outermost level of a deduction, and PARM can be less CV
16067 qualified at this point. */
16068
16069 static int
16070 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
16071 bool explain_p)
16072 {
16073 int idx;
16074 tree targ;
16075 tree tparm;
16076 int strict_in = strict;
16077
16078 /* I don't think this will do the right thing with respect to types.
16079 But the only case I've seen it in so far has been array bounds, where
16080 signedness is the only information lost, and I think that will be
16081 okay. */
16082 while (TREE_CODE (parm) == NOP_EXPR)
16083 parm = TREE_OPERAND (parm, 0);
16084
16085 if (arg == error_mark_node)
16086 return unify_invalid (explain_p);
16087 if (arg == unknown_type_node
16088 || arg == init_list_type_node)
16089 /* We can't deduce anything from this, but we might get all the
16090 template args from other function args. */
16091 return unify_success (explain_p);
16092
16093 /* If PARM uses template parameters, then we can't bail out here,
16094 even if ARG == PARM, since we won't record unifications for the
16095 template parameters. We might need them if we're trying to
16096 figure out which of two things is more specialized. */
16097 if (arg == parm && !uses_template_parms (parm))
16098 return unify_success (explain_p);
16099
16100 /* Handle init lists early, so the rest of the function can assume
16101 we're dealing with a type. */
16102 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
16103 {
16104 tree elt, elttype;
16105 unsigned i;
16106 tree orig_parm = parm;
16107
16108 /* Replace T with std::initializer_list<T> for deduction. */
16109 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
16110 && flag_deduce_init_list)
16111 parm = listify (parm);
16112
16113 if (!is_std_init_list (parm))
16114 /* We can only deduce from an initializer list argument if the
16115 parameter is std::initializer_list; otherwise this is a
16116 non-deduced context. */
16117 return unify_success (explain_p);
16118
16119 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
16120
16121 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
16122 {
16123 int elt_strict = strict;
16124
16125 if (elt == error_mark_node)
16126 return unify_invalid (explain_p);
16127
16128 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
16129 {
16130 tree type = TREE_TYPE (elt);
16131 /* It should only be possible to get here for a call. */
16132 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
16133 elt_strict |= maybe_adjust_types_for_deduction
16134 (DEDUCE_CALL, &elttype, &type, elt);
16135 elt = type;
16136 }
16137
16138 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
16139 explain_p);
16140 }
16141
16142 /* If the std::initializer_list<T> deduction worked, replace the
16143 deduced A with std::initializer_list<A>. */
16144 if (orig_parm != parm)
16145 {
16146 idx = TEMPLATE_TYPE_IDX (orig_parm);
16147 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
16148 targ = listify (targ);
16149 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
16150 }
16151 return unify_success (explain_p);
16152 }
16153
16154 /* Immediately reject some pairs that won't unify because of
16155 cv-qualification mismatches. */
16156 if (TREE_CODE (arg) == TREE_CODE (parm)
16157 && TYPE_P (arg)
16158 /* It is the elements of the array which hold the cv quals of an array
16159 type, and the elements might be template type parms. We'll check
16160 when we recurse. */
16161 && TREE_CODE (arg) != ARRAY_TYPE
16162 /* We check the cv-qualifiers when unifying with template type
16163 parameters below. We want to allow ARG `const T' to unify with
16164 PARM `T' for example, when computing which of two templates
16165 is more specialized, for example. */
16166 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
16167 && !check_cv_quals_for_unify (strict_in, arg, parm))
16168 return unify_cv_qual_mismatch (explain_p, parm, arg);
16169
16170 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
16171 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
16172 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
16173 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
16174 strict &= ~UNIFY_ALLOW_DERIVED;
16175 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
16176 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
16177
16178 switch (TREE_CODE (parm))
16179 {
16180 case TYPENAME_TYPE:
16181 case SCOPE_REF:
16182 case UNBOUND_CLASS_TEMPLATE:
16183 /* In a type which contains a nested-name-specifier, template
16184 argument values cannot be deduced for template parameters used
16185 within the nested-name-specifier. */
16186 return unify_success (explain_p);
16187
16188 case TEMPLATE_TYPE_PARM:
16189 case TEMPLATE_TEMPLATE_PARM:
16190 case BOUND_TEMPLATE_TEMPLATE_PARM:
16191 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
16192 if (tparm == error_mark_node)
16193 return unify_invalid (explain_p);
16194
16195 if (TEMPLATE_TYPE_LEVEL (parm)
16196 != template_decl_level (tparm))
16197 /* The PARM is not one we're trying to unify. Just check
16198 to see if it matches ARG. */
16199 {
16200 if (TREE_CODE (arg) == TREE_CODE (parm)
16201 && same_type_p (parm, arg))
16202 return unify_success (explain_p);
16203 else
16204 return unify_type_mismatch (explain_p, parm, arg);
16205 }
16206 idx = TEMPLATE_TYPE_IDX (parm);
16207 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
16208 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
16209
16210 /* Check for mixed types and values. */
16211 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
16212 && TREE_CODE (tparm) != TYPE_DECL)
16213 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
16214 && TREE_CODE (tparm) != TEMPLATE_DECL))
16215 gcc_unreachable ();
16216
16217 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
16218 {
16219 /* ARG must be constructed from a template class or a template
16220 template parameter. */
16221 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
16222 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
16223 return unify_template_deduction_failure (explain_p, parm, arg);
16224
16225 {
16226 tree parmvec = TYPE_TI_ARGS (parm);
16227 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
16228 tree full_argvec = add_to_template_args (targs, argvec);
16229 tree parm_parms
16230 = DECL_INNERMOST_TEMPLATE_PARMS
16231 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
16232 int i, len;
16233 int parm_variadic_p = 0;
16234
16235 /* The resolution to DR150 makes clear that default
16236 arguments for an N-argument may not be used to bind T
16237 to a template template parameter with fewer than N
16238 parameters. It is not safe to permit the binding of
16239 default arguments as an extension, as that may change
16240 the meaning of a conforming program. Consider:
16241
16242 struct Dense { static const unsigned int dim = 1; };
16243
16244 template <template <typename> class View,
16245 typename Block>
16246 void operator+(float, View<Block> const&);
16247
16248 template <typename Block,
16249 unsigned int Dim = Block::dim>
16250 struct Lvalue_proxy { operator float() const; };
16251
16252 void
16253 test_1d (void) {
16254 Lvalue_proxy<Dense> p;
16255 float b;
16256 b + p;
16257 }
16258
16259 Here, if Lvalue_proxy is permitted to bind to View, then
16260 the global operator+ will be used; if they are not, the
16261 Lvalue_proxy will be converted to float. */
16262 if (coerce_template_parms (parm_parms,
16263 full_argvec,
16264 TYPE_TI_TEMPLATE (parm),
16265 (explain_p
16266 ? tf_warning_or_error
16267 : tf_none),
16268 /*require_all_args=*/true,
16269 /*use_default_args=*/false)
16270 == error_mark_node)
16271 return 1;
16272
16273 /* Deduce arguments T, i from TT<T> or TT<i>.
16274 We check each element of PARMVEC and ARGVEC individually
16275 rather than the whole TREE_VEC since they can have
16276 different number of elements. */
16277
16278 parmvec = expand_template_argument_pack (parmvec);
16279 argvec = expand_template_argument_pack (argvec);
16280
16281 len = TREE_VEC_LENGTH (parmvec);
16282
16283 /* Check if the parameters end in a pack, making them
16284 variadic. */
16285 if (len > 0
16286 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
16287 parm_variadic_p = 1;
16288
16289 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
16290 return unify_too_few_arguments (explain_p,
16291 TREE_VEC_LENGTH (argvec), len);
16292
16293 for (i = 0; i < len - parm_variadic_p; ++i)
16294 {
16295 RECUR_AND_CHECK_FAILURE (tparms, targs,
16296 TREE_VEC_ELT (parmvec, i),
16297 TREE_VEC_ELT (argvec, i),
16298 UNIFY_ALLOW_NONE, explain_p);
16299 }
16300
16301 if (parm_variadic_p
16302 && unify_pack_expansion (tparms, targs,
16303 parmvec, argvec,
16304 DEDUCE_EXACT,
16305 /*subr=*/true, explain_p))
16306 return 1;
16307 }
16308 arg = TYPE_TI_TEMPLATE (arg);
16309
16310 /* Fall through to deduce template name. */
16311 }
16312
16313 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
16314 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
16315 {
16316 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
16317
16318 /* Simple cases: Value already set, does match or doesn't. */
16319 if (targ != NULL_TREE && template_args_equal (targ, arg))
16320 return unify_success (explain_p);
16321 else if (targ)
16322 return unify_inconsistency (explain_p, parm, targ, arg);
16323 }
16324 else
16325 {
16326 /* If PARM is `const T' and ARG is only `int', we don't have
16327 a match unless we are allowing additional qualification.
16328 If ARG is `const int' and PARM is just `T' that's OK;
16329 that binds `const int' to `T'. */
16330 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
16331 arg, parm))
16332 return unify_cv_qual_mismatch (explain_p, parm, arg);
16333
16334 /* Consider the case where ARG is `const volatile int' and
16335 PARM is `const T'. Then, T should be `volatile int'. */
16336 arg = cp_build_qualified_type_real
16337 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
16338 if (arg == error_mark_node)
16339 return unify_invalid (explain_p);
16340
16341 /* Simple cases: Value already set, does match or doesn't. */
16342 if (targ != NULL_TREE && same_type_p (targ, arg))
16343 return unify_success (explain_p);
16344 else if (targ)
16345 return unify_inconsistency (explain_p, parm, targ, arg);
16346
16347 /* Make sure that ARG is not a variable-sized array. (Note
16348 that were talking about variable-sized arrays (like
16349 `int[n]'), rather than arrays of unknown size (like
16350 `int[]').) We'll get very confused by such a type since
16351 the bound of the array is not constant, and therefore
16352 not mangleable. Besides, such types are not allowed in
16353 ISO C++, so we can do as we please here. We do allow
16354 them for 'auto' deduction, since that isn't ABI-exposed. */
16355 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
16356 return unify_vla_arg (explain_p, arg);
16357
16358 /* Strip typedefs as in convert_template_argument. */
16359 arg = canonicalize_type_argument (arg, tf_none);
16360 }
16361
16362 /* If ARG is a parameter pack or an expansion, we cannot unify
16363 against it unless PARM is also a parameter pack. */
16364 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
16365 && !template_parameter_pack_p (parm))
16366 return unify_parameter_pack_mismatch (explain_p, parm, arg);
16367
16368 /* If the argument deduction results is a METHOD_TYPE,
16369 then there is a problem.
16370 METHOD_TYPE doesn't map to any real C++ type the result of
16371 the deduction can not be of that type. */
16372 if (TREE_CODE (arg) == METHOD_TYPE)
16373 return unify_method_type_error (explain_p, arg);
16374
16375 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
16376 return unify_success (explain_p);
16377
16378 case TEMPLATE_PARM_INDEX:
16379 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
16380 if (tparm == error_mark_node)
16381 return unify_invalid (explain_p);
16382
16383 if (TEMPLATE_PARM_LEVEL (parm)
16384 != template_decl_level (tparm))
16385 {
16386 /* The PARM is not one we're trying to unify. Just check
16387 to see if it matches ARG. */
16388 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
16389 && cp_tree_equal (parm, arg));
16390 if (result)
16391 unify_expression_unequal (explain_p, parm, arg);
16392 return result;
16393 }
16394
16395 idx = TEMPLATE_PARM_IDX (parm);
16396 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
16397
16398 if (targ)
16399 {
16400 int x = !cp_tree_equal (targ, arg);
16401 if (x)
16402 unify_inconsistency (explain_p, parm, targ, arg);
16403 return x;
16404 }
16405
16406 /* [temp.deduct.type] If, in the declaration of a function template
16407 with a non-type template-parameter, the non-type
16408 template-parameter is used in an expression in the function
16409 parameter-list and, if the corresponding template-argument is
16410 deduced, the template-argument type shall match the type of the
16411 template-parameter exactly, except that a template-argument
16412 deduced from an array bound may be of any integral type.
16413 The non-type parameter might use already deduced type parameters. */
16414 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
16415 if (!TREE_TYPE (arg))
16416 /* Template-parameter dependent expression. Just accept it for now.
16417 It will later be processed in convert_template_argument. */
16418 ;
16419 else if (same_type_p (TREE_TYPE (arg), tparm))
16420 /* OK */;
16421 else if ((strict & UNIFY_ALLOW_INTEGER)
16422 && (TREE_CODE (tparm) == INTEGER_TYPE
16423 || TREE_CODE (tparm) == BOOLEAN_TYPE))
16424 /* Convert the ARG to the type of PARM; the deduced non-type
16425 template argument must exactly match the types of the
16426 corresponding parameter. */
16427 arg = fold (build_nop (tparm, arg));
16428 else if (uses_template_parms (tparm))
16429 /* We haven't deduced the type of this parameter yet. Try again
16430 later. */
16431 return unify_success (explain_p);
16432 else
16433 return unify_type_mismatch (explain_p, tparm, arg);
16434
16435 /* If ARG is a parameter pack or an expansion, we cannot unify
16436 against it unless PARM is also a parameter pack. */
16437 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
16438 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
16439 return unify_parameter_pack_mismatch (explain_p, parm, arg);
16440
16441 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
16442 return unify_success (explain_p);
16443
16444 case PTRMEM_CST:
16445 {
16446 /* A pointer-to-member constant can be unified only with
16447 another constant. */
16448 if (TREE_CODE (arg) != PTRMEM_CST)
16449 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
16450
16451 /* Just unify the class member. It would be useless (and possibly
16452 wrong, depending on the strict flags) to unify also
16453 PTRMEM_CST_CLASS, because we want to be sure that both parm and
16454 arg refer to the same variable, even if through different
16455 classes. For instance:
16456
16457 struct A { int x; };
16458 struct B : A { };
16459
16460 Unification of &A::x and &B::x must succeed. */
16461 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
16462 PTRMEM_CST_MEMBER (arg), strict, explain_p);
16463 }
16464
16465 case POINTER_TYPE:
16466 {
16467 if (TREE_CODE (arg) != POINTER_TYPE)
16468 return unify_type_mismatch (explain_p, parm, arg);
16469
16470 /* [temp.deduct.call]
16471
16472 A can be another pointer or pointer to member type that can
16473 be converted to the deduced A via a qualification
16474 conversion (_conv.qual_).
16475
16476 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
16477 This will allow for additional cv-qualification of the
16478 pointed-to types if appropriate. */
16479
16480 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
16481 /* The derived-to-base conversion only persists through one
16482 level of pointers. */
16483 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
16484
16485 return unify (tparms, targs, TREE_TYPE (parm),
16486 TREE_TYPE (arg), strict, explain_p);
16487 }
16488
16489 case REFERENCE_TYPE:
16490 if (TREE_CODE (arg) != REFERENCE_TYPE)
16491 return unify_type_mismatch (explain_p, parm, arg);
16492 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
16493 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
16494
16495 case ARRAY_TYPE:
16496 if (TREE_CODE (arg) != ARRAY_TYPE)
16497 return unify_type_mismatch (explain_p, parm, arg);
16498 if ((TYPE_DOMAIN (parm) == NULL_TREE)
16499 != (TYPE_DOMAIN (arg) == NULL_TREE))
16500 return unify_type_mismatch (explain_p, parm, arg);
16501 if (TYPE_DOMAIN (parm) != NULL_TREE)
16502 {
16503 tree parm_max;
16504 tree arg_max;
16505 bool parm_cst;
16506 bool arg_cst;
16507
16508 /* Our representation of array types uses "N - 1" as the
16509 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
16510 not an integer constant. We cannot unify arbitrarily
16511 complex expressions, so we eliminate the MINUS_EXPRs
16512 here. */
16513 parm_max = TYPE_MAX_VALUE (TYPE_DOMAIN (parm));
16514 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
16515 if (!parm_cst)
16516 {
16517 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
16518 parm_max = TREE_OPERAND (parm_max, 0);
16519 }
16520 arg_max = TYPE_MAX_VALUE (TYPE_DOMAIN (arg));
16521 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
16522 if (!arg_cst)
16523 {
16524 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
16525 trying to unify the type of a variable with the type
16526 of a template parameter. For example:
16527
16528 template <unsigned int N>
16529 void f (char (&) [N]);
16530 int g();
16531 void h(int i) {
16532 char a[g(i)];
16533 f(a);
16534 }
16535
16536 Here, the type of the ARG will be "int [g(i)]", and
16537 may be a SAVE_EXPR, etc. */
16538 if (TREE_CODE (arg_max) != MINUS_EXPR)
16539 return unify_vla_arg (explain_p, arg);
16540 arg_max = TREE_OPERAND (arg_max, 0);
16541 }
16542
16543 /* If only one of the bounds used a MINUS_EXPR, compensate
16544 by adding one to the other bound. */
16545 if (parm_cst && !arg_cst)
16546 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
16547 integer_type_node,
16548 parm_max,
16549 integer_one_node);
16550 else if (arg_cst && !parm_cst)
16551 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
16552 integer_type_node,
16553 arg_max,
16554 integer_one_node);
16555
16556 RECUR_AND_CHECK_FAILURE (tparms, targs, parm_max, arg_max,
16557 UNIFY_ALLOW_INTEGER, explain_p);
16558 }
16559 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
16560 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
16561
16562 case REAL_TYPE:
16563 case COMPLEX_TYPE:
16564 case VECTOR_TYPE:
16565 case INTEGER_TYPE:
16566 case BOOLEAN_TYPE:
16567 case ENUMERAL_TYPE:
16568 case VOID_TYPE:
16569 if (TREE_CODE (arg) != TREE_CODE (parm))
16570 return unify_type_mismatch (explain_p, parm, arg);
16571
16572 /* We have already checked cv-qualification at the top of the
16573 function. */
16574 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
16575 return unify_type_mismatch (explain_p, parm, arg);
16576
16577 /* As far as unification is concerned, this wins. Later checks
16578 will invalidate it if necessary. */
16579 return unify_success (explain_p);
16580
16581 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
16582 /* Type INTEGER_CST can come from ordinary constant template args. */
16583 case INTEGER_CST:
16584 while (TREE_CODE (arg) == NOP_EXPR)
16585 arg = TREE_OPERAND (arg, 0);
16586
16587 if (TREE_CODE (arg) != INTEGER_CST)
16588 return unify_template_argument_mismatch (explain_p, parm, arg);
16589 return (tree_int_cst_equal (parm, arg)
16590 ? unify_success (explain_p)
16591 : unify_template_argument_mismatch (explain_p, parm, arg));
16592
16593 case TREE_VEC:
16594 {
16595 int i, len, argslen;
16596 int parm_variadic_p = 0;
16597
16598 if (TREE_CODE (arg) != TREE_VEC)
16599 return unify_template_argument_mismatch (explain_p, parm, arg);
16600
16601 len = TREE_VEC_LENGTH (parm);
16602 argslen = TREE_VEC_LENGTH (arg);
16603
16604 /* Check for pack expansions in the parameters. */
16605 for (i = 0; i < len; ++i)
16606 {
16607 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
16608 {
16609 if (i == len - 1)
16610 /* We can unify against something with a trailing
16611 parameter pack. */
16612 parm_variadic_p = 1;
16613 else
16614 /* [temp.deduct.type]/9: If the template argument list of
16615 P contains a pack expansion that is not the last
16616 template argument, the entire template argument list
16617 is a non-deduced context. */
16618 return unify_success (explain_p);
16619 }
16620 }
16621
16622 /* If we don't have enough arguments to satisfy the parameters
16623 (not counting the pack expression at the end), or we have
16624 too many arguments for a parameter list that doesn't end in
16625 a pack expression, we can't unify. */
16626 if (parm_variadic_p
16627 ? argslen < len - parm_variadic_p
16628 : argslen != len)
16629 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
16630
16631 /* Unify all of the parameters that precede the (optional)
16632 pack expression. */
16633 for (i = 0; i < len - parm_variadic_p; ++i)
16634 {
16635 RECUR_AND_CHECK_FAILURE (tparms, targs,
16636 TREE_VEC_ELT (parm, i),
16637 TREE_VEC_ELT (arg, i),
16638 UNIFY_ALLOW_NONE, explain_p);
16639 }
16640 if (parm_variadic_p)
16641 return unify_pack_expansion (tparms, targs, parm, arg,
16642 DEDUCE_EXACT,
16643 /*subr=*/true, explain_p);
16644 return unify_success (explain_p);
16645 }
16646
16647 case RECORD_TYPE:
16648 case UNION_TYPE:
16649 if (TREE_CODE (arg) != TREE_CODE (parm))
16650 return unify_type_mismatch (explain_p, parm, arg);
16651
16652 if (TYPE_PTRMEMFUNC_P (parm))
16653 {
16654 if (!TYPE_PTRMEMFUNC_P (arg))
16655 return unify_type_mismatch (explain_p, parm, arg);
16656
16657 return unify (tparms, targs,
16658 TYPE_PTRMEMFUNC_FN_TYPE (parm),
16659 TYPE_PTRMEMFUNC_FN_TYPE (arg),
16660 strict, explain_p);
16661 }
16662
16663 if (CLASSTYPE_TEMPLATE_INFO (parm))
16664 {
16665 tree t = NULL_TREE;
16666
16667 if (strict_in & UNIFY_ALLOW_DERIVED)
16668 {
16669 /* First, we try to unify the PARM and ARG directly. */
16670 t = try_class_unification (tparms, targs,
16671 parm, arg, explain_p);
16672
16673 if (!t)
16674 {
16675 /* Fallback to the special case allowed in
16676 [temp.deduct.call]:
16677
16678 If P is a class, and P has the form
16679 template-id, then A can be a derived class of
16680 the deduced A. Likewise, if P is a pointer to
16681 a class of the form template-id, A can be a
16682 pointer to a derived class pointed to by the
16683 deduced A. */
16684 enum template_base_result r;
16685 r = get_template_base (tparms, targs, parm, arg,
16686 explain_p, &t);
16687
16688 if (!t)
16689 return unify_no_common_base (explain_p, r, parm, arg);
16690 }
16691 }
16692 else if (CLASSTYPE_TEMPLATE_INFO (arg)
16693 && (CLASSTYPE_TI_TEMPLATE (parm)
16694 == CLASSTYPE_TI_TEMPLATE (arg)))
16695 /* Perhaps PARM is something like S<U> and ARG is S<int>.
16696 Then, we should unify `int' and `U'. */
16697 t = arg;
16698 else
16699 /* There's no chance of unification succeeding. */
16700 return unify_type_mismatch (explain_p, parm, arg);
16701
16702 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
16703 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
16704 }
16705 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
16706 return unify_type_mismatch (explain_p, parm, arg);
16707 return unify_success (explain_p);
16708
16709 case METHOD_TYPE:
16710 case FUNCTION_TYPE:
16711 {
16712 unsigned int nargs;
16713 tree *args;
16714 tree a;
16715 unsigned int i;
16716
16717 if (TREE_CODE (arg) != TREE_CODE (parm))
16718 return unify_type_mismatch (explain_p, parm, arg);
16719
16720 /* CV qualifications for methods can never be deduced, they must
16721 match exactly. We need to check them explicitly here,
16722 because type_unification_real treats them as any other
16723 cv-qualified parameter. */
16724 if (TREE_CODE (parm) == METHOD_TYPE
16725 && (!check_cv_quals_for_unify
16726 (UNIFY_ALLOW_NONE,
16727 class_of_this_parm (arg),
16728 class_of_this_parm (parm))))
16729 return unify_cv_qual_mismatch (explain_p, parm, arg);
16730
16731 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
16732 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
16733
16734 nargs = list_length (TYPE_ARG_TYPES (arg));
16735 args = XALLOCAVEC (tree, nargs);
16736 for (a = TYPE_ARG_TYPES (arg), i = 0;
16737 a != NULL_TREE && a != void_list_node;
16738 a = TREE_CHAIN (a), ++i)
16739 args[i] = TREE_VALUE (a);
16740 nargs = i;
16741
16742 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
16743 args, nargs, 1, DEDUCE_EXACT,
16744 LOOKUP_NORMAL, explain_p);
16745 }
16746
16747 case OFFSET_TYPE:
16748 /* Unify a pointer to member with a pointer to member function, which
16749 deduces the type of the member as a function type. */
16750 if (TYPE_PTRMEMFUNC_P (arg))
16751 {
16752 tree method_type;
16753 tree fntype;
16754
16755 /* Check top-level cv qualifiers */
16756 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
16757 return unify_cv_qual_mismatch (explain_p, parm, arg);
16758
16759 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
16760 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
16761 UNIFY_ALLOW_NONE, explain_p);
16762
16763 /* Determine the type of the function we are unifying against. */
16764 method_type = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (arg));
16765 fntype =
16766 build_function_type (TREE_TYPE (method_type),
16767 TREE_CHAIN (TYPE_ARG_TYPES (method_type)));
16768
16769 /* Extract the cv-qualifiers of the member function from the
16770 implicit object parameter and place them on the function
16771 type to be restored later. */
16772 fntype = apply_memfn_quals (fntype, type_memfn_quals (method_type));
16773 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
16774 }
16775
16776 if (TREE_CODE (arg) != OFFSET_TYPE)
16777 return unify_type_mismatch (explain_p, parm, arg);
16778 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
16779 TYPE_OFFSET_BASETYPE (arg),
16780 UNIFY_ALLOW_NONE, explain_p);
16781 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
16782 strict, explain_p);
16783
16784 case CONST_DECL:
16785 if (DECL_TEMPLATE_PARM_P (parm))
16786 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
16787 if (arg != integral_constant_value (parm))
16788 return unify_template_argument_mismatch (explain_p, parm, arg);
16789 return unify_success (explain_p);
16790
16791 case FIELD_DECL:
16792 case TEMPLATE_DECL:
16793 /* Matched cases are handled by the ARG == PARM test above. */
16794 return unify_template_argument_mismatch (explain_p, parm, arg);
16795
16796 case VAR_DECL:
16797 /* A non-type template parameter that is a variable should be a
16798 an integral constant, in which case, it whould have been
16799 folded into its (constant) value. So we should not be getting
16800 a variable here. */
16801 gcc_unreachable ();
16802
16803 case TYPE_ARGUMENT_PACK:
16804 case NONTYPE_ARGUMENT_PACK:
16805 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
16806 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
16807
16808 case TYPEOF_TYPE:
16809 case DECLTYPE_TYPE:
16810 case UNDERLYING_TYPE:
16811 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
16812 or UNDERLYING_TYPE nodes. */
16813 return unify_success (explain_p);
16814
16815 case ERROR_MARK:
16816 /* Unification fails if we hit an error node. */
16817 return unify_invalid (explain_p);
16818
16819 default:
16820 /* An unresolved overload is a nondeduced context. */
16821 if (type_unknown_p (parm))
16822 return unify_success (explain_p);
16823 gcc_assert (EXPR_P (parm));
16824
16825 /* We must be looking at an expression. This can happen with
16826 something like:
16827
16828 template <int I>
16829 void foo(S<I>, S<I + 2>);
16830
16831 This is a "nondeduced context":
16832
16833 [deduct.type]
16834
16835 The nondeduced contexts are:
16836
16837 --A type that is a template-id in which one or more of
16838 the template-arguments is an expression that references
16839 a template-parameter.
16840
16841 In these cases, we assume deduction succeeded, but don't
16842 actually infer any unifications. */
16843
16844 if (!uses_template_parms (parm)
16845 && !template_args_equal (parm, arg))
16846 return unify_expression_unequal (explain_p, parm, arg);
16847 else
16848 return unify_success (explain_p);
16849 }
16850 }
16851 #undef RECUR_AND_CHECK_FAILURE
16852 \f
16853 /* Note that DECL can be defined in this translation unit, if
16854 required. */
16855
16856 static void
16857 mark_definable (tree decl)
16858 {
16859 tree clone;
16860 DECL_NOT_REALLY_EXTERN (decl) = 1;
16861 FOR_EACH_CLONE (clone, decl)
16862 DECL_NOT_REALLY_EXTERN (clone) = 1;
16863 }
16864
16865 /* Called if RESULT is explicitly instantiated, or is a member of an
16866 explicitly instantiated class. */
16867
16868 void
16869 mark_decl_instantiated (tree result, int extern_p)
16870 {
16871 SET_DECL_EXPLICIT_INSTANTIATION (result);
16872
16873 /* If this entity has already been written out, it's too late to
16874 make any modifications. */
16875 if (TREE_ASM_WRITTEN (result))
16876 return;
16877
16878 if (TREE_CODE (result) != FUNCTION_DECL)
16879 /* The TREE_PUBLIC flag for function declarations will have been
16880 set correctly by tsubst. */
16881 TREE_PUBLIC (result) = 1;
16882
16883 /* This might have been set by an earlier implicit instantiation. */
16884 DECL_COMDAT (result) = 0;
16885
16886 if (extern_p)
16887 DECL_NOT_REALLY_EXTERN (result) = 0;
16888 else
16889 {
16890 mark_definable (result);
16891 /* Always make artificials weak. */
16892 if (DECL_ARTIFICIAL (result) && flag_weak)
16893 comdat_linkage (result);
16894 /* For WIN32 we also want to put explicit instantiations in
16895 linkonce sections. */
16896 else if (TREE_PUBLIC (result))
16897 maybe_make_one_only (result);
16898 }
16899
16900 /* If EXTERN_P, then this function will not be emitted -- unless
16901 followed by an explicit instantiation, at which point its linkage
16902 will be adjusted. If !EXTERN_P, then this function will be
16903 emitted here. In neither circumstance do we want
16904 import_export_decl to adjust the linkage. */
16905 DECL_INTERFACE_KNOWN (result) = 1;
16906 }
16907
16908 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
16909 important template arguments. If any are missing, we check whether
16910 they're important by using error_mark_node for substituting into any
16911 args that were used for partial ordering (the ones between ARGS and END)
16912 and seeing if it bubbles up. */
16913
16914 static bool
16915 check_undeduced_parms (tree targs, tree args, tree end)
16916 {
16917 bool found = false;
16918 int i;
16919 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
16920 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
16921 {
16922 found = true;
16923 TREE_VEC_ELT (targs, i) = error_mark_node;
16924 }
16925 if (found)
16926 {
16927 for (; args != end; args = TREE_CHAIN (args))
16928 {
16929 tree substed = tsubst (TREE_VALUE (args), targs, tf_none, NULL_TREE);
16930 if (substed == error_mark_node)
16931 return true;
16932 }
16933 }
16934 return false;
16935 }
16936
16937 /* Given two function templates PAT1 and PAT2, return:
16938
16939 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
16940 -1 if PAT2 is more specialized than PAT1.
16941 0 if neither is more specialized.
16942
16943 LEN indicates the number of parameters we should consider
16944 (defaulted parameters should not be considered).
16945
16946 The 1998 std underspecified function template partial ordering, and
16947 DR214 addresses the issue. We take pairs of arguments, one from
16948 each of the templates, and deduce them against each other. One of
16949 the templates will be more specialized if all the *other*
16950 template's arguments deduce against its arguments and at least one
16951 of its arguments *does* *not* deduce against the other template's
16952 corresponding argument. Deduction is done as for class templates.
16953 The arguments used in deduction have reference and top level cv
16954 qualifiers removed. Iff both arguments were originally reference
16955 types *and* deduction succeeds in both directions, the template
16956 with the more cv-qualified argument wins for that pairing (if
16957 neither is more cv-qualified, they both are equal). Unlike regular
16958 deduction, after all the arguments have been deduced in this way,
16959 we do *not* verify the deduced template argument values can be
16960 substituted into non-deduced contexts.
16961
16962 The logic can be a bit confusing here, because we look at deduce1 and
16963 targs1 to see if pat2 is at least as specialized, and vice versa; if we
16964 can find template arguments for pat1 to make arg1 look like arg2, that
16965 means that arg2 is at least as specialized as arg1. */
16966
16967 int
16968 more_specialized_fn (tree pat1, tree pat2, int len)
16969 {
16970 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
16971 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
16972 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
16973 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
16974 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
16975 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
16976 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
16977 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
16978 tree origs1, origs2;
16979 bool lose1 = false;
16980 bool lose2 = false;
16981
16982 /* Remove the this parameter from non-static member functions. If
16983 one is a non-static member function and the other is not a static
16984 member function, remove the first parameter from that function
16985 also. This situation occurs for operator functions where we
16986 locate both a member function (with this pointer) and non-member
16987 operator (with explicit first operand). */
16988 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
16989 {
16990 len--; /* LEN is the number of significant arguments for DECL1 */
16991 args1 = TREE_CHAIN (args1);
16992 if (!DECL_STATIC_FUNCTION_P (decl2))
16993 args2 = TREE_CHAIN (args2);
16994 }
16995 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
16996 {
16997 args2 = TREE_CHAIN (args2);
16998 if (!DECL_STATIC_FUNCTION_P (decl1))
16999 {
17000 len--;
17001 args1 = TREE_CHAIN (args1);
17002 }
17003 }
17004
17005 /* If only one is a conversion operator, they are unordered. */
17006 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
17007 return 0;
17008
17009 /* Consider the return type for a conversion function */
17010 if (DECL_CONV_FN_P (decl1))
17011 {
17012 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
17013 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
17014 len++;
17015 }
17016
17017 processing_template_decl++;
17018
17019 origs1 = args1;
17020 origs2 = args2;
17021
17022 while (len--
17023 /* Stop when an ellipsis is seen. */
17024 && args1 != NULL_TREE && args2 != NULL_TREE)
17025 {
17026 tree arg1 = TREE_VALUE (args1);
17027 tree arg2 = TREE_VALUE (args2);
17028 int deduce1, deduce2;
17029 int quals1 = -1;
17030 int quals2 = -1;
17031
17032 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
17033 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
17034 {
17035 /* When both arguments are pack expansions, we need only
17036 unify the patterns themselves. */
17037 arg1 = PACK_EXPANSION_PATTERN (arg1);
17038 arg2 = PACK_EXPANSION_PATTERN (arg2);
17039
17040 /* This is the last comparison we need to do. */
17041 len = 0;
17042 }
17043
17044 if (TREE_CODE (arg1) == REFERENCE_TYPE)
17045 {
17046 arg1 = TREE_TYPE (arg1);
17047 quals1 = cp_type_quals (arg1);
17048 }
17049
17050 if (TREE_CODE (arg2) == REFERENCE_TYPE)
17051 {
17052 arg2 = TREE_TYPE (arg2);
17053 quals2 = cp_type_quals (arg2);
17054 }
17055
17056 if ((quals1 < 0) != (quals2 < 0))
17057 {
17058 /* Only of the args is a reference, see if we should apply
17059 array/function pointer decay to it. This is not part of
17060 DR214, but is, IMHO, consistent with the deduction rules
17061 for the function call itself, and with our earlier
17062 implementation of the underspecified partial ordering
17063 rules. (nathan). */
17064 if (quals1 >= 0)
17065 {
17066 switch (TREE_CODE (arg1))
17067 {
17068 case ARRAY_TYPE:
17069 arg1 = TREE_TYPE (arg1);
17070 /* FALLTHROUGH. */
17071 case FUNCTION_TYPE:
17072 arg1 = build_pointer_type (arg1);
17073 break;
17074
17075 default:
17076 break;
17077 }
17078 }
17079 else
17080 {
17081 switch (TREE_CODE (arg2))
17082 {
17083 case ARRAY_TYPE:
17084 arg2 = TREE_TYPE (arg2);
17085 /* FALLTHROUGH. */
17086 case FUNCTION_TYPE:
17087 arg2 = build_pointer_type (arg2);
17088 break;
17089
17090 default:
17091 break;
17092 }
17093 }
17094 }
17095
17096 arg1 = TYPE_MAIN_VARIANT (arg1);
17097 arg2 = TYPE_MAIN_VARIANT (arg2);
17098
17099 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
17100 {
17101 int i, len2 = list_length (args2);
17102 tree parmvec = make_tree_vec (1);
17103 tree argvec = make_tree_vec (len2);
17104 tree ta = args2;
17105
17106 /* Setup the parameter vector, which contains only ARG1. */
17107 TREE_VEC_ELT (parmvec, 0) = arg1;
17108
17109 /* Setup the argument vector, which contains the remaining
17110 arguments. */
17111 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
17112 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
17113
17114 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
17115 argvec, DEDUCE_EXACT,
17116 /*subr=*/true, /*explain_p=*/false)
17117 == 0);
17118
17119 /* We cannot deduce in the other direction, because ARG1 is
17120 a pack expansion but ARG2 is not. */
17121 deduce2 = 0;
17122 }
17123 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
17124 {
17125 int i, len1 = list_length (args1);
17126 tree parmvec = make_tree_vec (1);
17127 tree argvec = make_tree_vec (len1);
17128 tree ta = args1;
17129
17130 /* Setup the parameter vector, which contains only ARG1. */
17131 TREE_VEC_ELT (parmvec, 0) = arg2;
17132
17133 /* Setup the argument vector, which contains the remaining
17134 arguments. */
17135 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
17136 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
17137
17138 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
17139 argvec, DEDUCE_EXACT,
17140 /*subr=*/true, /*explain_p=*/false)
17141 == 0);
17142
17143 /* We cannot deduce in the other direction, because ARG2 is
17144 a pack expansion but ARG1 is not.*/
17145 deduce1 = 0;
17146 }
17147
17148 else
17149 {
17150 /* The normal case, where neither argument is a pack
17151 expansion. */
17152 deduce1 = (unify (tparms1, targs1, arg1, arg2,
17153 UNIFY_ALLOW_NONE, /*explain_p=*/false)
17154 == 0);
17155 deduce2 = (unify (tparms2, targs2, arg2, arg1,
17156 UNIFY_ALLOW_NONE, /*explain_p=*/false)
17157 == 0);
17158 }
17159
17160 /* If we couldn't deduce arguments for tparms1 to make arg1 match
17161 arg2, then arg2 is not as specialized as arg1. */
17162 if (!deduce1)
17163 lose2 = true;
17164 if (!deduce2)
17165 lose1 = true;
17166
17167 /* "If, for a given type, deduction succeeds in both directions
17168 (i.e., the types are identical after the transformations above)
17169 and if the type from the argument template is more cv-qualified
17170 than the type from the parameter template (as described above)
17171 that type is considered to be more specialized than the other. If
17172 neither type is more cv-qualified than the other then neither type
17173 is more specialized than the other." */
17174
17175 if (deduce1 && deduce2
17176 && quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
17177 {
17178 if ((quals1 & quals2) == quals2)
17179 lose2 = true;
17180 if ((quals1 & quals2) == quals1)
17181 lose1 = true;
17182 }
17183
17184 if (lose1 && lose2)
17185 /* We've failed to deduce something in either direction.
17186 These must be unordered. */
17187 break;
17188
17189 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
17190 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
17191 /* We have already processed all of the arguments in our
17192 handing of the pack expansion type. */
17193 len = 0;
17194
17195 args1 = TREE_CHAIN (args1);
17196 args2 = TREE_CHAIN (args2);
17197 }
17198
17199 /* "In most cases, all template parameters must have values in order for
17200 deduction to succeed, but for partial ordering purposes a template
17201 parameter may remain without a value provided it is not used in the
17202 types being used for partial ordering."
17203
17204 Thus, if we are missing any of the targs1 we need to substitute into
17205 origs1, then pat2 is not as specialized as pat1. This can happen when
17206 there is a nondeduced context. */
17207 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
17208 lose2 = true;
17209 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
17210 lose1 = true;
17211
17212 processing_template_decl--;
17213
17214 /* All things being equal, if the next argument is a pack expansion
17215 for one function but not for the other, prefer the
17216 non-variadic function. FIXME this is bogus; see c++/41958. */
17217 if (lose1 == lose2
17218 && args1 && TREE_VALUE (args1)
17219 && args2 && TREE_VALUE (args2))
17220 {
17221 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
17222 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
17223 }
17224
17225 if (lose1 == lose2)
17226 return 0;
17227 else if (!lose1)
17228 return 1;
17229 else
17230 return -1;
17231 }
17232
17233 /* Determine which of two partial specializations is more specialized.
17234
17235 PAT1 is a TREE_LIST whose TREE_TYPE is the _TYPE node corresponding
17236 to the first partial specialization. The TREE_VALUE is the
17237 innermost set of template parameters for the partial
17238 specialization. PAT2 is similar, but for the second template.
17239
17240 Return 1 if the first partial specialization is more specialized;
17241 -1 if the second is more specialized; 0 if neither is more
17242 specialized.
17243
17244 See [temp.class.order] for information about determining which of
17245 two templates is more specialized. */
17246
17247 static int
17248 more_specialized_class (tree pat1, tree pat2)
17249 {
17250 tree targs;
17251 tree tmpl1, tmpl2;
17252 int winner = 0;
17253 bool any_deductions = false;
17254
17255 tmpl1 = TREE_TYPE (pat1);
17256 tmpl2 = TREE_TYPE (pat2);
17257
17258 /* Just like what happens for functions, if we are ordering between
17259 different class template specializations, we may encounter dependent
17260 types in the arguments, and we need our dependency check functions
17261 to behave correctly. */
17262 ++processing_template_decl;
17263 targs = get_class_bindings (TREE_VALUE (pat1),
17264 CLASSTYPE_TI_ARGS (tmpl1),
17265 CLASSTYPE_TI_ARGS (tmpl2));
17266 if (targs)
17267 {
17268 --winner;
17269 any_deductions = true;
17270 }
17271
17272 targs = get_class_bindings (TREE_VALUE (pat2),
17273 CLASSTYPE_TI_ARGS (tmpl2),
17274 CLASSTYPE_TI_ARGS (tmpl1));
17275 if (targs)
17276 {
17277 ++winner;
17278 any_deductions = true;
17279 }
17280 --processing_template_decl;
17281
17282 /* In the case of a tie where at least one of the class templates
17283 has a parameter pack at the end, the template with the most
17284 non-packed parameters wins. */
17285 if (winner == 0
17286 && any_deductions
17287 && (template_args_variadic_p (TREE_PURPOSE (pat1))
17288 || template_args_variadic_p (TREE_PURPOSE (pat2))))
17289 {
17290 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
17291 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
17292 int len1 = TREE_VEC_LENGTH (args1);
17293 int len2 = TREE_VEC_LENGTH (args2);
17294
17295 /* We don't count the pack expansion at the end. */
17296 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
17297 --len1;
17298 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
17299 --len2;
17300
17301 if (len1 > len2)
17302 return 1;
17303 else if (len1 < len2)
17304 return -1;
17305 }
17306
17307 return winner;
17308 }
17309
17310 /* Return the template arguments that will produce the function signature
17311 DECL from the function template FN, with the explicit template
17312 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
17313 also match. Return NULL_TREE if no satisfactory arguments could be
17314 found. */
17315
17316 static tree
17317 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
17318 {
17319 int ntparms = DECL_NTPARMS (fn);
17320 tree targs = make_tree_vec (ntparms);
17321 tree decl_type;
17322 tree decl_arg_types;
17323 tree *args;
17324 unsigned int nargs, ix;
17325 tree arg;
17326
17327 /* Substitute the explicit template arguments into the type of DECL.
17328 The call to fn_type_unification will handle substitution into the
17329 FN. */
17330 decl_type = TREE_TYPE (decl);
17331 if (explicit_args && uses_template_parms (decl_type))
17332 {
17333 tree tmpl;
17334 tree converted_args;
17335
17336 if (DECL_TEMPLATE_INFO (decl))
17337 tmpl = DECL_TI_TEMPLATE (decl);
17338 else
17339 /* We can get here for some invalid specializations. */
17340 return NULL_TREE;
17341
17342 converted_args
17343 = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
17344 explicit_args, NULL_TREE,
17345 tf_none,
17346 /*require_all_args=*/false,
17347 /*use_default_args=*/false);
17348 if (converted_args == error_mark_node)
17349 return NULL_TREE;
17350
17351 decl_type = tsubst (decl_type, converted_args, tf_none, NULL_TREE);
17352 if (decl_type == error_mark_node)
17353 return NULL_TREE;
17354 }
17355
17356 /* Never do unification on the 'this' parameter. */
17357 decl_arg_types = skip_artificial_parms_for (decl,
17358 TYPE_ARG_TYPES (decl_type));
17359
17360 nargs = list_length (decl_arg_types);
17361 args = XALLOCAVEC (tree, nargs);
17362 for (arg = decl_arg_types, ix = 0;
17363 arg != NULL_TREE && arg != void_list_node;
17364 arg = TREE_CHAIN (arg), ++ix)
17365 args[ix] = TREE_VALUE (arg);
17366
17367 if (fn_type_unification (fn, explicit_args, targs,
17368 args, ix,
17369 (check_rettype || DECL_CONV_FN_P (fn)
17370 ? TREE_TYPE (decl_type) : NULL_TREE),
17371 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false))
17372 return NULL_TREE;
17373
17374 return targs;
17375 }
17376
17377 /* Return the innermost template arguments that, when applied to a
17378 template specialization whose innermost template parameters are
17379 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
17380 ARGS.
17381
17382 For example, suppose we have:
17383
17384 template <class T, class U> struct S {};
17385 template <class T> struct S<T*, int> {};
17386
17387 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
17388 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
17389 int}. The resulting vector will be {double}, indicating that `T'
17390 is bound to `double'. */
17391
17392 static tree
17393 get_class_bindings (tree tparms, tree spec_args, tree args)
17394 {
17395 int i, ntparms = TREE_VEC_LENGTH (tparms);
17396 tree deduced_args;
17397 tree innermost_deduced_args;
17398
17399 innermost_deduced_args = make_tree_vec (ntparms);
17400 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
17401 {
17402 deduced_args = copy_node (args);
17403 SET_TMPL_ARGS_LEVEL (deduced_args,
17404 TMPL_ARGS_DEPTH (deduced_args),
17405 innermost_deduced_args);
17406 }
17407 else
17408 deduced_args = innermost_deduced_args;
17409
17410 if (unify (tparms, deduced_args,
17411 INNERMOST_TEMPLATE_ARGS (spec_args),
17412 INNERMOST_TEMPLATE_ARGS (args),
17413 UNIFY_ALLOW_NONE, /*explain_p=*/false))
17414 return NULL_TREE;
17415
17416 for (i = 0; i < ntparms; ++i)
17417 if (! TREE_VEC_ELT (innermost_deduced_args, i))
17418 return NULL_TREE;
17419
17420 /* Verify that nondeduced template arguments agree with the type
17421 obtained from argument deduction.
17422
17423 For example:
17424
17425 struct A { typedef int X; };
17426 template <class T, class U> struct C {};
17427 template <class T> struct C<T, typename T::X> {};
17428
17429 Then with the instantiation `C<A, int>', we can deduce that
17430 `T' is `A' but unify () does not check whether `typename T::X'
17431 is `int'. */
17432 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
17433 if (spec_args == error_mark_node
17434 /* We only need to check the innermost arguments; the other
17435 arguments will always agree. */
17436 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
17437 INNERMOST_TEMPLATE_ARGS (args)))
17438 return NULL_TREE;
17439
17440 /* Now that we have bindings for all of the template arguments,
17441 ensure that the arguments deduced for the template template
17442 parameters have compatible template parameter lists. See the use
17443 of template_template_parm_bindings_ok_p in fn_type_unification
17444 for more information. */
17445 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
17446 return NULL_TREE;
17447
17448 return deduced_args;
17449 }
17450
17451 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
17452 Return the TREE_LIST node with the most specialized template, if
17453 any. If there is no most specialized template, the error_mark_node
17454 is returned.
17455
17456 Note that this function does not look at, or modify, the
17457 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
17458 returned is one of the elements of INSTANTIATIONS, callers may
17459 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
17460 and retrieve it from the value returned. */
17461
17462 tree
17463 most_specialized_instantiation (tree templates)
17464 {
17465 tree fn, champ;
17466
17467 ++processing_template_decl;
17468
17469 champ = templates;
17470 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
17471 {
17472 int fate = 0;
17473
17474 if (get_bindings (TREE_VALUE (champ),
17475 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
17476 NULL_TREE, /*check_ret=*/true))
17477 fate--;
17478
17479 if (get_bindings (TREE_VALUE (fn),
17480 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
17481 NULL_TREE, /*check_ret=*/true))
17482 fate++;
17483
17484 if (fate == -1)
17485 champ = fn;
17486 else if (!fate)
17487 {
17488 /* Equally specialized, move to next function. If there
17489 is no next function, nothing's most specialized. */
17490 fn = TREE_CHAIN (fn);
17491 champ = fn;
17492 if (!fn)
17493 break;
17494 }
17495 }
17496
17497 if (champ)
17498 /* Now verify that champ is better than everything earlier in the
17499 instantiation list. */
17500 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn))
17501 if (get_bindings (TREE_VALUE (champ),
17502 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
17503 NULL_TREE, /*check_ret=*/true)
17504 || !get_bindings (TREE_VALUE (fn),
17505 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
17506 NULL_TREE, /*check_ret=*/true))
17507 {
17508 champ = NULL_TREE;
17509 break;
17510 }
17511
17512 processing_template_decl--;
17513
17514 if (!champ)
17515 return error_mark_node;
17516
17517 return champ;
17518 }
17519
17520 /* If DECL is a specialization of some template, return the most
17521 general such template. Otherwise, returns NULL_TREE.
17522
17523 For example, given:
17524
17525 template <class T> struct S { template <class U> void f(U); };
17526
17527 if TMPL is `template <class U> void S<int>::f(U)' this will return
17528 the full template. This function will not trace past partial
17529 specializations, however. For example, given in addition:
17530
17531 template <class T> struct S<T*> { template <class U> void f(U); };
17532
17533 if TMPL is `template <class U> void S<int*>::f(U)' this will return
17534 `template <class T> template <class U> S<T*>::f(U)'. */
17535
17536 tree
17537 most_general_template (tree decl)
17538 {
17539 /* If DECL is a FUNCTION_DECL, find the TEMPLATE_DECL of which it is
17540 an immediate specialization. */
17541 if (TREE_CODE (decl) == FUNCTION_DECL)
17542 {
17543 if (DECL_TEMPLATE_INFO (decl)) {
17544 decl = DECL_TI_TEMPLATE (decl);
17545
17546 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE for a
17547 template friend. */
17548 if (TREE_CODE (decl) != TEMPLATE_DECL)
17549 return NULL_TREE;
17550 } else
17551 return NULL_TREE;
17552 }
17553
17554 /* Look for more and more general templates. */
17555 while (DECL_TEMPLATE_INFO (decl))
17556 {
17557 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
17558 (See cp-tree.h for details.) */
17559 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
17560 break;
17561
17562 if (CLASS_TYPE_P (TREE_TYPE (decl))
17563 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
17564 break;
17565
17566 /* Stop if we run into an explicitly specialized class template. */
17567 if (!DECL_NAMESPACE_SCOPE_P (decl)
17568 && DECL_CONTEXT (decl)
17569 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
17570 break;
17571
17572 decl = DECL_TI_TEMPLATE (decl);
17573 }
17574
17575 return decl;
17576 }
17577
17578 /* Return the most specialized of the class template partial
17579 specializations of TMPL which can produce TYPE, a specialization of
17580 TMPL. The value returned is actually a TREE_LIST; the TREE_TYPE is
17581 a _TYPE node corresponding to the partial specialization, while the
17582 TREE_PURPOSE is the set of template arguments that must be
17583 substituted into the TREE_TYPE in order to generate TYPE.
17584
17585 If the choice of partial specialization is ambiguous, a diagnostic
17586 is issued, and the error_mark_node is returned. If there are no
17587 partial specializations of TMPL matching TYPE, then NULL_TREE is
17588 returned. */
17589
17590 static tree
17591 most_specialized_class (tree type, tree tmpl, tsubst_flags_t complain)
17592 {
17593 tree list = NULL_TREE;
17594 tree t;
17595 tree champ;
17596 int fate;
17597 bool ambiguous_p;
17598 tree args;
17599 tree outer_args = NULL_TREE;
17600
17601 tmpl = most_general_template (tmpl);
17602 args = CLASSTYPE_TI_ARGS (type);
17603
17604 /* For determining which partial specialization to use, only the
17605 innermost args are interesting. */
17606 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
17607 {
17608 outer_args = strip_innermost_template_args (args, 1);
17609 args = INNERMOST_TEMPLATE_ARGS (args);
17610 }
17611
17612 for (t = DECL_TEMPLATE_SPECIALIZATIONS (tmpl); t; t = TREE_CHAIN (t))
17613 {
17614 tree partial_spec_args;
17615 tree spec_args;
17616 tree parms = TREE_VALUE (t);
17617
17618 partial_spec_args = CLASSTYPE_TI_ARGS (TREE_TYPE (t));
17619
17620 ++processing_template_decl;
17621
17622 if (outer_args)
17623 {
17624 int i;
17625
17626 /* Discard the outer levels of args, and then substitute in the
17627 template args from the enclosing class. */
17628 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
17629 partial_spec_args = tsubst_template_args
17630 (partial_spec_args, outer_args, tf_none, NULL_TREE);
17631
17632 /* PARMS already refers to just the innermost parms, but the
17633 template parms in partial_spec_args had their levels lowered
17634 by tsubst, so we need to do the same for the parm list. We
17635 can't just tsubst the TREE_VEC itself, as tsubst wants to
17636 treat a TREE_VEC as an argument vector. */
17637 parms = copy_node (parms);
17638 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
17639 TREE_VEC_ELT (parms, i) =
17640 tsubst (TREE_VEC_ELT (parms, i), outer_args, tf_none, NULL_TREE);
17641
17642 }
17643
17644 partial_spec_args =
17645 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
17646 add_to_template_args (outer_args,
17647 partial_spec_args),
17648 tmpl, tf_none,
17649 /*require_all_args=*/true,
17650 /*use_default_args=*/true);
17651
17652 --processing_template_decl;
17653
17654 if (partial_spec_args == error_mark_node)
17655 return error_mark_node;
17656
17657 spec_args = get_class_bindings (parms,
17658 partial_spec_args,
17659 args);
17660 if (spec_args)
17661 {
17662 if (outer_args)
17663 spec_args = add_to_template_args (outer_args, spec_args);
17664 list = tree_cons (spec_args, TREE_VALUE (t), list);
17665 TREE_TYPE (list) = TREE_TYPE (t);
17666 }
17667 }
17668
17669 if (! list)
17670 return NULL_TREE;
17671
17672 ambiguous_p = false;
17673 t = list;
17674 champ = t;
17675 t = TREE_CHAIN (t);
17676 for (; t; t = TREE_CHAIN (t))
17677 {
17678 fate = more_specialized_class (champ, t);
17679 if (fate == 1)
17680 ;
17681 else
17682 {
17683 if (fate == 0)
17684 {
17685 t = TREE_CHAIN (t);
17686 if (! t)
17687 {
17688 ambiguous_p = true;
17689 break;
17690 }
17691 }
17692 champ = t;
17693 }
17694 }
17695
17696 if (!ambiguous_p)
17697 for (t = list; t && t != champ; t = TREE_CHAIN (t))
17698 {
17699 fate = more_specialized_class (champ, t);
17700 if (fate != 1)
17701 {
17702 ambiguous_p = true;
17703 break;
17704 }
17705 }
17706
17707 if (ambiguous_p)
17708 {
17709 const char *str;
17710 char *spaces = NULL;
17711 if (!(complain & tf_error))
17712 return error_mark_node;
17713 error ("ambiguous class template instantiation for %q#T", type);
17714 str = ngettext ("candidate is:", "candidates are:", list_length (list));
17715 for (t = list; t; t = TREE_CHAIN (t))
17716 {
17717 error ("%s %+#T", spaces ? spaces : str, TREE_TYPE (t));
17718 spaces = spaces ? spaces : get_spaces (str);
17719 }
17720 free (spaces);
17721 return error_mark_node;
17722 }
17723
17724 return champ;
17725 }
17726
17727 /* Explicitly instantiate DECL. */
17728
17729 void
17730 do_decl_instantiation (tree decl, tree storage)
17731 {
17732 tree result = NULL_TREE;
17733 int extern_p = 0;
17734
17735 if (!decl || decl == error_mark_node)
17736 /* An error occurred, for which grokdeclarator has already issued
17737 an appropriate message. */
17738 return;
17739 else if (! DECL_LANG_SPECIFIC (decl))
17740 {
17741 error ("explicit instantiation of non-template %q#D", decl);
17742 return;
17743 }
17744 else if (TREE_CODE (decl) == VAR_DECL)
17745 {
17746 /* There is an asymmetry here in the way VAR_DECLs and
17747 FUNCTION_DECLs are handled by grokdeclarator. In the case of
17748 the latter, the DECL we get back will be marked as a
17749 template instantiation, and the appropriate
17750 DECL_TEMPLATE_INFO will be set up. This does not happen for
17751 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
17752 should handle VAR_DECLs as it currently handles
17753 FUNCTION_DECLs. */
17754 if (!DECL_CLASS_SCOPE_P (decl))
17755 {
17756 error ("%qD is not a static data member of a class template", decl);
17757 return;
17758 }
17759 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
17760 if (!result || TREE_CODE (result) != VAR_DECL)
17761 {
17762 error ("no matching template for %qD found", decl);
17763 return;
17764 }
17765 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
17766 {
17767 error ("type %qT for explicit instantiation %qD does not match "
17768 "declared type %qT", TREE_TYPE (result), decl,
17769 TREE_TYPE (decl));
17770 return;
17771 }
17772 }
17773 else if (TREE_CODE (decl) != FUNCTION_DECL)
17774 {
17775 error ("explicit instantiation of %q#D", decl);
17776 return;
17777 }
17778 else
17779 result = decl;
17780
17781 /* Check for various error cases. Note that if the explicit
17782 instantiation is valid the RESULT will currently be marked as an
17783 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
17784 until we get here. */
17785
17786 if (DECL_TEMPLATE_SPECIALIZATION (result))
17787 {
17788 /* DR 259 [temp.spec].
17789
17790 Both an explicit instantiation and a declaration of an explicit
17791 specialization shall not appear in a program unless the explicit
17792 instantiation follows a declaration of the explicit specialization.
17793
17794 For a given set of template parameters, if an explicit
17795 instantiation of a template appears after a declaration of an
17796 explicit specialization for that template, the explicit
17797 instantiation has no effect. */
17798 return;
17799 }
17800 else if (DECL_EXPLICIT_INSTANTIATION (result))
17801 {
17802 /* [temp.spec]
17803
17804 No program shall explicitly instantiate any template more
17805 than once.
17806
17807 We check DECL_NOT_REALLY_EXTERN so as not to complain when
17808 the first instantiation was `extern' and the second is not,
17809 and EXTERN_P for the opposite case. */
17810 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
17811 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
17812 /* If an "extern" explicit instantiation follows an ordinary
17813 explicit instantiation, the template is instantiated. */
17814 if (extern_p)
17815 return;
17816 }
17817 else if (!DECL_IMPLICIT_INSTANTIATION (result))
17818 {
17819 error ("no matching template for %qD found", result);
17820 return;
17821 }
17822 else if (!DECL_TEMPLATE_INFO (result))
17823 {
17824 permerror (input_location, "explicit instantiation of non-template %q#D", result);
17825 return;
17826 }
17827
17828 if (storage == NULL_TREE)
17829 ;
17830 else if (storage == ridpointers[(int) RID_EXTERN])
17831 {
17832 if (!in_system_header && (cxx_dialect == cxx98))
17833 pedwarn (input_location, OPT_pedantic,
17834 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
17835 "instantiations");
17836 extern_p = 1;
17837 }
17838 else
17839 error ("storage class %qD applied to template instantiation", storage);
17840
17841 check_explicit_instantiation_namespace (result);
17842 mark_decl_instantiated (result, extern_p);
17843 if (! extern_p)
17844 instantiate_decl (result, /*defer_ok=*/1,
17845 /*expl_inst_class_mem_p=*/false);
17846 }
17847
17848 static void
17849 mark_class_instantiated (tree t, int extern_p)
17850 {
17851 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
17852 SET_CLASSTYPE_INTERFACE_KNOWN (t);
17853 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
17854 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
17855 if (! extern_p)
17856 {
17857 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
17858 rest_of_type_compilation (t, 1);
17859 }
17860 }
17861
17862 /* Called from do_type_instantiation through binding_table_foreach to
17863 do recursive instantiation for the type bound in ENTRY. */
17864 static void
17865 bt_instantiate_type_proc (binding_entry entry, void *data)
17866 {
17867 tree storage = *(tree *) data;
17868
17869 if (MAYBE_CLASS_TYPE_P (entry->type)
17870 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
17871 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
17872 }
17873
17874 /* Called from do_type_instantiation to instantiate a member
17875 (a member function or a static member variable) of an
17876 explicitly instantiated class template. */
17877 static void
17878 instantiate_class_member (tree decl, int extern_p)
17879 {
17880 mark_decl_instantiated (decl, extern_p);
17881 if (! extern_p)
17882 instantiate_decl (decl, /*defer_ok=*/1,
17883 /*expl_inst_class_mem_p=*/true);
17884 }
17885
17886 /* Perform an explicit instantiation of template class T. STORAGE, if
17887 non-null, is the RID for extern, inline or static. COMPLAIN is
17888 nonzero if this is called from the parser, zero if called recursively,
17889 since the standard is unclear (as detailed below). */
17890
17891 void
17892 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
17893 {
17894 int extern_p = 0;
17895 int nomem_p = 0;
17896 int static_p = 0;
17897 int previous_instantiation_extern_p = 0;
17898
17899 if (TREE_CODE (t) == TYPE_DECL)
17900 t = TREE_TYPE (t);
17901
17902 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
17903 {
17904 tree tmpl =
17905 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
17906 if (tmpl)
17907 error ("explicit instantiation of non-class template %qD", tmpl);
17908 else
17909 error ("explicit instantiation of non-template type %qT", t);
17910 return;
17911 }
17912
17913 complete_type (t);
17914
17915 if (!COMPLETE_TYPE_P (t))
17916 {
17917 if (complain & tf_error)
17918 error ("explicit instantiation of %q#T before definition of template",
17919 t);
17920 return;
17921 }
17922
17923 if (storage != NULL_TREE)
17924 {
17925 if (!in_system_header)
17926 {
17927 if (storage == ridpointers[(int) RID_EXTERN])
17928 {
17929 if (cxx_dialect == cxx98)
17930 pedwarn (input_location, OPT_pedantic,
17931 "ISO C++ 1998 forbids the use of %<extern%> on "
17932 "explicit instantiations");
17933 }
17934 else
17935 pedwarn (input_location, OPT_pedantic,
17936 "ISO C++ forbids the use of %qE"
17937 " on explicit instantiations", storage);
17938 }
17939
17940 if (storage == ridpointers[(int) RID_INLINE])
17941 nomem_p = 1;
17942 else if (storage == ridpointers[(int) RID_EXTERN])
17943 extern_p = 1;
17944 else if (storage == ridpointers[(int) RID_STATIC])
17945 static_p = 1;
17946 else
17947 {
17948 error ("storage class %qD applied to template instantiation",
17949 storage);
17950 extern_p = 0;
17951 }
17952 }
17953
17954 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
17955 {
17956 /* DR 259 [temp.spec].
17957
17958 Both an explicit instantiation and a declaration of an explicit
17959 specialization shall not appear in a program unless the explicit
17960 instantiation follows a declaration of the explicit specialization.
17961
17962 For a given set of template parameters, if an explicit
17963 instantiation of a template appears after a declaration of an
17964 explicit specialization for that template, the explicit
17965 instantiation has no effect. */
17966 return;
17967 }
17968 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
17969 {
17970 /* [temp.spec]
17971
17972 No program shall explicitly instantiate any template more
17973 than once.
17974
17975 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
17976 instantiation was `extern'. If EXTERN_P then the second is.
17977 These cases are OK. */
17978 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
17979
17980 if (!previous_instantiation_extern_p && !extern_p
17981 && (complain & tf_error))
17982 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
17983
17984 /* If we've already instantiated the template, just return now. */
17985 if (!CLASSTYPE_INTERFACE_ONLY (t))
17986 return;
17987 }
17988
17989 check_explicit_instantiation_namespace (TYPE_NAME (t));
17990 mark_class_instantiated (t, extern_p);
17991
17992 if (nomem_p)
17993 return;
17994
17995 {
17996 tree tmp;
17997
17998 /* In contrast to implicit instantiation, where only the
17999 declarations, and not the definitions, of members are
18000 instantiated, we have here:
18001
18002 [temp.explicit]
18003
18004 The explicit instantiation of a class template specialization
18005 implies the instantiation of all of its members not
18006 previously explicitly specialized in the translation unit
18007 containing the explicit instantiation.
18008
18009 Of course, we can't instantiate member template classes, since
18010 we don't have any arguments for them. Note that the standard
18011 is unclear on whether the instantiation of the members are
18012 *explicit* instantiations or not. However, the most natural
18013 interpretation is that it should be an explicit instantiation. */
18014
18015 if (! static_p)
18016 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
18017 if (TREE_CODE (tmp) == FUNCTION_DECL
18018 && DECL_TEMPLATE_INSTANTIATION (tmp))
18019 instantiate_class_member (tmp, extern_p);
18020
18021 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
18022 if (TREE_CODE (tmp) == VAR_DECL && DECL_TEMPLATE_INSTANTIATION (tmp))
18023 instantiate_class_member (tmp, extern_p);
18024
18025 if (CLASSTYPE_NESTED_UTDS (t))
18026 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
18027 bt_instantiate_type_proc, &storage);
18028 }
18029 }
18030
18031 /* Given a function DECL, which is a specialization of TMPL, modify
18032 DECL to be a re-instantiation of TMPL with the same template
18033 arguments. TMPL should be the template into which tsubst'ing
18034 should occur for DECL, not the most general template.
18035
18036 One reason for doing this is a scenario like this:
18037
18038 template <class T>
18039 void f(const T&, int i);
18040
18041 void g() { f(3, 7); }
18042
18043 template <class T>
18044 void f(const T& t, const int i) { }
18045
18046 Note that when the template is first instantiated, with
18047 instantiate_template, the resulting DECL will have no name for the
18048 first parameter, and the wrong type for the second. So, when we go
18049 to instantiate the DECL, we regenerate it. */
18050
18051 static void
18052 regenerate_decl_from_template (tree decl, tree tmpl)
18053 {
18054 /* The arguments used to instantiate DECL, from the most general
18055 template. */
18056 tree args;
18057 tree code_pattern;
18058
18059 args = DECL_TI_ARGS (decl);
18060 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
18061
18062 /* Make sure that we can see identifiers, and compute access
18063 correctly. */
18064 push_access_scope (decl);
18065
18066 if (TREE_CODE (decl) == FUNCTION_DECL)
18067 {
18068 tree decl_parm;
18069 tree pattern_parm;
18070 tree specs;
18071 int args_depth;
18072 int parms_depth;
18073
18074 args_depth = TMPL_ARGS_DEPTH (args);
18075 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
18076 if (args_depth > parms_depth)
18077 args = get_innermost_template_args (args, parms_depth);
18078
18079 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
18080 args, tf_error, NULL_TREE,
18081 /*defer_ok*/false);
18082 if (specs && specs != error_mark_node)
18083 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
18084 specs);
18085
18086 /* Merge parameter declarations. */
18087 decl_parm = skip_artificial_parms_for (decl,
18088 DECL_ARGUMENTS (decl));
18089 pattern_parm
18090 = skip_artificial_parms_for (code_pattern,
18091 DECL_ARGUMENTS (code_pattern));
18092 while (decl_parm && !FUNCTION_PARAMETER_PACK_P (pattern_parm))
18093 {
18094 tree parm_type;
18095 tree attributes;
18096
18097 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
18098 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
18099 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
18100 NULL_TREE);
18101 parm_type = type_decays_to (parm_type);
18102 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
18103 TREE_TYPE (decl_parm) = parm_type;
18104 attributes = DECL_ATTRIBUTES (pattern_parm);
18105 if (DECL_ATTRIBUTES (decl_parm) != attributes)
18106 {
18107 DECL_ATTRIBUTES (decl_parm) = attributes;
18108 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
18109 }
18110 decl_parm = DECL_CHAIN (decl_parm);
18111 pattern_parm = DECL_CHAIN (pattern_parm);
18112 }
18113 /* Merge any parameters that match with the function parameter
18114 pack. */
18115 if (pattern_parm && FUNCTION_PARAMETER_PACK_P (pattern_parm))
18116 {
18117 int i, len;
18118 tree expanded_types;
18119 /* Expand the TYPE_PACK_EXPANSION that provides the types for
18120 the parameters in this function parameter pack. */
18121 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
18122 args, tf_error, NULL_TREE);
18123 len = TREE_VEC_LENGTH (expanded_types);
18124 for (i = 0; i < len; i++)
18125 {
18126 tree parm_type;
18127 tree attributes;
18128
18129 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
18130 /* Rename the parameter to include the index. */
18131 DECL_NAME (decl_parm) =
18132 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
18133 parm_type = TREE_VEC_ELT (expanded_types, i);
18134 parm_type = type_decays_to (parm_type);
18135 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
18136 TREE_TYPE (decl_parm) = parm_type;
18137 attributes = DECL_ATTRIBUTES (pattern_parm);
18138 if (DECL_ATTRIBUTES (decl_parm) != attributes)
18139 {
18140 DECL_ATTRIBUTES (decl_parm) = attributes;
18141 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
18142 }
18143 decl_parm = DECL_CHAIN (decl_parm);
18144 }
18145 }
18146 /* Merge additional specifiers from the CODE_PATTERN. */
18147 if (DECL_DECLARED_INLINE_P (code_pattern)
18148 && !DECL_DECLARED_INLINE_P (decl))
18149 DECL_DECLARED_INLINE_P (decl) = 1;
18150 }
18151 else if (TREE_CODE (decl) == VAR_DECL)
18152 {
18153 DECL_INITIAL (decl) =
18154 tsubst_expr (DECL_INITIAL (code_pattern), args,
18155 tf_error, DECL_TI_TEMPLATE (decl),
18156 /*integral_constant_expression_p=*/false);
18157 if (VAR_HAD_UNKNOWN_BOUND (decl))
18158 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
18159 tf_error, DECL_TI_TEMPLATE (decl));
18160 }
18161 else
18162 gcc_unreachable ();
18163
18164 pop_access_scope (decl);
18165 }
18166
18167 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
18168 substituted to get DECL. */
18169
18170 tree
18171 template_for_substitution (tree decl)
18172 {
18173 tree tmpl = DECL_TI_TEMPLATE (decl);
18174
18175 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
18176 for the instantiation. This is not always the most general
18177 template. Consider, for example:
18178
18179 template <class T>
18180 struct S { template <class U> void f();
18181 template <> void f<int>(); };
18182
18183 and an instantiation of S<double>::f<int>. We want TD to be the
18184 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
18185 while (/* An instantiation cannot have a definition, so we need a
18186 more general template. */
18187 DECL_TEMPLATE_INSTANTIATION (tmpl)
18188 /* We must also deal with friend templates. Given:
18189
18190 template <class T> struct S {
18191 template <class U> friend void f() {};
18192 };
18193
18194 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
18195 so far as the language is concerned, but that's still
18196 where we get the pattern for the instantiation from. On
18197 other hand, if the definition comes outside the class, say:
18198
18199 template <class T> struct S {
18200 template <class U> friend void f();
18201 };
18202 template <class U> friend void f() {}
18203
18204 we don't need to look any further. That's what the check for
18205 DECL_INITIAL is for. */
18206 || (TREE_CODE (decl) == FUNCTION_DECL
18207 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
18208 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
18209 {
18210 /* The present template, TD, should not be a definition. If it
18211 were a definition, we should be using it! Note that we
18212 cannot restructure the loop to just keep going until we find
18213 a template with a definition, since that might go too far if
18214 a specialization was declared, but not defined. */
18215 gcc_assert (TREE_CODE (decl) != VAR_DECL
18216 || DECL_IN_AGGR_P (DECL_TEMPLATE_RESULT (tmpl)));
18217
18218 /* Fetch the more general template. */
18219 tmpl = DECL_TI_TEMPLATE (tmpl);
18220 }
18221
18222 return tmpl;
18223 }
18224
18225 /* Returns true if we need to instantiate this template instance even if we
18226 know we aren't going to emit it.. */
18227
18228 bool
18229 always_instantiate_p (tree decl)
18230 {
18231 /* We always instantiate inline functions so that we can inline them. An
18232 explicit instantiation declaration prohibits implicit instantiation of
18233 non-inline functions. With high levels of optimization, we would
18234 normally inline non-inline functions -- but we're not allowed to do
18235 that for "extern template" functions. Therefore, we check
18236 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
18237 return ((TREE_CODE (decl) == FUNCTION_DECL
18238 && DECL_DECLARED_INLINE_P (decl))
18239 /* And we need to instantiate static data members so that
18240 their initializers are available in integral constant
18241 expressions. */
18242 || (TREE_CODE (decl) == VAR_DECL
18243 && decl_maybe_constant_var_p (decl)));
18244 }
18245
18246 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
18247 instantiate it now, modifying TREE_TYPE (fn). */
18248
18249 void
18250 maybe_instantiate_noexcept (tree fn)
18251 {
18252 tree fntype, spec, noex, clone;
18253
18254 if (DECL_CLONED_FUNCTION_P (fn))
18255 fn = DECL_CLONED_FUNCTION (fn);
18256 fntype = TREE_TYPE (fn);
18257 spec = TYPE_RAISES_EXCEPTIONS (fntype);
18258
18259 if (!DEFERRED_NOEXCEPT_SPEC_P (spec))
18260 return;
18261
18262 noex = TREE_PURPOSE (spec);
18263
18264 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
18265 {
18266 if (push_tinst_level (fn))
18267 {
18268 push_access_scope (fn);
18269 input_location = DECL_SOURCE_LOCATION (fn);
18270 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
18271 DEFERRED_NOEXCEPT_ARGS (noex),
18272 tf_warning_or_error, fn,
18273 /*function_p=*/false,
18274 /*integral_constant_expression_p=*/true);
18275 pop_access_scope (fn);
18276 pop_tinst_level ();
18277 spec = build_noexcept_spec (noex, tf_warning_or_error);
18278 if (spec == error_mark_node)
18279 spec = noexcept_false_spec;
18280 }
18281 else
18282 spec = noexcept_false_spec;
18283 }
18284 else
18285 {
18286 /* This is an implicitly declared function, so NOEX is a list of
18287 other functions to evaluate and merge. */
18288 tree elt;
18289 spec = noexcept_true_spec;
18290 for (elt = noex; elt; elt = OVL_NEXT (elt))
18291 {
18292 tree fn = OVL_CURRENT (elt);
18293 tree subspec;
18294 maybe_instantiate_noexcept (fn);
18295 subspec = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn));
18296 spec = merge_exception_specifiers (spec, subspec, NULL_TREE);
18297 }
18298 }
18299
18300 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
18301
18302 FOR_EACH_CLONE (clone, fn)
18303 {
18304 if (TREE_TYPE (clone) == fntype)
18305 TREE_TYPE (clone) = TREE_TYPE (fn);
18306 else
18307 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
18308 }
18309 }
18310
18311 /* Produce the definition of D, a _DECL generated from a template. If
18312 DEFER_OK is nonzero, then we don't have to actually do the
18313 instantiation now; we just have to do it sometime. Normally it is
18314 an error if this is an explicit instantiation but D is undefined.
18315 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
18316 explicitly instantiated class template. */
18317
18318 tree
18319 instantiate_decl (tree d, int defer_ok,
18320 bool expl_inst_class_mem_p)
18321 {
18322 tree tmpl = DECL_TI_TEMPLATE (d);
18323 tree gen_args;
18324 tree args;
18325 tree td;
18326 tree code_pattern;
18327 tree spec;
18328 tree gen_tmpl;
18329 bool pattern_defined;
18330 int need_push;
18331 location_t saved_loc = input_location;
18332 bool external_p;
18333
18334 /* This function should only be used to instantiate templates for
18335 functions and static member variables. */
18336 gcc_assert (TREE_CODE (d) == FUNCTION_DECL
18337 || TREE_CODE (d) == VAR_DECL);
18338
18339 /* Variables are never deferred; if instantiation is required, they
18340 are instantiated right away. That allows for better code in the
18341 case that an expression refers to the value of the variable --
18342 if the variable has a constant value the referring expression can
18343 take advantage of that fact. */
18344 if (TREE_CODE (d) == VAR_DECL
18345 || DECL_DECLARED_CONSTEXPR_P (d))
18346 defer_ok = 0;
18347
18348 /* Don't instantiate cloned functions. Instead, instantiate the
18349 functions they cloned. */
18350 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
18351 d = DECL_CLONED_FUNCTION (d);
18352
18353 if (DECL_TEMPLATE_INSTANTIATED (d)
18354 || (TREE_CODE (d) == FUNCTION_DECL
18355 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
18356 || DECL_TEMPLATE_SPECIALIZATION (d))
18357 /* D has already been instantiated or explicitly specialized, so
18358 there's nothing for us to do here.
18359
18360 It might seem reasonable to check whether or not D is an explicit
18361 instantiation, and, if so, stop here. But when an explicit
18362 instantiation is deferred until the end of the compilation,
18363 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
18364 the instantiation. */
18365 return d;
18366
18367 /* Check to see whether we know that this template will be
18368 instantiated in some other file, as with "extern template"
18369 extension. */
18370 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
18371
18372 /* In general, we do not instantiate such templates. */
18373 if (external_p && !always_instantiate_p (d))
18374 return d;
18375
18376 gen_tmpl = most_general_template (tmpl);
18377 gen_args = DECL_TI_ARGS (d);
18378
18379 if (tmpl != gen_tmpl)
18380 /* We should already have the extra args. */
18381 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
18382 == TMPL_ARGS_DEPTH (gen_args));
18383 /* And what's in the hash table should match D. */
18384 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
18385 || spec == NULL_TREE);
18386
18387 /* This needs to happen before any tsubsting. */
18388 if (! push_tinst_level (d))
18389 return d;
18390
18391 timevar_push (TV_TEMPLATE_INST);
18392
18393 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
18394 for the instantiation. */
18395 td = template_for_substitution (d);
18396 code_pattern = DECL_TEMPLATE_RESULT (td);
18397
18398 /* We should never be trying to instantiate a member of a class
18399 template or partial specialization. */
18400 gcc_assert (d != code_pattern);
18401
18402 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
18403 || DECL_TEMPLATE_SPECIALIZATION (td))
18404 /* In the case of a friend template whose definition is provided
18405 outside the class, we may have too many arguments. Drop the
18406 ones we don't need. The same is true for specializations. */
18407 args = get_innermost_template_args
18408 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
18409 else
18410 args = gen_args;
18411
18412 if (TREE_CODE (d) == FUNCTION_DECL)
18413 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
18414 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern));
18415 else
18416 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
18417
18418 /* We may be in the middle of deferred access check. Disable it now. */
18419 push_deferring_access_checks (dk_no_deferred);
18420
18421 /* Unless an explicit instantiation directive has already determined
18422 the linkage of D, remember that a definition is available for
18423 this entity. */
18424 if (pattern_defined
18425 && !DECL_INTERFACE_KNOWN (d)
18426 && !DECL_NOT_REALLY_EXTERN (d))
18427 mark_definable (d);
18428
18429 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
18430 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
18431 input_location = DECL_SOURCE_LOCATION (d);
18432
18433 /* If D is a member of an explicitly instantiated class template,
18434 and no definition is available, treat it like an implicit
18435 instantiation. */
18436 if (!pattern_defined && expl_inst_class_mem_p
18437 && DECL_EXPLICIT_INSTANTIATION (d))
18438 {
18439 /* Leave linkage flags alone on instantiations with anonymous
18440 visibility. */
18441 if (TREE_PUBLIC (d))
18442 {
18443 DECL_NOT_REALLY_EXTERN (d) = 0;
18444 DECL_INTERFACE_KNOWN (d) = 0;
18445 }
18446 SET_DECL_IMPLICIT_INSTANTIATION (d);
18447 }
18448
18449 if (TREE_CODE (d) == FUNCTION_DECL)
18450 maybe_instantiate_noexcept (d);
18451
18452 /* Recheck the substitutions to obtain any warning messages
18453 about ignoring cv qualifiers. Don't do this for artificial decls,
18454 as it breaks the context-sensitive substitution for lambda op(). */
18455 if (!defer_ok && !DECL_ARTIFICIAL (d))
18456 {
18457 tree gen = DECL_TEMPLATE_RESULT (gen_tmpl);
18458 tree type = TREE_TYPE (gen);
18459
18460 /* Make sure that we can see identifiers, and compute access
18461 correctly. D is already the target FUNCTION_DECL with the
18462 right context. */
18463 push_access_scope (d);
18464
18465 if (TREE_CODE (gen) == FUNCTION_DECL)
18466 {
18467 tsubst (DECL_ARGUMENTS (gen), gen_args, tf_warning_or_error, d);
18468 tsubst_exception_specification (type, gen_args, tf_warning_or_error,
18469 d, /*defer_ok*/true);
18470 /* Don't simply tsubst the function type, as that will give
18471 duplicate warnings about poor parameter qualifications.
18472 The function arguments are the same as the decl_arguments
18473 without the top level cv qualifiers. */
18474 type = TREE_TYPE (type);
18475 }
18476 tsubst (type, gen_args, tf_warning_or_error, d);
18477
18478 pop_access_scope (d);
18479 }
18480
18481 /* Defer all other templates, unless we have been explicitly
18482 forbidden from doing so. */
18483 if (/* If there is no definition, we cannot instantiate the
18484 template. */
18485 ! pattern_defined
18486 /* If it's OK to postpone instantiation, do so. */
18487 || defer_ok
18488 /* If this is a static data member that will be defined
18489 elsewhere, we don't want to instantiate the entire data
18490 member, but we do want to instantiate the initializer so that
18491 we can substitute that elsewhere. */
18492 || (external_p && TREE_CODE (d) == VAR_DECL))
18493 {
18494 /* The definition of the static data member is now required so
18495 we must substitute the initializer. */
18496 if (TREE_CODE (d) == VAR_DECL
18497 && !DECL_INITIAL (d)
18498 && DECL_INITIAL (code_pattern))
18499 {
18500 tree ns;
18501 tree init;
18502 bool const_init = false;
18503
18504 ns = decl_namespace_context (d);
18505 push_nested_namespace (ns);
18506 push_nested_class (DECL_CONTEXT (d));
18507 init = tsubst_expr (DECL_INITIAL (code_pattern),
18508 args,
18509 tf_warning_or_error, NULL_TREE,
18510 /*integral_constant_expression_p=*/false);
18511 /* Make sure the initializer is still constant, in case of
18512 circular dependency (template/instantiate6.C). */
18513 const_init
18514 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
18515 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
18516 /*asmspec_tree=*/NULL_TREE,
18517 LOOKUP_ONLYCONVERTING);
18518 pop_nested_class ();
18519 pop_nested_namespace (ns);
18520 }
18521
18522 /* We restore the source position here because it's used by
18523 add_pending_template. */
18524 input_location = saved_loc;
18525
18526 if (at_eof && !pattern_defined
18527 && DECL_EXPLICIT_INSTANTIATION (d)
18528 && DECL_NOT_REALLY_EXTERN (d))
18529 /* [temp.explicit]
18530
18531 The definition of a non-exported function template, a
18532 non-exported member function template, or a non-exported
18533 member function or static data member of a class template
18534 shall be present in every translation unit in which it is
18535 explicitly instantiated. */
18536 permerror (input_location, "explicit instantiation of %qD "
18537 "but no definition available", d);
18538
18539 /* If we're in unevaluated context, we just wanted to get the
18540 constant value; this isn't an odr use, so don't queue
18541 a full instantiation. */
18542 if (cp_unevaluated_operand != 0)
18543 goto out;
18544 /* ??? Historically, we have instantiated inline functions, even
18545 when marked as "extern template". */
18546 if (!(external_p && TREE_CODE (d) == VAR_DECL))
18547 add_pending_template (d);
18548 goto out;
18549 }
18550 /* Tell the repository that D is available in this translation unit
18551 -- and see if it is supposed to be instantiated here. */
18552 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
18553 {
18554 /* In a PCH file, despite the fact that the repository hasn't
18555 requested instantiation in the PCH it is still possible that
18556 an instantiation will be required in a file that includes the
18557 PCH. */
18558 if (pch_file)
18559 add_pending_template (d);
18560 /* Instantiate inline functions so that the inliner can do its
18561 job, even though we'll not be emitting a copy of this
18562 function. */
18563 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
18564 goto out;
18565 }
18566
18567 need_push = !cfun || !global_bindings_p ();
18568 if (need_push)
18569 push_to_top_level ();
18570
18571 /* Mark D as instantiated so that recursive calls to
18572 instantiate_decl do not try to instantiate it again. */
18573 DECL_TEMPLATE_INSTANTIATED (d) = 1;
18574
18575 /* Regenerate the declaration in case the template has been modified
18576 by a subsequent redeclaration. */
18577 regenerate_decl_from_template (d, td);
18578
18579 /* We already set the file and line above. Reset them now in case
18580 they changed as a result of calling regenerate_decl_from_template. */
18581 input_location = DECL_SOURCE_LOCATION (d);
18582
18583 if (TREE_CODE (d) == VAR_DECL)
18584 {
18585 tree init;
18586 bool const_init = false;
18587
18588 /* Clear out DECL_RTL; whatever was there before may not be right
18589 since we've reset the type of the declaration. */
18590 SET_DECL_RTL (d, NULL);
18591 DECL_IN_AGGR_P (d) = 0;
18592
18593 /* The initializer is placed in DECL_INITIAL by
18594 regenerate_decl_from_template so we don't need to
18595 push/pop_access_scope again here. Pull it out so that
18596 cp_finish_decl can process it. */
18597 init = DECL_INITIAL (d);
18598 DECL_INITIAL (d) = NULL_TREE;
18599 DECL_INITIALIZED_P (d) = 0;
18600
18601 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
18602 initializer. That function will defer actual emission until
18603 we have a chance to determine linkage. */
18604 DECL_EXTERNAL (d) = 0;
18605
18606 /* Enter the scope of D so that access-checking works correctly. */
18607 push_nested_class (DECL_CONTEXT (d));
18608 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
18609 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
18610 pop_nested_class ();
18611 }
18612 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
18613 synthesize_method (d);
18614 else if (TREE_CODE (d) == FUNCTION_DECL)
18615 {
18616 htab_t saved_local_specializations;
18617 tree subst_decl;
18618 tree tmpl_parm;
18619 tree spec_parm;
18620
18621 /* Save away the current list, in case we are instantiating one
18622 template from within the body of another. */
18623 saved_local_specializations = local_specializations;
18624
18625 /* Set up the list of local specializations. */
18626 local_specializations = htab_create (37,
18627 hash_local_specialization,
18628 eq_local_specializations,
18629 NULL);
18630
18631 /* Set up context. */
18632 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
18633
18634 /* Create substitution entries for the parameters. */
18635 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
18636 tmpl_parm = DECL_ARGUMENTS (subst_decl);
18637 spec_parm = DECL_ARGUMENTS (d);
18638 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
18639 {
18640 register_local_specialization (spec_parm, tmpl_parm);
18641 spec_parm = skip_artificial_parms_for (d, spec_parm);
18642 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
18643 }
18644 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
18645 {
18646 if (!FUNCTION_PARAMETER_PACK_P (tmpl_parm))
18647 {
18648 register_local_specialization (spec_parm, tmpl_parm);
18649 spec_parm = DECL_CHAIN (spec_parm);
18650 }
18651 else
18652 {
18653 /* Register the (value) argument pack as a specialization of
18654 TMPL_PARM, then move on. */
18655 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
18656 register_local_specialization (argpack, tmpl_parm);
18657 }
18658 }
18659 gcc_assert (!spec_parm);
18660
18661 /* Substitute into the body of the function. */
18662 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
18663 tf_warning_or_error, tmpl,
18664 /*integral_constant_expression_p=*/false);
18665
18666 /* Set the current input_location to the end of the function
18667 so that finish_function knows where we are. */
18668 input_location = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
18669
18670 /* We don't need the local specializations any more. */
18671 htab_delete (local_specializations);
18672 local_specializations = saved_local_specializations;
18673
18674 /* Finish the function. */
18675 d = finish_function (0);
18676 expand_or_defer_fn (d);
18677 }
18678
18679 /* We're not deferring instantiation any more. */
18680 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
18681
18682 if (need_push)
18683 pop_from_top_level ();
18684
18685 out:
18686 input_location = saved_loc;
18687 pop_deferring_access_checks ();
18688 pop_tinst_level ();
18689
18690 timevar_pop (TV_TEMPLATE_INST);
18691
18692 return d;
18693 }
18694
18695 /* Run through the list of templates that we wish we could
18696 instantiate, and instantiate any we can. RETRIES is the
18697 number of times we retry pending template instantiation. */
18698
18699 void
18700 instantiate_pending_templates (int retries)
18701 {
18702 int reconsider;
18703 location_t saved_loc = input_location;
18704
18705 /* Instantiating templates may trigger vtable generation. This in turn
18706 may require further template instantiations. We place a limit here
18707 to avoid infinite loop. */
18708 if (pending_templates && retries >= max_tinst_depth)
18709 {
18710 tree decl = pending_templates->tinst->decl;
18711
18712 error ("template instantiation depth exceeds maximum of %d"
18713 " instantiating %q+D, possibly from virtual table generation"
18714 " (use -ftemplate-depth= to increase the maximum)",
18715 max_tinst_depth, decl);
18716 if (TREE_CODE (decl) == FUNCTION_DECL)
18717 /* Pretend that we defined it. */
18718 DECL_INITIAL (decl) = error_mark_node;
18719 return;
18720 }
18721
18722 do
18723 {
18724 struct pending_template **t = &pending_templates;
18725 struct pending_template *last = NULL;
18726 reconsider = 0;
18727 while (*t)
18728 {
18729 tree instantiation = reopen_tinst_level ((*t)->tinst);
18730 bool complete = false;
18731
18732 if (TYPE_P (instantiation))
18733 {
18734 tree fn;
18735
18736 if (!COMPLETE_TYPE_P (instantiation))
18737 {
18738 instantiate_class_template (instantiation);
18739 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
18740 for (fn = TYPE_METHODS (instantiation);
18741 fn;
18742 fn = TREE_CHAIN (fn))
18743 if (! DECL_ARTIFICIAL (fn))
18744 instantiate_decl (fn,
18745 /*defer_ok=*/0,
18746 /*expl_inst_class_mem_p=*/false);
18747 if (COMPLETE_TYPE_P (instantiation))
18748 reconsider = 1;
18749 }
18750
18751 complete = COMPLETE_TYPE_P (instantiation);
18752 }
18753 else
18754 {
18755 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
18756 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
18757 {
18758 instantiation
18759 = instantiate_decl (instantiation,
18760 /*defer_ok=*/0,
18761 /*expl_inst_class_mem_p=*/false);
18762 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
18763 reconsider = 1;
18764 }
18765
18766 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
18767 || DECL_TEMPLATE_INSTANTIATED (instantiation));
18768 }
18769
18770 if (complete)
18771 /* If INSTANTIATION has been instantiated, then we don't
18772 need to consider it again in the future. */
18773 *t = (*t)->next;
18774 else
18775 {
18776 last = *t;
18777 t = &(*t)->next;
18778 }
18779 tinst_depth = 0;
18780 current_tinst_level = NULL;
18781 }
18782 last_pending_template = last;
18783 }
18784 while (reconsider);
18785
18786 input_location = saved_loc;
18787 }
18788
18789 /* Substitute ARGVEC into T, which is a list of initializers for
18790 either base class or a non-static data member. The TREE_PURPOSEs
18791 are DECLs, and the TREE_VALUEs are the initializer values. Used by
18792 instantiate_decl. */
18793
18794 static tree
18795 tsubst_initializer_list (tree t, tree argvec)
18796 {
18797 tree inits = NULL_TREE;
18798
18799 for (; t; t = TREE_CHAIN (t))
18800 {
18801 tree decl;
18802 tree init;
18803 tree expanded_bases = NULL_TREE;
18804 tree expanded_arguments = NULL_TREE;
18805 int i, len = 1;
18806
18807 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
18808 {
18809 tree expr;
18810 tree arg;
18811
18812 /* Expand the base class expansion type into separate base
18813 classes. */
18814 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
18815 tf_warning_or_error,
18816 NULL_TREE);
18817 if (expanded_bases == error_mark_node)
18818 continue;
18819
18820 /* We'll be building separate TREE_LISTs of arguments for
18821 each base. */
18822 len = TREE_VEC_LENGTH (expanded_bases);
18823 expanded_arguments = make_tree_vec (len);
18824 for (i = 0; i < len; i++)
18825 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
18826
18827 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
18828 expand each argument in the TREE_VALUE of t. */
18829 expr = make_node (EXPR_PACK_EXPANSION);
18830 PACK_EXPANSION_PARAMETER_PACKS (expr) =
18831 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
18832
18833 if (TREE_VALUE (t) == void_type_node)
18834 /* VOID_TYPE_NODE is used to indicate
18835 value-initialization. */
18836 {
18837 for (i = 0; i < len; i++)
18838 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
18839 }
18840 else
18841 {
18842 /* Substitute parameter packs into each argument in the
18843 TREE_LIST. */
18844 in_base_initializer = 1;
18845 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
18846 {
18847 tree expanded_exprs;
18848
18849 /* Expand the argument. */
18850 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
18851 expanded_exprs
18852 = tsubst_pack_expansion (expr, argvec,
18853 tf_warning_or_error,
18854 NULL_TREE);
18855 if (expanded_exprs == error_mark_node)
18856 continue;
18857
18858 /* Prepend each of the expanded expressions to the
18859 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
18860 for (i = 0; i < len; i++)
18861 {
18862 TREE_VEC_ELT (expanded_arguments, i) =
18863 tree_cons (NULL_TREE,
18864 TREE_VEC_ELT (expanded_exprs, i),
18865 TREE_VEC_ELT (expanded_arguments, i));
18866 }
18867 }
18868 in_base_initializer = 0;
18869
18870 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
18871 since we built them backwards. */
18872 for (i = 0; i < len; i++)
18873 {
18874 TREE_VEC_ELT (expanded_arguments, i) =
18875 nreverse (TREE_VEC_ELT (expanded_arguments, i));
18876 }
18877 }
18878 }
18879
18880 for (i = 0; i < len; ++i)
18881 {
18882 if (expanded_bases)
18883 {
18884 decl = TREE_VEC_ELT (expanded_bases, i);
18885 decl = expand_member_init (decl);
18886 init = TREE_VEC_ELT (expanded_arguments, i);
18887 }
18888 else
18889 {
18890 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
18891 tf_warning_or_error, NULL_TREE);
18892
18893 decl = expand_member_init (decl);
18894 if (decl && !DECL_P (decl))
18895 in_base_initializer = 1;
18896
18897 init = TREE_VALUE (t);
18898 if (init != void_type_node)
18899 init = tsubst_expr (init, argvec,
18900 tf_warning_or_error, NULL_TREE,
18901 /*integral_constant_expression_p=*/false);
18902 in_base_initializer = 0;
18903 }
18904
18905 if (decl)
18906 {
18907 init = build_tree_list (decl, init);
18908 TREE_CHAIN (init) = inits;
18909 inits = init;
18910 }
18911 }
18912 }
18913 return inits;
18914 }
18915
18916 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
18917
18918 static void
18919 set_current_access_from_decl (tree decl)
18920 {
18921 if (TREE_PRIVATE (decl))
18922 current_access_specifier = access_private_node;
18923 else if (TREE_PROTECTED (decl))
18924 current_access_specifier = access_protected_node;
18925 else
18926 current_access_specifier = access_public_node;
18927 }
18928
18929 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
18930 is the instantiation (which should have been created with
18931 start_enum) and ARGS are the template arguments to use. */
18932
18933 static void
18934 tsubst_enum (tree tag, tree newtag, tree args)
18935 {
18936 tree e;
18937
18938 if (SCOPED_ENUM_P (newtag))
18939 begin_scope (sk_scoped_enum, newtag);
18940
18941 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
18942 {
18943 tree value;
18944 tree decl;
18945
18946 decl = TREE_VALUE (e);
18947 /* Note that in a template enum, the TREE_VALUE is the
18948 CONST_DECL, not the corresponding INTEGER_CST. */
18949 value = tsubst_expr (DECL_INITIAL (decl),
18950 args, tf_warning_or_error, NULL_TREE,
18951 /*integral_constant_expression_p=*/true);
18952
18953 /* Give this enumeration constant the correct access. */
18954 set_current_access_from_decl (decl);
18955
18956 /* Actually build the enumerator itself. */
18957 build_enumerator
18958 (DECL_NAME (decl), value, newtag, DECL_SOURCE_LOCATION (decl));
18959 }
18960
18961 if (SCOPED_ENUM_P (newtag))
18962 finish_scope ();
18963
18964 finish_enum_value_list (newtag);
18965 finish_enum (newtag);
18966
18967 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
18968 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
18969 }
18970
18971 /* DECL is a FUNCTION_DECL that is a template specialization. Return
18972 its type -- but without substituting the innermost set of template
18973 arguments. So, innermost set of template parameters will appear in
18974 the type. */
18975
18976 tree
18977 get_mostly_instantiated_function_type (tree decl)
18978 {
18979 tree fn_type;
18980 tree tmpl;
18981 tree targs;
18982 tree tparms;
18983 int parm_depth;
18984
18985 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
18986 targs = DECL_TI_ARGS (decl);
18987 tparms = DECL_TEMPLATE_PARMS (tmpl);
18988 parm_depth = TMPL_PARMS_DEPTH (tparms);
18989
18990 /* There should be as many levels of arguments as there are levels
18991 of parameters. */
18992 gcc_assert (parm_depth == TMPL_ARGS_DEPTH (targs));
18993
18994 fn_type = TREE_TYPE (tmpl);
18995
18996 if (parm_depth == 1)
18997 /* No substitution is necessary. */
18998 ;
18999 else
19000 {
19001 int i;
19002 tree partial_args;
19003
19004 /* Replace the innermost level of the TARGS with NULL_TREEs to
19005 let tsubst know not to substitute for those parameters. */
19006 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
19007 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
19008 SET_TMPL_ARGS_LEVEL (partial_args, i,
19009 TMPL_ARGS_LEVEL (targs, i));
19010 SET_TMPL_ARGS_LEVEL (partial_args,
19011 TMPL_ARGS_DEPTH (targs),
19012 make_tree_vec (DECL_NTPARMS (tmpl)));
19013
19014 /* Make sure that we can see identifiers, and compute access
19015 correctly. */
19016 push_access_scope (decl);
19017
19018 ++processing_template_decl;
19019 /* Now, do the (partial) substitution to figure out the
19020 appropriate function type. */
19021 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
19022 --processing_template_decl;
19023
19024 /* Substitute into the template parameters to obtain the real
19025 innermost set of parameters. This step is important if the
19026 innermost set of template parameters contains value
19027 parameters whose types depend on outer template parameters. */
19028 TREE_VEC_LENGTH (partial_args)--;
19029 tparms = tsubst_template_parms (tparms, partial_args, tf_error);
19030
19031 pop_access_scope (decl);
19032 }
19033
19034 return fn_type;
19035 }
19036
19037 /* Return truthvalue if we're processing a template different from
19038 the last one involved in diagnostics. */
19039 int
19040 problematic_instantiation_changed (void)
19041 {
19042 return current_tinst_level != last_error_tinst_level;
19043 }
19044
19045 /* Remember current template involved in diagnostics. */
19046 void
19047 record_last_problematic_instantiation (void)
19048 {
19049 last_error_tinst_level = current_tinst_level;
19050 }
19051
19052 struct tinst_level *
19053 current_instantiation (void)
19054 {
19055 return current_tinst_level;
19056 }
19057
19058 /* [temp.param] Check that template non-type parm TYPE is of an allowable
19059 type. Return zero for ok, nonzero for disallowed. Issue error and
19060 warning messages under control of COMPLAIN. */
19061
19062 static int
19063 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
19064 {
19065 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
19066 return 0;
19067 else if (POINTER_TYPE_P (type))
19068 return 0;
19069 else if (TYPE_PTR_TO_MEMBER_P (type))
19070 return 0;
19071 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
19072 return 0;
19073 else if (TREE_CODE (type) == TYPENAME_TYPE)
19074 return 0;
19075 else if (TREE_CODE (type) == DECLTYPE_TYPE)
19076 return 0;
19077 else if (TREE_CODE (type) == NULLPTR_TYPE)
19078 return 0;
19079
19080 if (complain & tf_error)
19081 {
19082 if (type == error_mark_node)
19083 inform (input_location, "invalid template non-type parameter");
19084 else
19085 error ("%q#T is not a valid type for a template non-type parameter",
19086 type);
19087 }
19088 return 1;
19089 }
19090
19091 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
19092 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
19093
19094 static bool
19095 dependent_type_p_r (tree type)
19096 {
19097 tree scope;
19098
19099 /* [temp.dep.type]
19100
19101 A type is dependent if it is:
19102
19103 -- a template parameter. Template template parameters are types
19104 for us (since TYPE_P holds true for them) so we handle
19105 them here. */
19106 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
19107 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
19108 return true;
19109 /* -- a qualified-id with a nested-name-specifier which contains a
19110 class-name that names a dependent type or whose unqualified-id
19111 names a dependent type. */
19112 if (TREE_CODE (type) == TYPENAME_TYPE)
19113 return true;
19114 /* -- a cv-qualified type where the cv-unqualified type is
19115 dependent. */
19116 type = TYPE_MAIN_VARIANT (type);
19117 /* -- a compound type constructed from any dependent type. */
19118 if (TYPE_PTR_TO_MEMBER_P (type))
19119 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
19120 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
19121 (type)));
19122 else if (TREE_CODE (type) == POINTER_TYPE
19123 || TREE_CODE (type) == REFERENCE_TYPE)
19124 return dependent_type_p (TREE_TYPE (type));
19125 else if (TREE_CODE (type) == FUNCTION_TYPE
19126 || TREE_CODE (type) == METHOD_TYPE)
19127 {
19128 tree arg_type;
19129
19130 if (dependent_type_p (TREE_TYPE (type)))
19131 return true;
19132 for (arg_type = TYPE_ARG_TYPES (type);
19133 arg_type;
19134 arg_type = TREE_CHAIN (arg_type))
19135 if (dependent_type_p (TREE_VALUE (arg_type)))
19136 return true;
19137 return false;
19138 }
19139 /* -- an array type constructed from any dependent type or whose
19140 size is specified by a constant expression that is
19141 value-dependent.
19142
19143 We checked for type- and value-dependence of the bounds in
19144 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
19145 if (TREE_CODE (type) == ARRAY_TYPE)
19146 {
19147 if (TYPE_DOMAIN (type)
19148 && dependent_type_p (TYPE_DOMAIN (type)))
19149 return true;
19150 return dependent_type_p (TREE_TYPE (type));
19151 }
19152
19153 /* -- a template-id in which either the template name is a template
19154 parameter ... */
19155 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
19156 return true;
19157 /* ... or any of the template arguments is a dependent type or
19158 an expression that is type-dependent or value-dependent. */
19159 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
19160 && (any_dependent_template_arguments_p
19161 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
19162 return true;
19163
19164 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
19165 dependent; if the argument of the `typeof' expression is not
19166 type-dependent, then it should already been have resolved. */
19167 if (TREE_CODE (type) == TYPEOF_TYPE
19168 || TREE_CODE (type) == DECLTYPE_TYPE
19169 || TREE_CODE (type) == UNDERLYING_TYPE)
19170 return true;
19171
19172 /* A template argument pack is dependent if any of its packed
19173 arguments are. */
19174 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
19175 {
19176 tree args = ARGUMENT_PACK_ARGS (type);
19177 int i, len = TREE_VEC_LENGTH (args);
19178 for (i = 0; i < len; ++i)
19179 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
19180 return true;
19181 }
19182
19183 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
19184 be template parameters. */
19185 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
19186 return true;
19187
19188 /* The standard does not specifically mention types that are local
19189 to template functions or local classes, but they should be
19190 considered dependent too. For example:
19191
19192 template <int I> void f() {
19193 enum E { a = I };
19194 S<sizeof (E)> s;
19195 }
19196
19197 The size of `E' cannot be known until the value of `I' has been
19198 determined. Therefore, `E' must be considered dependent. */
19199 scope = TYPE_CONTEXT (type);
19200 if (scope && TYPE_P (scope))
19201 return dependent_type_p (scope);
19202 /* Don't use type_dependent_expression_p here, as it can lead
19203 to infinite recursion trying to determine whether a lambda
19204 nested in a lambda is dependent (c++/47687). */
19205 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
19206 && DECL_LANG_SPECIFIC (scope)
19207 && DECL_TEMPLATE_INFO (scope)
19208 && (any_dependent_template_arguments_p
19209 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
19210 return true;
19211
19212 /* Other types are non-dependent. */
19213 return false;
19214 }
19215
19216 /* Returns TRUE if TYPE is dependent, in the sense of
19217 [temp.dep.type]. Note that a NULL type is considered dependent. */
19218
19219 bool
19220 dependent_type_p (tree type)
19221 {
19222 /* If there are no template parameters in scope, then there can't be
19223 any dependent types. */
19224 if (!processing_template_decl)
19225 {
19226 /* If we are not processing a template, then nobody should be
19227 providing us with a dependent type. */
19228 gcc_assert (type);
19229 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
19230 return false;
19231 }
19232
19233 /* If the type is NULL, we have not computed a type for the entity
19234 in question; in that case, the type is dependent. */
19235 if (!type)
19236 return true;
19237
19238 /* Erroneous types can be considered non-dependent. */
19239 if (type == error_mark_node)
19240 return false;
19241
19242 /* If we have not already computed the appropriate value for TYPE,
19243 do so now. */
19244 if (!TYPE_DEPENDENT_P_VALID (type))
19245 {
19246 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
19247 TYPE_DEPENDENT_P_VALID (type) = 1;
19248 }
19249
19250 return TYPE_DEPENDENT_P (type);
19251 }
19252
19253 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
19254 lookup. In other words, a dependent type that is not the current
19255 instantiation. */
19256
19257 bool
19258 dependent_scope_p (tree scope)
19259 {
19260 return (scope && TYPE_P (scope) && dependent_type_p (scope)
19261 && !currently_open_class (scope));
19262 }
19263
19264 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
19265 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
19266 expression. */
19267
19268 /* Note that this predicate is not appropriate for general expressions;
19269 only constant expressions (that satisfy potential_constant_expression)
19270 can be tested for value dependence.
19271
19272 We should really also have a predicate for "instantiation-dependent".
19273
19274 fold_non_dependent_expr: fold if constant and not type-dependent and not value-dependent.
19275 (what about instantiation-dependent constant-expressions?)
19276 is_late_template_attribute: defer if instantiation-dependent.
19277 compute_array_index_type: proceed if constant and not t- or v-dependent
19278 if instantiation-dependent, need to remember full expression
19279 uses_template_parms: FIXME - need to audit callers
19280 tsubst_decl [function_decl]: Why is this using value_dependent_expression_p?
19281 dependent_type_p [array_type]: dependent if index type is dependent
19282 (or non-constant?)
19283 static_assert - instantiation-dependent */
19284
19285 bool
19286 value_dependent_expression_p (tree expression)
19287 {
19288 if (!processing_template_decl)
19289 return false;
19290
19291 /* A name declared with a dependent type. */
19292 if (DECL_P (expression) && type_dependent_expression_p (expression))
19293 return true;
19294
19295 switch (TREE_CODE (expression))
19296 {
19297 case IDENTIFIER_NODE:
19298 /* A name that has not been looked up -- must be dependent. */
19299 return true;
19300
19301 case TEMPLATE_PARM_INDEX:
19302 /* A non-type template parm. */
19303 return true;
19304
19305 case CONST_DECL:
19306 /* A non-type template parm. */
19307 if (DECL_TEMPLATE_PARM_P (expression))
19308 return true;
19309 return value_dependent_expression_p (DECL_INITIAL (expression));
19310
19311 case VAR_DECL:
19312 /* A constant with literal type and is initialized
19313 with an expression that is value-dependent. */
19314 if (DECL_INITIAL (expression)
19315 && decl_constant_var_p (expression)
19316 && value_dependent_expression_p (DECL_INITIAL (expression)))
19317 return true;
19318 return false;
19319
19320 case DYNAMIC_CAST_EXPR:
19321 case STATIC_CAST_EXPR:
19322 case CONST_CAST_EXPR:
19323 case REINTERPRET_CAST_EXPR:
19324 case CAST_EXPR:
19325 /* These expressions are value-dependent if the type to which
19326 the cast occurs is dependent or the expression being casted
19327 is value-dependent. */
19328 {
19329 tree type = TREE_TYPE (expression);
19330
19331 if (dependent_type_p (type))
19332 return true;
19333
19334 /* A functional cast has a list of operands. */
19335 expression = TREE_OPERAND (expression, 0);
19336 if (!expression)
19337 {
19338 /* If there are no operands, it must be an expression such
19339 as "int()". This should not happen for aggregate types
19340 because it would form non-constant expressions. */
19341 gcc_assert (cxx_dialect >= cxx0x
19342 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
19343
19344 return false;
19345 }
19346
19347 if (TREE_CODE (expression) == TREE_LIST)
19348 return any_value_dependent_elements_p (expression);
19349
19350 return value_dependent_expression_p (expression);
19351 }
19352
19353 case SIZEOF_EXPR:
19354 case ALIGNOF_EXPR:
19355 case TYPEID_EXPR:
19356 /* A `sizeof' expression is value-dependent if the operand is
19357 type-dependent or is a pack expansion. */
19358 expression = TREE_OPERAND (expression, 0);
19359 if (PACK_EXPANSION_P (expression))
19360 return true;
19361 else if (TYPE_P (expression))
19362 return dependent_type_p (expression);
19363 return type_dependent_expression_p (expression);
19364
19365 case AT_ENCODE_EXPR:
19366 /* An 'encode' expression is value-dependent if the operand is
19367 type-dependent. */
19368 expression = TREE_OPERAND (expression, 0);
19369 return dependent_type_p (expression);
19370
19371 case NOEXCEPT_EXPR:
19372 expression = TREE_OPERAND (expression, 0);
19373 return type_dependent_expression_p (expression);
19374
19375 case SCOPE_REF:
19376 {
19377 tree name = TREE_OPERAND (expression, 1);
19378 return value_dependent_expression_p (name);
19379 }
19380
19381 case COMPONENT_REF:
19382 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
19383 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
19384
19385 case NONTYPE_ARGUMENT_PACK:
19386 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
19387 is value-dependent. */
19388 {
19389 tree values = ARGUMENT_PACK_ARGS (expression);
19390 int i, len = TREE_VEC_LENGTH (values);
19391
19392 for (i = 0; i < len; ++i)
19393 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
19394 return true;
19395
19396 return false;
19397 }
19398
19399 case TRAIT_EXPR:
19400 {
19401 tree type2 = TRAIT_EXPR_TYPE2 (expression);
19402 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
19403 || (type2 ? dependent_type_p (type2) : false));
19404 }
19405
19406 case MODOP_EXPR:
19407 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
19408 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
19409
19410 case ARRAY_REF:
19411 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
19412 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
19413
19414 case ADDR_EXPR:
19415 {
19416 tree op = TREE_OPERAND (expression, 0);
19417 return (value_dependent_expression_p (op)
19418 || has_value_dependent_address (op));
19419 }
19420
19421 case CALL_EXPR:
19422 {
19423 tree fn = get_callee_fndecl (expression);
19424 int i, nargs;
19425 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
19426 return true;
19427 nargs = call_expr_nargs (expression);
19428 for (i = 0; i < nargs; ++i)
19429 {
19430 tree op = CALL_EXPR_ARG (expression, i);
19431 /* In a call to a constexpr member function, look through the
19432 implicit ADDR_EXPR on the object argument so that it doesn't
19433 cause the call to be considered value-dependent. We also
19434 look through it in potential_constant_expression. */
19435 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
19436 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
19437 && TREE_CODE (op) == ADDR_EXPR)
19438 op = TREE_OPERAND (op, 0);
19439 if (value_dependent_expression_p (op))
19440 return true;
19441 }
19442 return false;
19443 }
19444
19445 case TEMPLATE_ID_EXPR:
19446 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
19447 type-dependent. */
19448 return type_dependent_expression_p (expression);
19449
19450 case CONSTRUCTOR:
19451 {
19452 unsigned ix;
19453 tree val;
19454 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
19455 if (value_dependent_expression_p (val))
19456 return true;
19457 return false;
19458 }
19459
19460 default:
19461 /* A constant expression is value-dependent if any subexpression is
19462 value-dependent. */
19463 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
19464 {
19465 case tcc_reference:
19466 case tcc_unary:
19467 case tcc_comparison:
19468 case tcc_binary:
19469 case tcc_expression:
19470 case tcc_vl_exp:
19471 {
19472 int i, len = cp_tree_operand_length (expression);
19473
19474 for (i = 0; i < len; i++)
19475 {
19476 tree t = TREE_OPERAND (expression, i);
19477
19478 /* In some cases, some of the operands may be missing.l
19479 (For example, in the case of PREDECREMENT_EXPR, the
19480 amount to increment by may be missing.) That doesn't
19481 make the expression dependent. */
19482 if (t && value_dependent_expression_p (t))
19483 return true;
19484 }
19485 }
19486 break;
19487 default:
19488 break;
19489 }
19490 break;
19491 }
19492
19493 /* The expression is not value-dependent. */
19494 return false;
19495 }
19496
19497 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
19498 [temp.dep.expr]. Note that an expression with no type is
19499 considered dependent. Other parts of the compiler arrange for an
19500 expression with type-dependent subexpressions to have no type, so
19501 this function doesn't have to be fully recursive. */
19502
19503 bool
19504 type_dependent_expression_p (tree expression)
19505 {
19506 if (!processing_template_decl)
19507 return false;
19508
19509 if (expression == error_mark_node)
19510 return false;
19511
19512 /* An unresolved name is always dependent. */
19513 if (TREE_CODE (expression) == IDENTIFIER_NODE
19514 || TREE_CODE (expression) == USING_DECL)
19515 return true;
19516
19517 /* Some expression forms are never type-dependent. */
19518 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
19519 || TREE_CODE (expression) == SIZEOF_EXPR
19520 || TREE_CODE (expression) == ALIGNOF_EXPR
19521 || TREE_CODE (expression) == AT_ENCODE_EXPR
19522 || TREE_CODE (expression) == NOEXCEPT_EXPR
19523 || TREE_CODE (expression) == TRAIT_EXPR
19524 || TREE_CODE (expression) == TYPEID_EXPR
19525 || TREE_CODE (expression) == DELETE_EXPR
19526 || TREE_CODE (expression) == VEC_DELETE_EXPR
19527 || TREE_CODE (expression) == THROW_EXPR)
19528 return false;
19529
19530 /* The types of these expressions depends only on the type to which
19531 the cast occurs. */
19532 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
19533 || TREE_CODE (expression) == STATIC_CAST_EXPR
19534 || TREE_CODE (expression) == CONST_CAST_EXPR
19535 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
19536 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
19537 || TREE_CODE (expression) == CAST_EXPR)
19538 return dependent_type_p (TREE_TYPE (expression));
19539
19540 /* The types of these expressions depends only on the type created
19541 by the expression. */
19542 if (TREE_CODE (expression) == NEW_EXPR
19543 || TREE_CODE (expression) == VEC_NEW_EXPR)
19544 {
19545 /* For NEW_EXPR tree nodes created inside a template, either
19546 the object type itself or a TREE_LIST may appear as the
19547 operand 1. */
19548 tree type = TREE_OPERAND (expression, 1);
19549 if (TREE_CODE (type) == TREE_LIST)
19550 /* This is an array type. We need to check array dimensions
19551 as well. */
19552 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
19553 || value_dependent_expression_p
19554 (TREE_OPERAND (TREE_VALUE (type), 1));
19555 else
19556 return dependent_type_p (type);
19557 }
19558
19559 if (TREE_CODE (expression) == SCOPE_REF)
19560 {
19561 tree scope = TREE_OPERAND (expression, 0);
19562 tree name = TREE_OPERAND (expression, 1);
19563
19564 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
19565 contains an identifier associated by name lookup with one or more
19566 declarations declared with a dependent type, or...a
19567 nested-name-specifier or qualified-id that names a member of an
19568 unknown specialization. */
19569 return (type_dependent_expression_p (name)
19570 || dependent_scope_p (scope));
19571 }
19572
19573 if (TREE_CODE (expression) == FUNCTION_DECL
19574 && DECL_LANG_SPECIFIC (expression)
19575 && DECL_TEMPLATE_INFO (expression)
19576 && (any_dependent_template_arguments_p
19577 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
19578 return true;
19579
19580 if (TREE_CODE (expression) == TEMPLATE_DECL
19581 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
19582 return false;
19583
19584 if (TREE_CODE (expression) == STMT_EXPR)
19585 expression = stmt_expr_value_expr (expression);
19586
19587 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
19588 {
19589 tree elt;
19590 unsigned i;
19591
19592 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
19593 {
19594 if (type_dependent_expression_p (elt))
19595 return true;
19596 }
19597 return false;
19598 }
19599
19600 /* A static data member of the current instantiation with incomplete
19601 array type is type-dependent, as the definition and specializations
19602 can have different bounds. */
19603 if (TREE_CODE (expression) == VAR_DECL
19604 && DECL_CLASS_SCOPE_P (expression)
19605 && dependent_type_p (DECL_CONTEXT (expression))
19606 && VAR_HAD_UNKNOWN_BOUND (expression))
19607 return true;
19608
19609 if (TREE_TYPE (expression) == unknown_type_node)
19610 {
19611 if (TREE_CODE (expression) == ADDR_EXPR)
19612 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
19613 if (TREE_CODE (expression) == COMPONENT_REF
19614 || TREE_CODE (expression) == OFFSET_REF)
19615 {
19616 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
19617 return true;
19618 expression = TREE_OPERAND (expression, 1);
19619 if (TREE_CODE (expression) == IDENTIFIER_NODE)
19620 return false;
19621 }
19622 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
19623 if (TREE_CODE (expression) == SCOPE_REF)
19624 return false;
19625
19626 if (BASELINK_P (expression))
19627 expression = BASELINK_FUNCTIONS (expression);
19628
19629 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
19630 {
19631 if (any_dependent_template_arguments_p
19632 (TREE_OPERAND (expression, 1)))
19633 return true;
19634 expression = TREE_OPERAND (expression, 0);
19635 }
19636 gcc_assert (TREE_CODE (expression) == OVERLOAD
19637 || TREE_CODE (expression) == FUNCTION_DECL);
19638
19639 while (expression)
19640 {
19641 if (type_dependent_expression_p (OVL_CURRENT (expression)))
19642 return true;
19643 expression = OVL_NEXT (expression);
19644 }
19645 return false;
19646 }
19647
19648 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
19649
19650 return (dependent_type_p (TREE_TYPE (expression)));
19651 }
19652
19653 /* Like type_dependent_expression_p, but it also works while not processing
19654 a template definition, i.e. during substitution or mangling. */
19655
19656 bool
19657 type_dependent_expression_p_push (tree expr)
19658 {
19659 bool b;
19660 ++processing_template_decl;
19661 b = type_dependent_expression_p (expr);
19662 --processing_template_decl;
19663 return b;
19664 }
19665
19666 /* Returns TRUE if ARGS contains a type-dependent expression. */
19667
19668 bool
19669 any_type_dependent_arguments_p (const VEC(tree,gc) *args)
19670 {
19671 unsigned int i;
19672 tree arg;
19673
19674 FOR_EACH_VEC_ELT (tree, args, i, arg)
19675 {
19676 if (type_dependent_expression_p (arg))
19677 return true;
19678 }
19679 return false;
19680 }
19681
19682 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
19683 expressions) contains any type-dependent expressions. */
19684
19685 bool
19686 any_type_dependent_elements_p (const_tree list)
19687 {
19688 for (; list; list = TREE_CHAIN (list))
19689 if (value_dependent_expression_p (TREE_VALUE (list)))
19690 return true;
19691
19692 return false;
19693 }
19694
19695 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
19696 expressions) contains any value-dependent expressions. */
19697
19698 bool
19699 any_value_dependent_elements_p (const_tree list)
19700 {
19701 for (; list; list = TREE_CHAIN (list))
19702 if (value_dependent_expression_p (TREE_VALUE (list)))
19703 return true;
19704
19705 return false;
19706 }
19707
19708 /* Returns TRUE if the ARG (a template argument) is dependent. */
19709
19710 bool
19711 dependent_template_arg_p (tree arg)
19712 {
19713 if (!processing_template_decl)
19714 return false;
19715
19716 /* Assume a template argument that was wrongly written by the user
19717 is dependent. This is consistent with what
19718 any_dependent_template_arguments_p [that calls this function]
19719 does. */
19720 if (!arg || arg == error_mark_node)
19721 return true;
19722
19723 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
19724 arg = ARGUMENT_PACK_SELECT_ARG (arg);
19725
19726 if (TREE_CODE (arg) == TEMPLATE_DECL
19727 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
19728 return dependent_template_p (arg);
19729 else if (ARGUMENT_PACK_P (arg))
19730 {
19731 tree args = ARGUMENT_PACK_ARGS (arg);
19732 int i, len = TREE_VEC_LENGTH (args);
19733 for (i = 0; i < len; ++i)
19734 {
19735 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
19736 return true;
19737 }
19738
19739 return false;
19740 }
19741 else if (TYPE_P (arg))
19742 return dependent_type_p (arg);
19743 else
19744 return (type_dependent_expression_p (arg)
19745 || value_dependent_expression_p (arg));
19746 }
19747
19748 /* Returns true if ARGS (a collection of template arguments) contains
19749 any types that require structural equality testing. */
19750
19751 bool
19752 any_template_arguments_need_structural_equality_p (tree args)
19753 {
19754 int i;
19755 int j;
19756
19757 if (!args)
19758 return false;
19759 if (args == error_mark_node)
19760 return true;
19761
19762 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
19763 {
19764 tree level = TMPL_ARGS_LEVEL (args, i + 1);
19765 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
19766 {
19767 tree arg = TREE_VEC_ELT (level, j);
19768 tree packed_args = NULL_TREE;
19769 int k, len = 1;
19770
19771 if (ARGUMENT_PACK_P (arg))
19772 {
19773 /* Look inside the argument pack. */
19774 packed_args = ARGUMENT_PACK_ARGS (arg);
19775 len = TREE_VEC_LENGTH (packed_args);
19776 }
19777
19778 for (k = 0; k < len; ++k)
19779 {
19780 if (packed_args)
19781 arg = TREE_VEC_ELT (packed_args, k);
19782
19783 if (error_operand_p (arg))
19784 return true;
19785 else if (TREE_CODE (arg) == TEMPLATE_DECL
19786 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
19787 continue;
19788 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
19789 return true;
19790 else if (!TYPE_P (arg) && TREE_TYPE (arg)
19791 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
19792 return true;
19793 }
19794 }
19795 }
19796
19797 return false;
19798 }
19799
19800 /* Returns true if ARGS (a collection of template arguments) contains
19801 any dependent arguments. */
19802
19803 bool
19804 any_dependent_template_arguments_p (const_tree args)
19805 {
19806 int i;
19807 int j;
19808
19809 if (!args)
19810 return false;
19811 if (args == error_mark_node)
19812 return true;
19813
19814 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
19815 {
19816 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
19817 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
19818 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
19819 return true;
19820 }
19821
19822 return false;
19823 }
19824
19825 /* Returns TRUE if the template TMPL is dependent. */
19826
19827 bool
19828 dependent_template_p (tree tmpl)
19829 {
19830 if (TREE_CODE (tmpl) == OVERLOAD)
19831 {
19832 while (tmpl)
19833 {
19834 if (dependent_template_p (OVL_CURRENT (tmpl)))
19835 return true;
19836 tmpl = OVL_NEXT (tmpl);
19837 }
19838 return false;
19839 }
19840
19841 /* Template template parameters are dependent. */
19842 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
19843 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
19844 return true;
19845 /* So are names that have not been looked up. */
19846 if (TREE_CODE (tmpl) == SCOPE_REF
19847 || TREE_CODE (tmpl) == IDENTIFIER_NODE)
19848 return true;
19849 /* So are member templates of dependent classes. */
19850 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
19851 return dependent_type_p (DECL_CONTEXT (tmpl));
19852 return false;
19853 }
19854
19855 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
19856
19857 bool
19858 dependent_template_id_p (tree tmpl, tree args)
19859 {
19860 return (dependent_template_p (tmpl)
19861 || any_dependent_template_arguments_p (args));
19862 }
19863
19864 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
19865 is dependent. */
19866
19867 bool
19868 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
19869 {
19870 int i;
19871
19872 if (!processing_template_decl)
19873 return false;
19874
19875 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
19876 {
19877 tree decl = TREE_VEC_ELT (declv, i);
19878 tree init = TREE_VEC_ELT (initv, i);
19879 tree cond = TREE_VEC_ELT (condv, i);
19880 tree incr = TREE_VEC_ELT (incrv, i);
19881
19882 if (type_dependent_expression_p (decl))
19883 return true;
19884
19885 if (init && type_dependent_expression_p (init))
19886 return true;
19887
19888 if (type_dependent_expression_p (cond))
19889 return true;
19890
19891 if (COMPARISON_CLASS_P (cond)
19892 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
19893 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
19894 return true;
19895
19896 if (TREE_CODE (incr) == MODOP_EXPR)
19897 {
19898 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
19899 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
19900 return true;
19901 }
19902 else if (type_dependent_expression_p (incr))
19903 return true;
19904 else if (TREE_CODE (incr) == MODIFY_EXPR)
19905 {
19906 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
19907 return true;
19908 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
19909 {
19910 tree t = TREE_OPERAND (incr, 1);
19911 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
19912 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
19913 return true;
19914 }
19915 }
19916 }
19917
19918 return false;
19919 }
19920
19921 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
19922 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
19923 no such TYPE can be found. Note that this function peers inside
19924 uninstantiated templates and therefore should be used only in
19925 extremely limited situations. ONLY_CURRENT_P restricts this
19926 peering to the currently open classes hierarchy (which is required
19927 when comparing types). */
19928
19929 tree
19930 resolve_typename_type (tree type, bool only_current_p)
19931 {
19932 tree scope;
19933 tree name;
19934 tree decl;
19935 int quals;
19936 tree pushed_scope;
19937 tree result;
19938
19939 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
19940
19941 scope = TYPE_CONTEXT (type);
19942 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
19943 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
19944 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
19945 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
19946 identifier of the TYPENAME_TYPE anymore.
19947 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
19948 TYPENAME_TYPE instead, we avoid messing up with a possible
19949 typedef variant case. */
19950 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
19951
19952 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
19953 it first before we can figure out what NAME refers to. */
19954 if (TREE_CODE (scope) == TYPENAME_TYPE)
19955 scope = resolve_typename_type (scope, only_current_p);
19956 /* If we don't know what SCOPE refers to, then we cannot resolve the
19957 TYPENAME_TYPE. */
19958 if (TREE_CODE (scope) == TYPENAME_TYPE)
19959 return type;
19960 /* If the SCOPE is a template type parameter, we have no way of
19961 resolving the name. */
19962 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
19963 return type;
19964 /* If the SCOPE is not the current instantiation, there's no reason
19965 to look inside it. */
19966 if (only_current_p && !currently_open_class (scope))
19967 return type;
19968 /* If this is a typedef, we don't want to look inside (c++/11987). */
19969 if (typedef_variant_p (type))
19970 return type;
19971 /* If SCOPE isn't the template itself, it will not have a valid
19972 TYPE_FIELDS list. */
19973 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
19974 /* scope is either the template itself or a compatible instantiation
19975 like X<T>, so look up the name in the original template. */
19976 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
19977 else
19978 /* scope is a partial instantiation, so we can't do the lookup or we
19979 will lose the template arguments. */
19980 return type;
19981 /* Enter the SCOPE so that name lookup will be resolved as if we
19982 were in the class definition. In particular, SCOPE will no
19983 longer be considered a dependent type. */
19984 pushed_scope = push_scope (scope);
19985 /* Look up the declaration. */
19986 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
19987 tf_warning_or_error);
19988
19989 result = NULL_TREE;
19990
19991 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
19992 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
19993 if (!decl)
19994 /*nop*/;
19995 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == IDENTIFIER_NODE
19996 && TREE_CODE (decl) == TYPE_DECL)
19997 {
19998 result = TREE_TYPE (decl);
19999 if (result == error_mark_node)
20000 result = NULL_TREE;
20001 }
20002 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
20003 && DECL_CLASS_TEMPLATE_P (decl))
20004 {
20005 tree tmpl;
20006 tree args;
20007 /* Obtain the template and the arguments. */
20008 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
20009 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
20010 /* Instantiate the template. */
20011 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
20012 /*entering_scope=*/0,
20013 tf_error | tf_user);
20014 if (result == error_mark_node)
20015 result = NULL_TREE;
20016 }
20017
20018 /* Leave the SCOPE. */
20019 if (pushed_scope)
20020 pop_scope (pushed_scope);
20021
20022 /* If we failed to resolve it, return the original typename. */
20023 if (!result)
20024 return type;
20025
20026 /* If lookup found a typename type, resolve that too. */
20027 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
20028 {
20029 /* Ill-formed programs can cause infinite recursion here, so we
20030 must catch that. */
20031 TYPENAME_IS_RESOLVING_P (type) = 1;
20032 result = resolve_typename_type (result, only_current_p);
20033 TYPENAME_IS_RESOLVING_P (type) = 0;
20034 }
20035
20036 /* Qualify the resulting type. */
20037 quals = cp_type_quals (type);
20038 if (quals)
20039 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
20040
20041 return result;
20042 }
20043
20044 /* EXPR is an expression which is not type-dependent. Return a proxy
20045 for EXPR that can be used to compute the types of larger
20046 expressions containing EXPR. */
20047
20048 tree
20049 build_non_dependent_expr (tree expr)
20050 {
20051 tree inner_expr;
20052
20053 #ifdef ENABLE_CHECKING
20054 /* Try to get a constant value for all non-type-dependent expressions in
20055 order to expose bugs in *_dependent_expression_p and constexpr. */
20056 if (cxx_dialect >= cxx0x)
20057 maybe_constant_value (fold_non_dependent_expr_sfinae (expr, tf_none));
20058 #endif
20059
20060 /* Preserve OVERLOADs; the functions must be available to resolve
20061 types. */
20062 inner_expr = expr;
20063 if (TREE_CODE (inner_expr) == STMT_EXPR)
20064 inner_expr = stmt_expr_value_expr (inner_expr);
20065 if (TREE_CODE (inner_expr) == ADDR_EXPR)
20066 inner_expr = TREE_OPERAND (inner_expr, 0);
20067 if (TREE_CODE (inner_expr) == COMPONENT_REF)
20068 inner_expr = TREE_OPERAND (inner_expr, 1);
20069 if (is_overloaded_fn (inner_expr)
20070 || TREE_CODE (inner_expr) == OFFSET_REF)
20071 return expr;
20072 /* There is no need to return a proxy for a variable. */
20073 if (TREE_CODE (expr) == VAR_DECL)
20074 return expr;
20075 /* Preserve string constants; conversions from string constants to
20076 "char *" are allowed, even though normally a "const char *"
20077 cannot be used to initialize a "char *". */
20078 if (TREE_CODE (expr) == STRING_CST)
20079 return expr;
20080 /* Preserve arithmetic constants, as an optimization -- there is no
20081 reason to create a new node. */
20082 if (TREE_CODE (expr) == INTEGER_CST || TREE_CODE (expr) == REAL_CST)
20083 return expr;
20084 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
20085 There is at least one place where we want to know that a
20086 particular expression is a throw-expression: when checking a ?:
20087 expression, there are special rules if the second or third
20088 argument is a throw-expression. */
20089 if (TREE_CODE (expr) == THROW_EXPR)
20090 return expr;
20091
20092 /* Don't wrap an initializer list, we need to be able to look inside. */
20093 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
20094 return expr;
20095
20096 if (TREE_CODE (expr) == COND_EXPR)
20097 return build3 (COND_EXPR,
20098 TREE_TYPE (expr),
20099 TREE_OPERAND (expr, 0),
20100 (TREE_OPERAND (expr, 1)
20101 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
20102 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
20103 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
20104 if (TREE_CODE (expr) == COMPOUND_EXPR
20105 && !COMPOUND_EXPR_OVERLOADED (expr))
20106 return build2 (COMPOUND_EXPR,
20107 TREE_TYPE (expr),
20108 TREE_OPERAND (expr, 0),
20109 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
20110
20111 /* If the type is unknown, it can't really be non-dependent */
20112 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
20113
20114 /* Otherwise, build a NON_DEPENDENT_EXPR. */
20115 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
20116 }
20117
20118 /* ARGS is a vector of expressions as arguments to a function call.
20119 Replace the arguments with equivalent non-dependent expressions.
20120 This modifies ARGS in place. */
20121
20122 void
20123 make_args_non_dependent (VEC(tree,gc) *args)
20124 {
20125 unsigned int ix;
20126 tree arg;
20127
20128 FOR_EACH_VEC_ELT (tree, args, ix, arg)
20129 {
20130 tree newarg = build_non_dependent_expr (arg);
20131 if (newarg != arg)
20132 VEC_replace (tree, args, ix, newarg);
20133 }
20134 }
20135
20136 /* Returns a type which represents 'auto'. We use a TEMPLATE_TYPE_PARM
20137 with a level one deeper than the actual template parms. */
20138
20139 tree
20140 make_auto (void)
20141 {
20142 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
20143 TYPE_NAME (au) = build_decl (BUILTINS_LOCATION,
20144 TYPE_DECL, get_identifier ("auto"), au);
20145 TYPE_STUB_DECL (au) = TYPE_NAME (au);
20146 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
20147 (0, processing_template_decl + 1, processing_template_decl + 1,
20148 0, TYPE_NAME (au), NULL_TREE);
20149 TYPE_CANONICAL (au) = canonical_type_parameter (au);
20150 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
20151 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
20152
20153 return au;
20154 }
20155
20156 /* Given type ARG, return std::initializer_list<ARG>. */
20157
20158 static tree
20159 listify (tree arg)
20160 {
20161 tree std_init_list = namespace_binding
20162 (get_identifier ("initializer_list"), std_node);
20163 tree argvec;
20164 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
20165 {
20166 error ("deducing from brace-enclosed initializer list requires "
20167 "#include <initializer_list>");
20168 return error_mark_node;
20169 }
20170 argvec = make_tree_vec (1);
20171 TREE_VEC_ELT (argvec, 0) = arg;
20172 return lookup_template_class (std_init_list, argvec, NULL_TREE,
20173 NULL_TREE, 0, tf_warning_or_error);
20174 }
20175
20176 /* Replace auto in TYPE with std::initializer_list<auto>. */
20177
20178 static tree
20179 listify_autos (tree type, tree auto_node)
20180 {
20181 tree init_auto = listify (auto_node);
20182 tree argvec = make_tree_vec (1);
20183 TREE_VEC_ELT (argvec, 0) = init_auto;
20184 if (processing_template_decl)
20185 argvec = add_to_template_args (current_template_args (), argvec);
20186 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
20187 }
20188
20189 /* walk_tree helper for do_auto_deduction. */
20190
20191 static tree
20192 contains_auto_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
20193 void *type)
20194 {
20195 /* Is this a variable with the type we're looking for? */
20196 if (DECL_P (*tp)
20197 && TREE_TYPE (*tp) == type)
20198 return *tp;
20199 else
20200 return NULL_TREE;
20201 }
20202
20203 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
20204 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
20205
20206 tree
20207 do_auto_deduction (tree type, tree init, tree auto_node)
20208 {
20209 tree parms, tparms, targs;
20210 tree args[1];
20211 tree decl;
20212 int val;
20213
20214 if (processing_template_decl
20215 && (TREE_TYPE (init) == NULL_TREE
20216 || BRACE_ENCLOSED_INITIALIZER_P (init)))
20217 /* Not enough information to try this yet. */
20218 return type;
20219
20220 /* The name of the object being declared shall not appear in the
20221 initializer expression. */
20222 decl = cp_walk_tree_without_duplicates (&init, contains_auto_r, type);
20223 if (decl)
20224 {
20225 error ("variable %q#D with %<auto%> type used in its own "
20226 "initializer", decl);
20227 return error_mark_node;
20228 }
20229
20230 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
20231 with either a new invented type template parameter U or, if the
20232 initializer is a braced-init-list (8.5.4), with
20233 std::initializer_list<U>. */
20234 if (BRACE_ENCLOSED_INITIALIZER_P (init))
20235 type = listify_autos (type, auto_node);
20236
20237 init = resolve_nondeduced_context (init);
20238
20239 parms = build_tree_list (NULL_TREE, type);
20240 args[0] = init;
20241 tparms = make_tree_vec (1);
20242 targs = make_tree_vec (1);
20243 TREE_VEC_ELT (tparms, 0)
20244 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
20245 val = type_unification_real (tparms, targs, parms, args, 1, 0,
20246 DEDUCE_CALL, LOOKUP_NORMAL,
20247 /*explain_p=*/false);
20248 if (val > 0)
20249 {
20250 if (processing_template_decl)
20251 /* Try again at instantiation time. */
20252 return type;
20253 if (type && type != error_mark_node)
20254 /* If type is error_mark_node a diagnostic must have been
20255 emitted by now. Also, having a mention to '<type error>'
20256 in the diagnostic is not really useful to the user. */
20257 error ("unable to deduce %qT from %qE", type, init);
20258 return error_mark_node;
20259 }
20260
20261 /* If the list of declarators contains more than one declarator, the type
20262 of each declared variable is determined as described above. If the
20263 type deduced for the template parameter U is not the same in each
20264 deduction, the program is ill-formed. */
20265 if (TREE_TYPE (auto_node)
20266 && !same_type_p (TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0)))
20267 {
20268 error ("inconsistent deduction for %qT: %qT and then %qT",
20269 auto_node, TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0));
20270 return error_mark_node;
20271 }
20272 TREE_TYPE (auto_node) = TREE_VEC_ELT (targs, 0);
20273
20274 if (processing_template_decl)
20275 targs = add_to_template_args (current_template_args (), targs);
20276 return tsubst (type, targs, tf_warning_or_error, NULL_TREE);
20277 }
20278
20279 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
20280 result. */
20281
20282 tree
20283 splice_late_return_type (tree type, tree late_return_type)
20284 {
20285 tree argvec;
20286
20287 if (late_return_type == NULL_TREE)
20288 return type;
20289 argvec = make_tree_vec (1);
20290 TREE_VEC_ELT (argvec, 0) = late_return_type;
20291 if (processing_template_parmlist)
20292 /* For a late-specified return type in a template type-parameter, we
20293 need to add a dummy argument level for its parmlist. */
20294 argvec = add_to_template_args
20295 (make_tree_vec (processing_template_parmlist), argvec);
20296 if (current_template_parms)
20297 argvec = add_to_template_args (current_template_args (), argvec);
20298 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
20299 }
20300
20301 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto'. */
20302
20303 bool
20304 is_auto (const_tree type)
20305 {
20306 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
20307 && TYPE_IDENTIFIER (type) == get_identifier ("auto"))
20308 return true;
20309 else
20310 return false;
20311 }
20312
20313 /* Returns true iff TYPE contains a use of 'auto'. Since auto can only
20314 appear as a type-specifier for the declaration in question, we don't
20315 have to look through the whole type. */
20316
20317 tree
20318 type_uses_auto (tree type)
20319 {
20320 enum tree_code code;
20321 if (is_auto (type))
20322 return type;
20323
20324 code = TREE_CODE (type);
20325
20326 if (code == POINTER_TYPE || code == REFERENCE_TYPE
20327 || code == OFFSET_TYPE || code == FUNCTION_TYPE
20328 || code == METHOD_TYPE || code == ARRAY_TYPE)
20329 return type_uses_auto (TREE_TYPE (type));
20330
20331 if (TYPE_PTRMEMFUNC_P (type))
20332 return type_uses_auto (TREE_TYPE (TREE_TYPE
20333 (TYPE_PTRMEMFUNC_FN_TYPE (type))));
20334
20335 return NULL_TREE;
20336 }
20337
20338 /* For a given template T, return the vector of typedefs referenced
20339 in T for which access check is needed at T instantiation time.
20340 T is either a FUNCTION_DECL or a RECORD_TYPE.
20341 Those typedefs were added to T by the function
20342 append_type_to_template_for_access_check. */
20343
20344 VEC(qualified_typedef_usage_t,gc)*
20345 get_types_needing_access_check (tree t)
20346 {
20347 tree ti;
20348 VEC(qualified_typedef_usage_t,gc) *result = NULL;
20349
20350 if (!t || t == error_mark_node)
20351 return NULL;
20352
20353 if (!(ti = get_template_info (t)))
20354 return NULL;
20355
20356 if (CLASS_TYPE_P (t)
20357 || TREE_CODE (t) == FUNCTION_DECL)
20358 {
20359 if (!TI_TEMPLATE (ti))
20360 return NULL;
20361
20362 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
20363 }
20364
20365 return result;
20366 }
20367
20368 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
20369 tied to T. That list of typedefs will be access checked at
20370 T instantiation time.
20371 T is either a FUNCTION_DECL or a RECORD_TYPE.
20372 TYPE_DECL is a TYPE_DECL node representing a typedef.
20373 SCOPE is the scope through which TYPE_DECL is accessed.
20374 LOCATION is the location of the usage point of TYPE_DECL.
20375
20376 This function is a subroutine of
20377 append_type_to_template_for_access_check. */
20378
20379 static void
20380 append_type_to_template_for_access_check_1 (tree t,
20381 tree type_decl,
20382 tree scope,
20383 location_t location)
20384 {
20385 qualified_typedef_usage_t typedef_usage;
20386 tree ti;
20387
20388 if (!t || t == error_mark_node)
20389 return;
20390
20391 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
20392 || CLASS_TYPE_P (t))
20393 && type_decl
20394 && TREE_CODE (type_decl) == TYPE_DECL
20395 && scope);
20396
20397 if (!(ti = get_template_info (t)))
20398 return;
20399
20400 gcc_assert (TI_TEMPLATE (ti));
20401
20402 typedef_usage.typedef_decl = type_decl;
20403 typedef_usage.context = scope;
20404 typedef_usage.locus = location;
20405
20406 VEC_safe_push (qualified_typedef_usage_t, gc,
20407 TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti),
20408 &typedef_usage);
20409 }
20410
20411 /* Append TYPE_DECL to the template TEMPL.
20412 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
20413 At TEMPL instanciation time, TYPE_DECL will be checked to see
20414 if it can be accessed through SCOPE.
20415 LOCATION is the location of the usage point of TYPE_DECL.
20416
20417 e.g. consider the following code snippet:
20418
20419 class C
20420 {
20421 typedef int myint;
20422 };
20423
20424 template<class U> struct S
20425 {
20426 C::myint mi; // <-- usage point of the typedef C::myint
20427 };
20428
20429 S<char> s;
20430
20431 At S<char> instantiation time, we need to check the access of C::myint
20432 In other words, we need to check the access of the myint typedef through
20433 the C scope. For that purpose, this function will add the myint typedef
20434 and the scope C through which its being accessed to a list of typedefs
20435 tied to the template S. That list will be walked at template instantiation
20436 time and access check performed on each typedefs it contains.
20437 Note that this particular code snippet should yield an error because
20438 myint is private to C. */
20439
20440 void
20441 append_type_to_template_for_access_check (tree templ,
20442 tree type_decl,
20443 tree scope,
20444 location_t location)
20445 {
20446 qualified_typedef_usage_t *iter;
20447 int i;
20448
20449 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
20450
20451 /* Make sure we don't append the type to the template twice. */
20452 FOR_EACH_VEC_ELT (qualified_typedef_usage_t,
20453 get_types_needing_access_check (templ),
20454 i, iter)
20455 if (iter->typedef_decl == type_decl && scope == iter->context)
20456 return;
20457
20458 append_type_to_template_for_access_check_1 (templ, type_decl,
20459 scope, location);
20460 }
20461
20462 /* Set up the hash tables for template instantiations. */
20463
20464 void
20465 init_template_processing (void)
20466 {
20467 decl_specializations = htab_create_ggc (37,
20468 hash_specialization,
20469 eq_specializations,
20470 ggc_free);
20471 type_specializations = htab_create_ggc (37,
20472 hash_specialization,
20473 eq_specializations,
20474 ggc_free);
20475 }
20476
20477 /* Print stats about the template hash tables for -fstats. */
20478
20479 void
20480 print_template_statistics (void)
20481 {
20482 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
20483 "%f collisions\n", (long) htab_size (decl_specializations),
20484 (long) htab_elements (decl_specializations),
20485 htab_collisions (decl_specializations));
20486 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
20487 "%f collisions\n", (long) htab_size (type_specializations),
20488 (long) htab_elements (type_specializations),
20489 htab_collisions (type_specializations));
20490 }
20491
20492 #include "gt-cp-pt.h"