Line data Source code
1 : /* Perform the semantic phase of lambda parsing, i.e., the process of
2 : building tree structure, checking semantic consistency, and
3 : building RTL. These routines are used both during actual parsing
4 : and during the instantiation of template functions.
5 :
6 : Copyright (C) 1998-2026 Free Software Foundation, Inc.
7 :
8 : This file is part of GCC.
9 :
10 : GCC is free software; you can redistribute it and/or modify it
11 : under the terms of the GNU General Public License as published by
12 : the Free Software Foundation; either version 3, or (at your option)
13 : any later version.
14 :
15 : GCC is distributed in the hope that it will be useful, but
16 : WITHOUT ANY WARRANTY; without even the implied warranty of
17 : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 : General Public License for more details.
19 :
20 : You should have received a copy of the GNU General Public License
21 : along with GCC; see the file COPYING3. If not see
22 : <http://www.gnu.org/licenses/>. */
23 :
24 : #include "config.h"
25 : #include "system.h"
26 : #include "coretypes.h"
27 : #include "cp-tree.h"
28 : #include "stringpool.h"
29 : #include "cgraph.h"
30 : #include "tree-iterator.h"
31 : #include "toplev.h"
32 : #include "gimplify.h"
33 : #include "target.h"
34 : #include "decl.h"
35 : #include "flags.h"
36 : #include "contracts.h"
37 :
38 : /* Constructor for a lambda expression. */
39 :
40 : tree
41 1453599 : build_lambda_expr (void)
42 : {
43 1453599 : tree lambda = make_node (LAMBDA_EXPR);
44 1453599 : LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) = CPLD_NONE;
45 1453599 : LAMBDA_EXPR_CAPTURE_LIST (lambda) = NULL_TREE;
46 1453599 : LAMBDA_EXPR_THIS_CAPTURE (lambda) = NULL_TREE;
47 1453599 : LAMBDA_EXPR_REGEN_INFO (lambda) = NULL_TREE;
48 1453599 : LAMBDA_EXPR_PENDING_PROXIES (lambda) = NULL;
49 1453599 : return lambda;
50 : }
51 :
52 : /* Create the closure object for a LAMBDA_EXPR. */
53 :
54 : tree
55 1454240 : build_lambda_object (tree lambda_expr)
56 : {
57 : /* Build aggregate constructor call.
58 : - cp_parser_braced_list
59 : - cp_parser_functional_cast */
60 1454240 : vec<constructor_elt, va_gc> *elts = NULL;
61 1454240 : tree node, expr, type;
62 :
63 1454240 : if (processing_template_decl && !in_template_context
64 642 : && current_binding_level->requires_expression)
65 : /* As in cp_parser_lambda_expression, don't get confused by
66 : cp_parser_requires_expression setting processing_template_decl. In that
67 : case we want to return the result of finish_compound_literal, to avoid
68 : tsubst_lambda_expr. */;
69 1454225 : else if (processing_template_decl || lambda_expr == error_mark_node)
70 : return lambda_expr;
71 :
72 : /* Make sure any error messages refer to the lambda-introducer. */
73 341500 : location_t loc = LAMBDA_EXPR_LOCATION (lambda_expr);
74 341500 : iloc_sentinel il (loc);
75 :
76 341500 : for (node = LAMBDA_EXPR_CAPTURE_LIST (lambda_expr);
77 825766 : node;
78 484266 : node = TREE_CHAIN (node))
79 : {
80 484266 : tree field = TREE_PURPOSE (node);
81 484266 : tree val = TREE_VALUE (node);
82 :
83 484266 : if (field == error_mark_node)
84 : {
85 0 : expr = error_mark_node;
86 0 : goto out;
87 : }
88 :
89 484266 : if (TREE_CODE (val) == TREE_LIST)
90 0 : val = build_x_compound_expr_from_list (val, ELK_INIT,
91 : tf_warning_or_error);
92 :
93 484266 : if (DECL_P (val))
94 233115 : mark_used (val);
95 :
96 : /* Mere mortals can't copy arrays with aggregate initialization, so
97 : do some magic to make it work here. */
98 484266 : if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE)
99 19 : val = build_array_copy (val);
100 484247 : else if (DECL_NORMAL_CAPTURE_P (field)
101 483235 : && !DECL_VLA_CAPTURE_P (field)
102 967440 : && !TYPE_REF_P (TREE_TYPE (field)))
103 : {
104 : /* "the entities that are captured by copy are used to
105 : direct-initialize each corresponding non-static data
106 : member of the resulting closure object."
107 :
108 : There's normally no way to express direct-initialization
109 : from an element of a CONSTRUCTOR, so we build up a special
110 : TARGET_EXPR to bypass the usual copy-initialization. */
111 248754 : val = force_rvalue (val, tf_warning_or_error);
112 248754 : if (TREE_CODE (val) == TARGET_EXPR)
113 884 : TARGET_EXPR_DIRECT_INIT_P (val) = true;
114 : }
115 :
116 484266 : CONSTRUCTOR_APPEND_ELT (elts, DECL_NAME (field), val);
117 : }
118 :
119 341500 : expr = build_constructor (init_list_type_node, elts);
120 341500 : CONSTRUCTOR_IS_DIRECT_INIT (expr) = 1;
121 :
122 : /* N2927: "[The closure] class type is not an aggregate."
123 : But we briefly treat it as an aggregate to make this simpler. */
124 341500 : type = LAMBDA_EXPR_CLOSURE (lambda_expr);
125 341500 : CLASSTYPE_NON_AGGREGATE (type) = 0;
126 341500 : expr = finish_compound_literal (type, expr, tf_warning_or_error);
127 341500 : protected_set_expr_location (expr, loc);
128 341500 : CLASSTYPE_NON_AGGREGATE (type) = 1;
129 :
130 341500 : out:
131 341500 : return expr;
132 341500 : }
133 :
134 : /* Return an initialized RECORD_TYPE for LAMBDA.
135 : LAMBDA must have its explicit captures already. */
136 :
137 : tree
138 1453590 : begin_lambda_type (tree lambda)
139 : {
140 : /* Lambda names are nearly but not quite anonymous. */
141 1453590 : tree name = make_anon_name ();
142 1453590 : IDENTIFIER_LAMBDA_P (name) = true;
143 :
144 : /* Create the new RECORD_TYPE for this lambda. */
145 1453590 : tree type = xref_tag (/*tag_code=*/record_type, name);
146 1453590 : if (type == error_mark_node)
147 : return error_mark_node;
148 :
149 : /* Designate it as a struct so that we can use aggregate initialization. */
150 1453590 : CLASSTYPE_DECLARED_CLASS (type) = false;
151 :
152 : /* Cross-reference the expression and the type. */
153 1453590 : LAMBDA_EXPR_CLOSURE (lambda) = type;
154 1453590 : SET_CLASSTYPE_LAMBDA_EXPR (type, lambda);
155 :
156 : /* In C++17, assume the closure is literal; we'll clear the flag later if
157 : necessary. */
158 1453590 : if (cxx_dialect >= cxx17)
159 1449839 : CLASSTYPE_LITERAL_P (type) = true;
160 :
161 : /* Clear base types. */
162 1453590 : xref_basetypes (type, /*bases=*/NULL_TREE);
163 :
164 : /* Start the class. */
165 1453590 : type = begin_class_definition (type);
166 :
167 1453590 : return type;
168 : }
169 :
170 : /* Given a LAMBDA_EXPR or closure type LAMBDA, return the op() of the
171 : closure type. */
172 :
173 : tree
174 12336621 : lambda_function (tree lambda)
175 : {
176 12336621 : tree type;
177 12336621 : if (TREE_CODE (lambda) == LAMBDA_EXPR)
178 5501597 : type = LAMBDA_EXPR_CLOSURE (lambda);
179 : else
180 : type = lambda;
181 24673242 : gcc_assert (LAMBDA_TYPE_P (type));
182 : /* Don't let debug_tree cause instantiation. */
183 12336621 : if (CLASSTYPE_TEMPLATE_INSTANTIATION (type)
184 12336621 : && !COMPLETE_OR_OPEN_TYPE_P (type))
185 : return NULL_TREE;
186 12336621 : lambda = get_class_binding_direct (type, call_op_identifier);
187 12336621 : if (lambda)
188 12336590 : lambda = STRIP_TEMPLATE (get_first_fn (lambda));
189 : return lambda;
190 : }
191 :
192 : /* True if EXPR is an expression whose type can be used directly in lambda
193 : capture. Not to be used for 'auto'. */
194 :
195 : static bool
196 1765100 : type_deducible_expression_p (tree expr)
197 : {
198 1765100 : if (!type_dependent_expression_p (expr))
199 : return true;
200 0 : if (BRACE_ENCLOSED_INITIALIZER_P (expr)
201 1108213 : || TREE_CODE (expr) == EXPR_PACK_EXPANSION)
202 : return false;
203 1108213 : tree t = non_reference (TREE_TYPE (expr));
204 1108213 : return (t && TREE_CODE (t) != TYPE_PACK_EXPANSION
205 474870 : && !WILDCARD_TYPE_P (t) && !LAMBDA_TYPE_P (t)
206 563074 : && !array_of_unknown_bound_p (t)
207 1671258 : && !type_uses_auto (t));
208 : }
209 :
210 : /* Returns the type to use for the FIELD_DECL corresponding to the
211 : capture of EXPR. EXPLICIT_INIT_P indicates whether this is a
212 : C++14 init capture, and BY_REFERENCE_P indicates whether we're
213 : capturing by reference. */
214 :
215 : tree
216 1777746 : lambda_capture_field_type (tree expr, bool explicit_init_p,
217 : bool by_reference_p)
218 : {
219 1777746 : tree type;
220 1777746 : bool is_this = is_this_parameter (tree_strip_nop_conversions (expr));
221 :
222 1777746 : if (explicit_init_p)
223 : {
224 12646 : if (uses_parameter_packs (expr))
225 : {
226 : /* Stick with 'auto...' even if the type could be deduced. */
227 181 : type = make_auto_pack ();
228 181 : if (by_reference_p)
229 73 : type = build_reference_type (type);
230 : }
231 : else
232 : {
233 12465 : tree auto_node = make_auto ();
234 12465 : type = auto_node;
235 12465 : if (by_reference_p)
236 : /* Add the reference now, so deduction doesn't lose
237 : outermost CV qualifiers of EXPR. */
238 53 : type = build_reference_type (type);
239 12465 : type = do_auto_deduction (type, expr, auto_node);
240 : }
241 : }
242 1765100 : else if (!type_deducible_expression_p (expr))
243 : {
244 545171 : type = cxx_make_type (DECLTYPE_TYPE);
245 545171 : DECLTYPE_TYPE_EXPR (type) = expr;
246 545171 : DECLTYPE_FOR_LAMBDA_CAPTURE (type) = true;
247 545171 : DECLTYPE_FOR_REF_CAPTURE (type) = by_reference_p;
248 545171 : SET_TYPE_STRUCTURAL_EQUALITY (type);
249 : }
250 : else
251 : {
252 1219929 : STRIP_ANY_LOCATION_WRAPPER (expr);
253 :
254 1219929 : if (!by_reference_p && is_capture_proxy (expr))
255 : {
256 : /* When capturing by-value another capture proxy from an enclosing
257 : lambda, consider the type of the corresponding field instead,
258 : as the proxy may be additionally const-qualifed if the enclosing
259 : lambda is non-mutable (PR94376). */
260 227 : gcc_assert (TREE_CODE (DECL_VALUE_EXPR (expr)) == COMPONENT_REF);
261 227 : expr = TREE_OPERAND (DECL_VALUE_EXPR (expr), 1);
262 : }
263 :
264 1219929 : type = non_reference (unlowered_expr_type (expr));
265 :
266 1219929 : if ((by_reference_p && !is_this) || TREE_CODE (type) == FUNCTION_TYPE)
267 625539 : type = build_reference_type (type);
268 : }
269 :
270 1777746 : return type;
271 : }
272 :
273 : /* Returns true iff DECL is a lambda capture proxy variable created by
274 : build_capture_proxy. */
275 :
276 : bool
277 5617382648 : is_capture_proxy (tree decl)
278 : {
279 : /* Location wrappers should be stripped or otherwise handled by the
280 : caller before using this predicate. */
281 5617382648 : gcc_checking_assert (!location_wrapper_p (decl));
282 :
283 5617382648 : return (VAR_P (decl)
284 1554878695 : && DECL_HAS_VALUE_EXPR_P (decl)
285 33254690 : && !DECL_ANON_UNION_VAR_P (decl)
286 33252437 : && !DECL_DECOMPOSITION_P (decl)
287 29963606 : && !DECL_FNAME_P (decl)
288 29636497 : && !(DECL_ARTIFICIAL (decl)
289 29634747 : && DECL_LANG_SPECIFIC (decl)
290 28898438 : && DECL_OMP_PRIVATIZED_MEMBER (decl))
291 5676617353 : && LAMBDA_FUNCTION_P (DECL_CONTEXT (decl)));
292 : }
293 :
294 : /* Returns true iff DECL is a capture proxy for a normal capture
295 : (i.e. without explicit initializer). */
296 :
297 : bool
298 5319406806 : is_normal_capture_proxy (tree decl)
299 : {
300 5319406806 : if (!is_capture_proxy (decl))
301 : /* It's not a capture proxy. */
302 : return false;
303 :
304 21402841 : return (DECL_LANG_SPECIFIC (decl)
305 21402841 : && DECL_CAPTURED_VARIABLE (decl));
306 : }
307 :
308 : /* If DECL is a normal capture proxy, return the variable it captures.
309 : Otherwise, just return DECL. */
310 :
311 : tree
312 4746114 : strip_normal_capture_proxy (tree decl)
313 : {
314 4780729 : while (is_normal_capture_proxy (decl))
315 34615 : decl = DECL_CAPTURED_VARIABLE (decl);
316 4746114 : return decl;
317 : }
318 :
319 : /* Returns true iff DECL is a capture proxy for a normal capture
320 : of a constant variable. */
321 :
322 : bool
323 30504 : is_constant_capture_proxy (tree decl)
324 : {
325 30504 : if (is_normal_capture_proxy (decl))
326 3384 : return decl_constant_var_p (DECL_CAPTURED_VARIABLE (decl));
327 : return false;
328 : }
329 :
330 : /* VAR is a capture proxy created by build_capture_proxy; add it to the
331 : current function, which is the operator() for the appropriate lambda. */
332 :
333 : void
334 2007026 : insert_capture_proxy (tree var)
335 : {
336 2007026 : if (is_normal_capture_proxy (var))
337 : {
338 1993613 : tree cap = DECL_CAPTURED_VARIABLE (var);
339 1993613 : if (CHECKING_P)
340 : {
341 1993613 : gcc_assert (!is_normal_capture_proxy (cap));
342 1993613 : tree old = retrieve_local_specialization (cap);
343 1993613 : if (old)
344 15323 : gcc_assert (DECL_CONTEXT (old) != DECL_CONTEXT (var));
345 : }
346 1993613 : register_local_specialization (var, cap);
347 : }
348 :
349 : /* Put the capture proxy in the extra body block so that it won't clash
350 : with a later local variable. */
351 2007026 : pushdecl_outermost_localscope (var);
352 :
353 : /* And put a DECL_EXPR in the STATEMENT_LIST for the same block. */
354 2007026 : var = build_stmt (DECL_SOURCE_LOCATION (var), DECL_EXPR, var);
355 : /* The first stmt_list is from start_preparsed_function. Then there's a
356 : possible stmt_list from begin_eh_spec_block, then the one from the
357 : lambda's outer {}. */
358 2007026 : unsigned index = 1 + use_eh_spec_block (current_function_decl);
359 2007026 : tree stmt_list = (*stmt_list_stack)[index];
360 2007026 : gcc_assert (stmt_list);
361 2007026 : append_to_statement_list_force (var, &stmt_list);
362 2007026 : }
363 :
364 : /* We've just finished processing a lambda; if the containing scope is also
365 : a lambda, insert any capture proxies that were created while processing
366 : the nested lambda. */
367 :
368 : void
369 1453590 : insert_pending_capture_proxies (void)
370 : {
371 1453590 : tree lam;
372 1453590 : vec<tree, va_gc> *proxies;
373 1453590 : unsigned i;
374 :
375 1548932 : if (!current_function_decl || !LAMBDA_FUNCTION_P (current_function_decl))
376 : return;
377 :
378 19738 : lam = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (current_function_decl));
379 19738 : proxies = LAMBDA_EXPR_PENDING_PROXIES (lam);
380 22886 : for (i = 0; i < vec_safe_length (proxies); ++i)
381 : {
382 3148 : tree var = (*proxies)[i];
383 3148 : insert_capture_proxy (var);
384 : }
385 19738 : release_tree_vector (LAMBDA_EXPR_PENDING_PROXIES (lam));
386 19738 : LAMBDA_EXPR_PENDING_PROXIES (lam) = NULL;
387 : }
388 :
389 : /* Given REF, a COMPONENT_REF designating a field in the lambda closure,
390 : return the type we want the proxy to have: the type of the field itself,
391 : with added const-qualification if the lambda isn't mutable and the
392 : capture is by value. */
393 :
394 : tree
395 2168073 : lambda_proxy_type (tree ref)
396 : {
397 2168073 : tree type;
398 2168073 : if (ref == error_mark_node)
399 : return error_mark_node;
400 2168055 : if (REFERENCE_REF_P (ref))
401 0 : ref = TREE_OPERAND (ref, 0);
402 2168055 : gcc_assert (TREE_CODE (ref) == COMPONENT_REF);
403 2168055 : type = TREE_TYPE (ref);
404 2168055 : if (!type || WILDCARD_TYPE_P (non_reference (type)))
405 : {
406 672873 : type = cxx_make_type (DECLTYPE_TYPE);
407 672873 : DECLTYPE_TYPE_EXPR (type) = ref;
408 672873 : DECLTYPE_FOR_LAMBDA_PROXY (type) = true;
409 672873 : SET_TYPE_STRUCTURAL_EQUALITY (type);
410 : }
411 2168055 : if (DECL_PACK_P (TREE_OPERAND (ref, 1)))
412 2392 : type = make_pack_expansion (type);
413 : return type;
414 : }
415 :
416 : /* MEMBER is a capture field in a lambda closure class. Now that we're
417 : inside the operator(), build a placeholder var for future lookups and
418 : debugging. But if EARLY_P is true, we do not have the real operator()
419 : yet and we have to proceed differently. */
420 :
421 : tree
422 2841918 : build_capture_proxy (tree member, tree init, bool early_p)
423 : {
424 2841918 : tree var, object, fn, closure, name, lam, type;
425 :
426 2841918 : if (PACK_EXPANSION_P (member))
427 2374 : member = PACK_EXPANSION_PATTERN (member);
428 :
429 2841918 : closure = DECL_CONTEXT (member);
430 2841918 : fn = lambda_function (closure);
431 2841918 : lam = CLASSTYPE_LAMBDA_EXPR (closure);
432 :
433 2841918 : object = DECL_ARGUMENTS (fn);
434 : /* The proxy variable forwards to the capture field. */
435 2841918 : if (INDIRECT_TYPE_P (TREE_TYPE (object)))
436 2841774 : object = build_fold_indirect_ref (object);
437 2841918 : object = finish_non_static_data_member (member, object, NULL_TREE);
438 2841918 : if (REFERENCE_REF_P (object))
439 1064412 : object = TREE_OPERAND (object, 0);
440 :
441 : /* Remove the __ inserted by add_capture. */
442 2841918 : if (IDENTIFIER_POINTER (DECL_NAME (member))[2] == '_'
443 2841918 : && IDENTIFIER_POINTER (DECL_NAME (member))[3] == '.')
444 36 : name = get_identifier ("_");
445 : else
446 2841882 : name = get_identifier (IDENTIFIER_POINTER (DECL_NAME (member)) + 2);
447 :
448 2841918 : if (name == this_identifier && TYPE_PTR_P (TREE_TYPE (member)))
449 : /* Avoid DECLTYPE_TYPE for by-ref 'this' capture in an xobj lambda; the
450 : constness of the closure doesn't matter just like it doesn't matter to
451 : other by-ref capture. It's simpler to handle this special case here
452 : than in lambda_proxy_type. */
453 674064 : type = TREE_TYPE (member);
454 : else
455 : {
456 2167854 : type = lambda_proxy_type (object);
457 2167854 : if (name == this_identifier)
458 : {
459 266 : type = build_pointer_type (type);
460 266 : type = cp_build_qualified_type (type, TYPE_QUAL_CONST);
461 266 : object = build_fold_addr_expr_with_type (object, type);
462 : }
463 : }
464 :
465 2841918 : if (DECL_VLA_CAPTURE_P (member))
466 : {
467 : /* Rebuild the VLA type from the pointer and maxindex. */
468 78 : tree field = next_aggregate_field (TYPE_FIELDS (type));
469 78 : tree ptr = build_simple_component_ref (object, field);
470 78 : field = next_aggregate_field (DECL_CHAIN (field));
471 78 : tree max = build_simple_component_ref (object, field);
472 78 : type = build_cplus_array_type (TREE_TYPE (TREE_TYPE (ptr)),
473 : build_index_type (max));
474 78 : type = build_reference_type (type);
475 78 : object = convert (type, ptr);
476 : }
477 :
478 2841918 : complete_type (type);
479 :
480 2841918 : var = build_decl (input_location, VAR_DECL, name, type);
481 2841918 : SET_DECL_VALUE_EXPR (var, object);
482 2841918 : DECL_HAS_VALUE_EXPR_P (var) = 1;
483 2841918 : DECL_ARTIFICIAL (var) = 1;
484 2841918 : TREE_USED (var) = 1;
485 2841918 : DECL_CONTEXT (var) = fn;
486 :
487 2841918 : if (DECL_NORMAL_CAPTURE_P (member))
488 : {
489 2815284 : if (DECL_VLA_CAPTURE_P (member))
490 : {
491 72 : init = CONSTRUCTOR_ELT (init, 0)->value;
492 72 : init = TREE_OPERAND (init, 0); // Strip ADDR_EXPR.
493 72 : init = TREE_OPERAND (init, 0); // Strip ARRAY_REF.
494 : }
495 : else
496 : {
497 2815212 : if (PACK_EXPANSION_P (init))
498 2036 : init = PACK_EXPANSION_PATTERN (init);
499 : }
500 :
501 2815284 : init = strip_contract_const_wrapper (init);
502 :
503 2815284 : if (INDIRECT_REF_P (init))
504 617868 : init = TREE_OPERAND (init, 0);
505 2815284 : STRIP_NOPS (init);
506 :
507 2815284 : gcc_assert (VAR_P (init) || TREE_CODE (init) == PARM_DECL);
508 2815284 : init = strip_normal_capture_proxy (init);
509 2815284 : retrofit_lang_decl (var);
510 2815284 : DECL_CAPTURED_VARIABLE (var) = init;
511 : }
512 :
513 2841918 : if (name == this_identifier)
514 : {
515 674330 : if (early_p)
516 : return var;
517 360682 : gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (lam) == member);
518 360682 : LAMBDA_EXPR_THIS_CAPTURE (lam) = var;
519 : }
520 :
521 2528270 : if (early_p)
522 : {
523 632722 : gcc_checking_assert (current_binding_level->kind == sk_lambda);
524 : /* insert_capture_proxy below wouldn't push into the lambda scope. */
525 632722 : pushdecl (var);
526 : }
527 1895548 : else if (fn == current_function_decl)
528 1892400 : insert_capture_proxy (var);
529 : else
530 3148 : vec_safe_push (LAMBDA_EXPR_PENDING_PROXIES (lam), var);
531 :
532 : return var;
533 : }
534 :
535 : static GTY(()) tree ptr_id;
536 : static GTY(()) tree max_id;
537 :
538 : /* Return a struct containing a pointer and a length for lambda capture of
539 : an array of runtime length. */
540 :
541 : static tree
542 45 : vla_capture_type (tree array_type)
543 : {
544 45 : tree type = xref_tag (record_type, make_anon_name ());
545 45 : xref_basetypes (type, NULL_TREE);
546 45 : type = begin_class_definition (type);
547 45 : if (!ptr_id)
548 : {
549 36 : ptr_id = get_identifier ("ptr");
550 36 : max_id = get_identifier ("max");
551 : }
552 45 : tree ptrtype = build_pointer_type (TREE_TYPE (array_type));
553 45 : tree field = build_decl (input_location, FIELD_DECL, ptr_id, ptrtype);
554 45 : finish_member_declaration (field);
555 45 : field = build_decl (input_location, FIELD_DECL, max_id, sizetype);
556 45 : finish_member_declaration (field);
557 45 : return finish_struct (type, NULL_TREE);
558 : }
559 :
560 : /* From an ID and INITIALIZER, create a capture (by reference if
561 : BY_REFERENCE_P is true), add it to the capture-list for LAMBDA,
562 : and return it. If ID is `this', BY_REFERENCE_P says whether
563 : `*this' is captured by reference. */
564 :
565 : tree
566 1664243 : add_capture (tree lambda, tree id, tree orig_init, bool by_reference_p,
567 : bool explicit_init_p, unsigned *name_independent_cnt)
568 : {
569 1664243 : char *buf;
570 1664243 : tree type, member, name;
571 1664243 : bool vla = false;
572 1664243 : bool variadic = false;
573 1664243 : tree initializer = orig_init;
574 :
575 1664243 : if (PACK_EXPANSION_P (initializer))
576 : {
577 1187 : initializer = PACK_EXPANSION_PATTERN (initializer);
578 : variadic = true;
579 : }
580 :
581 1664243 : if (TREE_CODE (initializer) == TREE_LIST
582 : /* A pack expansion might end up with multiple elements. */
583 1664243 : && !PACK_EXPANSION_P (TREE_VALUE (initializer)))
584 15 : initializer = build_x_compound_expr_from_list (initializer, ELK_INIT,
585 : tf_warning_or_error);
586 1664243 : type = TREE_TYPE (initializer);
587 1664243 : if (type == error_mark_node)
588 : return error_mark_node;
589 :
590 1664220 : if (!dependent_type_p (type) && array_of_runtime_bound_p (type))
591 : {
592 45 : vla = true;
593 45 : if (!by_reference_p)
594 3 : error ("array of runtime bound cannot be captured by copy, "
595 : "only by reference");
596 :
597 : /* For a VLA, we capture the address of the first element and the
598 : maximum index, and then reconstruct the VLA for the proxy. */
599 45 : tree elt = cp_build_array_ref (input_location, initializer,
600 : integer_zero_node, tf_warning_or_error);
601 45 : initializer = build_constructor_va (init_list_type_node, 2,
602 : NULL_TREE, build_address (elt),
603 : NULL_TREE,
604 : array_type_nelts_minus_one (type));
605 45 : type = vla_capture_type (type);
606 : }
607 1664175 : else if (!dependent_type_p (type)
608 1664175 : && variably_modified_type_p (type, NULL_TREE))
609 : {
610 18 : auto_diagnostic_group d;
611 18 : sorry ("capture of variably-modified type %qT that is not an N3639 array "
612 : "of runtime bound", type);
613 18 : if (TREE_CODE (type) == ARRAY_TYPE
614 18 : && variably_modified_type_p (TREE_TYPE (type), NULL_TREE))
615 12 : inform (input_location, "because the array element type %qT has "
616 12 : "variable size", TREE_TYPE (type));
617 18 : return error_mark_node;
618 18 : }
619 : else
620 : {
621 1664157 : type = lambda_capture_field_type (initializer, explicit_init_p,
622 : by_reference_p);
623 1664157 : if (type == error_mark_node)
624 : return error_mark_node;
625 :
626 1664154 : if (id == this_identifier && !by_reference_p)
627 : {
628 127 : gcc_assert (INDIRECT_TYPE_P (type));
629 127 : type = TREE_TYPE (type);
630 127 : initializer = cp_build_fold_indirect_ref (initializer);
631 : }
632 :
633 1664154 : if (dependent_type_p (type))
634 : ;
635 545501 : else if (id != this_identifier && by_reference_p)
636 : {
637 234759 : if (!lvalue_p (initializer))
638 : {
639 3 : error ("cannot capture %qE by reference", initializer);
640 3 : return error_mark_node;
641 : }
642 : }
643 : else
644 : {
645 : /* Capture by copy requires a complete type. */
646 310742 : type = complete_type (type);
647 310742 : if (!COMPLETE_TYPE_P (type))
648 : {
649 6 : auto_diagnostic_group d;
650 6 : error ("capture by copy of incomplete type %qT", type);
651 6 : cxx_incomplete_type_inform (type);
652 6 : return error_mark_node;
653 6 : }
654 310736 : else if (!verify_type_context (input_location,
655 : TCTX_CAPTURE_BY_COPY, type))
656 0 : return error_mark_node;
657 : }
658 :
659 1664145 : if (cxx_dialect < cxx20 && !explicit_init_p)
660 : {
661 7891 : auto_diagnostic_group d;
662 7891 : tree stripped_init = tree_strip_any_location_wrapper (initializer);
663 4156 : if (DECL_DECOMPOSITION_P (stripped_init)
664 12047 : && pedwarn (input_location, OPT_Wc__20_extensions,
665 : "captured structured bindings are a C++20 extension"))
666 179 : inform (DECL_SOURCE_LOCATION (stripped_init), "declared here");
667 7891 : }
668 : }
669 :
670 : /* Add __ to the beginning of the field name so that user code
671 : won't find the field with name lookup. We can't just leave the name
672 : unset because template instantiation uses the name to find
673 : instantiated fields. */
674 1664190 : if (id_equal (id, "_") && name_independent_cnt)
675 : {
676 48 : if (*name_independent_cnt == 0)
677 30 : name = get_identifier ("___");
678 : else
679 : {
680 : /* For 2nd and later name-independent capture use
681 : unique names. */
682 18 : char buf2[5 + (HOST_BITS_PER_INT + 2) / 3];
683 18 : sprintf (buf2, "___.%u", *name_independent_cnt);
684 18 : name = get_identifier (buf2);
685 : }
686 48 : name_independent_cnt[0]++;
687 : }
688 : else
689 : {
690 1664142 : buf = XALLOCAVEC (char, IDENTIFIER_LENGTH (id) + 3);
691 1664142 : buf[1] = buf[0] = '_';
692 1664142 : memcpy (buf + 2, IDENTIFIER_POINTER (id),
693 1664142 : IDENTIFIER_LENGTH (id) + 1);
694 1664142 : name = get_identifier (buf);
695 : }
696 :
697 1664190 : if (variadic)
698 : {
699 1187 : type = make_pack_expansion (type);
700 1187 : if (explicit_init_p)
701 : /* With an explicit initializer 'type' is auto, which isn't really a
702 : parameter pack in this context. We will want as many fields as we
703 : have elements in the expansion of the initializer, so use its packs
704 : instead. */
705 : {
706 350 : PACK_EXPANSION_PARAMETER_PACKS (type)
707 175 : = uses_parameter_packs (initializer);
708 175 : PACK_EXPANSION_AUTO_P (type) = true;
709 : }
710 : }
711 :
712 : /* Make member variable. */
713 1664190 : member = build_decl (input_location, FIELD_DECL, name, type);
714 1664190 : DECL_VLA_CAPTURE_P (member) = vla;
715 :
716 1664190 : if (!explicit_init_p)
717 : /* Normal captures are invisible to name lookup but uses are replaced
718 : with references to the capture field; we implement this by only
719 : really making them invisible in unevaluated context; see
720 : qualify_lookup. For now, let's make explicitly initialized captures
721 : always visible. */
722 1651547 : DECL_NORMAL_CAPTURE_P (member) = true;
723 :
724 1664190 : if (id == this_identifier)
725 330750 : LAMBDA_EXPR_THIS_CAPTURE (lambda) = member;
726 :
727 : /* Add it to the appropriate closure class if we've started it. */
728 1664190 : if (current_class_type
729 1664190 : && current_class_type == LAMBDA_EXPR_CLOSURE (lambda))
730 : {
731 949182 : if (COMPLETE_TYPE_P (current_class_type))
732 : {
733 : /* This can happen for code like [&]<auto e> { [:e:]; } where
734 : we can't figure out what the splice will designate while parsing;
735 : we'll only know it after we've substituted the splice, but then
736 : it's too late to capture anything. This code is ill-formed as
737 : per [expr.prim.splice]/2.1.4.1: The expression is ill-formed if
738 : S is ... a local entity such that ... there is a lambda scope that
739 : intervenes between the expression and the point at which S was
740 : introduced and the expression would be potentially evaluated. */
741 2 : error ("trying to capture %qD in instantiation of generic lambda",
742 : id);
743 2 : return error_mark_node;
744 : }
745 949180 : finish_member_declaration (member);
746 : }
747 :
748 1664188 : tree listmem = member;
749 1664188 : if (variadic)
750 : {
751 1187 : listmem = make_pack_expansion (member);
752 1187 : initializer = orig_init;
753 : }
754 1664188 : LAMBDA_EXPR_CAPTURE_LIST (lambda)
755 1664188 : = tree_cons (listmem, initializer, LAMBDA_EXPR_CAPTURE_LIST (lambda));
756 :
757 1664188 : if (LAMBDA_EXPR_CLOSURE (lambda))
758 949180 : return build_capture_proxy (member, initializer, /*early_p=*/false);
759 : /* For explicit captures we haven't started the function yet, so we wait
760 : and build the proxy from cp_parser_lambda_body. */
761 715008 : LAMBDA_CAPTURE_EXPLICIT_P (LAMBDA_EXPR_CAPTURE_LIST (lambda)) = true;
762 715008 : return NULL_TREE;
763 : }
764 :
765 : /* Register all the capture members on the list CAPTURES, which is the
766 : LAMBDA_EXPR_CAPTURE_LIST for the lambda after the introducer. */
767 :
768 : void
769 2399960 : register_capture_members (tree captures)
770 : {
771 2399960 : if (captures == NULL_TREE)
772 : return;
773 :
774 946370 : register_capture_members (TREE_CHAIN (captures));
775 :
776 946370 : tree field = TREE_PURPOSE (captures);
777 946370 : if (PACK_EXPANSION_P (field))
778 1187 : field = PACK_EXPANSION_PATTERN (field);
779 :
780 946370 : finish_member_declaration (field);
781 : }
782 :
783 : /* Similar to add_capture, except this works on a stack of nested lambdas.
784 : BY_REFERENCE_P in this case is derived from the default capture mode.
785 : Returns the capture for the lambda at the bottom of the stack. */
786 :
787 : tree
788 946052 : add_default_capture (tree lambda_stack, tree id, tree initializer)
789 : {
790 946052 : bool this_capture_p = (id == this_identifier);
791 946052 : tree var = NULL_TREE;
792 946052 : tree saved_class_type = current_class_type;
793 :
794 946052 : for (tree node = lambda_stack;
795 1895258 : node;
796 949206 : node = TREE_CHAIN (node))
797 : {
798 949206 : tree lambda = TREE_VALUE (node);
799 :
800 949206 : current_class_type = LAMBDA_EXPR_CLOSURE (lambda);
801 949206 : if (DECL_PACK_P (initializer))
802 0 : initializer = make_pack_expansion (initializer);
803 949206 : var = add_capture (lambda,
804 : id,
805 : initializer,
806 : /*by_reference_p=*/
807 : (this_capture_p
808 949206 : || (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda)
809 902172 : == CPLD_REFERENCE)),
810 : /*explicit_init_p=*/false, NULL);
811 949206 : initializer = convert_from_reference (var);
812 :
813 : /* Warn about deprecated implicit capture of this via [=]. */
814 949206 : if (cxx_dialect >= cxx20
815 943153 : && this_capture_p
816 995994 : && LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) == CPLD_COPY)
817 : {
818 62 : auto_diagnostic_group d;
819 62 : if (warning_at (LAMBDA_EXPR_LOCATION (lambda), OPT_Wdeprecated,
820 : "implicit capture of %qE via %<[=]%> is deprecated "
821 : "in C++20", this_identifier))
822 58 : inform (LAMBDA_EXPR_LOCATION (lambda), "add explicit %<this%> or "
823 : "%<*this%> capture");
824 62 : }
825 : }
826 :
827 946052 : current_class_type = saved_class_type;
828 :
829 946052 : return var;
830 : }
831 :
832 : /* Return the capture pertaining to a use of 'this' in LAMBDA, in the
833 : form of an INDIRECT_REF, possibly adding it through default
834 : capturing, if ADD_CAPTURE_P is nonzero. If ADD_CAPTURE_P is negative,
835 : try to capture but don't complain if we can't. */
836 :
837 : tree
838 1054782 : lambda_expr_this_capture (tree lambda, int add_capture_p)
839 : {
840 1054782 : tree result;
841 :
842 1054782 : tree this_capture = LAMBDA_EXPR_THIS_CAPTURE (lambda);
843 1054782 : if (this_capture)
844 958449 : if (tree spec = retrieve_local_specialization (this_capture))
845 : {
846 1967 : gcc_checking_assert (generic_lambda_fn_p (lambda_function (lambda)));
847 : this_capture = spec;
848 : }
849 :
850 : /* In unevaluated context this isn't an odr-use, so don't capture. */
851 1054782 : if (cp_unevaluated_operand)
852 122 : add_capture_p = false;
853 :
854 : /* If we captured 'this' but don't have a capture proxy yet, look up the
855 : captured 'this' again. */
856 1054782 : if (this_capture && TREE_CODE (this_capture) == FIELD_DECL)
857 : {
858 0 : gcc_assert (!add_capture_p);
859 : this_capture = NULL_TREE;
860 : }
861 :
862 : /* Try to default capture 'this' if we can. */
863 : if (!this_capture)
864 : {
865 : tree lambda_stack = NULL_TREE;
866 98084 : tree init = NULL_TREE;
867 : bool saw_complete = false;
868 :
869 : /* If we are in a lambda function, we can move out until we hit:
870 : 1. a non-lambda function or NSDMI,
871 : 2. a lambda function capturing 'this', or
872 : 3. a non-default capturing lambda function. */
873 : for (tree tlambda = lambda; ;)
874 : {
875 98084 : if (add_capture_p
876 145137 : && LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (tlambda) == CPLD_NONE)
877 : /* tlambda won't let us capture 'this'. */
878 : break;
879 :
880 98068 : if (add_capture_p)
881 47037 : lambda_stack = tree_cons (NULL_TREE,
882 : tlambda,
883 : lambda_stack);
884 :
885 98068 : tree closure = LAMBDA_EXPR_CLOSURE (tlambda);
886 98068 : if (COMPLETE_TYPE_P (closure))
887 : /* We're instantiating a generic lambda op(), the containing
888 : scope may be gone. */
889 6130 : saw_complete = true;
890 :
891 98068 : tree containing_function
892 98068 : = decl_function_context (TYPE_NAME (closure));
893 :
894 98068 : tree ex = LAMBDA_EXPR_EXTRA_SCOPE (tlambda);
895 98068 : if (ex && TREE_CODE (ex) == FIELD_DECL)
896 : {
897 : /* Lambda in an NSDMI. We don't have a function to look up
898 : 'this' in, but we can find (or rebuild) the fake one from
899 : inject_this_parameter. */
900 63 : if (!containing_function && !saw_complete)
901 : /* If we're parsing a lambda in a non-local class,
902 : we can find the fake 'this' in scope_chain. */
903 45 : init = scope_chain->x_current_class_ptr;
904 : else
905 : /* Otherwise it's either gone or buried in
906 : function_context_stack, so make another. */
907 18 : init = build_this_parm (NULL_TREE, DECL_CONTEXT (ex),
908 : TYPE_UNQUALIFIED);
909 63 : gcc_checking_assert
910 : (init && (TREE_TYPE (TREE_TYPE (init))
911 : == current_nonlambda_class_type ()));
912 : break;
913 : }
914 :
915 98005 : if (containing_function == NULL_TREE)
916 : /* We ran out of scopes; there's no 'this' to capture. */
917 : break;
918 :
919 96883 : if (!LAMBDA_FUNCTION_P (containing_function))
920 : {
921 : /* We found a non-lambda function.
922 : There is no this pointer in xobj member functions. */
923 93187 : if (DECL_IOBJ_MEMBER_FUNCTION_P (containing_function))
924 : /* First parameter is 'this'. */
925 85433 : init = DECL_ARGUMENTS (containing_function);
926 : break;
927 : }
928 :
929 1773 : tlambda
930 1773 : = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (containing_function));
931 :
932 1773 : if (LAMBDA_EXPR_THIS_CAPTURE (tlambda))
933 : {
934 : /* An outer lambda has already captured 'this'. */
935 : init = LAMBDA_EXPR_THIS_CAPTURE (tlambda);
936 : break;
937 : }
938 : }
939 :
940 88579 : if (init)
941 : {
942 85518 : if (add_capture_p)
943 47006 : this_capture = add_default_capture (lambda_stack,
944 : /*id=*/this_identifier,
945 : init);
946 : else
947 : this_capture = init;
948 : }
949 : }
950 :
951 1054782 : if (cp_unevaluated_operand)
952 : result = this_capture;
953 1054660 : else if (!this_capture)
954 : {
955 10803 : if (add_capture_p == 1)
956 : {
957 16 : error ("%<this%> was not captured for this lambda function");
958 16 : result = error_mark_node;
959 : }
960 : else
961 : result = NULL_TREE;
962 : }
963 : else
964 : {
965 : /* To make sure that current_class_ref is for the lambda. */
966 1043857 : gcc_assert (!current_class_ref
967 : || (TYPE_MAIN_VARIANT (TREE_TYPE (current_class_ref))
968 : == LAMBDA_EXPR_CLOSURE (lambda)));
969 :
970 1043857 : result = this_capture;
971 :
972 : /* If 'this' is captured, each use of 'this' is transformed into an
973 : access to the corresponding unnamed data member of the closure
974 : type cast (_expr.cast_ 5.4) to the type of 'this'. [ The cast
975 : ensures that the transformed expression is an rvalue. ] */
976 1043857 : result = rvalue (result);
977 : }
978 :
979 1043995 : gcc_checking_assert (!result || result == error_mark_node
980 : || TYPE_PTR_P (TREE_TYPE (result)));
981 :
982 1054782 : return result;
983 : }
984 :
985 : /* Return the innermost LAMBDA_EXPR we're currently in, if any. */
986 :
987 : tree
988 75701545 : current_lambda_expr (void)
989 : {
990 75701545 : tree type = current_class_type;
991 131085960 : while (type && !LAMBDA_TYPE_P (type))
992 24916626 : type = decl_type_context (TYPE_NAME (type));
993 75701545 : if (type)
994 5709355 : return CLASSTYPE_LAMBDA_EXPR (type);
995 : else
996 : return NULL_TREE;
997 : }
998 :
999 : /* Return the current LAMBDA_EXPR, if this is a resolvable dummy
1000 : object. NULL otherwise.. */
1001 :
1002 : static tree
1003 240936141 : resolvable_dummy_lambda (tree object)
1004 : {
1005 240936141 : if (!is_dummy_object (object))
1006 : return NULL_TREE;
1007 :
1008 11887063 : tree type = TYPE_MAIN_VARIANT (TREE_TYPE (object));
1009 11887063 : gcc_assert (!TYPE_PTR_P (type));
1010 :
1011 11887063 : tree fn;
1012 11887063 : if (type != current_class_type
1013 8535187 : && current_class_type
1014 9801225 : && LAMBDA_TYPE_P (current_class_type)
1015 442888 : && (fn = lambda_function (current_class_type))
1016 : /* Even dummy lambdas have an operator() since P2036, but the
1017 : dummy operator() doesn't have this set. */
1018 442878 : && DECL_LAMBDA_FUNCTION_P (fn)
1019 12329938 : && DERIVED_FROM_P (type, nonlambda_method_basetype()))
1020 429103 : return CLASSTYPE_LAMBDA_EXPR (current_class_type);
1021 :
1022 : return NULL_TREE;
1023 : }
1024 :
1025 : /* We don't want to capture 'this' until we know we need it, i.e. after
1026 : overload resolution has chosen a non-static member function. At that
1027 : point we call this function to turn a dummy object into a use of the
1028 : 'this' capture. */
1029 :
1030 : tree
1031 144753039 : maybe_resolve_dummy (tree object, bool add_capture_p)
1032 : {
1033 144753039 : if (tree lam = resolvable_dummy_lambda (object))
1034 385487 : if (tree cap = lambda_expr_this_capture (lam, add_capture_p))
1035 385487 : if (cap != error_mark_node)
1036 385481 : object = build_fold_indirect_ref (cap);
1037 :
1038 144753039 : return object;
1039 : }
1040 :
1041 : /* When parsing a generic lambda containing an argument-dependent
1042 : member function call we defer overload resolution to instantiation
1043 : time. But we have to know now whether to capture this or not.
1044 : Do that if FNS contains any non-static fns as per
1045 : [expr.prim.lambda.capture]/7.1. */
1046 :
1047 : void
1048 96183102 : maybe_generic_this_capture (tree object, tree fns)
1049 : {
1050 96183102 : if (tree lam = resolvable_dummy_lambda (object))
1051 43616 : if (!LAMBDA_EXPR_THIS_CAPTURE (lam))
1052 : {
1053 : /* We've not yet captured, so look at the function set of
1054 : interest. */
1055 2978 : if (BASELINK_P (fns))
1056 2225 : fns = BASELINK_FUNCTIONS (fns);
1057 2978 : bool id_expr = TREE_CODE (fns) == TEMPLATE_ID_EXPR;
1058 2978 : if (id_expr)
1059 759 : fns = TREE_OPERAND (fns, 0);
1060 :
1061 2987 : for (lkp_iterator iter (fns); iter; ++iter)
1062 2228 : if (((!id_expr && TREE_CODE (*iter) != USING_DECL)
1063 762 : || TREE_CODE (*iter) == TEMPLATE_DECL)
1064 5971 : && DECL_OBJECT_MEMBER_FUNCTION_P (*iter))
1065 : {
1066 : /* Found a non-static member. Capture this. */
1067 2978 : lambda_expr_this_capture (lam, /*maybe*/-1);
1068 2978 : break;
1069 : }
1070 : }
1071 96183102 : }
1072 :
1073 : /* Returns the innermost non-lambda function. If ONLY_SKIP_CONSTEVAL_BLOCK_P,
1074 : we only skip lambda functions that represent consteval blocks. */
1075 :
1076 : tree
1077 232442 : current_nonlambda_function (bool only_skip_consteval_block_p/*=false*/)
1078 : {
1079 232442 : tree fn = current_function_decl;
1080 232442 : tree lam;
1081 470383 : while (fn && LAMBDA_FUNCTION_P (fn)
1082 233012 : && (!only_skip_consteval_block_p
1083 : /* Only keep going if FN represents a consteval block. */
1084 555 : || ((lam = CLASSTYPE_LAMBDA_EXPR (CP_DECL_CONTEXT (fn)))
1085 555 : && LAMBDA_EXPR_CONSTEVAL_BLOCK_P (lam))))
1086 12 : fn = decl_function_context (fn);
1087 232442 : return fn;
1088 : }
1089 :
1090 : /* Returns the method basetype of the innermost non-lambda function, including
1091 : a hypothetical constructor if inside an NSDMI, or NULL_TREE if none. */
1092 :
1093 : tree
1094 443278 : nonlambda_method_basetype (void)
1095 : {
1096 443278 : tree type = current_class_type;
1097 886258 : if (!type || !LAMBDA_TYPE_P (type))
1098 692 : return current_class_ref ? type : NULL_TREE;
1099 :
1100 446491 : while (true)
1101 : {
1102 444689 : tree lam = CLASSTYPE_LAMBDA_EXPR (type);
1103 444689 : tree ex = LAMBDA_EXPR_EXTRA_SCOPE (lam);
1104 444689 : if (ex && TREE_CODE (ex) == FIELD_DECL)
1105 : /* Lambda in an NSDMI. */
1106 30 : return DECL_CONTEXT (ex);
1107 :
1108 444659 : tree fn = TYPE_CONTEXT (type);
1109 444659 : if (!fn || TREE_CODE (fn) != FUNCTION_DECL
1110 886255 : || !DECL_OBJECT_MEMBER_FUNCTION_P (fn))
1111 : /* No enclosing non-lambda method. */
1112 : return NULL_TREE;
1113 435362 : if (!LAMBDA_FUNCTION_P (fn))
1114 : /* Found an enclosing non-lambda method. */
1115 431677 : return TYPE_METHOD_BASETYPE (TREE_TYPE (fn));
1116 1802 : type = DECL_CONTEXT (fn);
1117 1802 : }
1118 : }
1119 :
1120 : /* Like current_scope, but looking through lambdas. If ONLY_SKIP_CLOSURES_P,
1121 : only look through closure types. */
1122 :
1123 : tree
1124 45629449 : current_nonlambda_scope (bool only_skip_closures_p/*=false*/)
1125 : {
1126 45629449 : tree scope = current_scope ();
1127 45716829 : for (;;)
1128 : {
1129 45804042 : if (!only_skip_closures_p
1130 45295515 : && TREE_CODE (scope) == FUNCTION_DECL
1131 85310524 : && LAMBDA_FUNCTION_P (scope))
1132 : {
1133 87213 : scope = CP_TYPE_CONTEXT (DECL_CONTEXT (scope));
1134 87213 : continue;
1135 : }
1136 52025558 : else if (LAMBDA_TYPE_P (scope))
1137 : {
1138 167 : scope = CP_TYPE_CONTEXT (scope);
1139 167 : continue;
1140 : }
1141 45629449 : break;
1142 : }
1143 45629449 : return scope;
1144 : }
1145 :
1146 : /* Helper function for maybe_add_lambda_conv_op; build a CALL_EXPR with
1147 : indicated FN and NARGS, but do not initialize the return type or any of the
1148 : argument slots. */
1149 :
1150 : static tree
1151 51404 : prepare_op_call (tree fn, int nargs)
1152 : {
1153 51404 : tree t;
1154 :
1155 51404 : t = build_vl_exp (CALL_EXPR, nargs + 3);
1156 51404 : CALL_EXPR_FN (t) = fn;
1157 51404 : CALL_EXPR_STATIC_CHAIN (t) = NULL;
1158 :
1159 51404 : return t;
1160 : }
1161 :
1162 : /* Return true iff CALLOP is the op() for a generic lambda. */
1163 :
1164 : bool
1165 610268086 : generic_lambda_fn_p (tree callop)
1166 : {
1167 661036540 : return (callop && LAMBDA_FUNCTION_P (callop)
1168 6520806 : && DECL_TEMPLATE_INFO (callop)
1169 616716517 : && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (callop)));
1170 : }
1171 :
1172 : /* If the closure TYPE has a static op(), also add a conversion to function
1173 : pointer. */
1174 :
1175 : void
1176 1453544 : maybe_add_lambda_conv_op (tree type)
1177 : {
1178 1453544 : bool nested = (cfun != NULL);
1179 1453544 : bool nested_def = decl_function_context (TYPE_MAIN_DECL (type));
1180 1453544 : tree callop = lambda_function (type);
1181 1453544 : tree lam = CLASSTYPE_LAMBDA_EXPR (type);
1182 :
1183 1453544 : if (LAMBDA_EXPR_CAPTURE_LIST (lam) != NULL_TREE
1184 475325 : || LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lam) != CPLD_NONE
1185 : /* CWG2561 ...and no explicit object parameter. */
1186 1917737 : || DECL_XOBJ_MEMBER_FUNCTION_P (callop))
1187 1355912 : return;
1188 :
1189 464059 : if (processing_template_decl)
1190 : return;
1191 :
1192 98188 : bool const generic_lambda_p = generic_lambda_fn_p (callop);
1193 :
1194 98188 : if (!generic_lambda_p && undeduced_auto_decl (callop))
1195 : {
1196 : /* If the op() wasn't deduced due to errors, give up. */
1197 34 : gcc_assert (errorcount || sorrycount);
1198 : return;
1199 : }
1200 :
1201 : /* Non-generic non-capturing lambdas only have a conversion function to
1202 : pointer to function when the trailing requires-clause's constraints are
1203 : satisfied. */
1204 98154 : if (!generic_lambda_p && !constraints_satisfied_p (callop))
1205 : return;
1206 :
1207 : /* Non-template conversion operators are defined directly with build_call_a
1208 : and using DIRECT_ARGVEC for arguments (including 'this'). Templates are
1209 : deferred and the CALL is built in-place. In the case of a deduced return
1210 : call op, the decltype expression, DECLTYPE_CALL, used as a substitute for
1211 : the return type is also built in-place. The arguments of DECLTYPE_CALL in
1212 : the return expression may differ in flags from those in the body CALL. In
1213 : particular, parameter pack expansions are marked PACK_EXPANSION_LOCAL_P in
1214 : the body CALL, but not in DECLTYPE_CALL. */
1215 :
1216 98136 : vec<tree, va_gc> *direct_argvec = 0;
1217 98136 : tree decltype_call = 0, call = 0;
1218 98136 : tree optype = TREE_TYPE (callop);
1219 98136 : tree fn_result = TREE_TYPE (optype);
1220 :
1221 98136 : tree thisarg = NULL_TREE;
1222 98136 : if (TREE_CODE (optype) == METHOD_TYPE)
1223 97844 : thisarg = build_int_cst (TREE_TYPE (DECL_ARGUMENTS (callop)), 0);
1224 98136 : if (generic_lambda_p)
1225 : {
1226 25813 : ++processing_template_decl;
1227 :
1228 : /* Prepare the dependent member call for the static member function
1229 : '_FUN' and, potentially, prepare another call to be used in a decltype
1230 : return expression for a deduced return call op to allow for simple
1231 : implementation of the conversion operator. */
1232 :
1233 25813 : tree objfn;
1234 25813 : int nargs = list_length (DECL_ARGUMENTS (callop));
1235 25813 : if (thisarg)
1236 : {
1237 25788 : tree instance = cp_build_fold_indirect_ref (thisarg);
1238 25788 : objfn = lookup_template_function (DECL_NAME (callop),
1239 25788 : DECL_TI_ARGS (callop));
1240 25788 : objfn = build_min (COMPONENT_REF, NULL_TREE,
1241 : instance, objfn, NULL_TREE);
1242 25788 : --nargs;
1243 25788 : call = prepare_op_call (objfn, nargs);
1244 : }
1245 : else
1246 : objfn = callop;
1247 :
1248 25813 : if (type_uses_auto (fn_result))
1249 25616 : decltype_call = prepare_op_call (objfn, nargs);
1250 : }
1251 72323 : else if (thisarg)
1252 : {
1253 72056 : direct_argvec = make_tree_vector ();
1254 72056 : direct_argvec->quick_push (thisarg);
1255 : }
1256 :
1257 : /* Copy CALLOP's argument list (as per 'copy_list') as FN_ARGS in order to
1258 : declare the static member function "_FUN" below. For each arg append to
1259 : DIRECT_ARGVEC (for the non-template case) or populate the pre-allocated
1260 : call args (for the template case). If a parameter pack is found, expand
1261 : it, flagging it as PACK_EXPANSION_LOCAL_P for the body call. */
1262 :
1263 98136 : tree fn_args = NULL_TREE;
1264 98136 : {
1265 98136 : int ix = 0;
1266 98136 : tree src = FUNCTION_FIRST_USER_PARM (callop);
1267 98136 : tree tgt = NULL;
1268 :
1269 98136 : if (!thisarg && !decltype_call)
1270 98136 : src = NULL_TREE;
1271 200229 : while (src)
1272 : {
1273 102093 : tree new_node = copy_node (src);
1274 : /* We set DECL_CONTEXT of NEW_NODE to the statfn below.
1275 : Notice this is creating a recursive type! */
1276 :
1277 : /* Clear TREE_ADDRESSABLE on thunk arguments. */
1278 102093 : TREE_ADDRESSABLE (new_node) = 0;
1279 :
1280 102093 : if (!fn_args)
1281 68305 : fn_args = tgt = new_node;
1282 : else
1283 : {
1284 33788 : TREE_CHAIN (tgt) = new_node;
1285 33788 : tgt = new_node;
1286 : }
1287 :
1288 102093 : mark_exp_read (tgt);
1289 :
1290 102093 : if (generic_lambda_p)
1291 : {
1292 47275 : tree a = tgt;
1293 47275 : if (thisarg)
1294 : {
1295 47249 : if (DECL_PACK_P (tgt))
1296 : {
1297 603 : a = make_pack_expansion (a);
1298 603 : PACK_EXPANSION_LOCAL_P (a) = true;
1299 : }
1300 47249 : CALL_EXPR_ARG (call, ix) = a;
1301 : }
1302 :
1303 47275 : if (decltype_call)
1304 : {
1305 : /* Avoid capturing variables in this context. */
1306 46993 : ++cp_unevaluated_operand;
1307 46993 : CALL_EXPR_ARG (decltype_call, ix) = forward_parm (tgt);
1308 46993 : --cp_unevaluated_operand;
1309 : }
1310 :
1311 47275 : ++ix;
1312 : }
1313 : else
1314 54818 : vec_safe_push (direct_argvec, tgt);
1315 :
1316 102093 : src = TREE_CHAIN (src);
1317 : }
1318 : }
1319 :
1320 98136 : if (generic_lambda_p)
1321 : {
1322 25813 : if (decltype_call)
1323 : {
1324 25616 : fn_result = finish_decltype_type
1325 25616 : (decltype_call, /*id_expression_or_member_access_p=*/false,
1326 : tf_warning_or_error);
1327 : }
1328 : }
1329 72323 : else if (thisarg)
1330 : {
1331 : /* Don't warn on deprecated or unavailable lambda declarations, unless
1332 : the lambda is actually called. */
1333 72056 : auto du = make_temp_override (deprecated_state,
1334 72056 : UNAVAILABLE_DEPRECATED_SUPPRESS);
1335 72056 : call = build_call_a (callop, direct_argvec->length (),
1336 : direct_argvec->address ());
1337 72056 : }
1338 :
1339 98136 : if (thisarg)
1340 : {
1341 97844 : CALL_FROM_THUNK_P (call) = 1;
1342 97844 : SET_EXPR_LOCATION (call, UNKNOWN_LOCATION);
1343 : }
1344 :
1345 98136 : tree stattype
1346 98136 : = cp_build_function_type (fn_result,
1347 98136 : FUNCTION_FIRST_USER_PARMTYPE (callop));
1348 98136 : stattype = cp_build_type_attribute_variant (stattype,
1349 98136 : TYPE_ATTRIBUTES (optype));
1350 98136 : if (flag_noexcept_type
1351 98136 : && TYPE_NOTHROW_P (TREE_TYPE (callop)))
1352 86 : stattype = build_exception_variant (stattype, noexcept_true_spec);
1353 :
1354 98136 : if (generic_lambda_p)
1355 25813 : --processing_template_decl;
1356 :
1357 : /* First build up the conversion op. */
1358 :
1359 98136 : tree rettype = build_pointer_type (stattype);
1360 98136 : tree name = make_conv_op_name (rettype);
1361 98136 : tree thistype = cp_build_qualified_type (type, TYPE_QUAL_CONST);
1362 98136 : tree fntype = build_method_type_directly (thistype, rettype, void_list_node);
1363 : /* DR 1722: The conversion function should be noexcept. */
1364 98136 : fntype = build_exception_variant (fntype, noexcept_true_spec);
1365 98136 : tree convfn = build_lang_decl (FUNCTION_DECL, name, fntype);
1366 98136 : SET_DECL_LANGUAGE (convfn, lang_cplusplus);
1367 98136 : tree fn = convfn;
1368 98136 : DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (callop);
1369 98136 : SET_DECL_ALIGN (fn, MINIMUM_METHOD_BOUNDARY);
1370 98136 : grokclassfn (type, fn, NO_SPECIAL);
1371 98136 : set_linkage_according_to_type (type, fn);
1372 98136 : rest_of_decl_compilation (fn, namespace_bindings_p (), at_eof);
1373 98136 : DECL_IN_AGGR_P (fn) = 1;
1374 98136 : DECL_ARTIFICIAL (fn) = 1;
1375 98136 : DECL_NOT_REALLY_EXTERN (fn) = 1;
1376 98136 : DECL_DECLARED_INLINE_P (fn) = 1;
1377 98136 : DECL_DECLARED_CONSTEXPR_P (fn) = DECL_DECLARED_CONSTEXPR_P (callop);
1378 196272 : if (DECL_IMMEDIATE_FUNCTION_P (callop))
1379 3653 : SET_DECL_IMMEDIATE_FUNCTION_P (fn);
1380 98136 : DECL_ARGUMENTS (fn) = build_this_parm (fn, fntype, TYPE_QUAL_CONST);
1381 :
1382 98136 : if (nested_def)
1383 91050 : DECL_INTERFACE_KNOWN (fn) = 1;
1384 :
1385 98136 : if (generic_lambda_p)
1386 25813 : fn = add_inherited_template_parms (fn, DECL_TI_TEMPLATE (callop));
1387 :
1388 98136 : add_method (type, fn, false);
1389 :
1390 98136 : if (thisarg == NULL_TREE)
1391 : {
1392 : /* For static lambda, just return operator(). */
1393 292 : if (nested)
1394 96 : push_function_context ();
1395 : else
1396 : /* Still increment function_depth so that we don't GC in the
1397 : middle of an expression. */
1398 196 : ++function_depth;
1399 :
1400 : /* Generate the body of the conversion op. */
1401 :
1402 292 : start_preparsed_function (convfn, NULL_TREE,
1403 : SF_PRE_PARSED | SF_INCLASS_INLINE);
1404 292 : tree body = begin_function_body ();
1405 292 : tree compound_stmt = begin_compound_stmt (0);
1406 :
1407 : /* decl_needed_p needs to see that it's used. */
1408 292 : TREE_USED (callop) = 1;
1409 292 : finish_return_stmt (decay_conversion (callop, tf_warning_or_error));
1410 :
1411 292 : finish_compound_stmt (compound_stmt);
1412 292 : finish_function_body (body);
1413 :
1414 292 : fn = finish_function (/*inline_p=*/true);
1415 292 : if (!generic_lambda_p)
1416 267 : expand_or_defer_fn (fn);
1417 :
1418 292 : if (nested)
1419 96 : pop_function_context ();
1420 : else
1421 196 : --function_depth;
1422 292 : return;
1423 : }
1424 :
1425 : /* Generic thunk code fails for varargs; we'll complain in mark_used if
1426 : the conversion op is used. */
1427 97844 : if (varargs_function_p (callop))
1428 : {
1429 212 : DECL_DELETED_FN (fn) = 1;
1430 212 : return;
1431 : }
1432 :
1433 : /* Now build up the thunk to be returned. */
1434 :
1435 97632 : tree statfn = build_lang_decl (FUNCTION_DECL, fun_identifier, stattype);
1436 97632 : SET_DECL_LANGUAGE (statfn, lang_cplusplus);
1437 97632 : fn = statfn;
1438 97632 : DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (callop);
1439 97632 : grokclassfn (type, fn, NO_SPECIAL);
1440 97632 : set_linkage_according_to_type (type, fn);
1441 97632 : rest_of_decl_compilation (fn, namespace_bindings_p (), at_eof);
1442 97632 : DECL_IN_AGGR_P (fn) = 1;
1443 97632 : DECL_ARTIFICIAL (fn) = 1;
1444 97632 : DECL_NOT_REALLY_EXTERN (fn) = 1;
1445 97632 : DECL_DECLARED_INLINE_P (fn) = 1;
1446 97632 : DECL_STATIC_FUNCTION_P (fn) = 1;
1447 97632 : DECL_DECLARED_CONSTEXPR_P (fn) = DECL_DECLARED_CONSTEXPR_P (callop);
1448 195264 : if (DECL_IMMEDIATE_FUNCTION_P (callop))
1449 3411 : SET_DECL_IMMEDIATE_FUNCTION_P (fn);
1450 97632 : DECL_ARGUMENTS (fn) = fn_args;
1451 199500 : for (tree arg = fn_args; arg; arg = DECL_CHAIN (arg))
1452 : {
1453 : /* Avoid duplicate -Wshadow warnings. */
1454 101868 : DECL_NAME (arg) = NULL_TREE;
1455 101868 : DECL_CONTEXT (arg) = fn;
1456 : }
1457 97632 : if (nested_def)
1458 90754 : DECL_INTERFACE_KNOWN (fn) = 1;
1459 :
1460 97632 : if (generic_lambda_p)
1461 25776 : fn = add_inherited_template_parms (fn, DECL_TI_TEMPLATE (callop));
1462 :
1463 97632 : if (flag_sanitize & SANITIZE_NULL)
1464 : /* Don't UBsan this function; we're deliberately calling op() with a null
1465 : object argument. */
1466 37 : add_no_sanitize_value (fn, SANITIZE_UNDEFINED);
1467 :
1468 97632 : add_method (type, fn, false);
1469 :
1470 97632 : if (nested)
1471 90839 : push_function_context ();
1472 : else
1473 : /* Still increment function_depth so that we don't GC in the
1474 : middle of an expression. */
1475 6793 : ++function_depth;
1476 :
1477 : /* Generate the body of the thunk. */
1478 :
1479 97632 : start_preparsed_function (statfn, NULL_TREE,
1480 : SF_PRE_PARSED | SF_INCLASS_INLINE);
1481 97632 : tree body = begin_function_body ();
1482 97632 : tree compound_stmt = begin_compound_stmt (0);
1483 97632 : if (!generic_lambda_p)
1484 : {
1485 71856 : set_flags_from_callee (call);
1486 71856 : if (MAYBE_CLASS_TYPE_P (TREE_TYPE (call)))
1487 2405 : call = build_cplus_new (TREE_TYPE (call), call, tf_warning_or_error);
1488 : }
1489 97632 : call = convert_from_reference (call);
1490 97632 : finish_return_stmt (call);
1491 :
1492 97632 : finish_compound_stmt (compound_stmt);
1493 97632 : finish_function_body (body);
1494 :
1495 97632 : fn = finish_function (/*inline_p=*/true);
1496 97632 : if (!generic_lambda_p)
1497 71856 : expand_or_defer_fn (fn);
1498 :
1499 : /* Generate the body of the conversion op. */
1500 :
1501 97632 : start_preparsed_function (convfn, NULL_TREE,
1502 : SF_PRE_PARSED | SF_INCLASS_INLINE);
1503 97632 : body = begin_function_body ();
1504 97632 : compound_stmt = begin_compound_stmt (0);
1505 :
1506 : /* decl_needed_p needs to see that it's used. */
1507 97632 : TREE_USED (statfn) = 1;
1508 97632 : finish_return_stmt (decay_conversion (statfn, tf_warning_or_error));
1509 :
1510 97632 : finish_compound_stmt (compound_stmt);
1511 97632 : finish_function_body (body);
1512 :
1513 97632 : fn = finish_function (/*inline_p=*/true);
1514 97632 : if (!generic_lambda_p)
1515 71856 : expand_or_defer_fn (fn);
1516 :
1517 97632 : if (nested)
1518 90839 : pop_function_context ();
1519 : else
1520 6793 : --function_depth;
1521 : }
1522 :
1523 : /* True if FN is the static function "_FUN" that gets returned from the lambda
1524 : conversion operator. */
1525 :
1526 : bool
1527 1202997 : lambda_static_thunk_p (tree fn)
1528 : {
1529 1202997 : return (fn && TREE_CODE (fn) == FUNCTION_DECL
1530 1202997 : && DECL_ARTIFICIAL (fn)
1531 114700 : && DECL_STATIC_FUNCTION_P (fn)
1532 1427027 : && LAMBDA_TYPE_P (CP_DECL_CONTEXT (fn)));
1533 : }
1534 :
1535 : bool
1536 186704504 : call_from_lambda_thunk_p (tree call)
1537 : {
1538 186704504 : return (CALL_FROM_THUNK_P (call)
1539 186704504 : && lambda_static_thunk_p (current_function_decl));
1540 : }
1541 :
1542 : /* Returns true iff VAL is a lambda-related declaration which should
1543 : be ignored by unqualified lookup. */
1544 :
1545 : bool
1546 3570021354 : is_lambda_ignored_entity (tree val)
1547 : {
1548 : /* Look past normal, non-VLA capture proxies. */
1549 3570021354 : if (is_normal_capture_proxy (val)
1550 3570021354 : && !variably_modified_type_p (TREE_TYPE (val), NULL_TREE))
1551 : return true;
1552 :
1553 : /* Always ignore lambda fields, their names are only for debugging. */
1554 3562756225 : if (TREE_CODE (val) == FIELD_DECL
1555 3562756225 : && CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (val)))
1556 : return true;
1557 :
1558 : /* None of the lookups that use qualify_lookup want the op() from the
1559 : lambda; they want the one from the enclosing class. */
1560 3562756198 : if (tree fns = maybe_get_fns (val))
1561 1178153230 : if (LAMBDA_FUNCTION_P (OVL_FIRST (fns)))
1562 : return true;
1563 :
1564 : return false;
1565 : }
1566 :
1567 : /* Lambdas that appear in variable initializer or default argument
1568 : scope get that in their mangling, so we need to record it. Also,
1569 : multiple lambdas in the same scope may need a mangling
1570 : discriminator. In ABI <= 17, there is a single per-scope sequence
1571 : number. In ABI >= 18, there are per-scope per-signature sequence
1572 : numbers. */
1573 : struct GTY(()) lambda_sig_count
1574 : {
1575 : tree fn; // The lambda fn whose sig this is.
1576 : unsigned count;
1577 : };
1578 : struct GTY(()) lambda_discriminator
1579 : {
1580 : tree scope;
1581 : unsigned nesting; // Inside a function, VAR_DECLs get the function
1582 : // as scope. This counts that nesting.
1583 : unsigned count; // The per-scope counter.
1584 : vec<lambda_sig_count, va_gc> *discriminators; // Per-signature counters
1585 : };
1586 : // The current scope.
1587 : static GTY(()) lambda_discriminator lambda_scope;
1588 : // Stack of previous scopes.
1589 : static GTY(()) vec<lambda_discriminator, va_gc> *lambda_scope_stack;
1590 :
1591 : // Push DECL as lambda extra scope, also new discriminator counters.
1592 :
1593 : void
1594 323111652 : start_lambda_scope (tree decl)
1595 : {
1596 323111652 : gcc_checking_assert (decl);
1597 323111652 : if (current_function_decl && VAR_P (decl))
1598 : // If we're inside a function, we ignore variable scope. Don't push.
1599 48902759 : lambda_scope.nesting++;
1600 : else
1601 : {
1602 274208893 : vec_safe_push (lambda_scope_stack, lambda_scope);
1603 274208893 : lambda_scope.scope = decl;
1604 274208893 : lambda_scope.nesting = 0;
1605 274208893 : lambda_scope.count = 0;
1606 274208893 : lambda_scope.discriminators = nullptr;
1607 : }
1608 323111652 : }
1609 :
1610 : // Pop from the current lambda extra scope.
1611 :
1612 : void
1613 323108796 : finish_lambda_scope (void)
1614 : {
1615 323108796 : if (!lambda_scope.nesting--)
1616 : {
1617 274206037 : lambda_scope = lambda_scope_stack->last ();
1618 274206037 : lambda_scope_stack->pop ();
1619 : }
1620 323108796 : }
1621 :
1622 : // Record the current lambda scope into LAMBDA
1623 :
1624 : void
1625 1452172 : record_lambda_scope (tree lambda)
1626 : {
1627 1452172 : tree closure = LAMBDA_EXPR_CLOSURE (lambda);
1628 1452172 : gcc_checking_assert (closure);
1629 :
1630 : /* Before ABI v20, lambdas in static data member initializers did not
1631 : get a dedicated lambda scope. */
1632 1452172 : tree scope = lambda_scope.scope;
1633 1452172 : if (is_static_data_member_initialized_in_class (scope))
1634 : {
1635 150131 : if (!abi_version_at_least (20))
1636 150131 : scope = NULL_TREE;
1637 449108 : if (warn_abi && abi_version_crosses (20) && !processing_template_decl)
1638 : {
1639 18 : if (abi_version_at_least (20))
1640 18 : warning_at (location_of (closure), OPT_Wabi,
1641 : "the mangled name of %qT changed in "
1642 : "%<-fabi-version=20%> (GCC 15.1)", closure);
1643 : else
1644 0 : warning_at (location_of (closure), OPT_Wabi,
1645 : "the mangled name of %qT changes in "
1646 : "%<-fabi-version=20%> (GCC 15.1)", closure);
1647 : }
1648 : }
1649 :
1650 : /* An otherwise unattached class-scope lambda in a member template
1651 : should not have a mangling scope, as the mangling scope will not
1652 : correctly inherit on instantiation. */
1653 1452172 : tree ctx = TYPE_CONTEXT (closure);
1654 1452172 : if (scope
1655 1452172 : && ctx
1656 1451440 : && CLASS_TYPE_P (ctx)
1657 152204 : && ctx == TREE_TYPE (scope)
1658 1453541 : && current_template_depth > template_class_depth (ctx))
1659 : scope = NULL_TREE;
1660 :
1661 1452172 : LAMBDA_EXPR_EXTRA_SCOPE (lambda) = scope;
1662 1452172 : if (scope)
1663 1451375 : maybe_key_decl (scope, TYPE_NAME (closure));
1664 1452172 : }
1665 :
1666 : // Compare lambda template heads TMPL_A and TMPL_B, used for both
1667 : // templated lambdas, and template template parameters of said lambda.
1668 :
1669 : static bool
1670 28928 : compare_lambda_template_head (tree tmpl_a, tree tmpl_b)
1671 : {
1672 : // We only need one level of template parms
1673 28928 : tree inner_a = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl_a));
1674 28928 : tree inner_b = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl_b));
1675 :
1676 : // We only compare explicit template parms, ignoring trailing
1677 : // synthetic ones.
1678 28928 : int len_a = TREE_VEC_LENGTH (inner_a);
1679 28928 : int len_b = TREE_VEC_LENGTH (inner_b);
1680 :
1681 29648 : for (int ix = 0, len = MAX (len_a, len_b); ix != len; ix++)
1682 : {
1683 28975 : tree parm_a = NULL_TREE;
1684 28975 : if (ix < len_a)
1685 : {
1686 28963 : parm_a = TREE_VEC_ELT (inner_a, ix);
1687 28963 : if (parm_a == error_mark_node)
1688 : return false;
1689 28963 : parm_a = TREE_VALUE (parm_a);
1690 28963 : if (parm_a == error_mark_node)
1691 : return false;
1692 28963 : if (DECL_VIRTUAL_P (parm_a))
1693 15012 : parm_a = NULL_TREE;
1694 : }
1695 :
1696 28975 : tree parm_b = NULL_TREE;
1697 28975 : if (ix < len_b)
1698 : {
1699 28955 : parm_b = TREE_VEC_ELT (inner_b, ix);
1700 28955 : if (parm_b == error_mark_node)
1701 : return false;
1702 28955 : parm_b = TREE_VALUE (parm_b);
1703 28955 : if (parm_b == error_mark_node)
1704 : return false;
1705 28949 : if (DECL_VIRTUAL_P (parm_b))
1706 15663 : parm_b = NULL_TREE;
1707 : }
1708 :
1709 28969 : if (!parm_a && !parm_b)
1710 : // we're done
1711 : break;
1712 :
1713 14030 : if (!(parm_a && parm_b))
1714 : return false;
1715 :
1716 13238 : if (TREE_CODE (parm_a) != TREE_CODE (parm_b))
1717 : return false;
1718 :
1719 12800 : if (TREE_CODE (parm_a) == PARM_DECL)
1720 : {
1721 12098 : if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm_a))
1722 12098 : != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm_b)))
1723 : return false;
1724 :
1725 27 : if (!same_type_p (TREE_TYPE (parm_a), TREE_TYPE (parm_b)))
1726 : return false;
1727 : }
1728 : else
1729 : {
1730 702 : if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm_a))
1731 702 : != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm_b)))
1732 : return false;
1733 :
1734 702 : if (TREE_CODE (parm_a) != TEMPLATE_DECL)
1735 702 : gcc_checking_assert (TREE_CODE (parm_a) == TYPE_DECL);
1736 0 : else if (!compare_lambda_template_head (parm_a, parm_b))
1737 : return false;
1738 : }
1739 : }
1740 :
1741 : return true;
1742 : }
1743 :
1744 : // Compare lambda signatures FN_A and FN_B, they may be TEMPLATE_DECLs too.
1745 :
1746 : static bool
1747 233149 : compare_lambda_sig (tree fn_a, tree fn_b)
1748 : {
1749 233149 : if (TREE_CODE (fn_a) == TEMPLATE_DECL
1750 41388 : && TREE_CODE (fn_b) == TEMPLATE_DECL)
1751 : {
1752 28928 : if (!compare_lambda_template_head (fn_a, fn_b))
1753 : return false;
1754 15612 : fn_a = DECL_TEMPLATE_RESULT (fn_a);
1755 15612 : fn_b = DECL_TEMPLATE_RESULT (fn_b);
1756 : }
1757 204221 : else if (TREE_CODE (fn_a) == TEMPLATE_DECL
1758 191761 : || TREE_CODE (fn_b) == TEMPLATE_DECL)
1759 : return false;
1760 :
1761 207045 : if (fn_a == error_mark_node
1762 207043 : || fn_b == error_mark_node)
1763 : return false;
1764 :
1765 414084 : for (tree args_a = FUNCTION_FIRST_USER_PARMTYPE (fn_a),
1766 207042 : args_b = FUNCTION_FIRST_USER_PARMTYPE (fn_b);
1767 366414 : args_a || args_b;
1768 159372 : args_a = TREE_CHAIN (args_a), args_b = TREE_CHAIN (args_b))
1769 : {
1770 262951 : if (!args_a || !args_b)
1771 : return false;
1772 : // This check also deals with differing variadicness
1773 262947 : if (!same_type_p (TREE_VALUE (args_a), TREE_VALUE (args_b)))
1774 : return false;
1775 : }
1776 :
1777 : return true;
1778 : }
1779 :
1780 : // Record the per-scope discriminator of LAMBDA. If the extra scope
1781 : // is empty, we must use the empty scope counter, which might not be
1782 : // the live one.
1783 :
1784 : void
1785 1453590 : record_lambda_scope_discriminator (tree lambda)
1786 : {
1787 2906267 : auto *slot = (vec_safe_is_empty (lambda_scope_stack)
1788 1452677 : || LAMBDA_EXPR_EXTRA_SCOPE (lambda)
1789 1302 : ? &lambda_scope : lambda_scope_stack->begin ());
1790 1453590 : LAMBDA_EXPR_SCOPE_ONLY_DISCRIMINATOR (lambda) = slot->count++;
1791 1453590 : }
1792 :
1793 : // Record the per-scope per-signature discriminator of LAMBDA. If the
1794 : // extra scope is empty, we must use the empty scope counter, which
1795 : // might not be the live one.
1796 :
1797 : void
1798 1453578 : record_lambda_scope_sig_discriminator (tree lambda, tree fn)
1799 : {
1800 2906243 : auto *slot = (vec_safe_is_empty (lambda_scope_stack)
1801 1452665 : || LAMBDA_EXPR_EXTRA_SCOPE (lambda)
1802 1299 : ? &lambda_scope : lambda_scope_stack->begin ());
1803 1453578 : gcc_checking_assert (LAMBDA_EXPR_EXTRA_SCOPE (lambda) == slot->scope);
1804 :
1805 : // A linear search, we're not expecting this to be a big list, and
1806 : // this avoids needing a signature hash function.
1807 1453578 : lambda_sig_count *sig;
1808 1453578 : if (unsigned ix = vec_safe_length (slot->discriminators))
1809 342176 : for (sig = slot->discriminators->begin (); ix--; sig++)
1810 233149 : if (compare_lambda_sig (fn, sig->fn))
1811 103463 : goto found;
1812 1350115 : {
1813 1350115 : lambda_sig_count init = {fn, 0};
1814 1350115 : sig = vec_safe_push (slot->discriminators, init);
1815 : }
1816 1453578 : found:
1817 1453578 : LAMBDA_EXPR_SCOPE_SIG_DISCRIMINATOR (lambda) = sig->count++;
1818 1453578 : }
1819 :
1820 : /* Push the proxies for any explicit captures in LAMBDA_EXPR.
1821 : If EARLY_P, we do not have the real operator() yet. */
1822 :
1823 : void
1824 2907134 : push_capture_proxies (tree lambda_expr, bool early_p)
1825 : {
1826 4799872 : for (tree cap = LAMBDA_EXPR_CAPTURE_LIST (lambda_expr); cap;
1827 1892738 : cap = TREE_CHAIN (cap))
1828 1892738 : build_capture_proxy (TREE_PURPOSE (cap), TREE_VALUE (cap), early_p);
1829 2907134 : }
1830 :
1831 : tree
1832 1453544 : start_lambda_function (tree fco, tree lambda_expr)
1833 : {
1834 : /* Let the front end know that we are going to be defining this
1835 : function. */
1836 1453544 : start_preparsed_function (fco,
1837 : NULL_TREE,
1838 : SF_PRE_PARSED | SF_INCLASS_INLINE);
1839 :
1840 1453544 : tree body = begin_function_body ();
1841 :
1842 : /* Push the proxies for any explicit captures. */
1843 1453544 : push_capture_proxies (lambda_expr);
1844 :
1845 1453544 : return body;
1846 : }
1847 :
1848 : /* Subroutine of prune_lambda_captures: CAP is a node in
1849 : LAMBDA_EXPR_CAPTURE_LIST. Return the variable it captures for which we
1850 : might optimize away the capture, or NULL_TREE if there is no such
1851 : variable. */
1852 :
1853 : static tree
1854 2033 : var_to_maybe_prune (tree cap)
1855 : {
1856 2033 : if (LAMBDA_CAPTURE_EXPLICIT_P (cap))
1857 : /* Don't prune explicit captures. */
1858 : return NULL_TREE;
1859 :
1860 2024 : tree mem = TREE_PURPOSE (cap);
1861 4048 : if (!DECL_P (mem) || !DECL_NORMAL_CAPTURE_P (mem))
1862 : /* Packs and init-captures aren't captures of constant vars. */
1863 : return NULL_TREE;
1864 :
1865 2024 : tree init = TREE_VALUE (cap);
1866 2024 : if (is_normal_capture_proxy (init))
1867 0 : init = DECL_CAPTURED_VARIABLE (init);
1868 2024 : if (decl_constant_var_p (init))
1869 : return init;
1870 :
1871 : return NULL_TREE;
1872 : }
1873 :
1874 : /* walk_tree helper for prune_lambda_captures: Remember which capture proxies
1875 : for constant variables are actually used in the lambda body.
1876 :
1877 : There will always be a DECL_EXPR for the capture proxy; remember it when we
1878 : see it, but replace it with any other use. */
1879 :
1880 : static tree
1881 31578 : mark_const_cap_r (tree *t, int *walk_subtrees, void *data)
1882 : {
1883 31578 : hash_map<tree,tree*> &const_vars = *(hash_map<tree,tree*>*)data;
1884 :
1885 31578 : tree var = NULL_TREE;
1886 31578 : if (TREE_CODE (*t) == DECL_EXPR)
1887 : {
1888 2639 : tree decl = DECL_EXPR_DECL (*t);
1889 2639 : if (is_constant_capture_proxy (decl))
1890 : {
1891 848 : var = DECL_CAPTURED_VARIABLE (decl);
1892 848 : *walk_subtrees = 0;
1893 : }
1894 : }
1895 28939 : else if (!location_wrapper_p (*t) /* is_capture_proxy dislikes them. */
1896 28939 : && is_constant_capture_proxy (*t))
1897 166 : var = DECL_CAPTURED_VARIABLE (*t);
1898 :
1899 31578 : if (var)
1900 : {
1901 1014 : tree *&slot = const_vars.get_or_insert (var);
1902 1014 : if (!slot || VAR_P (*t))
1903 1014 : slot = t;
1904 : }
1905 :
1906 31578 : return NULL_TREE;
1907 : }
1908 :
1909 : /* We're at the end of processing a lambda; go back and remove any captures of
1910 : constant variables for which we've folded away all uses. */
1911 :
1912 : static void
1913 1453544 : prune_lambda_captures (tree body)
1914 : {
1915 1453544 : tree lam = current_lambda_expr ();
1916 1453544 : if (!LAMBDA_EXPR_CAPTURE_OPTIMIZED (lam))
1917 : /* No uses were optimized away. */
1918 1452894 : return;
1919 812 : if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lam) == CPLD_NONE)
1920 : /* No default captures, and we don't prune explicit captures. */
1921 : return;
1922 : /* Don't bother pruning in a template, we'll prune at instantiation time. */
1923 782 : if (dependent_type_p (TREE_TYPE (lam)))
1924 : return;
1925 :
1926 650 : hash_map<tree,tree*> const_vars;
1927 :
1928 650 : cp_walk_tree_without_duplicates (&body, mark_const_cap_r, &const_vars);
1929 :
1930 650 : tree bind_expr = expr_single (DECL_SAVED_TREE (lambda_function (lam)));
1931 1312 : bool noexcept_p = (bind_expr
1932 650 : && TREE_CODE (bind_expr) == MUST_NOT_THROW_EXPR);
1933 12 : if (noexcept_p)
1934 12 : bind_expr = expr_single (TREE_OPERAND (bind_expr, 0));
1935 :
1936 650 : tree *fieldp = &TYPE_FIELDS (LAMBDA_EXPR_CLOSURE (lam));
1937 2683 : for (tree *capp = &LAMBDA_EXPR_CAPTURE_LIST (lam); *capp; )
1938 : {
1939 2033 : tree cap = *capp;
1940 2033 : if (tree var = var_to_maybe_prune (cap))
1941 : {
1942 842 : tree **use = const_vars.get (var);
1943 842 : if (TREE_CODE (**use) == DECL_EXPR)
1944 : {
1945 : /* All uses of this capture were folded away, leaving only the
1946 : proxy declaration. */
1947 :
1948 676 : if (noexcept_p)
1949 : {
1950 : /* We didn't handle noexcept lambda captures correctly before
1951 : the fix for PR c++/119764. */
1952 33 : if (abi_version_crosses (21))
1953 3 : warning_at (location_of (lam), OPT_Wabi, "%qD is no longer"
1954 : " captured in noexcept lambda in ABI v21 "
1955 : "(GCC 16)", var);
1956 12 : if (!abi_version_at_least (21))
1957 0 : goto next;
1958 : }
1959 :
1960 : /* Splice the capture out of LAMBDA_EXPR_CAPTURE_LIST. */
1961 676 : *capp = TREE_CHAIN (cap);
1962 :
1963 : /* And out of TYPE_FIELDS. */
1964 676 : tree field = TREE_PURPOSE (cap);
1965 1817 : while (*fieldp != field)
1966 1141 : fieldp = &DECL_CHAIN (*fieldp);
1967 676 : *fieldp = DECL_CHAIN (*fieldp);
1968 :
1969 : /* And out of the bindings for the function. */
1970 676 : tree *blockp = &BLOCK_VARS (current_binding_level->blocks);
1971 1326 : while (*blockp != DECL_EXPR_DECL (**use))
1972 650 : blockp = &DECL_CHAIN (*blockp);
1973 676 : *blockp = DECL_CHAIN (*blockp);
1974 :
1975 : /* And maybe out of the vars declared in the containing
1976 : BIND_EXPR, if it's listed there. */
1977 676 : tree *bindp = &BIND_EXPR_VARS (bind_expr);
1978 1676 : while (*bindp && *bindp != DECL_EXPR_DECL (**use))
1979 324 : bindp = &DECL_CHAIN (*bindp);
1980 676 : if (*bindp)
1981 318 : *bindp = DECL_CHAIN (*bindp);
1982 :
1983 : /* And remove the capture proxy declaration. */
1984 676 : **use = void_node;
1985 676 : continue;
1986 676 : }
1987 : }
1988 :
1989 1357 : next:
1990 1357 : capp = &TREE_CHAIN (cap);
1991 : }
1992 650 : }
1993 :
1994 : // Record the per-scope per-signature discriminator of LAMBDA. If the
1995 : // extra scope is empty, we must use the empty scope counter, which
1996 : // might not be the live one.
1997 :
1998 : void
1999 1453544 : finish_lambda_function (tree body)
2000 : {
2001 1453544 : finish_function_body (body);
2002 :
2003 1453544 : prune_lambda_captures (cur_stmt_list);
2004 :
2005 : /* Finish the function and generate code for it if necessary. */
2006 1453544 : tree fn = finish_function (/*inline_p=*/true);
2007 :
2008 : /* Only expand if the call op is not a template. */
2009 1453544 : if (!DECL_TEMPLATE_INFO (fn))
2010 302562 : expand_or_defer_fn (fn);
2011 1453544 : }
2012 :
2013 : #include "gt-cp-lambda.h"
|