Branch data Line data Source code
1 : : /* Processing rules for constraints.
2 : : Copyright (C) 2013-2024 Free Software Foundation, Inc.
3 : : Contributed by Andrew Sutton (andrew.n.sutton@gmail.com)
4 : :
5 : : This file is part of GCC.
6 : :
7 : : GCC is free software; you can redistribute it and/or modify
8 : : it under the terms of the GNU General Public License as published by
9 : : the Free Software Foundation; either version 3, or (at your option)
10 : : any later version.
11 : :
12 : : GCC is distributed in the hope that it will be useful,
13 : : but WITHOUT ANY WARRANTY; without even the implied warranty of
14 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 : : GNU General Public License for more details.
16 : :
17 : : You should have received a copy of the GNU General Public License
18 : : along with GCC; see the file COPYING3. If not see
19 : : <http://www.gnu.org/licenses/>. */
20 : :
21 : : #include "config.h"
22 : : #include "system.h"
23 : : #include "coretypes.h"
24 : : #include "tm.h"
25 : : #include "timevar.h"
26 : : #include "hash-set.h"
27 : : #include "machmode.h"
28 : : #include "vec.h"
29 : : #include "double-int.h"
30 : : #include "input.h"
31 : : #include "alias.h"
32 : : #include "symtab.h"
33 : : #include "wide-int.h"
34 : : #include "inchash.h"
35 : : #include "tree.h"
36 : : #include "stringpool.h"
37 : : #include "attribs.h"
38 : : #include "intl.h"
39 : : #include "flags.h"
40 : : #include "cp-tree.h"
41 : : #include "c-family/c-common.h"
42 : : #include "c-family/c-objc.h"
43 : : #include "cp-objcp-common.h"
44 : : #include "tree-inline.h"
45 : : #include "decl.h"
46 : : #include "toplev.h"
47 : : #include "type-utils.h"
48 : :
49 : : static tree satisfaction_value (tree t);
50 : :
51 : : /* When we're parsing or substuting a constraint expression, we have slightly
52 : : different expression semantics. In particular, we don't want to reduce a
53 : : concept-id to a satisfaction value. */
54 : :
55 : 47182800 : processing_constraint_expression_sentinel::
56 : : processing_constraint_expression_sentinel ()
57 : : {
58 : 47182800 : ++scope_chain->x_processing_constraint;
59 : 47182800 : }
60 : :
61 : 47182800 : processing_constraint_expression_sentinel::
62 : : ~processing_constraint_expression_sentinel ()
63 : : {
64 : 47182800 : --scope_chain->x_processing_constraint;
65 : 47182800 : }
66 : :
67 : : bool
68 : 2283864 : processing_constraint_expression_p ()
69 : : {
70 : 2283864 : return scope_chain->x_processing_constraint != 0;
71 : : }
72 : :
73 : : /*---------------------------------------------------------------------------
74 : : Constraint expressions
75 : : ---------------------------------------------------------------------------*/
76 : :
77 : : /* Information provided to substitution. */
78 : :
79 : : struct subst_info
80 : : {
81 : 313654370 : subst_info (tsubst_flags_t cmp, tree in)
82 : 313654370 : : complain (cmp), in_decl (in)
83 : : { }
84 : :
85 : : /* True if we should not diagnose errors. */
86 : 867421221 : bool quiet () const
87 : : {
88 : 867421221 : return !(complain & tf_warning_or_error);
89 : : }
90 : :
91 : : /* True if we should diagnose errors. */
92 : 668670481 : bool noisy () const
93 : : {
94 : 674148227 : return !quiet ();
95 : : }
96 : :
97 : : tsubst_flags_t complain;
98 : : tree in_decl;
99 : : };
100 : :
101 : : /* Provides additional context for satisfaction.
102 : :
103 : : During satisfaction:
104 : : - The flag noisy() controls whether to diagnose ill-formed satisfaction,
105 : : such as the satisfaction value of an atom being non-bool or non-constant.
106 : : - The flag diagnose_unsatisfaction_p() controls whether to additionally
107 : : explain why a constraint is not satisfied.
108 : : - We enter satisfaction with noisy+unsat from diagnose_constraints.
109 : : - We enter satisfaction with noisy-unsat from the replay inside
110 : : constraint_satisfaction_value.
111 : : - We enter satisfaction quietly (both flags cleared) from
112 : : constraints_satisfied_p.
113 : :
114 : : During evaluation of a requires-expression:
115 : : - The flag noisy() controls whether to diagnose ill-formed types and
116 : : expressions inside its requirements.
117 : : - The flag diagnose_unsatisfaction_p() controls whether to additionally
118 : : explain why the requires-expression evaluates to false.
119 : : - We enter tsubst_requires_expr with noisy+unsat from
120 : : diagnose_atomic_constraint and potentially from
121 : : satisfy_nondeclaration_constraints.
122 : : - We enter tsubst_requires_expr with noisy-unsat from
123 : : cp_parser_requires_expression when processing a requires-expression that
124 : : appears outside a template.
125 : : - We enter tsubst_requires_expr quietly (both flags cleared) when
126 : : substituting through a requires-expression as part of template
127 : : instantiation. */
128 : :
129 : : struct sat_info : subst_info
130 : : {
131 : 292500541 : sat_info (tsubst_flags_t cmp, tree in, bool diag_unsat = false)
132 : 292500541 : : subst_info (cmp, in), diagnose_unsatisfaction (diag_unsat)
133 : : {
134 : 292500541 : if (diagnose_unsatisfaction_p ())
135 : 0 : gcc_checking_assert (noisy ());
136 : 2776542 : }
137 : :
138 : : /* True if we should diagnose the cause of satisfaction failure.
139 : : Implies noisy(). */
140 : : bool
141 : 294975401 : diagnose_unsatisfaction_p () const
142 : : {
143 : 2776542 : return diagnose_unsatisfaction;
144 : : }
145 : :
146 : : bool diagnose_unsatisfaction;
147 : : };
148 : :
149 : : static tree constraint_satisfaction_value (tree, tree, sat_info);
150 : :
151 : : /* True if T is known to be some type other than bool. Note that this
152 : : is false for dependent types and errors. */
153 : :
154 : : static inline bool
155 : 7929244 : known_non_bool_p (tree t)
156 : : {
157 : 7929244 : return (t && !WILDCARD_TYPE_P (t) && TREE_CODE (t) != BOOLEAN_TYPE);
158 : : }
159 : :
160 : : static bool
161 : 7929244 : check_constraint_atom (cp_expr expr)
162 : : {
163 : 7929244 : if (known_non_bool_p (TREE_TYPE (expr)))
164 : : {
165 : 10 : error_at (expr.get_location (),
166 : : "constraint expression does not have type %<bool%>");
167 : 10 : return false;
168 : : }
169 : :
170 : : return true;
171 : : }
172 : :
173 : : static bool
174 : 2282449 : check_constraint_operands (location_t, cp_expr lhs, cp_expr rhs)
175 : : {
176 : 2282449 : return check_constraint_atom (lhs) && check_constraint_atom (rhs);
177 : : }
178 : :
179 : : /* Validate the semantic properties of the constraint expression. */
180 : :
181 : : static cp_expr
182 : 2282455 : finish_constraint_binary_op (location_t loc,
183 : : tree_code code,
184 : : cp_expr lhs,
185 : : cp_expr rhs)
186 : : {
187 : 2282455 : gcc_assert (processing_constraint_expression_p ());
188 : 2282455 : if (lhs == error_mark_node || rhs == error_mark_node)
189 : 6 : return error_mark_node;
190 : 2282449 : if (!check_constraint_operands (loc, lhs, rhs))
191 : 0 : return error_mark_node;
192 : 2282449 : cp_expr expr
193 : 2282449 : = build_min_nt_loc (loc, code, lhs.get_value (), rhs.get_value ());
194 : 2282449 : expr.set_range (lhs.get_start (), rhs.get_finish ());
195 : 2282449 : return expr;
196 : : }
197 : :
198 : : cp_expr
199 : 156516 : finish_constraint_or_expr (location_t loc, cp_expr lhs, cp_expr rhs)
200 : : {
201 : 156516 : return finish_constraint_binary_op (loc, TRUTH_ORIF_EXPR, lhs, rhs);
202 : : }
203 : :
204 : : cp_expr
205 : 2125939 : finish_constraint_and_expr (location_t loc, cp_expr lhs, cp_expr rhs)
206 : : {
207 : 2125939 : return finish_constraint_binary_op (loc, TRUTH_ANDIF_EXPR, lhs, rhs);
208 : : }
209 : :
210 : : cp_expr
211 : 3364370 : finish_constraint_primary_expr (cp_expr expr)
212 : : {
213 : 3364370 : if (expr == error_mark_node)
214 : 24 : return error_mark_node;
215 : 3364346 : if (!check_constraint_atom (expr))
216 : 10 : return cp_expr (error_mark_node, expr.get_location ());
217 : 3364336 : return expr;
218 : : }
219 : :
220 : : /* Combine two constraint-expressions with a logical-and. */
221 : :
222 : : tree
223 : 42635788 : combine_constraint_expressions (tree lhs, tree rhs)
224 : : {
225 : 42635788 : processing_constraint_expression_sentinel pce;
226 : 42635788 : if (!lhs)
227 : : return rhs;
228 : 5631574 : if (!rhs)
229 : : return lhs;
230 : : /* Use UNKNOWN_LOCATION so write_template_args can tell the difference
231 : : between this and a && the user wrote. */
232 : 1272858 : return finish_constraint_and_expr (UNKNOWN_LOCATION, lhs, rhs);
233 : 42635788 : }
234 : :
235 : : /* Extract the TEMPLATE_DECL from a concept check. */
236 : :
237 : : tree
238 : 6328658 : get_concept_check_template (tree t)
239 : : {
240 : 6328658 : gcc_assert (concept_check_p (t));
241 : 6328658 : return TREE_OPERAND (t, 0);
242 : : }
243 : :
244 : : /*---------------------------------------------------------------------------
245 : : Resolution of qualified concept names
246 : : ---------------------------------------------------------------------------*/
247 : :
248 : : /* This facility is used to resolve constraint checks from requirement
249 : : expressions. A constraint check is a call to a function template declared
250 : : with the keyword 'concept'.
251 : :
252 : : The result of resolution is a pair (a TREE_LIST) whose value is the
253 : : matched declaration, and whose purpose contains the coerced template
254 : : arguments that can be substituted into the call. */
255 : :
256 : : /* Returns a pair containing the checked concept and its associated
257 : : prototype parameter. The result is a TREE_LIST whose TREE_VALUE
258 : : is the concept (non-template) and whose TREE_PURPOSE contains
259 : : the converted template arguments, including the deduced prototype
260 : : parameter (in position 0). */
261 : :
262 : : tree
263 : 2106343 : resolve_concept_check (tree check)
264 : : {
265 : 2106343 : gcc_assert (concept_check_p (check));
266 : 2106343 : tree tmpl = TREE_OPERAND (check, 0);
267 : 2106343 : tree args = TREE_OPERAND (check, 1);
268 : 2106343 : tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
269 : 2106343 : ++processing_template_decl;
270 : 2106343 : tree result = coerce_template_parms (parms, args, tmpl, tf_none);
271 : 2106343 : --processing_template_decl;
272 : 2106343 : if (result == error_mark_node)
273 : : return error_mark_node;
274 : 2106343 : return build_tree_list (result, DECL_TEMPLATE_RESULT (tmpl));
275 : : }
276 : :
277 : : /* Given a call expression or template-id expression to a concept EXPR
278 : : possibly including a wildcard, deduce the concept being checked and
279 : : the prototype parameter. Returns true if the constraint and prototype
280 : : can be deduced and false otherwise. Note that the CHECK and PROTO
281 : : arguments are set to NULL_TREE if this returns false. */
282 : :
283 : : bool
284 : 2106343 : deduce_constrained_parameter (tree expr, tree& check, tree& proto)
285 : : {
286 : 2106343 : tree info = resolve_concept_check (expr);
287 : 2106343 : if (info && info != error_mark_node)
288 : : {
289 : 2106343 : check = TREE_VALUE (info);
290 : 2106343 : tree arg = TREE_VEC_ELT (TREE_PURPOSE (info), 0);
291 : 2106343 : if (ARGUMENT_PACK_P (arg))
292 : 2030 : arg = TREE_VEC_ELT (ARGUMENT_PACK_ARGS (arg), 0);
293 : 2106343 : proto = TREE_TYPE (arg);
294 : 2106343 : return true;
295 : : }
296 : :
297 : 0 : check = proto = NULL_TREE;
298 : 0 : return false;
299 : : }
300 : :
301 : : /* Build a constrained placeholder type where SPEC is a type-constraint.
302 : : SPEC can be anything were concept_definition_p is true.
303 : :
304 : : Returns a pair whose FIRST is the concept being checked and whose
305 : : SECOND is the prototype parameter. */
306 : :
307 : : tree_pair
308 : 2637466 : finish_type_constraints (tree spec, tree args, tsubst_flags_t complain)
309 : : {
310 : 5274932 : gcc_assert (concept_definition_p (spec));
311 : :
312 : : /* Build an initial concept check. */
313 : 2637466 : tree check = build_type_constraint (spec, args, complain);
314 : 2637466 : if (check == error_mark_node)
315 : 531123 : return std::make_pair (error_mark_node, NULL_TREE);
316 : :
317 : : /* Extract the concept and prototype parameter from the check. */
318 : 2106343 : tree con;
319 : 2106343 : tree proto;
320 : 2106343 : if (!deduce_constrained_parameter (check, con, proto))
321 : 0 : return std::make_pair (error_mark_node, NULL_TREE);
322 : :
323 : 2106343 : return std::make_pair (con, proto);
324 : : }
325 : :
326 : : /*---------------------------------------------------------------------------
327 : : Expansion of concept definitions
328 : : ---------------------------------------------------------------------------*/
329 : :
330 : : /* Returns the definition of a concept. */
331 : :
332 : : static tree
333 : 5804373 : get_concept_definition (tree decl)
334 : : {
335 : 5804373 : gcc_assert (TREE_CODE (decl) == CONCEPT_DECL);
336 : 5804373 : return DECL_INITIAL (decl);
337 : : }
338 : :
339 : : /*---------------------------------------------------------------------------
340 : : Normalization of expressions
341 : :
342 : : This set of functions will transform an expression into a constraint
343 : : in a sequence of steps.
344 : : ---------------------------------------------------------------------------*/
345 : :
346 : : void
347 : 0 : debug_parameter_mapping (tree map)
348 : : {
349 : 0 : for (tree p = map; p; p = TREE_CHAIN (p))
350 : : {
351 : 0 : tree parm = TREE_VALUE (p);
352 : 0 : tree arg = TREE_PURPOSE (p);
353 : 0 : if (TYPE_P (parm))
354 : 0 : verbatim ("MAP %qD TO %qT", TEMPLATE_TYPE_DECL (parm), arg);
355 : : else
356 : 0 : verbatim ("MAP %qD TO %qE", TEMPLATE_PARM_DECL (parm), arg);
357 : : // debug_tree (parm);
358 : : // debug_tree (arg);
359 : : }
360 : 0 : }
361 : :
362 : : void
363 : 0 : debug_argument_list (tree args)
364 : : {
365 : 0 : for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
366 : : {
367 : 0 : tree arg = TREE_VEC_ELT (args, i);
368 : 0 : if (TYPE_P (arg))
369 : 0 : verbatim ("argument %qT", arg);
370 : : else
371 : 0 : verbatim ("argument %qE", arg);
372 : : }
373 : 0 : }
374 : :
375 : : /* Associate each parameter in PARMS with its corresponding template
376 : : argument in ARGS. */
377 : :
378 : : static tree
379 : 6262850 : map_arguments (tree parms, tree args)
380 : : {
381 : 17282415 : for (tree p = parms; p; p = TREE_CHAIN (p))
382 : 11019565 : if (args)
383 : : {
384 : 9719528 : int level;
385 : 9719528 : int index;
386 : 9719528 : template_parm_level_and_index (TREE_VALUE (p), &level, &index);
387 : 9719528 : TREE_PURPOSE (p) = TMPL_ARG (args, level, index);
388 : : }
389 : : else
390 : 1300037 : TREE_PURPOSE (p) = template_parm_to_arg (p);
391 : :
392 : 6262850 : return parms;
393 : : }
394 : :
395 : : /* Build the parameter mapping for EXPR using ARGS, where CTX_PARMS
396 : : are the template parameters in scope for EXPR. */
397 : :
398 : : static tree
399 : 6262850 : build_parameter_mapping (tree expr, tree args, tree ctx_parms)
400 : : {
401 : 6262850 : tree parms = find_template_parameters (expr, ctx_parms);
402 : 6262850 : tree map = map_arguments (parms, args);
403 : 6262850 : return map;
404 : : }
405 : :
406 : : /* True if the parameter mappings of two atomic constraints formed
407 : : from the same expression are equivalent. */
408 : :
409 : : static bool
410 : 25378860 : parameter_mapping_equivalent_p (tree t1, tree t2)
411 : : {
412 : 25378860 : tree map1 = ATOMIC_CONSTR_MAP (t1);
413 : 25378860 : tree map2 = ATOMIC_CONSTR_MAP (t2);
414 : 54190629 : while (map1 && map2)
415 : : {
416 : 39004864 : gcc_checking_assert (TREE_VALUE (map1) == TREE_VALUE (map2));
417 : 39004864 : tree arg1 = TREE_PURPOSE (map1);
418 : 39004864 : tree arg2 = TREE_PURPOSE (map2);
419 : 39004864 : if (!template_args_equal (arg1, arg2))
420 : : return false;
421 : 28811769 : map1 = TREE_CHAIN (map1);
422 : 28811769 : map2 = TREE_CHAIN (map2);
423 : : }
424 : 15185765 : gcc_checking_assert (!map1 && !map2);
425 : : return true;
426 : : }
427 : :
428 : : /* Provides additional context for normalization. */
429 : :
430 : : struct norm_info : subst_info
431 : : {
432 : 2220997 : explicit norm_info (bool diag)
433 : 2220997 : : norm_info (NULL_TREE, diag)
434 : : {}
435 : :
436 : : /* Construct a top-level context for DECL. */
437 : :
438 : 3091428 : norm_info (tree in_decl, bool diag)
439 : 3091428 : : subst_info (tf_warning_or_error, in_decl),
440 : 3091428 : generate_diagnostics (diag)
441 : : {
442 : 870431 : if (in_decl)
443 : : {
444 : 720367 : initial_parms = DECL_TEMPLATE_PARMS (in_decl);
445 : 720367 : if (generate_diagnostics)
446 : 1090 : context = build_tree_list (NULL_TREE, in_decl);
447 : : }
448 : : else
449 : 150064 : initial_parms = current_template_parms;
450 : 870431 : }
451 : :
452 : 5741091 : void update_context (tree expr, tree args)
453 : : {
454 : 5741091 : if (generate_diagnostics)
455 : : {
456 : 5858 : tree map = build_parameter_mapping (expr, args, ctx_parms ());
457 : 5858 : context = tree_cons (map, expr, context);
458 : : }
459 : 5741091 : in_decl = get_concept_check_template (expr);
460 : 5741091 : }
461 : :
462 : : /* Returns the template parameters that are in scope for the current
463 : : normalization context. */
464 : :
465 : 6262850 : tree ctx_parms ()
466 : : {
467 : 6262850 : if (in_decl)
468 : 6157939 : return DECL_TEMPLATE_PARMS (in_decl);
469 : : else
470 : 104911 : return initial_parms;
471 : : }
472 : :
473 : : /* Provides information about the source of a constraint. This is a
474 : : TREE_LIST whose VALUE is either a concept check or a constrained
475 : : declaration. The PURPOSE, for concept checks is a parameter mapping
476 : : for that check. */
477 : :
478 : : tree context = NULL_TREE;
479 : :
480 : : /* The declaration whose constraints we're normalizing. The targets
481 : : of the parameter mapping of each atom will be in terms of the
482 : : template parameters of ORIG_DECL. */
483 : :
484 : : tree initial_parms = NULL_TREE;
485 : :
486 : : /* Whether to build diagnostic information during normalization. */
487 : :
488 : : bool generate_diagnostics;
489 : : };
490 : :
491 : : static tree normalize_expression (tree, tree, norm_info);
492 : :
493 : : /* Transform a logical-or or logical-and expression into either
494 : : a conjunction or disjunction. */
495 : :
496 : : static tree
497 : 6531207 : normalize_logical_operation (tree t, tree args, tree_code c, norm_info info)
498 : : {
499 : 6531207 : tree t0 = normalize_expression (TREE_OPERAND (t, 0), args, info);
500 : 6531207 : tree t1 = normalize_expression (TREE_OPERAND (t, 1), args, info);
501 : :
502 : : /* Build a new info object for the constraint. */
503 : 6531207 : tree ci = (info.generate_diagnostics
504 : 6531207 : ? build_tree_list (t, info.context) : NULL_TREE);
505 : :
506 : 6531207 : return build2 (c, ci, t0, t1);
507 : : }
508 : :
509 : : /* Data types and hash functions for caching the normal form of a concept-id.
510 : : This essentially memoizes calls to normalize_concept_check. */
511 : :
512 : : struct GTY((for_user)) norm_entry
513 : : {
514 : : /* The CONCEPT_DECL of the concept-id. */
515 : : tree tmpl;
516 : : /* The arguments of the concept-id. */
517 : : tree args;
518 : : /* The normal form of the concept-id. */
519 : : tree norm;
520 : : };
521 : :
522 : : struct norm_hasher : ggc_ptr_hash<norm_entry>
523 : : {
524 : 58295918 : static hashval_t hash (norm_entry *e)
525 : : {
526 : 58295918 : ++comparing_specializations;
527 : 58295918 : hashval_t val = iterative_hash_template_arg (e->tmpl, 0);
528 : 58295918 : val = iterative_hash_template_arg (e->args, val);
529 : 58295918 : --comparing_specializations;
530 : 58295918 : return val;
531 : : }
532 : :
533 : 67784249 : static bool equal (norm_entry *e1, norm_entry *e2)
534 : : {
535 : 67784249 : ++comparing_specializations;
536 : 67784249 : bool eq = e1->tmpl == e2->tmpl
537 : 67784249 : && template_args_equal (e1->args, e2->args);
538 : 67784249 : --comparing_specializations;
539 : 67784249 : return eq;
540 : : }
541 : : };
542 : :
543 : : static GTY((deletable)) hash_table<norm_hasher> *norm_cache;
544 : :
545 : : /* Normalize the concept check CHECK where ARGS are the
546 : : arguments to be substituted into CHECK's arguments. */
547 : :
548 : : static tree
549 : 7251435 : normalize_concept_check (tree check, tree args, norm_info info)
550 : : {
551 : 7251435 : gcc_assert (concept_check_p (check));
552 : 7251435 : tree tmpl = TREE_OPERAND (check, 0);
553 : 7251435 : tree targs = TREE_OPERAND (check, 1);
554 : :
555 : : /* Substitute through the arguments of the concept check. */
556 : 7251435 : if (args)
557 : 5433232 : targs = tsubst_template_args (targs, args, info.complain, info.in_decl);
558 : 7251435 : if (targs == error_mark_node)
559 : : return error_mark_node;
560 : 7251435 : if (template_args_equal (targs, generic_targs_for (tmpl)))
561 : : /* Canonicalize generic arguments as NULL_TREE, as an optimization. */
562 : 933438 : targs = NULL_TREE;
563 : :
564 : : /* Build the substitution for the concept definition. */
565 : 7251435 : tree parms = TREE_VALUE (DECL_TEMPLATE_PARMS (tmpl));
566 : 7251435 : if (targs && args)
567 : : /* As an optimization, coerce the arguments only if necessary
568 : : (i.e. if they were substituted). */
569 : 5340798 : targs = coerce_template_parms (parms, targs, tmpl, tf_none);
570 : 7251435 : if (targs == error_mark_node)
571 : : return error_mark_node;
572 : :
573 : 7251435 : if (!norm_cache)
574 : 18924 : norm_cache = hash_table<norm_hasher>::create_ggc (31);
575 : 7251435 : norm_entry *entry = nullptr;
576 : 7251435 : if (!info.generate_diagnostics)
577 : : {
578 : : /* Cache the normal form of the substituted concept-id (when not
579 : : diagnosing). */
580 : 7245577 : norm_entry elt = {tmpl, targs, NULL_TREE};
581 : 7245577 : norm_entry **slot = norm_cache->find_slot (&elt, INSERT);
582 : 7245577 : if (*slot)
583 : 1510344 : return (*slot)->norm;
584 : 5735233 : entry = ggc_alloc<norm_entry> ();
585 : 5735233 : *entry = elt;
586 : 5735233 : *slot = entry;
587 : : }
588 : :
589 : 5741091 : tree def = get_concept_definition (DECL_TEMPLATE_RESULT (tmpl));
590 : 5741091 : info.update_context (check, args);
591 : 5741091 : tree norm = normalize_expression (def, targs, info);
592 : 5741091 : if (entry)
593 : 5735233 : entry->norm = norm;
594 : : return norm;
595 : : }
596 : :
597 : : /* Used by normalize_atom to cache ATOMIC_CONSTRs. */
598 : :
599 : : static GTY((deletable)) hash_table<atom_hasher> *atom_cache;
600 : :
601 : : /* The normal form of an atom is an atomic constraint. */
602 : :
603 : : static tree
604 : 13508427 : normalize_atom (tree t, tree args, norm_info info)
605 : : {
606 : : /* Concept checks are not atomic. */
607 : 13508427 : if (concept_check_p (t))
608 : 7251435 : return normalize_concept_check (t, args, info);
609 : :
610 : : /* Build the parameter mapping for the atom. */
611 : 6256992 : tree map = build_parameter_mapping (t, args, info.ctx_parms ());
612 : :
613 : : /* Build a new info object for the atom. */
614 : 6256992 : tree ci = build_tree_list (t, info.context);
615 : :
616 : 6256992 : tree atom = build1 (ATOMIC_CONSTR, ci, map);
617 : :
618 : : /* Remember whether the expression of this atomic constraint belongs to
619 : : a concept definition by inspecting in_decl, which should always be set
620 : : in this case either by norm_info::update_context (when recursing into a
621 : : concept-id during normalization) or by normalize_concept_definition
622 : : (when starting out with a concept-id). */
623 : 12409205 : if (info.in_decl && concept_definition_p (info.in_decl))
624 : 5692820 : ATOMIC_CONSTR_EXPR_FROM_CONCEPT_P (atom) = true;
625 : :
626 : 6256992 : if (!info.generate_diagnostics)
627 : : {
628 : : /* Cache the ATOMIC_CONSTRs that we return, so that sat_hasher::equal
629 : : later can cheaply compare two atoms using just pointer equality. */
630 : 6250228 : if (!atom_cache)
631 : 22190 : atom_cache = hash_table<atom_hasher>::create_ggc (31);
632 : 6250228 : tree *slot = atom_cache->find_slot (atom, INSERT);
633 : 6250228 : if (*slot)
634 : : return *slot;
635 : :
636 : : /* Find all template parameters used in the targets of the parameter
637 : : mapping, and store a list of them in the TREE_TYPE of the mapping.
638 : : This list will be used by sat_hasher to determine the subset of
639 : : supplied template arguments that the satisfaction value of the atom
640 : : depends on. */
641 : 6080496 : if (map)
642 : : {
643 : 6079933 : tree targets = make_tree_vec (list_length (map));
644 : 6079933 : int i = 0;
645 : 16907987 : for (tree node = map; node; node = TREE_CHAIN (node))
646 : : {
647 : 10828054 : tree target = TREE_PURPOSE (node);
648 : 10828054 : TREE_VEC_ELT (targets, i++) = target;
649 : : }
650 : 6079933 : tree target_parms = find_template_parameters (targets,
651 : : info.initial_parms);
652 : 6079933 : TREE_TYPE (map) = target_parms;
653 : : }
654 : :
655 : 6080496 : *slot = atom;
656 : : }
657 : : return atom;
658 : : }
659 : :
660 : : /* Returns the normal form of an expression. */
661 : :
662 : : static tree
663 : 20039749 : normalize_expression (tree t, tree args, norm_info info)
664 : : {
665 : 20039749 : if (!t)
666 : : return NULL_TREE;
667 : :
668 : 20039749 : if (t == error_mark_node)
669 : : return error_mark_node;
670 : :
671 : 20039634 : switch (TREE_CODE (t))
672 : : {
673 : 6248557 : case TRUTH_ANDIF_EXPR:
674 : 6248557 : return normalize_logical_operation (t, args, CONJ_CONSTR, info);
675 : 282650 : case TRUTH_ORIF_EXPR:
676 : 282650 : return normalize_logical_operation (t, args, DISJ_CONSTR, info);
677 : 13508427 : default:
678 : 13508427 : return normalize_atom (t, args, info);
679 : : }
680 : : }
681 : :
682 : : /* Cache of the normalized form of constraints. Marked as deletable because it
683 : : can all be recalculated. */
684 : : static GTY((deletable)) hash_map<tree,tree> *normalized_map;
685 : :
686 : : static tree
687 : 1236244 : get_normalized_constraints (tree t, norm_info info)
688 : : {
689 : 1236244 : auto_timevar time (TV_CONSTRAINT_NORM);
690 : 1236244 : return normalize_expression (t, NULL_TREE, info);
691 : 1236244 : }
692 : :
693 : : /* Returns the normalized constraints from a constraint-info object
694 : : or NULL_TREE if the constraints are null. IN_DECL provides the
695 : : declaration to which the constraints belong. */
696 : :
697 : : static tree
698 : 807153 : get_normalized_constraints_from_info (tree ci, tree in_decl, bool diag = false)
699 : : {
700 : 807153 : if (ci == NULL_TREE)
701 : : return NULL_TREE;
702 : :
703 : : /* Substitution errors during normalization are fatal. */
704 : 807149 : ++processing_template_decl;
705 : 807149 : norm_info info (in_decl, diag);
706 : 1614298 : tree t = get_normalized_constraints (CI_ASSOCIATED_CONSTRAINTS (ci), info);
707 : 807149 : --processing_template_decl;
708 : :
709 : 807149 : return t;
710 : : }
711 : :
712 : : /* Returns the normalized constraints for the declaration D. */
713 : :
714 : : static tree
715 : 112232712 : get_normalized_constraints_from_decl (tree d, bool diag = false)
716 : : {
717 : 112232712 : tree tmpl;
718 : 112232712 : tree decl;
719 : :
720 : : /* For inherited constructors, consider the original declaration;
721 : : it has the correct template information attached. */
722 : 112232712 : d = strip_inheriting_ctors (d);
723 : :
724 : 112232712 : if (regenerated_lambda_fn_p (d))
725 : : {
726 : : /* If this lambda was regenerated, DECL_TEMPLATE_PARMS doesn't contain
727 : : all in-scope template parameters, but the lambda from which it was
728 : : ultimately regenerated does, so use that instead. */
729 : 343556 : tree lambda = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (d));
730 : 343556 : lambda = most_general_lambda (lambda);
731 : 343556 : d = lambda_function (lambda);
732 : : }
733 : :
734 : 112232712 : if (TREE_CODE (d) == TEMPLATE_DECL)
735 : : {
736 : 83167063 : tmpl = d;
737 : 83167063 : decl = DECL_TEMPLATE_RESULT (tmpl);
738 : : }
739 : : else
740 : : {
741 : 29065649 : if (tree ti = DECL_TEMPLATE_INFO (d))
742 : 19797649 : tmpl = TI_TEMPLATE (ti);
743 : : else
744 : : tmpl = NULL_TREE;
745 : 29065649 : decl = d;
746 : : }
747 : :
748 : : /* Get the most general template for the declaration, and compute
749 : : arguments from that. This ensures that the arguments used for
750 : : normalization are always template parameters and not arguments
751 : : used for outer specializations. For example:
752 : :
753 : : template<typename T>
754 : : struct S {
755 : : template<typename U> requires C<T, U> void f(U);
756 : : };
757 : :
758 : : S<int>::f(0);
759 : :
760 : : When we normalize the requirements for S<int>::f, we want the
761 : : arguments to be {T, U}, not {int, U}. One reason for this is that
762 : : accepting the latter causes the template parameter level of U
763 : : to be reduced in a way that makes it overly difficult substitute
764 : : concrete arguments (i.e., eventually {int, int} during satisfaction. */
765 : 112232712 : if (tmpl)
766 : : {
767 : 102964712 : if (DECL_LANG_SPECIFIC (tmpl) && !DECL_TEMPLATE_SPECIALIZATION (tmpl))
768 : 99704338 : tmpl = most_general_template (tmpl);
769 : : }
770 : :
771 : 102964712 : d = tmpl ? tmpl : decl;
772 : :
773 : : /* If we're not diagnosing errors, use cached constraints, if any. */
774 : 112232712 : if (!diag)
775 : 224362912 : if (tree *p = hash_map_safe_get (normalized_map, d))
776 : 92746910 : return *p;
777 : :
778 : 19485802 : tree norm = NULL_TREE;
779 : 19485802 : if (tree ci = get_constraints (d))
780 : : {
781 : 656998 : push_access_scope_guard pas (decl);
782 : 656998 : norm = get_normalized_constraints_from_info (ci, tmpl, diag);
783 : 656998 : }
784 : :
785 : 19485802 : if (!diag)
786 : 19484882 : hash_map_safe_put<hm_ggc> (normalized_map, d, norm);
787 : :
788 : 19485802 : return norm;
789 : : }
790 : :
791 : : /* Returns the normal form of TMPL's definition. */
792 : :
793 : : static tree
794 : 559940 : normalize_concept_definition (tree tmpl, bool diag)
795 : : {
796 : 559940 : if (!norm_cache)
797 : 569 : norm_cache = hash_table<norm_hasher>::create_ggc (31);
798 : 559940 : norm_entry entry = {tmpl, NULL_TREE, NULL_TREE};
799 : :
800 : 559940 : if (!diag)
801 : 559770 : if (norm_entry *found = norm_cache->find (&entry))
802 : 496658 : return found->norm;
803 : :
804 : 63282 : gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
805 : 63282 : tree def = get_concept_definition (DECL_TEMPLATE_RESULT (tmpl));
806 : 63282 : ++processing_template_decl;
807 : 63282 : norm_info info (tmpl, diag);
808 : 63282 : tree norm = get_normalized_constraints (def, info);
809 : 63282 : --processing_template_decl;
810 : :
811 : 63282 : if (!diag)
812 : : {
813 : 63112 : norm_entry **slot = norm_cache->find_slot (&entry, INSERT);
814 : 63112 : entry.norm = norm;
815 : 63112 : *slot = ggc_alloc<norm_entry> ();
816 : 63112 : **slot = entry;
817 : : }
818 : :
819 : : return norm;
820 : : }
821 : :
822 : : /* Normalize an EXPR as a constraint. */
823 : :
824 : : static tree
825 : 2220997 : normalize_constraint_expression (tree expr, norm_info info)
826 : : {
827 : 2220997 : if (!expr || expr == error_mark_node)
828 : : return expr;
829 : :
830 : 2220997 : if (!info.generate_diagnostics)
831 : 4441615 : if (tree *p = hash_map_safe_get (normalized_map, expr))
832 : 1855184 : return *p;
833 : :
834 : 365813 : ++processing_template_decl;
835 : 365813 : tree norm = get_normalized_constraints (expr, info);
836 : 365813 : --processing_template_decl;
837 : :
838 : 365813 : if (!info.generate_diagnostics)
839 : 365663 : hash_map_safe_put<hm_ggc> (normalized_map, expr, norm);
840 : :
841 : : return norm;
842 : : }
843 : :
844 : : /* 17.4.1.2p2. Two constraints are identical if they are formed
845 : : from the same expression and the targets of the parameter mapping
846 : : are equivalent. */
847 : :
848 : : bool
849 : 110935932 : atomic_constraints_identical_p (tree t1, tree t2)
850 : : {
851 : 110935932 : gcc_assert (TREE_CODE (t1) == ATOMIC_CONSTR);
852 : 110935932 : gcc_assert (TREE_CODE (t2) == ATOMIC_CONSTR);
853 : :
854 : 110935932 : if (ATOMIC_CONSTR_EXPR (t1) != ATOMIC_CONSTR_EXPR (t2))
855 : : return false;
856 : :
857 : 25378860 : if (!parameter_mapping_equivalent_p (t1, t2))
858 : : return false;
859 : :
860 : : return true;
861 : : }
862 : :
863 : : /* True if T1 and T2 are equivalent, meaning they have the same syntactic
864 : : structure and all corresponding constraints are identical. */
865 : :
866 : : bool
867 : 3994070 : constraints_equivalent_p (tree t1, tree t2)
868 : : {
869 : 3994070 : gcc_assert (CONSTR_P (t1));
870 : 3994070 : gcc_assert (CONSTR_P (t2));
871 : :
872 : 3994070 : if (TREE_CODE (t1) != TREE_CODE (t2))
873 : : return false;
874 : :
875 : 3943612 : switch (TREE_CODE (t1))
876 : : {
877 : 1993637 : case CONJ_CONSTR:
878 : 1993637 : case DISJ_CONSTR:
879 : 1993637 : if (!constraints_equivalent_p (TREE_OPERAND (t1, 0),
880 : 1993637 : TREE_OPERAND (t2, 0)))
881 : : return false;
882 : 1927169 : if (!constraints_equivalent_p (TREE_OPERAND (t1, 1),
883 : 1927169 : TREE_OPERAND (t2, 1)))
884 : : return false;
885 : : break;
886 : 1949975 : case ATOMIC_CONSTR:
887 : 1949975 : if (!atomic_constraints_identical_p (t1, t2))
888 : : return false;
889 : : break;
890 : : default:
891 : : gcc_unreachable ();
892 : : }
893 : : return true;
894 : : }
895 : :
896 : : /* Compute the hash value for T. */
897 : :
898 : : hashval_t
899 : 402300511 : hash_atomic_constraint (tree t)
900 : : {
901 : 402300511 : gcc_assert (TREE_CODE (t) == ATOMIC_CONSTR);
902 : :
903 : : /* Hash the identity of the expression. */
904 : 402300511 : hashval_t val = htab_hash_pointer (ATOMIC_CONSTR_EXPR (t));
905 : :
906 : : /* Hash the targets of the parameter map. */
907 : 402300511 : tree p = ATOMIC_CONSTR_MAP (t);
908 : 1054283538 : while (p)
909 : : {
910 : 651983027 : val = iterative_hash_template_arg (TREE_PURPOSE (p), val);
911 : 651983027 : p = TREE_CHAIN (p);
912 : : }
913 : :
914 : 402300511 : return val;
915 : : }
916 : :
917 : : namespace inchash
918 : : {
919 : :
920 : : static void
921 : 21637763 : add_constraint (tree t, hash& h)
922 : : {
923 : 43068870 : h.add_int (TREE_CODE (t));
924 : 43068870 : switch (TREE_CODE (t))
925 : : {
926 : 21431107 : case CONJ_CONSTR:
927 : 21431107 : case DISJ_CONSTR:
928 : 21431107 : add_constraint (TREE_OPERAND (t, 0), h);
929 : 21431107 : add_constraint (TREE_OPERAND (t, 1), h);
930 : 21431107 : break;
931 : 21637763 : case ATOMIC_CONSTR:
932 : 21637763 : h.merge_hash (hash_atomic_constraint (t));
933 : 21637763 : break;
934 : 0 : default:
935 : 0 : gcc_unreachable ();
936 : : }
937 : 21637763 : }
938 : :
939 : : }
940 : :
941 : : /* Computes a hash code for the constraint T. */
942 : :
943 : : hashval_t
944 : 206656 : iterative_hash_constraint (tree t, hashval_t val)
945 : : {
946 : 206656 : gcc_assert (CONSTR_P (t));
947 : 206656 : inchash::hash h (val);
948 : 206656 : inchash::add_constraint (t, h);
949 : 206656 : return h.end ();
950 : : }
951 : :
952 : : // -------------------------------------------------------------------------- //
953 : : // Constraint Semantic Processing
954 : : //
955 : : // The following functions are called by the parser and substitution rules
956 : : // to create and evaluate constraint-related nodes.
957 : :
958 : : // The constraints associated with the current template parameters.
959 : : tree
960 : 31386079 : current_template_constraints (void)
961 : : {
962 : 31386079 : if (!current_template_parms)
963 : : return NULL_TREE;
964 : 31386076 : tree tmpl_constr = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
965 : 31386076 : return build_constraints (tmpl_constr, NULL_TREE);
966 : : }
967 : :
968 : : /* If the recently parsed TYPE declares or defines a template or
969 : : template specialization, get its corresponding constraints from the
970 : : current template parameters and bind them to TYPE's declaration. */
971 : :
972 : : tree
973 : 16138415 : associate_classtype_constraints (tree type)
974 : : {
975 : 16138415 : if (!type || type == error_mark_node || !CLASS_TYPE_P (type))
976 : : return type;
977 : :
978 : : /* An explicit class template specialization has no template parameters. */
979 : 16138194 : if (!current_template_parms)
980 : : return type;
981 : :
982 : 13561585 : if (CLASSTYPE_IS_TEMPLATE (type) || CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
983 : : {
984 : 13308166 : tree decl = TYPE_STUB_DECL (type);
985 : 13308166 : tree ci = current_template_constraints ();
986 : :
987 : : /* An implicitly instantiated member template declaration already
988 : : has associated constraints. If it is defined outside of its
989 : : class, then we need match these constraints against those of
990 : : original declaration. */
991 : 13308166 : if (tree orig_ci = get_constraints (decl))
992 : : {
993 : 219017 : if (int extra_levels = (TMPL_PARMS_DEPTH (current_template_parms)
994 : 1364792 : - TMPL_ARGS_DEPTH (TYPE_TI_ARGS (type))))
995 : : {
996 : : /* If there is a discrepancy between the current template depth
997 : : and the template depth of the original declaration, then we
998 : : must be redeclaring a class template as part of a friend
999 : : declaration within another class template. Before matching
1000 : : constraints, we need to reduce the template parameter level
1001 : : within the current constraints via substitution. */
1002 : 9 : tree outer_gtargs = template_parms_to_args (current_template_parms);
1003 : 9 : TREE_VEC_LENGTH (outer_gtargs) = extra_levels;
1004 : 9 : ci = tsubst_constraint_info (ci, outer_gtargs, tf_none, NULL_TREE);
1005 : : }
1006 : 219017 : if (!equivalent_constraints (ci, orig_ci))
1007 : : {
1008 : 6 : auto_diagnostic_group d;
1009 : 6 : error ("%qT does not match original declaration", type);
1010 : 6 : tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
1011 : 6 : location_t loc = DECL_SOURCE_LOCATION (tmpl);
1012 : 6 : inform (loc, "original template declaration here");
1013 : : /* Fall through, so that we define the type anyway. */
1014 : 6 : }
1015 : 219017 : return type;
1016 : : }
1017 : 13089149 : set_constraints (decl, ci);
1018 : : }
1019 : : return type;
1020 : : }
1021 : :
1022 : : /* Create an empty constraint info block. */
1023 : :
1024 : : static inline tree_constraint_info*
1025 : 4696928 : build_constraint_info ()
1026 : : {
1027 : 4696928 : return (tree_constraint_info *)make_node (CONSTRAINT_INFO);
1028 : : }
1029 : :
1030 : : /* Build a constraint-info object that contains the associated constraints
1031 : : of a declaration. This also includes the declaration's template
1032 : : requirements (TREQS) and any trailing requirements for a function
1033 : : declarator (DREQS). Note that both TREQS and DREQS must be constraints.
1034 : :
1035 : : If the declaration has neither template nor declaration requirements
1036 : : this returns NULL_TREE, indicating an unconstrained declaration. */
1037 : :
1038 : : tree
1039 : 75179459 : build_constraints (tree tr, tree dr)
1040 : : {
1041 : 75179459 : if (!tr && !dr)
1042 : : return NULL_TREE;
1043 : :
1044 : 4696928 : tree_constraint_info* ci = build_constraint_info ();
1045 : 4696928 : ci->template_reqs = tr;
1046 : 4696928 : ci->declarator_reqs = dr;
1047 : 4696928 : ci->associated_constr = combine_constraint_expressions (tr, dr);
1048 : :
1049 : 4696928 : return (tree)ci;
1050 : : }
1051 : :
1052 : : /* Add constraint RHS to the end of CONSTRAINT_INFO ci. */
1053 : :
1054 : : tree
1055 : 60 : append_constraint (tree ci, tree rhs)
1056 : : {
1057 : 60 : tree tr = ci ? CI_TEMPLATE_REQS (ci) : NULL_TREE;
1058 : 20 : tree dr = ci ? CI_DECLARATOR_REQS (ci) : NULL_TREE;
1059 : 60 : dr = combine_constraint_expressions (dr, rhs);
1060 : 60 : if (ci)
1061 : : {
1062 : 10 : CI_DECLARATOR_REQS (ci) = dr;
1063 : 10 : tree ac = combine_constraint_expressions (tr, dr);
1064 : 20 : CI_ASSOCIATED_CONSTRAINTS (ci) = ac;
1065 : : }
1066 : : else
1067 : 50 : ci = build_constraints (tr, dr);
1068 : 60 : return ci;
1069 : : }
1070 : :
1071 : : /* A mapping from declarations to constraint information. */
1072 : :
1073 : : static GTY ((cache)) decl_tree_cache_map *decl_constraints;
1074 : :
1075 : : /* Returns the template constraints of declaration T. If T is not
1076 : : constrained, return NULL_TREE. Note that T must be non-null. */
1077 : :
1078 : : tree
1079 : 453824170 : get_constraints (const_tree t)
1080 : : {
1081 : 453824170 : if (!flag_concepts)
1082 : : return NULL_TREE;
1083 : 201338152 : if (!decl_constraints)
1084 : : return NULL_TREE;
1085 : :
1086 : 198098184 : gcc_assert (DECL_P (t));
1087 : 198098184 : if (TREE_CODE (t) == TEMPLATE_DECL)
1088 : 46918552 : t = DECL_TEMPLATE_RESULT (t);
1089 : 198098184 : tree* found = decl_constraints->get (CONST_CAST_TREE (t));
1090 : 198098184 : if (found)
1091 : 21030468 : return *found;
1092 : : else
1093 : : return NULL_TREE;
1094 : : }
1095 : :
1096 : : /* Associate the given constraint information CI with the declaration
1097 : : T. If T is a template, then the constraints are associated with
1098 : : its underlying declaration. Don't build associations if CI is
1099 : : NULL_TREE. */
1100 : :
1101 : : void
1102 : 73583126 : set_constraints (tree t, tree ci)
1103 : : {
1104 : 73583126 : if (!ci)
1105 : : return;
1106 : 8535861 : gcc_assert (t && flag_concepts);
1107 : 8535861 : if (TREE_CODE (t) == TEMPLATE_DECL)
1108 : 81152 : t = DECL_TEMPLATE_RESULT (t);
1109 : 8535861 : bool found = hash_map_safe_put<hm_ggc> (decl_constraints, t, ci);
1110 : 8535861 : gcc_assert (!found);
1111 : : }
1112 : :
1113 : : /* Remove the associated constraints of the declaration T. */
1114 : :
1115 : : void
1116 : 3023740 : remove_constraints (tree t)
1117 : : {
1118 : 3023740 : gcc_checking_assert (DECL_P (t));
1119 : 3023740 : if (TREE_CODE (t) == TEMPLATE_DECL)
1120 : 74 : t = DECL_TEMPLATE_RESULT (t);
1121 : :
1122 : 3023740 : if (decl_constraints)
1123 : 2900367 : decl_constraints->remove (t);
1124 : 3023740 : }
1125 : :
1126 : : /* If DECL is a friend, substitute into REQS to produce requirements suitable
1127 : : for declaration matching. */
1128 : :
1129 : : tree
1130 : 23390512 : maybe_substitute_reqs_for (tree reqs, const_tree decl)
1131 : : {
1132 : 23390512 : if (reqs == NULL_TREE)
1133 : : return NULL_TREE;
1134 : :
1135 : 1915762 : decl = STRIP_TEMPLATE (decl);
1136 : 1915762 : if (DECL_UNIQUE_FRIEND_P (decl) && DECL_TEMPLATE_INFO (decl))
1137 : : {
1138 : 23797 : tree tmpl = DECL_TI_TEMPLATE (decl);
1139 : 23797 : tree outer_args = outer_template_args (decl);
1140 : 23797 : processing_template_decl_sentinel s;
1141 : 23797 : if (PRIMARY_TEMPLATE_P (tmpl)
1142 : 23797 : || uses_template_parms (outer_args))
1143 : 23797 : ++processing_template_decl;
1144 : 23797 : reqs = tsubst_constraint (reqs, outer_args,
1145 : : tf_warning_or_error, NULL_TREE);
1146 : 23797 : }
1147 : : return reqs;
1148 : : }
1149 : :
1150 : : /* Returns the trailing requires clause of the declarator of
1151 : : a template declaration T or NULL_TREE if none. */
1152 : :
1153 : : tree
1154 : 129644874 : get_trailing_function_requirements (tree t)
1155 : : {
1156 : 129644874 : tree ci = get_constraints (t);
1157 : 129644874 : if (!ci)
1158 : : return NULL_TREE;
1159 : 12300746 : return CI_DECLARATOR_REQS (ci);
1160 : : }
1161 : :
1162 : : /* Construct a sequence of template arguments by prepending
1163 : : ARG to REST. Either ARG or REST may be null. */
1164 : : static tree
1165 : 9425295 : build_concept_check_arguments (tree arg, tree rest)
1166 : : {
1167 : 9425295 : gcc_assert (rest ? TREE_CODE (rest) == TREE_VEC : true);
1168 : 9425295 : tree args;
1169 : 9425295 : if (arg)
1170 : : {
1171 : 6946329 : int n = rest ? TREE_VEC_LENGTH (rest) : 0;
1172 : 4732082 : args = make_tree_vec (n + 1);
1173 : 4732082 : TREE_VEC_ELT (args, 0) = arg;
1174 : 4732082 : if (rest)
1175 : 4801902 : for (int i = 0; i < n; ++i)
1176 : 2587655 : TREE_VEC_ELT (args, i + 1) = TREE_VEC_ELT (rest, i);
1177 : 2214247 : int def = rest ? GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (rest) : 0;
1178 : 4732082 : SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args, def + 1);
1179 : : }
1180 : : else
1181 : : {
1182 : : args = rest;
1183 : : }
1184 : 9425295 : return args;
1185 : : }
1186 : :
1187 : : /* Builds an id-expression of the form `C<Args...>` where C is a standard
1188 : : concept. */
1189 : :
1190 : : static tree
1191 : 9425295 : build_standard_check (tree tmpl, tree args, tsubst_flags_t complain)
1192 : : {
1193 : 18850590 : gcc_assert (concept_definition_p (tmpl));
1194 : 9425295 : gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
1195 : 9425295 : if (TREE_DEPRECATED (DECL_TEMPLATE_RESULT (tmpl)))
1196 : 9 : warn_deprecated_use (DECL_TEMPLATE_RESULT (tmpl), NULL_TREE);
1197 : 9425295 : tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
1198 : 9425295 : args = coerce_template_parms (parms, args, tmpl, complain);
1199 : 9425295 : if (args == error_mark_node)
1200 : : return error_mark_node;
1201 : 8894148 : return build2 (TEMPLATE_ID_EXPR, boolean_type_node, tmpl, args);
1202 : : }
1203 : :
1204 : : /* Construct an expression that checks TARGET using ARGS. */
1205 : :
1206 : : tree
1207 : 4693213 : build_concept_check (tree target, tree args, tsubst_flags_t complain)
1208 : : {
1209 : 4693213 : return build_concept_check (target, NULL_TREE, args, complain);
1210 : : }
1211 : :
1212 : : /* Construct an expression that checks the concept given by DECL. If
1213 : : concept_definition_p (DECL) is false, this returns null. */
1214 : :
1215 : : tree
1216 : 9425295 : build_concept_check (tree decl, tree arg, tree rest, tsubst_flags_t complain)
1217 : : {
1218 : 9425295 : tree args = build_concept_check_arguments (arg, rest);
1219 : :
1220 : 18850590 : if (concept_definition_p (decl))
1221 : 9425295 : return build_standard_check (decl, args, complain);
1222 : :
1223 : 0 : return error_mark_node;
1224 : : }
1225 : :
1226 : : /* Build a template-id that can participate in a concept check. */
1227 : :
1228 : : static tree
1229 : 3988305 : build_concept_id (tree decl, tree args)
1230 : : {
1231 : 0 : return build_concept_check (decl, args, tf_warning_or_error);
1232 : : }
1233 : :
1234 : : /* Build a template-id that can participate in a concept check, preserving
1235 : : the source location of the original template-id. */
1236 : :
1237 : : tree
1238 : 3988305 : build_concept_id (tree expr)
1239 : : {
1240 : 3988305 : gcc_assert (TREE_CODE (expr) == TEMPLATE_ID_EXPR);
1241 : 3988305 : tree id = build_concept_id (TREE_OPERAND (expr, 0), TREE_OPERAND (expr, 1));
1242 : 3988305 : protected_set_expr_location (id, cp_expr_location (expr));
1243 : 3988305 : return id;
1244 : : }
1245 : :
1246 : : /* Build as template-id with a placeholder that can be used as a
1247 : : type constraint.
1248 : :
1249 : : Note that this will diagnose errors if the initial concept check
1250 : : cannot be built. */
1251 : :
1252 : : tree
1253 : 2637466 : build_type_constraint (tree decl, tree args, tsubst_flags_t complain)
1254 : : {
1255 : 2637466 : tree wildcard = build_nt (WILDCARD_DECL);
1256 : 2637466 : ++processing_template_decl;
1257 : 2637466 : tree check = build_concept_check (decl, wildcard, args, complain);
1258 : 2637466 : --processing_template_decl;
1259 : 2637466 : return check;
1260 : : }
1261 : :
1262 : : /* Returns a TYPE_DECL that contains sufficient information to
1263 : : build a template parameter of the same kind as PROTO and
1264 : : constrained by the concept declaration CNC. Note that PROTO
1265 : : is the first template parameter of CNC.
1266 : :
1267 : : If specified, ARGS provides additional arguments to the
1268 : : constraint check. */
1269 : : tree
1270 : 1777082 : build_constrained_parameter (tree cnc, tree proto, tree args)
1271 : : {
1272 : 1777082 : tree name = DECL_NAME (cnc);
1273 : 1777082 : tree type = TREE_TYPE (proto);
1274 : 1777082 : tree decl = build_decl (input_location, TYPE_DECL, name, type);
1275 : 1777082 : CONSTRAINED_PARM_PROTOTYPE (decl) = proto;
1276 : 1777082 : CONSTRAINED_PARM_CONCEPT (decl) = cnc;
1277 : 1777082 : CONSTRAINED_PARM_EXTRA_ARGS (decl) = args;
1278 : 1777082 : return decl;
1279 : : }
1280 : :
1281 : : /* Create a constraint expression for the given DECL that evaluates the
1282 : : requirements specified by CONSTR, a TYPE_DECL that contains all the
1283 : : information necessary to build the requirements (see finish_concept_name
1284 : : for the layout of that TYPE_DECL).
1285 : :
1286 : : Note that the constraints are neither reduced nor decomposed. That is
1287 : : done only after the requires clause has been parsed (or not). */
1288 : :
1289 : : tree
1290 : 147867207 : finish_shorthand_constraint (tree decl, tree constr)
1291 : : {
1292 : : /* No requirements means no constraints. */
1293 : 147867207 : if (!constr)
1294 : : return NULL_TREE;
1295 : :
1296 : 1777058 : if (error_operand_p (constr))
1297 : : return NULL_TREE;
1298 : :
1299 : 1777058 : tree proto = CONSTRAINED_PARM_PROTOTYPE (constr);
1300 : 1777058 : tree con = CONSTRAINED_PARM_CONCEPT (constr);
1301 : 1777058 : tree args = CONSTRAINED_PARM_EXTRA_ARGS (constr);
1302 : :
1303 : 1777058 : bool variadic_concept_p = template_parameter_pack_p (proto);
1304 : 1777058 : bool declared_pack_p = template_parameter_pack_p (decl);
1305 : 1777058 : bool apply_to_each_p = (cxx_dialect >= cxx20) ? true : !variadic_concept_p;
1306 : :
1307 : : /* Get the argument and overload used for the requirement
1308 : : and adjust it if we're going to expand later. */
1309 : 1777058 : tree arg = template_parm_to_arg (decl);
1310 : 1777058 : if (apply_to_each_p && declared_pack_p)
1311 : 13576 : arg = PACK_EXPANSION_PATTERN (TREE_VEC_ELT (ARGUMENT_PACK_ARGS (arg), 0));
1312 : :
1313 : : /* Build the concept constraint-expression. */
1314 : 1777058 : tree tmpl = DECL_TI_TEMPLATE (con);
1315 : 1777058 : tree check = tmpl;
1316 : 1777058 : if (TREE_CODE (con) == FUNCTION_DECL)
1317 : 0 : check = ovl_make (tmpl);
1318 : 1777058 : check = build_concept_check (check, arg, args, tf_warning_or_error);
1319 : :
1320 : : /* Make the check a fold-expression if needed.
1321 : : Use UNKNOWN_LOCATION so write_template_args can tell the
1322 : : difference between this and a fold the user wrote. */
1323 : 1777058 : if (apply_to_each_p && declared_pack_p)
1324 : 13576 : check = finish_left_unary_fold_expr (UNKNOWN_LOCATION,
1325 : : check, TRUTH_ANDIF_EXPR);
1326 : :
1327 : : return check;
1328 : : }
1329 : :
1330 : : /* Returns a conjunction of shorthand requirements for the template
1331 : : parameter list PARMS. Note that the requirements are stored in
1332 : : the TYPE of each tree node. */
1333 : :
1334 : : tree
1335 : 19723070 : get_shorthand_constraints (tree parms)
1336 : : {
1337 : 19723070 : tree result = NULL_TREE;
1338 : 19723070 : parms = INNERMOST_TEMPLATE_PARMS (parms);
1339 : 56343547 : for (int i = 0; i < TREE_VEC_LENGTH (parms); ++i)
1340 : : {
1341 : 36620477 : tree parm = TREE_VEC_ELT (parms, i);
1342 : 36620477 : tree constr = TEMPLATE_PARM_CONSTRAINTS (parm);
1343 : 36620477 : result = combine_constraint_expressions (result, constr);
1344 : : }
1345 : 19723070 : return result;
1346 : : }
1347 : :
1348 : : /* Given the concept check T from a constrained-type-specifier, extract
1349 : : its TMPL and ARGS. FIXME why do we need two different forms of
1350 : : constrained-type-specifier? */
1351 : :
1352 : : void
1353 : 79093850 : placeholder_extract_concept_and_args (tree t, tree &tmpl, tree &args)
1354 : : {
1355 : 79093850 : if (concept_check_p (t))
1356 : : {
1357 : 79093850 : tmpl = TREE_OPERAND (t, 0);
1358 : 79093850 : args = TREE_OPERAND (t, 1);
1359 : 79093850 : return;
1360 : : }
1361 : :
1362 : 0 : if (TREE_CODE (t) == TYPE_DECL)
1363 : : {
1364 : : /* A constrained parameter. Build a constraint check
1365 : : based on the prototype parameter and then extract the
1366 : : arguments from that. */
1367 : 0 : tree proto = CONSTRAINED_PARM_PROTOTYPE (t);
1368 : 0 : tree check = finish_shorthand_constraint (proto, t);
1369 : 0 : placeholder_extract_concept_and_args (check, tmpl, args);
1370 : 0 : return;
1371 : : }
1372 : : }
1373 : :
1374 : : /* Returns true iff the placeholders C1 and C2 are equivalent. C1
1375 : : and C2 can be either TEMPLATE_TYPE_PARM or template-ids. */
1376 : :
1377 : : bool
1378 : 455135769 : equivalent_placeholder_constraints (tree c1, tree c2)
1379 : : {
1380 : 455135769 : if (c1 && TREE_CODE (c1) == TEMPLATE_TYPE_PARM)
1381 : : /* A constrained auto. */
1382 : 455135769 : c1 = PLACEHOLDER_TYPE_CONSTRAINTS (c1);
1383 : 455135769 : if (c2 && TREE_CODE (c2) == TEMPLATE_TYPE_PARM)
1384 : 455135769 : c2 = PLACEHOLDER_TYPE_CONSTRAINTS (c2);
1385 : :
1386 : 455135769 : if (c1 == c2)
1387 : : return true;
1388 : 1376446 : if (!c1 || !c2)
1389 : : return false;
1390 : 1187717 : if (c1 == error_mark_node || c2 == error_mark_node)
1391 : : /* We get here during satisfaction; when a deduction constraint
1392 : : fails, substitution can produce an error_mark_node for the
1393 : : placeholder constraints. */
1394 : : return false;
1395 : :
1396 : 1187717 : tree t1, t2, a1, a2;
1397 : 1187717 : placeholder_extract_concept_and_args (c1, t1, a1);
1398 : 1187717 : placeholder_extract_concept_and_args (c2, t2, a2);
1399 : :
1400 : 1187717 : if (t1 != t2)
1401 : : return false;
1402 : :
1403 : 636334 : int len1 = TREE_VEC_LENGTH (a1);
1404 : 636334 : int len2 = TREE_VEC_LENGTH (a2);
1405 : 636334 : if (len1 != len2)
1406 : : return false;
1407 : :
1408 : : /* Skip the first argument so we don't infinitely recurse.
1409 : : Also, they may differ in template parameter index. */
1410 : 899623 : for (int i = 1; i < len1; ++i)
1411 : : {
1412 : 373183 : tree t1 = TREE_VEC_ELT (a1, i);
1413 : 373183 : tree t2 = TREE_VEC_ELT (a2, i);
1414 : 373183 : if (!template_args_equal (t1, t2))
1415 : : return false;
1416 : : }
1417 : : return true;
1418 : : }
1419 : :
1420 : : /* Return a hash value for the placeholder ATOMIC_CONSTR C. */
1421 : :
1422 : : hashval_t
1423 : 76718042 : iterative_hash_placeholder_constraint (tree c, hashval_t val)
1424 : : {
1425 : 76718042 : tree t, a;
1426 : 76718042 : placeholder_extract_concept_and_args (c, t, a);
1427 : :
1428 : : /* Like hash_tmpl_and_args, but skip the first argument. */
1429 : 76718042 : val = iterative_hash_object (DECL_UID (t), val);
1430 : :
1431 : 137034466 : for (int i = TREE_VEC_LENGTH (a)-1; i > 0; --i)
1432 : 60316424 : val = iterative_hash_template_arg (TREE_VEC_ELT (a, i), val);
1433 : :
1434 : 76718042 : return val;
1435 : : }
1436 : :
1437 : : /* Substitute through the expression of a simple requirement or
1438 : : compound requirement. */
1439 : :
1440 : : static tree
1441 : 3258766 : tsubst_valid_expression_requirement (tree t, tree args, sat_info info)
1442 : : {
1443 : 3258766 : tsubst_flags_t quiet = info.complain & ~tf_warning_or_error;
1444 : 3258766 : tree r = tsubst_expr (t, args, quiet, info.in_decl);
1445 : 3256066 : if (convert_to_void (r, ICV_STATEMENT, quiet) != error_mark_node)
1446 : : return r;
1447 : :
1448 : 166531 : if (info.diagnose_unsatisfaction_p ())
1449 : : {
1450 : 217 : location_t loc = cp_expr_loc_or_input_loc (t);
1451 : 217 : if (diagnosing_failed_constraint::replay_errors_p ())
1452 : : {
1453 : 4 : inform (loc, "the required expression %qE is invalid, because", t);
1454 : 4 : if (r == error_mark_node)
1455 : 3 : tsubst_expr (t, args, info.complain, info.in_decl);
1456 : : else
1457 : 1 : convert_to_void (r, ICV_STATEMENT, info.complain);
1458 : : }
1459 : : else
1460 : 213 : inform (loc, "the required expression %qE is invalid", t);
1461 : : }
1462 : 166314 : else if (info.noisy ())
1463 : : {
1464 : 0 : r = tsubst_expr (t, args, info.complain, info.in_decl);
1465 : 0 : convert_to_void (r, ICV_STATEMENT, info.complain);
1466 : : }
1467 : :
1468 : 166531 : return error_mark_node;
1469 : : }
1470 : :
1471 : :
1472 : : /* Substitute through the simple requirement. */
1473 : :
1474 : : static tree
1475 : 1103124 : tsubst_simple_requirement (tree t, tree args, sat_info info)
1476 : : {
1477 : 1103124 : tree t0 = TREE_OPERAND (t, 0);
1478 : 1103124 : tree expr = tsubst_valid_expression_requirement (t0, args, info);
1479 : 1100424 : if (expr == error_mark_node)
1480 : : return error_mark_node;
1481 : 963761 : if (processing_template_decl)
1482 : 187 : return finish_simple_requirement (EXPR_LOCATION (t), expr);
1483 : 963574 : return boolean_true_node;
1484 : : }
1485 : :
1486 : : /* Subroutine of tsubst_type_requirement that performs the actual substitution
1487 : : and diagnosing. Also used by tsubst_compound_requirement. */
1488 : :
1489 : : static tree
1490 : 2948160 : tsubst_type_requirement_1 (tree t, tree args, sat_info info, location_t loc)
1491 : : {
1492 : 2948160 : tsubst_flags_t quiet = info.complain & ~tf_warning_or_error;
1493 : 2948160 : tree r = tsubst (t, args, quiet, info.in_decl);
1494 : 2948160 : if (r != error_mark_node)
1495 : : return r;
1496 : :
1497 : 100091 : if (info.diagnose_unsatisfaction_p ())
1498 : : {
1499 : 21 : if (diagnosing_failed_constraint::replay_errors_p ())
1500 : : {
1501 : : /* Replay the substitution error. */
1502 : 0 : inform (loc, "the required type %qT is invalid, because", t);
1503 : 0 : tsubst (t, args, info.complain, info.in_decl);
1504 : : }
1505 : : else
1506 : 21 : inform (loc, "the required type %qT is invalid", t);
1507 : : }
1508 : 100070 : else if (info.noisy ())
1509 : 0 : tsubst (t, args, info.complain, info.in_decl);
1510 : :
1511 : 100091 : return error_mark_node;
1512 : : }
1513 : :
1514 : :
1515 : : /* Substitute through the type requirement. */
1516 : :
1517 : : static tree
1518 : 822404 : tsubst_type_requirement (tree t, tree args, sat_info info)
1519 : : {
1520 : 822404 : tree t0 = TREE_OPERAND (t, 0);
1521 : 822404 : tree type = tsubst_type_requirement_1 (t0, args, info, EXPR_LOCATION (t));
1522 : 822404 : if (type == error_mark_node)
1523 : : return error_mark_node;
1524 : 722313 : if (processing_template_decl)
1525 : 8 : return finish_type_requirement (EXPR_LOCATION (t), type);
1526 : 722305 : return boolean_true_node;
1527 : : }
1528 : :
1529 : : /* True if TYPE can be deduced from EXPR. */
1530 : :
1531 : : static bool
1532 : 2068334 : type_deducible_p (tree expr, tree type, tree placeholder, tree args,
1533 : : subst_info info)
1534 : : {
1535 : : /* Make sure deduction is performed against ( EXPR ), so that
1536 : : references are preserved in the result. */
1537 : 2068334 : expr = force_paren_expr_uneval (expr);
1538 : :
1539 : 2068334 : tree deduced_type = do_auto_deduction (type, expr, placeholder,
1540 : : info.complain, adc_requirement,
1541 : : /*outer_targs=*/args);
1542 : :
1543 : 2068334 : return deduced_type != error_mark_node;
1544 : : }
1545 : :
1546 : : /* True if EXPR can not be converted to TYPE. */
1547 : :
1548 : : static bool
1549 : 40 : expression_convertible_p (tree expr, tree type, subst_info info)
1550 : : {
1551 : 40 : tree conv =
1552 : 40 : perform_direct_initialization_if_possible (type, expr, false,
1553 : : info.complain);
1554 : 40 : if (conv == error_mark_node)
1555 : : return false;
1556 : 8 : if (conv == NULL_TREE)
1557 : : {
1558 : 0 : if (info.complain & tf_error)
1559 : : {
1560 : 0 : location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
1561 : 0 : error_at (loc, "cannot convert %qE to %qT", expr, type);
1562 : : }
1563 : 0 : return false;
1564 : : }
1565 : : return true;
1566 : : }
1567 : :
1568 : :
1569 : : /* Substitute through the compound requirement. */
1570 : :
1571 : : static tree
1572 : 2155642 : tsubst_compound_requirement (tree t, tree args, sat_info info)
1573 : : {
1574 : 2155642 : tree t0 = TREE_OPERAND (t, 0);
1575 : 2155642 : tree t1 = TREE_OPERAND (t, 1);
1576 : 2155642 : tree expr = tsubst_valid_expression_requirement (t0, args, info);
1577 : 2155642 : if (expr == error_mark_node)
1578 : : return error_mark_node;
1579 : :
1580 : 2125774 : location_t loc = cp_expr_loc_or_input_loc (expr);
1581 : :
1582 : 2125774 : subst_info quiet (info.complain & ~tf_warning_or_error, info.in_decl);
1583 : :
1584 : : /* Check the noexcept condition. */
1585 : 2125774 : bool noexcept_p = COMPOUND_REQ_NOEXCEPT_P (t);
1586 : 57354 : if (noexcept_p && !processing_template_decl
1587 : 2183125 : && !expr_noexcept_p (expr, quiet.complain))
1588 : : {
1589 : 22 : if (info.diagnose_unsatisfaction_p ())
1590 : 4 : inform (loc, "%qE is not %<noexcept%>", expr);
1591 : : else
1592 : 18 : return error_mark_node;
1593 : : }
1594 : :
1595 : : /* Substitute through the type expression, if any. */
1596 : 2125756 : tree type = tsubst_type_requirement_1 (t1, args, info, EXPR_LOCATION (t));
1597 : 2125756 : if (type == error_mark_node)
1598 : : return error_mark_node;
1599 : :
1600 : : /* Check expression against the result type. */
1601 : 2125756 : if (type && !processing_template_decl)
1602 : : {
1603 : 2068356 : if (tree placeholder = type_uses_auto (type))
1604 : : {
1605 : 2068322 : if (!type_deducible_p (expr, type, placeholder, args, quiet))
1606 : : {
1607 : 621 : if (info.diagnose_unsatisfaction_p ())
1608 : : {
1609 : 38 : if (diagnosing_failed_constraint::replay_errors_p ())
1610 : : {
1611 : 12 : inform (loc,
1612 : : "%qE does not satisfy return-type-requirement, "
1613 : : "because", t0);
1614 : : /* Further explain the reason for the error. */
1615 : 12 : type_deducible_p (expr, type, placeholder, args, info);
1616 : : }
1617 : : else
1618 : 26 : inform (loc,
1619 : : "%qE does not satisfy return-type-requirement", t0);
1620 : : }
1621 : 621 : return error_mark_node;
1622 : : }
1623 : : }
1624 : 34 : else if (!expression_convertible_p (expr, type, quiet))
1625 : : {
1626 : 28 : if (info.diagnose_unsatisfaction_p ())
1627 : : {
1628 : 6 : if (diagnosing_failed_constraint::replay_errors_p ())
1629 : : {
1630 : 6 : inform (loc, "cannot convert %qE to %qT because", t0, type);
1631 : : /* Further explain the reason for the error. */
1632 : 6 : expression_convertible_p (expr, type, info);
1633 : : }
1634 : : else
1635 : 0 : inform (loc, "cannot convert %qE to %qT", t0, type);
1636 : : }
1637 : 28 : return error_mark_node;
1638 : : }
1639 : : }
1640 : :
1641 : 2125107 : if (processing_template_decl)
1642 : 70 : return finish_compound_requirement (EXPR_LOCATION (t),
1643 : 70 : expr, type, noexcept_p);
1644 : 2125037 : return boolean_true_node;
1645 : : }
1646 : :
1647 : : /* Substitute through the nested requirement. */
1648 : :
1649 : : static tree
1650 : 151990 : tsubst_nested_requirement (tree t, tree args, sat_info info)
1651 : : {
1652 : 151990 : if (processing_template_decl)
1653 : : {
1654 : 0 : tree req = TREE_OPERAND (t, 0);
1655 : 0 : req = tsubst_constraint (req, args, info.complain, info.in_decl);
1656 : 0 : if (req == error_mark_node)
1657 : : return error_mark_node;
1658 : 0 : return finish_nested_requirement (EXPR_LOCATION (t), req);
1659 : : }
1660 : :
1661 : 151990 : sat_info quiet (info.complain & ~tf_warning_or_error, info.in_decl);
1662 : 151990 : tree result = constraint_satisfaction_value (t, args, quiet);
1663 : 151990 : if (result == boolean_true_node)
1664 : : return boolean_true_node;
1665 : :
1666 : 341 : if (result == boolean_false_node
1667 : 341 : && info.diagnose_unsatisfaction_p ())
1668 : : {
1669 : 58 : tree expr = TREE_OPERAND (t, 0);
1670 : 58 : location_t loc = cp_expr_location (t);
1671 : 58 : if (diagnosing_failed_constraint::replay_errors_p ())
1672 : : {
1673 : : /* Replay the substitution error. */
1674 : 9 : inform (loc, "nested requirement %qE is not satisfied, because", expr);
1675 : 9 : constraint_satisfaction_value (t, args, info);
1676 : : }
1677 : : else
1678 : 49 : inform (loc, "nested requirement %qE is not satisfied", expr);
1679 : : }
1680 : :
1681 : 341 : return error_mark_node;
1682 : : }
1683 : :
1684 : : /* Substitute ARGS into the requirement T. */
1685 : :
1686 : : static tree
1687 : 4233160 : tsubst_requirement (tree t, tree args, sat_info info)
1688 : : {
1689 : 4233160 : iloc_sentinel loc_s (cp_expr_location (t));
1690 : 4233160 : switch (TREE_CODE (t))
1691 : : {
1692 : 1103124 : case SIMPLE_REQ:
1693 : 1103124 : return tsubst_simple_requirement (t, args, info);
1694 : 822404 : case TYPE_REQ:
1695 : 822404 : return tsubst_type_requirement (t, args, info);
1696 : 2155642 : case COMPOUND_REQ:
1697 : 2155642 : return tsubst_compound_requirement (t, args, info);
1698 : 151990 : case NESTED_REQ:
1699 : 151990 : return tsubst_nested_requirement (t, args, info);
1700 : 0 : default:
1701 : 0 : break;
1702 : : }
1703 : 0 : gcc_unreachable ();
1704 : 4230460 : }
1705 : :
1706 : : static tree
1707 : 1469093 : declare_constraint_vars (tree parms, tree vars)
1708 : : {
1709 : 1469093 : tree s = vars;
1710 : 3744454 : for (tree t = parms; t; t = DECL_CHAIN (t))
1711 : : {
1712 : 2275361 : if (DECL_PACK_P (t))
1713 : : {
1714 : 442 : tree pack = extract_fnparm_pack (t, &s);
1715 : 442 : register_local_specialization (pack, t);
1716 : : }
1717 : : else
1718 : : {
1719 : 2274919 : register_local_specialization (s, t);
1720 : 2274919 : s = DECL_CHAIN (s);
1721 : : }
1722 : : }
1723 : 1469093 : return vars;
1724 : : }
1725 : :
1726 : : /* Substitute through as if checking function parameter types. This
1727 : : will diagnose common parameter type errors. Returns error_mark_node
1728 : : if an error occurred. */
1729 : :
1730 : : static tree
1731 : 1469141 : check_constraint_variables (tree t, tree args, subst_info info)
1732 : : {
1733 : 1469141 : tree types = NULL_TREE;
1734 : 1469141 : tree p = t;
1735 : 3744554 : while (p && !VOID_TYPE_P (p))
1736 : : {
1737 : 2275413 : types = tree_cons (NULL_TREE, TREE_TYPE (p), types);
1738 : 2275413 : p = TREE_CHAIN (p);
1739 : : }
1740 : 1469141 : types = chainon (nreverse (types), void_list_node);
1741 : 1469141 : return tsubst_function_parms (types, args, info.complain, info.in_decl);
1742 : : }
1743 : :
1744 : : /* A subroutine of tsubst_parameterized_constraint. Substitute ARGS
1745 : : into the parameter list T, producing a sequence of constraint
1746 : : variables, declared in the current scope.
1747 : :
1748 : : Note that the caller must establish a local specialization stack
1749 : : prior to calling this function since this substitution will
1750 : : declare the substituted parameters. */
1751 : :
1752 : : static tree
1753 : 1469141 : tsubst_constraint_variables (tree t, tree args, subst_info info)
1754 : : {
1755 : : /* Perform a trial substitution to check for type errors. */
1756 : 1469141 : tree parms = check_constraint_variables (t, args, info);
1757 : 1469141 : if (parms == error_mark_node)
1758 : : return error_mark_node;
1759 : :
1760 : : /* Clear cp_unevaluated_operand across tsubst so that we get a proper chain
1761 : : of PARM_DECLs. */
1762 : 1469093 : int saved_unevaluated_operand = cp_unevaluated_operand;
1763 : 1469093 : cp_unevaluated_operand = 0;
1764 : 1469093 : tree vars = tsubst (t, args, info.complain, info.in_decl);
1765 : 1469093 : cp_unevaluated_operand = saved_unevaluated_operand;
1766 : 1469093 : if (vars == error_mark_node)
1767 : : return error_mark_node;
1768 : 1469093 : return declare_constraint_vars (t, vars);
1769 : : }
1770 : :
1771 : : /* Substitute ARGS into the requires-expression T. [8.4.7]p6. The
1772 : : substitution of template arguments into a requires-expression
1773 : : may result in the formation of invalid types or expressions
1774 : : in its requirements ... In such cases, the expression evaluates
1775 : : to false; it does not cause the program to be ill-formed.
1776 : :
1777 : : When substituting through a REQUIRES_EXPR as part of template
1778 : : instantiation, we call this routine with info.quiet() true.
1779 : :
1780 : : When evaluating a REQUIRES_EXPR that appears outside a template in
1781 : : cp_parser_requires_expression, we call this routine with
1782 : : info.noisy() true.
1783 : :
1784 : : Finally, when diagnosing unsatisfaction from diagnose_atomic_constraint
1785 : : and when diagnosing a false REQUIRES_EXPR via diagnose_constraints,
1786 : : we call this routine with info.diagnose_unsatisfaction_p() true. */
1787 : :
1788 : : static tree
1789 : 2624959 : tsubst_requires_expr (tree t, tree args, sat_info info)
1790 : : {
1791 : 2624959 : local_specialization_stack stack (lss_copy);
1792 : :
1793 : : /* We need to check access during the substitution. */
1794 : 2624959 : deferring_access_check_sentinel acs (dk_no_deferred);
1795 : :
1796 : : /* A requires-expression is an unevaluated context. */
1797 : 2624959 : cp_unevaluated u;
1798 : :
1799 : 2624959 : args = add_extra_args (REQUIRES_EXPR_EXTRA_ARGS (t), args,
1800 : : info.complain, info.in_decl);
1801 : 2624959 : if (processing_template_decl
1802 : 2624959 : && !processing_constraint_expression_p ())
1803 : : {
1804 : : /* We're partially instantiating a generic lambda. Substituting into
1805 : : this requires-expression now may cause its requirements to get
1806 : : checked out of order, so instead just remember the template
1807 : : arguments and wait until we can substitute them all at once.
1808 : :
1809 : : Except if this requires-expr is part of associated constraints
1810 : : that we're substituting into directly (for e.g. declaration
1811 : : matching or dguide constraint rewriting), in which case we need
1812 : : to partially substitute. */
1813 : 1164 : t = copy_node (t);
1814 : 1164 : REQUIRES_EXPR_EXTRA_ARGS (t) = NULL_TREE;
1815 : 1164 : REQUIRES_EXPR_EXTRA_ARGS (t) = build_extra_args (t, args, info.complain);
1816 : 1164 : return t;
1817 : : }
1818 : :
1819 : 2623795 : tree parms = REQUIRES_EXPR_PARMS (t);
1820 : 2623795 : if (parms)
1821 : : {
1822 : 1469141 : parms = tsubst_constraint_variables (parms, args, info);
1823 : 1469141 : if (parms == error_mark_node)
1824 : 48 : return boolean_false_node;
1825 : : }
1826 : :
1827 : 2623747 : tree result = boolean_true_node;
1828 : 2623747 : if (processing_template_decl)
1829 : 245 : result = NULL_TREE;
1830 : 6586917 : for (tree reqs = REQUIRES_EXPR_REQS (t); reqs; reqs = TREE_CHAIN (reqs))
1831 : : {
1832 : 4233160 : tree req = TREE_VALUE (reqs);
1833 : 4233160 : req = tsubst_requirement (req, args, info);
1834 : 4230460 : if (req == error_mark_node)
1835 : : {
1836 : 267630 : result = boolean_false_node;
1837 : 267630 : if (info.diagnose_unsatisfaction_p ())
1838 : : /* Keep going so that we diagnose all failed requirements. */;
1839 : : else
1840 : : break;
1841 : : }
1842 : 3962830 : else if (processing_template_decl)
1843 : 265 : result = tree_cons (NULL_TREE, req, result);
1844 : : }
1845 : 2621047 : if (processing_template_decl && result != boolean_false_node)
1846 : 245 : result = finish_requires_expr (EXPR_LOCATION (t), parms, nreverse (result));
1847 : : return result;
1848 : 2622259 : }
1849 : :
1850 : : /* Public wrapper for the above. */
1851 : :
1852 : : tree
1853 : 2624552 : tsubst_requires_expr (tree t, tree args,
1854 : : tsubst_flags_t complain, tree in_decl)
1855 : : {
1856 : 2624552 : sat_info info (complain, in_decl);
1857 : 2624552 : return tsubst_requires_expr (t, args, info);
1858 : : }
1859 : :
1860 : : /* Substitute ARGS into the constraint information CI, producing a new
1861 : : constraint record. */
1862 : :
1863 : : tree
1864 : 553788 : tsubst_constraint_info (tree t, tree args,
1865 : : tsubst_flags_t complain, tree in_decl)
1866 : : {
1867 : 553788 : if (!t || t == error_mark_node || !check_constraint_info (t))
1868 : : return NULL_TREE;
1869 : :
1870 : 76412 : tree tr = tsubst_constraint (CI_TEMPLATE_REQS (t), args, complain, in_decl);
1871 : 152824 : tree dr = tsubst_constraint (CI_DECLARATOR_REQS (t), args, complain, in_decl);
1872 : 76412 : return build_constraints (tr, dr);
1873 : : }
1874 : :
1875 : : /* Substitute through a parameter mapping, in order to get the actual
1876 : : arguments used to instantiate an atomic constraint. This may fail
1877 : : if the substitution into arguments produces something ill-formed. */
1878 : :
1879 : : static tree
1880 : 15936634 : tsubst_parameter_mapping (tree map, tree args, subst_info info)
1881 : : {
1882 : 15936634 : if (!map)
1883 : : return NULL_TREE;
1884 : :
1885 : 15936045 : tsubst_flags_t complain = info.complain;
1886 : 15936045 : tree in_decl = info.in_decl;
1887 : :
1888 : 15936045 : tree result = NULL_TREE;
1889 : 43855855 : for (tree p = map; p; p = TREE_CHAIN (p))
1890 : : {
1891 : 27921770 : if (p == error_mark_node)
1892 : 0 : return error_mark_node;
1893 : 27921770 : tree parm = TREE_VALUE (p);
1894 : 27921770 : tree arg = TREE_PURPOSE (p);
1895 : 27921770 : tree new_arg;
1896 : 27921770 : if (ARGUMENT_PACK_P (arg))
1897 : 1051379 : new_arg = tsubst_argument_pack (arg, args, complain, in_decl);
1898 : : else
1899 : : {
1900 : 26870391 : new_arg = tsubst_template_arg (arg, args, complain, in_decl);
1901 : 26870391 : if (TYPE_P (new_arg))
1902 : 26816102 : new_arg = canonicalize_type_argument (new_arg, complain);
1903 : : }
1904 : 27921770 : if (TREE_CODE (new_arg) == TYPE_ARGUMENT_PACK)
1905 : : {
1906 : 1051066 : tree pack_args = ARGUMENT_PACK_ARGS (new_arg);
1907 : 2118326 : for (tree& pack_arg : tree_vec_range (pack_args))
1908 : 1067260 : if (TYPE_P (pack_arg))
1909 : 1067260 : pack_arg = canonicalize_type_argument (pack_arg, complain);
1910 : : }
1911 : 27921770 : if (new_arg == error_mark_node)
1912 : 1960 : return error_mark_node;
1913 : :
1914 : 27919810 : result = tree_cons (new_arg, parm, result);
1915 : : }
1916 : 15934085 : return nreverse (result);
1917 : : }
1918 : :
1919 : : tree
1920 : 1123 : tsubst_parameter_mapping (tree map, tree args, tsubst_flags_t complain, tree in_decl)
1921 : : {
1922 : 1123 : return tsubst_parameter_mapping (map, args, subst_info (complain, in_decl));
1923 : : }
1924 : :
1925 : : /*---------------------------------------------------------------------------
1926 : : Constraint satisfaction
1927 : : ---------------------------------------------------------------------------*/
1928 : :
1929 : : /* True if we are currently satisfying a constraint. */
1930 : :
1931 : : static bool satisfying_constraint;
1932 : :
1933 : : /* A vector of incomplete types (and of declarations with undeduced return type),
1934 : : appended to by note_failed_type_completion_for_satisfaction. The
1935 : : satisfaction caches use this in order to keep track of "potentially unstable"
1936 : : satisfaction results.
1937 : :
1938 : : Since references to entries in this vector are stored only in the
1939 : : GC-deletable sat_cache, it's safe to make this deletable as well. */
1940 : :
1941 : : static GTY((deletable)) vec<tree, va_gc> *failed_type_completions;
1942 : :
1943 : : /* Called whenever a type completion (or return type deduction) failure occurs
1944 : : that definitely affects the meaning of the program, by e.g. inducing
1945 : : substitution failure. */
1946 : :
1947 : : void
1948 : 3891 : note_failed_type_completion_for_satisfaction (tree t)
1949 : : {
1950 : 3891 : if (satisfying_constraint)
1951 : : {
1952 : 69 : gcc_checking_assert ((TYPE_P (t) && !COMPLETE_TYPE_P (t))
1953 : : || (DECL_P (t) && undeduced_auto_decl (t)));
1954 : 69 : vec_safe_push (failed_type_completions, t);
1955 : : }
1956 : 3891 : }
1957 : :
1958 : : /* Returns true if the range [BEGIN, END) of elements within the
1959 : : failed_type_completions vector contains a complete type (or a
1960 : : declaration with a non-placeholder return type). */
1961 : :
1962 : : static bool
1963 : 192330736 : some_type_complete_p (int begin, int end)
1964 : : {
1965 : 192330841 : for (int i = begin; i < end; i++)
1966 : : {
1967 : 150 : tree t = (*failed_type_completions)[i];
1968 : 150 : if (TYPE_P (t) && COMPLETE_TYPE_P (t))
1969 : : return true;
1970 : 123 : if (DECL_P (t) && !undeduced_auto_decl (t))
1971 : : return true;
1972 : : }
1973 : : return false;
1974 : : }
1975 : :
1976 : : /* Hash functions and data types for satisfaction cache entries. */
1977 : :
1978 : : struct GTY((for_user)) sat_entry
1979 : : {
1980 : : /* The relevant ATOMIC_CONSTR. */
1981 : : tree atom;
1982 : :
1983 : : /* The relevant template arguments. */
1984 : : tree args;
1985 : :
1986 : : /* The result of satisfaction of ATOM+ARGS.
1987 : : This is either boolean_true_node, boolean_false_node or error_mark_node,
1988 : : where error_mark_node indicates ill-formed satisfaction.
1989 : : It's set to NULL_TREE while computing satisfaction of ATOM+ARGS for
1990 : : the first time. */
1991 : : tree result;
1992 : :
1993 : : /* The value of input_location when satisfaction of ATOM+ARGS was first
1994 : : performed. */
1995 : : location_t location;
1996 : :
1997 : : /* The range of elements appended to the failed_type_completions vector
1998 : : during computation of this satisfaction result, encoded as a begin/end
1999 : : pair of offsets. */
2000 : : int ftc_begin, ftc_end;
2001 : :
2002 : : /* True if we want to diagnose the above instability when it's detected.
2003 : : We don't always want to do so, in order to avoid emitting duplicate
2004 : : diagnostics in some cases. */
2005 : : bool diagnose_instability;
2006 : :
2007 : : /* True if we're in the middle of computing this satisfaction result.
2008 : : Used during both quiet and noisy satisfaction to detect self-recursive
2009 : : satisfaction. */
2010 : : bool evaluating;
2011 : : };
2012 : :
2013 : : struct sat_hasher : ggc_ptr_hash<sat_entry>
2014 : : {
2015 : 1244665604 : static hashval_t hash (sat_entry *e)
2016 : : {
2017 : 1244665604 : auto cso = make_temp_override (comparing_specializations);
2018 : 1244665604 : ++comparing_specializations;
2019 : :
2020 : 1244665604 : if (ATOMIC_CONSTR_MAP_INSTANTIATED_P (e->atom))
2021 : : {
2022 : : /* Atoms with instantiated mappings are built during satisfaction.
2023 : : They live only inside the sat_cache, and we build one to query
2024 : : the cache with each time we instantiate a mapping. */
2025 : 308968848 : gcc_assert (!e->args);
2026 : 308968848 : return hash_atomic_constraint (e->atom);
2027 : : }
2028 : :
2029 : : /* Atoms with uninstantiated mappings are built during normalization.
2030 : : Since normalize_atom caches the atoms it returns, we can assume
2031 : : pointer-based identity for fast hashing and comparison. Even if this
2032 : : assumption is violated, that's okay, we'll just get a cache miss. */
2033 : 935696756 : hashval_t value = htab_hash_pointer (e->atom);
2034 : :
2035 : 935696756 : if (tree map = ATOMIC_CONSTR_MAP (e->atom))
2036 : : /* Only the parameters that are used in the targets of the mapping
2037 : : affect the satisfaction value of the atom. So we consider only
2038 : : the arguments for these parameters, and ignore the rest. */
2039 : 935687341 : for (tree target_parms = TREE_TYPE (map);
2040 : 2078250155 : target_parms;
2041 : 1142562814 : target_parms = TREE_CHAIN (target_parms))
2042 : : {
2043 : 1142562814 : int level, index;
2044 : 1142562814 : tree parm = TREE_VALUE (target_parms);
2045 : 1142562814 : template_parm_level_and_index (parm, &level, &index);
2046 : 1142562814 : tree arg = TMPL_ARG (e->args, level, index);
2047 : 1142562814 : value = iterative_hash_template_arg (arg, value);
2048 : : }
2049 : : return value;
2050 : 1244665604 : }
2051 : :
2052 : 1349967728 : static bool equal (sat_entry *e1, sat_entry *e2)
2053 : : {
2054 : 1349967728 : auto cso = make_temp_override (comparing_specializations);
2055 : 1349967728 : ++comparing_specializations;
2056 : :
2057 : 1349967728 : if (ATOMIC_CONSTR_MAP_INSTANTIATED_P (e1->atom)
2058 : 1349967728 : != ATOMIC_CONSTR_MAP_INSTANTIATED_P (e2->atom))
2059 : : return false;
2060 : :
2061 : : /* See sat_hasher::hash. */
2062 : 981700841 : if (ATOMIC_CONSTR_MAP_INSTANTIATED_P (e1->atom))
2063 : : {
2064 : 40797634 : gcc_assert (!e1->args && !e2->args);
2065 : 40797634 : return atomic_constraints_identical_p (e1->atom, e2->atom);
2066 : : }
2067 : :
2068 : 940903207 : if (e1->atom != e2->atom)
2069 : : return false;
2070 : :
2071 : 162382635 : if (tree map = ATOMIC_CONSTR_MAP (e1->atom))
2072 : 162380209 : for (tree target_parms = TREE_TYPE (map);
2073 : 334131961 : target_parms;
2074 : 171751752 : target_parms = TREE_CHAIN (target_parms))
2075 : : {
2076 : 173667283 : int level, index;
2077 : 173667283 : tree parm = TREE_VALUE (target_parms);
2078 : 173667283 : template_parm_level_and_index (parm, &level, &index);
2079 : 173667283 : tree arg1 = TMPL_ARG (e1->args, level, index);
2080 : 173667283 : tree arg2 = TMPL_ARG (e2->args, level, index);
2081 : 173667283 : if (!template_args_equal (arg1, arg2))
2082 : 1915531 : return false;
2083 : : }
2084 : : return true;
2085 : 1349967728 : }
2086 : : };
2087 : :
2088 : : /* Cache the result of satisfy_atom. */
2089 : : static GTY((deletable)) hash_table<sat_hasher> *sat_cache;
2090 : :
2091 : : /* Cache the result of satisfy_declaration_constraints. */
2092 : : static GTY((deletable)) hash_map<tree, tree> *decl_satisfied_cache;
2093 : :
2094 : : /* A tool used by satisfy_atom to help manage satisfaction caching and to
2095 : : diagnose "unstable" satisfaction values. We insert into the cache only
2096 : : when performing satisfaction quietly. */
2097 : :
2098 : : struct satisfaction_cache
2099 : : {
2100 : : satisfaction_cache (tree, tree, sat_info);
2101 : : tree get ();
2102 : : tree save (tree);
2103 : :
2104 : : sat_entry *entry;
2105 : : sat_info info;
2106 : : int ftc_begin;
2107 : : };
2108 : :
2109 : : /* Constructor for the satisfaction_cache class. We're performing satisfaction
2110 : : of ATOM+ARGS according to INFO. */
2111 : :
2112 : 192330778 : satisfaction_cache
2113 : 192330778 : ::satisfaction_cache (tree atom, tree args, sat_info info)
2114 : 192330778 : : entry(nullptr), info(info), ftc_begin(-1)
2115 : : {
2116 : 192330778 : if (!sat_cache)
2117 : 18402 : sat_cache = hash_table<sat_hasher>::create_ggc (31);
2118 : :
2119 : : /* When noisy, we query the satisfaction cache in order to diagnose
2120 : : "unstable" satisfaction values. */
2121 : 192330778 : if (info.noisy ())
2122 : : {
2123 : : /* When noisy, constraints have been re-normalized, and that breaks the
2124 : : pointer-based identity assumption of sat_cache (for atoms with
2125 : : uninstantiated mappings). So undo this re-normalization by looking in
2126 : : the atom_cache for the corresponding atom that was used during quiet
2127 : : satisfaction. */
2128 : 10747 : if (!ATOMIC_CONSTR_MAP_INSTANTIATED_P (atom))
2129 : : {
2130 : 5386 : if (tree found = atom_cache->find (atom))
2131 : 5386 : atom = found;
2132 : : else
2133 : : /* The lookup should always succeed, but if it fails then let's
2134 : : just leave 'entry' empty, effectively disabling the cache. */
2135 : 0 : return;
2136 : : }
2137 : : }
2138 : :
2139 : : /* Look up or create the corresponding satisfaction entry. */
2140 : 192330778 : sat_entry elt;
2141 : 192330778 : elt.atom = atom;
2142 : 192330778 : elt.args = args;
2143 : 192330778 : sat_entry **slot = sat_cache->find_slot (&elt, INSERT);
2144 : 192330778 : if (*slot)
2145 : 170921678 : entry = *slot;
2146 : 21409100 : else if (info.quiet ())
2147 : : {
2148 : 21409094 : entry = ggc_alloc<sat_entry> ();
2149 : 21409094 : entry->atom = atom;
2150 : 21409094 : entry->args = args;
2151 : 21409094 : entry->result = NULL_TREE;
2152 : 21409094 : entry->location = input_location;
2153 : 21409094 : entry->ftc_begin = entry->ftc_end = -1;
2154 : 21409094 : entry->diagnose_instability = false;
2155 : 21409094 : if (ATOMIC_CONSTR_MAP_INSTANTIATED_P (atom))
2156 : : /* We always want to diagnose instability of an atom with an
2157 : : instantiated parameter mapping. For atoms with an uninstantiated
2158 : : mapping, we set this flag (in satisfy_atom) only if substitution
2159 : : into its mapping previously failed. */
2160 : 5478976 : entry->diagnose_instability = true;
2161 : 21409094 : entry->evaluating = false;
2162 : 21409094 : *slot = entry;
2163 : : }
2164 : : else
2165 : : {
2166 : : /* We're evaluating this atom for the first time, and doing so noisily.
2167 : : This shouldn't happen outside of error recovery situations involving
2168 : : unstable satisfaction. Let's just leave 'entry' empty, effectively
2169 : : disabling the cache, and remove the empty slot. */
2170 : 6 : gcc_checking_assert (seen_error ());
2171 : : /* Appease hash_table::check_complete_insertion. */
2172 : 6 : *slot = ggc_alloc<sat_entry> ();
2173 : 6 : sat_cache->clear_slot (slot);
2174 : : }
2175 : : }
2176 : :
2177 : : /* Returns the cached satisfaction result if we have one and we're not
2178 : : recomputing the satisfaction result from scratch. Otherwise returns
2179 : : NULL_TREE. */
2180 : :
2181 : : tree
2182 : 192330778 : satisfaction_cache::get ()
2183 : : {
2184 : 192330778 : if (!entry)
2185 : : return NULL_TREE;
2186 : :
2187 : 192330772 : if (entry->evaluating)
2188 : : {
2189 : : /* If we get here, it means satisfaction is self-recursive. */
2190 : 36 : gcc_checking_assert (!entry->result || seen_error ());
2191 : 36 : if (info.noisy ())
2192 : 18 : error_at (EXPR_LOCATION (ATOMIC_CONSTR_EXPR (entry->atom)),
2193 : : "satisfaction of atomic constraint %qE depends on itself",
2194 : 18 : entry->atom);
2195 : 36 : return error_mark_node;
2196 : : }
2197 : :
2198 : : /* This satisfaction result is "potentially unstable" if a type for which
2199 : : type completion failed during its earlier computation is now complete. */
2200 : 192330736 : bool maybe_unstable = some_type_complete_p (entry->ftc_begin,
2201 : : entry->ftc_end);
2202 : :
2203 : 192330736 : if (info.noisy () || maybe_unstable || !entry->result)
2204 : : {
2205 : : /* We're computing the satisfaction result from scratch. */
2206 : 21419847 : entry->evaluating = true;
2207 : 21419847 : ftc_begin = vec_safe_length (failed_type_completions);
2208 : 21419847 : return NULL_TREE;
2209 : : }
2210 : : else
2211 : : return entry->result;
2212 : : }
2213 : :
2214 : : /* RESULT is the computed satisfaction result. If RESULT differs from the
2215 : : previously cached result, this routine issues an appropriate error.
2216 : : Otherwise, when evaluating quietly, updates the cache appropriately. */
2217 : :
2218 : : tree
2219 : 21414453 : satisfaction_cache::save (tree result)
2220 : : {
2221 : 21414453 : if (!entry)
2222 : : return result;
2223 : :
2224 : 21414447 : gcc_checking_assert (entry->evaluating);
2225 : 21414447 : entry->evaluating = false;
2226 : :
2227 : 21414447 : if (entry->result && result != entry->result)
2228 : : {
2229 : 36 : if (info.quiet ())
2230 : : /* Return error_mark_node to force satisfaction to get replayed
2231 : : noisily. */
2232 : 15 : return error_mark_node;
2233 : : else
2234 : : {
2235 : 21 : if (entry->diagnose_instability)
2236 : : {
2237 : 12 : auto_diagnostic_group d;
2238 : 12 : error_at (EXPR_LOCATION (ATOMIC_CONSTR_EXPR (entry->atom)),
2239 : : "satisfaction value of atomic constraint %qE changed "
2240 : 12 : "from %qE to %qE", entry->atom, entry->result, result);
2241 : 12 : inform (entry->location,
2242 : : "satisfaction value first evaluated to %qE from here",
2243 : 12 : entry->result);
2244 : 12 : }
2245 : : /* For sake of error recovery, allow this latest satisfaction result
2246 : : to prevail. */
2247 : 21 : entry->result = result;
2248 : 21 : return result;
2249 : : }
2250 : : }
2251 : :
2252 : 21414411 : if (info.quiet ())
2253 : : {
2254 : 21403709 : entry->result = result;
2255 : : /* Store into this entry the list of relevant failed type completions
2256 : : that occurred during (re)computation of the satisfaction result. */
2257 : 21403709 : gcc_checking_assert (ftc_begin != -1);
2258 : 21403709 : entry->ftc_begin = ftc_begin;
2259 : 21474365 : entry->ftc_end = vec_safe_length (failed_type_completions);
2260 : : }
2261 : :
2262 : : return result;
2263 : : }
2264 : :
2265 : : /* Substitute ARGS into constraint-expression T during instantiation of
2266 : : a member of a class template. */
2267 : :
2268 : : tree
2269 : 997847 : tsubst_constraint (tree t, tree args, tsubst_flags_t complain, tree in_decl)
2270 : : {
2271 : : /* We also don't want to evaluate concept-checks when substituting the
2272 : : constraint-expressions of a declaration. */
2273 : 997847 : processing_constraint_expression_sentinel s;
2274 : 997847 : cp_unevaluated u;
2275 : 997847 : tree expr = tsubst_expr (t, args, complain, in_decl);
2276 : 1995694 : return expr;
2277 : 997847 : }
2278 : :
2279 : : static tree satisfy_constraint_r (tree, tree, sat_info info);
2280 : :
2281 : : /* Compute the satisfaction of a conjunction. */
2282 : :
2283 : : static tree
2284 : 153928070 : satisfy_conjunction (tree t, tree args, sat_info info)
2285 : : {
2286 : 153928070 : tree lhs = satisfy_constraint_r (TREE_OPERAND (t, 0), args, info);
2287 : 153928070 : if (lhs == error_mark_node || lhs == boolean_false_node)
2288 : : return lhs;
2289 : 151890697 : return satisfy_constraint_r (TREE_OPERAND (t, 1), args, info);
2290 : : }
2291 : :
2292 : : /* The current depth at which we're replaying an error during recursive
2293 : : diagnosis of a constraint satisfaction failure. */
2294 : :
2295 : : static int current_constraint_diagnosis_depth;
2296 : :
2297 : : /* Whether CURRENT_CONSTRAINT_DIAGNOSIS_DEPTH has ever exceeded
2298 : : CONCEPTS_DIAGNOSTICS_MAX_DEPTH during recursive diagnosis of a constraint
2299 : : satisfaction error. */
2300 : :
2301 : : static bool concepts_diagnostics_max_depth_exceeded_p;
2302 : :
2303 : : /* Recursive subroutine of collect_operands_of_disjunction. T is a normalized
2304 : : subexpression of a constraint (composed of CONJ_CONSTRs and DISJ_CONSTRs)
2305 : : and E is the corresponding unnormalized subexpression (composed of
2306 : : TRUTH_ANDIF_EXPRs and TRUTH_ORIF_EXPRs). */
2307 : :
2308 : : static void
2309 : 11 : collect_operands_of_disjunction_r (tree t, tree e,
2310 : : auto_vec<tree_pair> *operands)
2311 : : {
2312 : 18 : if (TREE_CODE (e) == TRUTH_ORIF_EXPR)
2313 : : {
2314 : 7 : collect_operands_of_disjunction_r (TREE_OPERAND (t, 0),
2315 : 7 : TREE_OPERAND (e, 0), operands);
2316 : 7 : collect_operands_of_disjunction_r (TREE_OPERAND (t, 1),
2317 : 7 : TREE_OPERAND (e, 1), operands);
2318 : : }
2319 : : else
2320 : : {
2321 : 11 : tree_pair p = std::make_pair (t, e);
2322 : 11 : operands->safe_push (p);
2323 : : }
2324 : 11 : }
2325 : :
2326 : : /* Recursively collect the normalized and unnormalized operands of the
2327 : : disjunction T and append them to OPERANDS in order. */
2328 : :
2329 : : static void
2330 : 4 : collect_operands_of_disjunction (tree t, auto_vec<tree_pair> *operands)
2331 : : {
2332 : 4 : collect_operands_of_disjunction_r (t, CONSTR_EXPR (t), operands);
2333 : 4 : }
2334 : :
2335 : : /* Compute the satisfaction of a disjunction. */
2336 : :
2337 : : static tree
2338 : 14321908 : satisfy_disjunction (tree t, tree args, sat_info info)
2339 : : {
2340 : : /* Evaluate each operand with unsatisfaction diagnostics disabled. */
2341 : 14321908 : sat_info sub = info;
2342 : 14321908 : sub.diagnose_unsatisfaction = false;
2343 : :
2344 : 14321908 : tree lhs = satisfy_constraint_r (TREE_OPERAND (t, 0), args, sub);
2345 : 14321908 : if (lhs == boolean_true_node || lhs == error_mark_node)
2346 : : return lhs;
2347 : :
2348 : 6571618 : tree rhs = satisfy_constraint_r (TREE_OPERAND (t, 1), args, sub);
2349 : 6571618 : if (rhs == boolean_true_node || rhs == error_mark_node)
2350 : : return rhs;
2351 : :
2352 : : /* Both branches evaluated to false. Explain the satisfaction failure in
2353 : : each branch. */
2354 : 983247 : if (info.diagnose_unsatisfaction_p ())
2355 : : {
2356 : 27 : diagnosing_failed_constraint failure (t, args, info.noisy ());
2357 : 27 : cp_expr disj_expr = CONSTR_EXPR (t);
2358 : 27 : inform (disj_expr.get_location (),
2359 : : "no operand of the disjunction is satisfied");
2360 : 27 : if (diagnosing_failed_constraint::replay_errors_p ())
2361 : : {
2362 : : /* Replay the error in each branch of the disjunction. */
2363 : 4 : auto_vec<tree_pair> operands;
2364 : 4 : collect_operands_of_disjunction (t, &operands);
2365 : 30 : for (unsigned i = 0; i < operands.length (); i++)
2366 : : {
2367 : 11 : tree norm_op = operands[i].first;
2368 : 11 : tree op = operands[i].second;
2369 : 11 : location_t loc = make_location (cp_expr_location (op),
2370 : : disj_expr.get_start (),
2371 : : disj_expr.get_finish ());
2372 : 11 : inform (loc, "the operand %qE is unsatisfied because", op);
2373 : 11 : satisfy_constraint_r (norm_op, args, info);
2374 : : }
2375 : 4 : }
2376 : 27 : }
2377 : :
2378 : 983247 : return boolean_false_node;
2379 : : }
2380 : :
2381 : : /* Ensures that T is a truth value and not (accidentally, as sometimes
2382 : : happens) an integer value. */
2383 : :
2384 : : tree
2385 : 5477699 : satisfaction_value (tree t)
2386 : : {
2387 : 5477699 : if (t == error_mark_node || t == boolean_true_node || t == boolean_false_node)
2388 : : return t;
2389 : :
2390 : 1 : gcc_assert (TREE_CODE (t) == INTEGER_CST
2391 : : && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (t),
2392 : : boolean_type_node));
2393 : 1 : if (integer_zerop (t))
2394 : 0 : return boolean_false_node;
2395 : : else
2396 : 1 : return boolean_true_node;
2397 : : }
2398 : :
2399 : : /* Build a new template argument vector corresponding to the parameter
2400 : : mapping of the atomic constraint T, using arguments from ARGS. */
2401 : :
2402 : : static tree
2403 : 5484349 : get_mapped_args (tree t, tree args)
2404 : : {
2405 : 5484349 : tree map = ATOMIC_CONSTR_MAP (t);
2406 : :
2407 : : /* No map, no arguments. */
2408 : 5484349 : if (!map)
2409 : : return NULL_TREE;
2410 : :
2411 : : /* Determine the depth of the resulting argument vector. */
2412 : 5483760 : int depth;
2413 : 5483760 : if (ATOMIC_CONSTR_EXPR_FROM_CONCEPT_P (t))
2414 : : /* The expression of this atomic constraint comes from a concept
2415 : : definition, whose template depth is always one, so the resulting
2416 : : argument vector will also have depth one. */
2417 : : depth = 1;
2418 : : else
2419 : : /* Otherwise, the expression of this atomic constraint comes from
2420 : : the context of the constrained entity, whose template depth is that
2421 : : of ARGS. */
2422 : 2488294 : depth = TMPL_ARGS_DEPTH (args);
2423 : :
2424 : : /* Place each argument at its corresponding position in the argument
2425 : : list. Note that the list will be sparse (not all arguments supplied),
2426 : : but instantiation is guaranteed to only use the parameters in the
2427 : : mapping, so null arguments would never be used. */
2428 : 5483760 : auto_vec< vec<tree> > lists (depth);
2429 : 5483760 : lists.quick_grow_cleared (depth);
2430 : 13987451 : for (tree p = map; p; p = TREE_CHAIN (p))
2431 : : {
2432 : 8503691 : int level;
2433 : 8503691 : int index;
2434 : 8503691 : template_parm_level_and_index (TREE_VALUE (p), &level, &index);
2435 : :
2436 : : /* Insert the argument into its corresponding position. */
2437 : 8503691 : vec<tree> &list = lists[level - 1];
2438 : 11348821 : if (index >= (int)list.length ())
2439 : 7899538 : list.safe_grow_cleared (index + 1, /*exact=*/false);
2440 : 8503691 : list[index] = TREE_PURPOSE (p);
2441 : : }
2442 : :
2443 : : /* Build the new argument list. */
2444 : 5483760 : args = make_tree_vec (lists.length ());
2445 : 22513450 : for (unsigned i = 0; i != lists.length (); ++i)
2446 : : {
2447 : 5772965 : vec<tree> &list = lists[i];
2448 : 5772965 : tree level = make_tree_vec (list.length ());
2449 : 28650596 : for (unsigned j = 0; j < list.length (); ++j)
2450 : 8609535 : TREE_VEC_ELT (level, j) = list[j];
2451 : 5772965 : SET_TMPL_ARGS_LEVEL (args, i + 1, level);
2452 : 5772965 : list.release ();
2453 : : }
2454 : 5483760 : SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args, 0);
2455 : :
2456 : 5483760 : if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args)
2457 : 5483760 : && TMPL_ARGS_DEPTH (args) == 1)
2458 : : {
2459 : : /* Get rid of the redundant outer TREE_VEC. */
2460 : 5194793 : tree level = TMPL_ARGS_LEVEL (args, 1);
2461 : 5194793 : ggc_free (args);
2462 : 5194793 : args = level;
2463 : : }
2464 : :
2465 : 5483760 : return args;
2466 : 5483760 : }
2467 : :
2468 : : static void diagnose_atomic_constraint (tree, tree, tree, sat_info);
2469 : :
2470 : : /* Compute the satisfaction of an atomic constraint. */
2471 : :
2472 : : static tree
2473 : 176397225 : satisfy_atom (tree t, tree args, sat_info info)
2474 : : {
2475 : : /* In case there is a diagnostic, we want to establish the context
2476 : : prior to printing errors. If no errors occur, this context is
2477 : : removed before returning. */
2478 : 176397225 : diagnosing_failed_constraint failure (t, args, info.noisy ());
2479 : :
2480 : 176397225 : satisfaction_cache cache (t, args, info);
2481 : 176397225 : if (tree r = cache.get ())
2482 : : return r;
2483 : :
2484 : : /* Perform substitution quietly. */
2485 : 15935504 : subst_info quiet (tf_none, NULL_TREE);
2486 : :
2487 : : /* Instantiate the parameter mapping. */
2488 : 15935504 : tree map = tsubst_parameter_mapping (ATOMIC_CONSTR_MAP (t), args, quiet);
2489 : 15935504 : if (map == error_mark_node)
2490 : : {
2491 : : /* If instantiation of the parameter mapping fails, the constraint is
2492 : : not satisfied. Replay the substitution. */
2493 : 1951 : if (info.diagnose_unsatisfaction_p ())
2494 : 7 : tsubst_parameter_mapping (ATOMIC_CONSTR_MAP (t), args, info);
2495 : 1951 : if (info.quiet ())
2496 : : /* Since instantiation of the parameter mapping failed, we
2497 : : want to diagnose potential instability of this satisfaction
2498 : : result. */
2499 : 1944 : cache.entry->diagnose_instability = true;
2500 : 1951 : return cache.save (boolean_false_node);
2501 : : }
2502 : :
2503 : : /* Now build a new atom using the instantiated mapping. We use
2504 : : this atom as a second key to the satisfaction cache, and we
2505 : : also pass it to diagnose_atomic_constraint so that diagnostics
2506 : : which refer to the atom display the instantiated mapping. */
2507 : 15933553 : t = copy_node (t);
2508 : 15933553 : ATOMIC_CONSTR_MAP (t) = map;
2509 : 15933553 : gcc_assert (!ATOMIC_CONSTR_MAP_INSTANTIATED_P (t));
2510 : 15933553 : ATOMIC_CONSTR_MAP_INSTANTIATED_P (t) = true;
2511 : 15933553 : satisfaction_cache inst_cache (t, /*args=*/NULL_TREE, info);
2512 : 15933553 : if (tree r = inst_cache.get ())
2513 : : {
2514 : 10449204 : cache.entry->location = inst_cache.entry->location;
2515 : 10449204 : return cache.save (r);
2516 : : }
2517 : :
2518 : : /* Rebuild the argument vector from the parameter mapping. */
2519 : 5484349 : args = get_mapped_args (t, args);
2520 : :
2521 : : /* Apply the parameter mapping (i.e., just substitute). */
2522 : 5484349 : tree expr = ATOMIC_CONSTR_EXPR (t);
2523 : 5484349 : tree result = tsubst_expr (expr, args, quiet.complain, quiet.in_decl);
2524 : 5481649 : if (result == error_mark_node)
2525 : : {
2526 : : /* If substitution results in an invalid type or expression, the
2527 : : constraint is not satisfied. Replay the substitution. */
2528 : 3903 : if (info.diagnose_unsatisfaction_p ())
2529 : 16 : tsubst_expr (expr, args, info.complain, info.in_decl);
2530 : 3903 : return cache.save (inst_cache.save (boolean_false_node));
2531 : : }
2532 : :
2533 : : /* [17.4.1.2] ... lvalue-to-rvalue conversion is performed as necessary,
2534 : : and EXPR shall be a constant expression of type bool. */
2535 : 5477746 : result = force_rvalue (result, info.complain);
2536 : 5477746 : if (result == error_mark_node)
2537 : 0 : return cache.save (inst_cache.save (error_mark_node));
2538 : 5477746 : if (!same_type_p (TREE_TYPE (result), boolean_type_node))
2539 : : {
2540 : 47 : if (info.noisy ())
2541 : 26 : diagnose_atomic_constraint (t, args, result, info);
2542 : 47 : return cache.save (inst_cache.save (error_mark_node));
2543 : : }
2544 : :
2545 : : /* Compute the value of the constraint. */
2546 : 5477699 : if (info.noisy ())
2547 : : {
2548 : 5316 : iloc_sentinel ils (EXPR_LOCATION (result));
2549 : 5316 : result = cxx_constant_value (result);
2550 : 5316 : }
2551 : : else
2552 : : {
2553 : 5472383 : result = maybe_constant_value (result, NULL_TREE, mce_true);
2554 : 5472383 : if (!TREE_CONSTANT (result))
2555 : 18 : result = error_mark_node;
2556 : : }
2557 : 5477699 : result = satisfaction_value (result);
2558 : 5477699 : if (result == boolean_false_node && info.diagnose_unsatisfaction_p ())
2559 : 1031 : diagnose_atomic_constraint (t, args, result, info);
2560 : :
2561 : 5477699 : return cache.save (inst_cache.save (result));
2562 : 176394525 : }
2563 : :
2564 : : /* Determine if the normalized constraint T is satisfied.
2565 : : Returns boolean_true_node if the expression/constraint is
2566 : : satisfied, boolean_false_node if not, and error_mark_node
2567 : : if there was an error evaluating the constraint.
2568 : :
2569 : : The parameter mapping of atomic constraints is simply the
2570 : : set of template arguments that will be substituted into
2571 : : the expression, regardless of template parameters appearing
2572 : : within. Whether a template argument is used in the atomic
2573 : : constraint only matters for subsumption. */
2574 : :
2575 : : static tree
2576 : 344647340 : satisfy_constraint_r (tree t, tree args, sat_info info)
2577 : : {
2578 : 344647340 : if (t == error_mark_node)
2579 : : return error_mark_node;
2580 : :
2581 : 344647203 : switch (TREE_CODE (t))
2582 : : {
2583 : 153928070 : case CONJ_CONSTR:
2584 : 153928070 : return satisfy_conjunction (t, args, info);
2585 : 14321908 : case DISJ_CONSTR:
2586 : 14321908 : return satisfy_disjunction (t, args, info);
2587 : 176397225 : case ATOMIC_CONSTR:
2588 : 176397225 : return satisfy_atom (t, args, info);
2589 : 0 : default:
2590 : 0 : gcc_unreachable ();
2591 : : }
2592 : : }
2593 : :
2594 : : /* Check that the normalized constraint T is satisfied for ARGS. */
2595 : :
2596 : : static tree
2597 : 17935036 : satisfy_normalized_constraints (tree t, tree args, sat_info info)
2598 : : {
2599 : 17935036 : auto_timevar time (TV_CONSTRAINT_SAT);
2600 : :
2601 : 17935036 : auto ovr = make_temp_override (satisfying_constraint, true);
2602 : :
2603 : : /* Turn off template processing. Constraint satisfaction only applies
2604 : : to non-dependent terms, so we want to ensure full checking here. */
2605 : 17935036 : processing_template_decl_sentinel proc (true);
2606 : :
2607 : : /* We need to check access during satisfaction. */
2608 : 17935036 : deferring_access_check_sentinel acs (dk_no_deferred);
2609 : :
2610 : : /* Constraints are unevaluated operands. */
2611 : 17935036 : cp_unevaluated u;
2612 : :
2613 : 17935036 : return satisfy_constraint_r (t, args, info);
2614 : 17932336 : }
2615 : :
2616 : : /* Return the normal form of the constraints on the placeholder 'auto'
2617 : : type T. */
2618 : :
2619 : : static tree
2620 : 2068989 : normalize_placeholder_type_constraints (tree t, bool diag)
2621 : : {
2622 : 2068989 : gcc_assert (is_auto (t));
2623 : 2068989 : tree ci = PLACEHOLDER_TYPE_CONSTRAINTS_INFO (t);
2624 : 2068989 : if (!ci)
2625 : : return NULL_TREE;
2626 : :
2627 : 2068989 : tree constr = TREE_VALUE (ci);
2628 : : /* The TREE_PURPOSE contains the set of template parameters that were in
2629 : : scope for this placeholder type; use them as the initial template
2630 : : parameters for normalization. */
2631 : 2068989 : tree initial_parms = TREE_PURPOSE (ci);
2632 : :
2633 : : /* The 'auto' itself is used as the first argument in its own constraints,
2634 : : and its level is one greater than its template depth. So in order to
2635 : : capture all used template parameters, we need to add an extra level of
2636 : : template parameters to the context; a dummy level suffices. */
2637 : 2068989 : initial_parms
2638 : 4137727 : = tree_cons (size_int (initial_parms
2639 : : ? TMPL_PARMS_DEPTH (initial_parms) + 1 : 1),
2640 : : make_tree_vec (0), initial_parms);
2641 : :
2642 : 2068989 : norm_info info (diag);
2643 : 2068989 : info.initial_parms = initial_parms;
2644 : 2068989 : return normalize_constraint_expression (constr, info);
2645 : : }
2646 : :
2647 : : /* Evaluate the constraints of T using ARGS, returning a satisfaction value.
2648 : : Here, T can be a concept-id, nested-requirement, placeholder 'auto', or
2649 : : requires-expression. */
2650 : :
2651 : : static tree
2652 : 2781053 : satisfy_nondeclaration_constraints (tree t, tree args, sat_info info)
2653 : : {
2654 : 2781053 : if (t == error_mark_node)
2655 : : return error_mark_node;
2656 : :
2657 : : /* Handle REQUIRES_EXPR directly, bypassing satisfaction. */
2658 : 2781051 : if (TREE_CODE (t) == REQUIRES_EXPR)
2659 : : {
2660 : 114 : auto ovr = make_temp_override (current_constraint_diagnosis_depth);
2661 : 114 : if (info.noisy ())
2662 : 16 : ++current_constraint_diagnosis_depth;
2663 : 114 : return tsubst_requires_expr (t, args, info);
2664 : 114 : }
2665 : :
2666 : : /* Get the normalized constraints. */
2667 : 2780937 : tree norm;
2668 : 2780937 : if (concept_check_p (t))
2669 : : {
2670 : 559940 : gcc_assert (!args);
2671 : 559940 : args = TREE_OPERAND (t, 1);
2672 : 559940 : tree tmpl = get_concept_check_template (t);
2673 : 559940 : norm = normalize_concept_definition (tmpl, info.noisy ());
2674 : : }
2675 : 2220997 : else if (TREE_CODE (t) == NESTED_REQ)
2676 : : {
2677 : 152008 : norm_info ninfo (info.noisy ());
2678 : : /* The TREE_TYPE contains the set of template parameters that were in
2679 : : scope for this nested requirement; use them as the initial template
2680 : : parameters for normalization. */
2681 : 152008 : ninfo.initial_parms = TREE_TYPE (t);
2682 : 152008 : norm = normalize_constraint_expression (TREE_OPERAND (t, 0), ninfo);
2683 : : }
2684 : 2068989 : else if (is_auto (t))
2685 : : {
2686 : 2068989 : norm = normalize_placeholder_type_constraints (t, info.noisy ());
2687 : 2068989 : if (!norm)
2688 : 0 : return boolean_true_node;
2689 : : }
2690 : : else
2691 : 0 : gcc_unreachable ();
2692 : :
2693 : : /* Perform satisfaction. */
2694 : 2780937 : return satisfy_normalized_constraints (norm, args, info);
2695 : : }
2696 : :
2697 : : /* Evaluate the associated constraints of the template specialization T
2698 : : according to INFO, returning a satisfaction value. */
2699 : :
2700 : : static tree
2701 : 183509535 : satisfy_declaration_constraints (tree t, sat_info info)
2702 : : {
2703 : 183509535 : gcc_assert (DECL_P (t) && TREE_CODE (t) != TEMPLATE_DECL);
2704 : 183509535 : const tree saved_t = t;
2705 : :
2706 : : /* For inherited constructors, consider the original declaration;
2707 : : it has the correct template information attached. */
2708 : 183509535 : t = strip_inheriting_ctors (t);
2709 : 183509535 : tree inh_ctor_targs = NULL_TREE;
2710 : 183509535 : if (t != saved_t)
2711 : 60435 : if (tree ti = DECL_TEMPLATE_INFO (saved_t))
2712 : : /* The inherited constructor points to an instantiation of a constructor
2713 : : template; remember its template arguments. */
2714 : 6808 : inh_ctor_targs = TI_ARGS (ti);
2715 : :
2716 : : /* Update the declaration for diagnostics. */
2717 : 183509535 : info.in_decl = t;
2718 : :
2719 : 183509535 : if (info.quiet ())
2720 : 366978387 : if (tree *result = hash_map_safe_get (decl_satisfied_cache, saved_t))
2721 : 155920230 : return *result;
2722 : :
2723 : 27589305 : tree args = NULL_TREE;
2724 : 27589305 : if (tree ti = DECL_TEMPLATE_INFO (t))
2725 : : {
2726 : : /* The initial parameter mapping is the complete set of
2727 : : template arguments substituted into the declaration. */
2728 : 18398781 : args = TI_ARGS (ti);
2729 : 18398781 : if (inh_ctor_targs)
2730 : 2839 : args = add_outermost_template_args (args, inh_ctor_targs);
2731 : : }
2732 : :
2733 : 27589305 : if (regenerated_lambda_fn_p (t))
2734 : : {
2735 : : /* The TI_ARGS of a regenerated lambda contains only the innermost
2736 : : set of template arguments. Augment this with the outer template
2737 : : arguments that were used to regenerate the lambda. */
2738 : 340644 : gcc_assert (!args || TMPL_ARGS_DEPTH (args) == 1);
2739 : 220813 : tree regen_args = lambda_regenerating_args (t);
2740 : 220813 : if (args)
2741 : 119831 : args = add_to_template_args (regen_args, args);
2742 : : else
2743 : : args = regen_args;
2744 : : }
2745 : :
2746 : : /* If the innermost arguments are dependent, or if the outer arguments
2747 : : are dependent and are needed by the constraints, we can't check
2748 : : satisfaction yet so pretend they're satisfied for now. */
2749 : 27589305 : if (uses_template_parms (args)
2750 : 27589305 : && ((DECL_TEMPLATE_INFO (t)
2751 : 50594 : && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t))
2752 : 19684 : && (TMPL_ARGS_DEPTH (args) == 1
2753 : 2071 : || uses_template_parms (INNERMOST_TEMPLATE_ARGS (args))))
2754 : 42832 : || uses_outer_template_parms_in_constraints (t)))
2755 : 7793 : return boolean_true_node;
2756 : :
2757 : : /* Get the normalized constraints. */
2758 : 27581512 : tree norm = get_normalized_constraints_from_decl (t, info.noisy ());
2759 : :
2760 : 27581512 : unsigned ftc_count = vec_safe_length (failed_type_completions);
2761 : :
2762 : 27581512 : tree result = boolean_true_node;
2763 : 27581512 : if (norm)
2764 : : {
2765 : 605791 : if (!push_tinst_level (t))
2766 : : return result;
2767 : 605508 : push_to_top_level ();
2768 : 605508 : push_access_scope (t);
2769 : 605508 : result = satisfy_normalized_constraints (norm, args, info);
2770 : 605508 : pop_access_scope (t);
2771 : 605508 : pop_from_top_level ();
2772 : 605508 : pop_tinst_level ();
2773 : : }
2774 : :
2775 : : /* True if this satisfaction is (heuristically) potentially unstable, i.e.
2776 : : if its result may depend on where in the program it was performed. */
2777 : 27581229 : bool maybe_unstable_satisfaction = false;
2778 : 27648221 : if (ftc_count != vec_safe_length (failed_type_completions))
2779 : : /* Type completion failure occurred during satisfaction. The satisfaction
2780 : : result may (or may not) materially depend on the completeness of a type,
2781 : : so we consider it potentially unstable. */
2782 : : maybe_unstable_satisfaction = true;
2783 : :
2784 : 27581229 : if (maybe_unstable_satisfaction)
2785 : : /* Don't cache potentially unstable satisfaction, to allow satisfy_atom
2786 : : to check the stability the next time around. */;
2787 : 27581229 : else if (info.quiet ())
2788 : 27581159 : hash_map_safe_put<hm_ggc> (decl_satisfied_cache, saved_t, result);
2789 : :
2790 : 27581229 : return result;
2791 : : }
2792 : :
2793 : : /* Evaluate the associated constraints of the template T using ARGS as the
2794 : : innermost set of template arguments and according to INFO, returning a
2795 : : satisfaction value. */
2796 : :
2797 : : static tree
2798 : 103585410 : satisfy_declaration_constraints (tree t, tree args, sat_info info)
2799 : : {
2800 : : /* Update the declaration for diagnostics. */
2801 : 103585410 : info.in_decl = t;
2802 : :
2803 : 103585410 : gcc_assert (TREE_CODE (t) == TEMPLATE_DECL);
2804 : :
2805 : 103585410 : if (regenerated_lambda_fn_p (t))
2806 : : {
2807 : : /* As in the two-parameter version of this function. */
2808 : 245522 : gcc_assert (TMPL_ARGS_DEPTH (args) == 1);
2809 : 122761 : tree lambda = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (t));
2810 : 122761 : tree outer_args = TI_ARGS (LAMBDA_EXPR_REGEN_INFO (lambda));
2811 : 122761 : args = add_to_template_args (outer_args, args);
2812 : : }
2813 : : else
2814 : 103462649 : args = add_outermost_template_args (t, args);
2815 : :
2816 : : /* If the innermost arguments are dependent, or if the outer arguments
2817 : : are dependent and are needed by the constraints, we can't check
2818 : : satisfaction yet so pretend they're satisfied for now. */
2819 : 103585410 : if (uses_template_parms (args)
2820 : 130288208 : && (TMPL_ARGS_DEPTH (args) == 1
2821 : 1817855 : || uses_template_parms (INNERMOST_TEMPLATE_ARGS (args))
2822 : 99003 : || uses_outer_template_parms_in_constraints (t)))
2823 : 26603795 : return boolean_true_node;
2824 : :
2825 : 76981615 : tree result = boolean_true_node;
2826 : 76981615 : if (tree norm = get_normalized_constraints_from_decl (t, info.noisy ()))
2827 : : {
2828 : 14548591 : if (!push_tinst_level (t, args))
2829 : : return result;
2830 : 14548591 : tree pattern = DECL_TEMPLATE_RESULT (t);
2831 : 14548591 : push_to_top_level ();
2832 : 14548591 : push_access_scope (pattern);
2833 : 14548591 : result = satisfy_normalized_constraints (norm, args, info);
2834 : 14545891 : pop_access_scope (pattern);
2835 : 14545891 : pop_from_top_level ();
2836 : 14545891 : pop_tinst_level ();
2837 : : }
2838 : :
2839 : : return result;
2840 : : }
2841 : :
2842 : : /* A wrapper around satisfy_declaration_constraints and
2843 : : satisfy_nondeclaration_constraints which additionally replays
2844 : : quiet ill-formed satisfaction noisily, so that ill-formed
2845 : : satisfaction always gets diagnosed. */
2846 : :
2847 : : static tree
2848 : 289875998 : constraint_satisfaction_value (tree t, tree args, sat_info info)
2849 : : {
2850 : 289875998 : tree r;
2851 : 289875998 : if (DECL_P (t))
2852 : : {
2853 : 287094945 : if (args)
2854 : 103585410 : r = satisfy_declaration_constraints (t, args, info);
2855 : : else
2856 : 183509535 : r = satisfy_declaration_constraints (t, info);
2857 : : }
2858 : : else
2859 : 2781053 : r = satisfy_nondeclaration_constraints (t, args, info);
2860 : 287 : if (r == error_mark_node && info.quiet ()
2861 : 289873429 : && !(DECL_P (t) && warning_suppressed_p (t)))
2862 : : {
2863 : : /* Replay the error noisily. */
2864 : 131 : sat_info noisy (tf_warning_or_error, info.in_decl);
2865 : 131 : constraint_satisfaction_value (t, args, noisy);
2866 : 131 : if (DECL_P (t) && !args)
2867 : : /* Avoid giving these errors again. */
2868 : 0 : suppress_warning (t);
2869 : : }
2870 : 289873298 : return r;
2871 : : }
2872 : :
2873 : : /* True iff the result of satisfying T using ARGS is BOOLEAN_TRUE_NODE
2874 : : and false otherwise, even in the case of errors.
2875 : :
2876 : : Here, T can be:
2877 : : - a template declaration
2878 : : - a template specialization (in which case ARGS must be empty)
2879 : : - a concept-id (in which case ARGS must be empty)
2880 : : - a nested-requirement
2881 : : - a placeholder 'auto'
2882 : : - a requires-expression. */
2883 : :
2884 : : bool
2885 : 390881558 : constraints_satisfied_p (tree t, tree args/*= NULL_TREE */)
2886 : : {
2887 : 390881558 : if (!flag_concepts)
2888 : : return true;
2889 : :
2890 : 289162883 : sat_info quiet (tf_none, NULL_TREE);
2891 : 289162883 : return constraint_satisfaction_value (t, args, quiet) == boolean_true_node;
2892 : : }
2893 : :
2894 : : /* Evaluate a concept check of the form C<ARGS>. This is only used for the
2895 : : evaluation of template-ids as id-expressions. */
2896 : :
2897 : : tree
2898 : 559770 : evaluate_concept_check (tree check)
2899 : : {
2900 : 559770 : if (check == error_mark_node)
2901 : : return error_mark_node;
2902 : :
2903 : 559770 : gcc_assert (concept_check_p (check));
2904 : :
2905 : : /* Check for satisfaction without diagnostics. */
2906 : 559770 : sat_info quiet (tf_none, NULL_TREE);
2907 : 559770 : return constraint_satisfaction_value (check, /*args=*/NULL_TREE, quiet);
2908 : : }
2909 : :
2910 : : /* Evaluate the requires-expression T, returning either boolean_true_node
2911 : : or boolean_false_node. This is used during folding and constexpr
2912 : : evaluation. */
2913 : :
2914 : : tree
2915 : 98 : evaluate_requires_expr (tree t)
2916 : : {
2917 : 98 : gcc_assert (TREE_CODE (t) == REQUIRES_EXPR);
2918 : 98 : sat_info quiet (tf_none, NULL_TREE);
2919 : 98 : return constraint_satisfaction_value (t, /*args=*/NULL_TREE, quiet);
2920 : : }
2921 : :
2922 : : /*---------------------------------------------------------------------------
2923 : : Semantic analysis of requires-expressions
2924 : : ---------------------------------------------------------------------------*/
2925 : :
2926 : : /* Finish a requires expression for the given PARMS (possibly
2927 : : null) and the non-empty sequence of requirements. */
2928 : :
2929 : : tree
2930 : 587086 : finish_requires_expr (location_t loc, tree parms, tree reqs)
2931 : : {
2932 : : /* Build the node. */
2933 : 587086 : tree r = build_min (REQUIRES_EXPR, boolean_type_node, parms, reqs, NULL_TREE);
2934 : 587086 : TREE_SIDE_EFFECTS (r) = false;
2935 : 587086 : TREE_CONSTANT (r) = true;
2936 : 587086 : SET_EXPR_LOCATION (r, loc);
2937 : 587086 : return r;
2938 : : }
2939 : :
2940 : : /* Construct a requirement for the validity of EXPR. */
2941 : :
2942 : : tree
2943 : 321672 : finish_simple_requirement (location_t loc, tree expr)
2944 : : {
2945 : 321672 : tree r = build_nt (SIMPLE_REQ, expr);
2946 : 321672 : SET_EXPR_LOCATION (r, loc);
2947 : 321672 : return r;
2948 : : }
2949 : :
2950 : : /* Construct a requirement for the validity of TYPE. */
2951 : :
2952 : : tree
2953 : 149164 : finish_type_requirement (location_t loc, tree type)
2954 : : {
2955 : 149164 : tree r = build_nt (TYPE_REQ, type);
2956 : 149164 : SET_EXPR_LOCATION (r, loc);
2957 : 149164 : return r;
2958 : : }
2959 : :
2960 : : /* Construct a requirement for the validity of EXPR, along with
2961 : : its properties. If TYPE is non-null, then it specifies either
2962 : : an implicit conversion or argument deduction constraint,
2963 : : depending on whether any placeholders occur in the type name.
2964 : : NOEXCEPT_P is true iff the noexcept keyword was specified. */
2965 : :
2966 : : tree
2967 : 315338 : finish_compound_requirement (location_t loc, tree expr, tree type, bool noexcept_p)
2968 : : {
2969 : 315338 : tree req = build_nt (COMPOUND_REQ, expr, type);
2970 : 315338 : SET_EXPR_LOCATION (req, loc);
2971 : 315338 : COMPOUND_REQ_NOEXCEPT_P (req) = noexcept_p;
2972 : 315338 : return req;
2973 : : }
2974 : :
2975 : : /* Finish a nested requirement. */
2976 : :
2977 : : tree
2978 : 31966 : finish_nested_requirement (location_t loc, tree expr)
2979 : : {
2980 : : /* Build the requirement, saving the set of in-scope template
2981 : : parameters as its type. */
2982 : 31966 : tree r = build1 (NESTED_REQ, current_template_parms, expr);
2983 : 31966 : SET_EXPR_LOCATION (r, loc);
2984 : 31966 : return r;
2985 : : }
2986 : :
2987 : : /*---------------------------------------------------------------------------
2988 : : Equivalence of constraints
2989 : : ---------------------------------------------------------------------------*/
2990 : :
2991 : : /* Returns true when A and B are equivalent constraints. */
2992 : : bool
2993 : 13618030 : equivalent_constraints (tree a, tree b)
2994 : : {
2995 : 13618030 : gcc_assert (!a || TREE_CODE (a) == CONSTRAINT_INFO);
2996 : 13618030 : gcc_assert (!b || TREE_CODE (b) == CONSTRAINT_INFO);
2997 : 13618030 : return cp_tree_equal (a, b);
2998 : : }
2999 : :
3000 : : /* Returns true if the template declarations A and B have equivalent
3001 : : constraints. This is the case when A's constraints subsume B's and
3002 : : when B's also constrain A's. */
3003 : : bool
3004 : 1101844 : equivalently_constrained (tree d1, tree d2)
3005 : : {
3006 : 1101844 : gcc_assert (TREE_CODE (d1) == TREE_CODE (d2));
3007 : 1101844 : return equivalent_constraints (get_constraints (d1), get_constraints (d2));
3008 : : }
3009 : :
3010 : : /*---------------------------------------------------------------------------
3011 : : Partial ordering of constraints
3012 : : ---------------------------------------------------------------------------*/
3013 : :
3014 : : /* Returns true when the constraints in CI strictly subsume
3015 : : the associated constraints of TMPL. */
3016 : :
3017 : : bool
3018 : 150068 : strictly_subsumes (tree ci, tree tmpl)
3019 : : {
3020 : 150068 : tree n1 = get_normalized_constraints_from_info (ci, NULL_TREE);
3021 : 150068 : tree n2 = get_normalized_constraints_from_decl (tmpl);
3022 : :
3023 : 150068 : return subsumes (n1, n2) && !subsumes (n2, n1);
3024 : : }
3025 : :
3026 : : /* Returns true when the template template parameter constraints in CI
3027 : : subsume the associated constraints of the template template argument
3028 : : TMPL. */
3029 : :
3030 : : bool
3031 : 87 : ttp_subsumes (tree ci, tree tmpl)
3032 : : {
3033 : 87 : tree n1 = get_normalized_constraints_from_info (ci, tmpl);
3034 : 87 : tree n2 = get_normalized_constraints_from_decl (tmpl);
3035 : :
3036 : 87 : return subsumes (n1, n2);
3037 : : }
3038 : :
3039 : : /* Determines which of the declarations, A or B, is more constrained.
3040 : : That is, which declaration's constraints subsume but are not subsumed
3041 : : by the other's?
3042 : :
3043 : : Returns 1 if D1 is more constrained than D2, -1 if D2 is more constrained
3044 : : than D1, and 0 otherwise. */
3045 : :
3046 : : int
3047 : 686768 : more_constrained (tree d1, tree d2)
3048 : : {
3049 : 686768 : tree n1 = get_normalized_constraints_from_decl (d1);
3050 : 686768 : tree n2 = get_normalized_constraints_from_decl (d2);
3051 : :
3052 : 686768 : int winner = 0;
3053 : 686768 : if (subsumes (n1, n2))
3054 : 681975 : ++winner;
3055 : 686768 : if (subsumes (n2, n1))
3056 : 545298 : --winner;
3057 : 686768 : return winner;
3058 : : }
3059 : :
3060 : : /* Return whether D1 is at least as constrained as D2. */
3061 : :
3062 : : bool
3063 : 3072947 : at_least_as_constrained (tree d1, tree d2)
3064 : : {
3065 : 3072947 : tree n1 = get_normalized_constraints_from_decl (d1);
3066 : 3072947 : tree n2 = get_normalized_constraints_from_decl (d2);
3067 : :
3068 : 3072947 : return subsumes (n1, n2);
3069 : : }
3070 : :
3071 : : /*---------------------------------------------------------------------------
3072 : : Constraint diagnostics
3073 : : ---------------------------------------------------------------------------*/
3074 : :
3075 : : /* Returns the best location to diagnose a constraint error. */
3076 : :
3077 : : static location_t
3078 : 1057 : get_constraint_error_location (tree t)
3079 : : {
3080 : 1057 : if (location_t loc = cp_expr_location (t))
3081 : : return loc;
3082 : :
3083 : : /* If we have a specific location give it. */
3084 : 1057 : tree expr = CONSTR_EXPR (t);
3085 : 1057 : if (location_t loc = cp_expr_location (expr))
3086 : : return loc;
3087 : :
3088 : : /* If the constraint is normalized from a requires-clause, give
3089 : : the location as that of the constrained declaration. */
3090 : 76 : tree cxt = CONSTR_CONTEXT (t);
3091 : 76 : tree src = cxt ? TREE_VALUE (cxt) : NULL_TREE;
3092 : 75 : if (!src)
3093 : : /* TODO: This only happens for constrained non-template declarations. */
3094 : : ;
3095 : 75 : else if (DECL_P (src))
3096 : 60 : return DECL_SOURCE_LOCATION (src);
3097 : : /* Otherwise, give the location as the defining concept. */
3098 : 15 : else if (concept_check_p (src))
3099 : : {
3100 : 15 : tree tmpl = TREE_OPERAND (src, 0);
3101 : 15 : return DECL_SOURCE_LOCATION (tmpl);
3102 : : }
3103 : :
3104 : 1 : return input_location;
3105 : : }
3106 : :
3107 : : /* Emit a diagnostic for a failed trait. */
3108 : :
3109 : : static void
3110 : 370 : diagnose_trait_expr (tree expr, tree args)
3111 : : {
3112 : 370 : location_t loc = cp_expr_location (expr);
3113 : :
3114 : : /* Build a "fake" version of the instantiated trait, so we can
3115 : : get the instantiated types from result. */
3116 : 370 : ++processing_template_decl;
3117 : 370 : expr = tsubst_expr (expr, args, tf_none, NULL_TREE);
3118 : 370 : --processing_template_decl;
3119 : :
3120 : 370 : tree t1 = TRAIT_EXPR_TYPE1 (expr);
3121 : 370 : tree t2 = TRAIT_EXPR_TYPE2 (expr);
3122 : 370 : if (t2 && TREE_CODE (t2) == TREE_VEC)
3123 : : {
3124 : : /* Convert the TREE_VEC of arguments into a TREE_LIST, since we can't
3125 : : directly print a TREE_VEC but we can a TREE_LIST via the E format
3126 : : specifier. */
3127 : 27 : tree list = NULL_TREE;
3128 : 54 : for (tree t : tree_vec_range (t2))
3129 : 27 : list = tree_cons (NULL_TREE, t, list);
3130 : 27 : t2 = nreverse (list);
3131 : : }
3132 : 370 : switch (TRAIT_EXPR_KIND (expr))
3133 : : {
3134 : 4 : case CPTK_HAS_NOTHROW_ASSIGN:
3135 : 4 : inform (loc, " %qT is not nothrow copy assignable", t1);
3136 : 4 : break;
3137 : 4 : case CPTK_HAS_NOTHROW_CONSTRUCTOR:
3138 : 4 : inform (loc, " %qT is not nothrow default constructible", t1);
3139 : 4 : break;
3140 : 4 : case CPTK_HAS_NOTHROW_COPY:
3141 : 4 : inform (loc, " %qT is not nothrow copy constructible", t1);
3142 : 4 : break;
3143 : 4 : case CPTK_HAS_TRIVIAL_ASSIGN:
3144 : 4 : inform (loc, " %qT is not trivially copy assignable", t1);
3145 : 4 : break;
3146 : 4 : case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
3147 : 4 : inform (loc, " %qT is not trivially default constructible", t1);
3148 : 4 : break;
3149 : 4 : case CPTK_HAS_TRIVIAL_COPY:
3150 : 4 : inform (loc, " %qT is not trivially copy constructible", t1);
3151 : 4 : break;
3152 : 4 : case CPTK_HAS_TRIVIAL_DESTRUCTOR:
3153 : 4 : inform (loc, " %qT is not trivially destructible", t1);
3154 : 4 : break;
3155 : 3 : case CPTK_HAS_UNIQUE_OBJ_REPRESENTATIONS:
3156 : 3 : inform (loc, " %qT does not have unique object representations", t1);
3157 : 3 : break;
3158 : 4 : case CPTK_HAS_VIRTUAL_DESTRUCTOR:
3159 : 4 : inform (loc, " %qT does not have a virtual destructor", t1);
3160 : 4 : break;
3161 : 4 : case CPTK_IS_ABSTRACT:
3162 : 4 : inform (loc, " %qT is not an abstract class", t1);
3163 : 4 : break;
3164 : 3 : case CPTK_IS_AGGREGATE:
3165 : 3 : inform (loc, " %qT is not an aggregate", t1);
3166 : 3 : break;
3167 : 0 : case CPTK_IS_ARRAY:
3168 : 0 : inform (loc, " %qT is not an array", t1);
3169 : 0 : break;
3170 : 3 : case CPTK_IS_ASSIGNABLE:
3171 : 3 : inform (loc, " %qT is not assignable from %qT", t1, t2);
3172 : 3 : break;
3173 : 2 : case CPTK_IS_BASE_OF:
3174 : 2 : inform (loc, " %qT is not a base of %qT", t1, t2);
3175 : 2 : break;
3176 : 0 : case CPTK_IS_BOUNDED_ARRAY:
3177 : 0 : inform (loc, " %qT is not a bounded array", t1);
3178 : 0 : break;
3179 : 93 : case CPTK_IS_CLASS:
3180 : 93 : inform (loc, " %qT is not a class", t1);
3181 : 93 : break;
3182 : 0 : case CPTK_IS_CONST:
3183 : 0 : inform (loc, " %qT is not a const type", t1);
3184 : 0 : break;
3185 : 9 : case CPTK_IS_CONSTRUCTIBLE:
3186 : 9 : if (!t2)
3187 : 3 : inform (loc, " %qT is not default constructible", t1);
3188 : : else
3189 : 6 : inform (loc, " %qT is not constructible from %qE", t1, t2);
3190 : : break;
3191 : 0 : case CPTK_IS_CONVERTIBLE:
3192 : 0 : inform (loc, " %qT is not convertible from %qE", t2, t1);
3193 : 0 : break;
3194 : 4 : case CPTK_IS_EMPTY:
3195 : 4 : inform (loc, " %qT is not an empty class", t1);
3196 : 4 : break;
3197 : 0 : case CPTK_IS_ENUM:
3198 : 0 : inform (loc, " %qT is not an enum", t1);
3199 : 0 : break;
3200 : 4 : case CPTK_IS_FINAL:
3201 : 4 : inform (loc, " %qT is not a final class", t1);
3202 : 4 : break;
3203 : 0 : case CPTK_IS_FUNCTION:
3204 : 0 : inform (loc, " %qT is not a function", t1);
3205 : 0 : break;
3206 : 0 : case CPTK_IS_INVOCABLE:
3207 : 0 : if (!t2)
3208 : 0 : inform (loc, " %qT is not invocable", t1);
3209 : : else
3210 : 0 : inform (loc, " %qT is not invocable by %qE", t1, t2);
3211 : : break;
3212 : 0 : case CPTK_IS_LAYOUT_COMPATIBLE:
3213 : 0 : inform (loc, " %qT is not layout compatible with %qT", t1, t2);
3214 : 0 : break;
3215 : 0 : case CPTK_IS_LITERAL_TYPE:
3216 : 0 : inform (loc, " %qT is not a literal type", t1);
3217 : 0 : break;
3218 : 0 : case CPTK_IS_MEMBER_FUNCTION_POINTER:
3219 : 0 : inform (loc, " %qT is not a member function pointer", t1);
3220 : 0 : break;
3221 : 0 : case CPTK_IS_MEMBER_OBJECT_POINTER:
3222 : 0 : inform (loc, " %qT is not a member object pointer", t1);
3223 : 0 : break;
3224 : 0 : case CPTK_IS_MEMBER_POINTER:
3225 : 0 : inform (loc, " %qT is not a member pointer", t1);
3226 : 0 : break;
3227 : 3 : case CPTK_IS_NOTHROW_ASSIGNABLE:
3228 : 3 : inform (loc, " %qT is not nothrow assignable from %qT", t1, t2);
3229 : 3 : break;
3230 : 9 : case CPTK_IS_NOTHROW_CONSTRUCTIBLE:
3231 : 9 : if (!t2)
3232 : 3 : inform (loc, " %qT is not nothrow default constructible", t1);
3233 : : else
3234 : 6 : inform (loc, " %qT is not nothrow constructible from %qE", t1, t2);
3235 : : break;
3236 : 0 : case CPTK_IS_NOTHROW_CONVERTIBLE:
3237 : 0 : inform (loc, " %qT is not nothrow convertible from %qE", t2, t1);
3238 : 0 : break;
3239 : 0 : case CPTK_IS_NOTHROW_INVOCABLE:
3240 : 0 : if (!t2)
3241 : 0 : inform (loc, " %qT is not nothrow invocable", t1);
3242 : : else
3243 : 0 : inform (loc, " %qT is not nothrow invocable by %qE", t1, t2);
3244 : : break;
3245 : 0 : case CPTK_IS_OBJECT:
3246 : 0 : inform (loc, " %qT is not an object type", t1);
3247 : 0 : break;
3248 : 0 : case CPTK_IS_POINTER_INTERCONVERTIBLE_BASE_OF:
3249 : 0 : inform (loc, " %qT is not pointer-interconvertible base of %qT",
3250 : : t1, t2);
3251 : 0 : break;
3252 : 4 : case CPTK_IS_POD:
3253 : 4 : inform (loc, " %qT is not a POD type", t1);
3254 : 4 : break;
3255 : 0 : case CPTK_IS_POINTER:
3256 : 0 : inform (loc, " %qT is not a pointer", t1);
3257 : 0 : break;
3258 : 4 : case CPTK_IS_POLYMORPHIC:
3259 : 4 : inform (loc, " %qT is not a polymorphic type", t1);
3260 : 4 : break;
3261 : 0 : case CPTK_IS_REFERENCE:
3262 : 0 : inform (loc, " %qT is not a reference", t1);
3263 : 0 : break;
3264 : 145 : case CPTK_IS_SAME:
3265 : 145 : inform (loc, " %qT is not the same as %qT", t1, t2);
3266 : 145 : break;
3267 : 0 : case CPTK_IS_SCOPED_ENUM:
3268 : 0 : inform (loc, " %qT is not a scoped enum", t1);
3269 : 0 : break;
3270 : 4 : case CPTK_IS_STD_LAYOUT:
3271 : 4 : inform (loc, " %qT is not an standard layout type", t1);
3272 : 4 : break;
3273 : 4 : case CPTK_IS_TRIVIAL:
3274 : 4 : inform (loc, " %qT is not a trivial type", t1);
3275 : 4 : break;
3276 : 3 : case CPTK_IS_TRIVIALLY_ASSIGNABLE:
3277 : 3 : inform (loc, " %qT is not trivially assignable from %qT", t1, t2);
3278 : 3 : break;
3279 : 9 : case CPTK_IS_TRIVIALLY_CONSTRUCTIBLE:
3280 : 9 : if (!t2)
3281 : 3 : inform (loc, " %qT is not trivially default constructible", t1);
3282 : : else
3283 : 6 : inform (loc, " %qT is not trivially constructible from %qE", t1, t2);
3284 : : break;
3285 : 3 : case CPTK_IS_TRIVIALLY_COPYABLE:
3286 : 3 : inform (loc, " %qT is not trivially copyable", t1);
3287 : 3 : break;
3288 : 0 : case CPTK_IS_UNBOUNDED_ARRAY:
3289 : 0 : inform (loc, " %qT is not an unbounded array", t1);
3290 : 0 : break;
3291 : 4 : case CPTK_IS_UNION:
3292 : 4 : inform (loc, " %qT is not a union", t1);
3293 : 4 : break;
3294 : 0 : case CPTK_IS_VOLATILE:
3295 : 0 : inform (loc, " %qT is not a volatile type", t1);
3296 : 0 : break;
3297 : 0 : case CPTK_RANK:
3298 : 0 : inform (loc, " %qT cannot yield a rank", t1);
3299 : 0 : break;
3300 : 0 : case CPTK_REF_CONSTRUCTS_FROM_TEMPORARY:
3301 : 0 : inform (loc, " %qT is not a reference that binds to a temporary "
3302 : : "object of type %qT (direct-initialization)", t1, t2);
3303 : 0 : break;
3304 : 0 : case CPTK_REF_CONVERTS_FROM_TEMPORARY:
3305 : 0 : inform (loc, " %qT is not a reference that binds to a temporary "
3306 : : "object of type %qT (copy-initialization)", t1, t2);
3307 : 0 : break;
3308 : 21 : case CPTK_IS_DEDUCIBLE:
3309 : 21 : inform (loc, " %qD is not deducible from %qT", t1, t2);
3310 : 21 : break;
3311 : : #define DEFTRAIT_TYPE(CODE, NAME, ARITY) \
3312 : : case CPTK_##CODE:
3313 : : #include "cp-trait.def"
3314 : : #undef DEFTRAIT_TYPE
3315 : : /* Type-yielding traits aren't expressions. */
3316 : 0 : gcc_unreachable ();
3317 : : /* We deliberately omit the default case so that when adding a new
3318 : : trait we'll get reminded (by way of a warning) to handle it here. */
3319 : : }
3320 : 370 : }
3321 : :
3322 : : /* Diagnose a substitution failure in the atomic constraint T using ARGS. */
3323 : :
3324 : : static void
3325 : 1057 : diagnose_atomic_constraint (tree t, tree args, tree result, sat_info info)
3326 : : {
3327 : : /* If the constraint is already ill-formed, we've previously diagnosed
3328 : : the reason. We should still say why the constraints aren't satisfied. */
3329 : 1057 : if (t == error_mark_node)
3330 : : {
3331 : 0 : location_t loc;
3332 : 0 : if (info.in_decl)
3333 : 0 : loc = DECL_SOURCE_LOCATION (info.in_decl);
3334 : : else
3335 : 0 : loc = input_location;
3336 : 0 : inform (loc, "invalid constraints");
3337 : 0 : return;
3338 : : }
3339 : :
3340 : 1057 : location_t loc = get_constraint_error_location (t);
3341 : 1057 : iloc_sentinel loc_s (loc);
3342 : :
3343 : : /* Generate better diagnostics for certain kinds of expressions. */
3344 : 1057 : tree expr = ATOMIC_CONSTR_EXPR (t);
3345 : 1057 : STRIP_ANY_LOCATION_WRAPPER (expr);
3346 : 1057 : switch (TREE_CODE (expr))
3347 : : {
3348 : 370 : case TRAIT_EXPR:
3349 : 370 : diagnose_trait_expr (expr, args);
3350 : 370 : break;
3351 : 293 : case REQUIRES_EXPR:
3352 : 293 : gcc_checking_assert (info.diagnose_unsatisfaction_p ());
3353 : : /* Clear in_decl before replaying the substitution to avoid emitting
3354 : : seemingly unhelpful "in declaration ..." notes that follow some
3355 : : substitution failure error messages. */
3356 : 293 : info.in_decl = NULL_TREE;
3357 : 293 : tsubst_requires_expr (expr, args, info);
3358 : 293 : break;
3359 : 394 : default:
3360 : 394 : if (!same_type_p (TREE_TYPE (result), boolean_type_node))
3361 : 26 : error_at (loc, "constraint %qE has type %qT, not %<bool%>",
3362 : 26 : t, TREE_TYPE (result));
3363 : : else
3364 : 368 : inform (loc, "the expression %qE evaluated to %<false%>", t);
3365 : : }
3366 : 1057 : }
3367 : :
3368 : : GTY(()) tree current_failed_constraint;
3369 : :
3370 : 176397252 : diagnosing_failed_constraint::
3371 : 176397252 : diagnosing_failed_constraint (tree t, tree args, bool diag)
3372 : 176397252 : : diagnosing_error (diag)
3373 : : {
3374 : 176397252 : if (diagnosing_error)
3375 : : {
3376 : 5413 : current_failed_constraint
3377 : 5413 : = tree_cons (args, t, current_failed_constraint);
3378 : 5413 : ++current_constraint_diagnosis_depth;
3379 : : }
3380 : 176397252 : }
3381 : :
3382 : 176394552 : diagnosing_failed_constraint::
3383 : : ~diagnosing_failed_constraint ()
3384 : : {
3385 : 176394552 : if (diagnosing_error)
3386 : : {
3387 : 5413 : --current_constraint_diagnosis_depth;
3388 : 5413 : if (current_failed_constraint)
3389 : 4249 : current_failed_constraint = TREE_CHAIN (current_failed_constraint);
3390 : : }
3391 : :
3392 : 176394552 : }
3393 : :
3394 : : /* Whether we are allowed to replay an error that underlies a constraint failure
3395 : : at the current diagnosis depth. */
3396 : :
3397 : : bool
3398 : 367 : diagnosing_failed_constraint::replay_errors_p ()
3399 : : {
3400 : 367 : if (current_constraint_diagnosis_depth >= concepts_diagnostics_max_depth)
3401 : : {
3402 : 332 : concepts_diagnostics_max_depth_exceeded_p = true;
3403 : 332 : return false;
3404 : : }
3405 : : else
3406 : : return true;
3407 : : }
3408 : :
3409 : : /* Emit diagnostics detailing the failure ARGS to satisfy the constraints
3410 : : of T. Here, T and ARGS are as in constraints_satisfied_p. */
3411 : :
3412 : : void
3413 : 1117 : diagnose_constraints (location_t loc, tree t, tree args)
3414 : : {
3415 : 1117 : inform (loc, "constraints not satisfied");
3416 : :
3417 : 1117 : if (concepts_diagnostics_max_depth == 0)
3418 : 0 : return;
3419 : :
3420 : : /* Replay satisfaction, but diagnose unsatisfaction. */
3421 : 1117 : sat_info noisy (tf_warning_or_error, NULL_TREE, /*diag_unsat=*/true);
3422 : 1117 : constraint_satisfaction_value (t, args, noisy);
3423 : :
3424 : 1117 : static bool suggested_p;
3425 : 1117 : if (concepts_diagnostics_max_depth_exceeded_p
3426 : 329 : && current_constraint_diagnosis_depth == 0
3427 : 326 : && !suggested_p)
3428 : : {
3429 : 123 : inform (UNKNOWN_LOCATION,
3430 : : "set %qs to at least %d for more detail",
3431 : : "-fconcepts-diagnostics-depth=",
3432 : 123 : concepts_diagnostics_max_depth + 1);
3433 : 123 : suggested_p = true;
3434 : : }
3435 : : }
3436 : :
3437 : : #include "gt-cp-constraint.h"
|