LCOV - code coverage report
Current view: top level - gcc/cp - lambda.cc (source / functions) Coverage Total Hit
Test: gcc.info Lines: 98.9 % 829 820
Test Date: 2024-04-13 14:00:49 Functions: 100.0 % 43 43
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: - 0 0

             Branch data     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-2024 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                 :             : 
      36                 :             : /* Constructor for a lambda expression.  */
      37                 :             : 
      38                 :             : tree
      39                 :      667147 : build_lambda_expr (void)
      40                 :             : {
      41                 :      667147 :   tree lambda = make_node (LAMBDA_EXPR);
      42                 :      667147 :   LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) = CPLD_NONE;
      43                 :      667147 :   LAMBDA_EXPR_CAPTURE_LIST         (lambda) = NULL_TREE;
      44                 :      667147 :   LAMBDA_EXPR_THIS_CAPTURE         (lambda) = NULL_TREE;
      45                 :      667147 :   LAMBDA_EXPR_REGEN_INFO           (lambda) = NULL_TREE;
      46                 :      667147 :   LAMBDA_EXPR_PENDING_PROXIES      (lambda) = NULL;
      47                 :      667147 :   return lambda;
      48                 :             : }
      49                 :             : 
      50                 :             : /* Create the closure object for a LAMBDA_EXPR.  */
      51                 :             : 
      52                 :             : tree
      53                 :      667123 : build_lambda_object (tree lambda_expr)
      54                 :             : {
      55                 :             :   /* Build aggregate constructor call.
      56                 :             :      - cp_parser_braced_list
      57                 :             :      - cp_parser_functional_cast  */
      58                 :      667123 :   vec<constructor_elt, va_gc> *elts = NULL;
      59                 :      667123 :   tree node, expr, type;
      60                 :             : 
      61                 :      667123 :   if (processing_template_decl || lambda_expr == error_mark_node)
      62                 :             :     return lambda_expr;
      63                 :             : 
      64                 :             :   /* Make sure any error messages refer to the lambda-introducer.  */
      65                 :      235960 :   location_t loc = LAMBDA_EXPR_LOCATION (lambda_expr);
      66                 :      235960 :   iloc_sentinel il (loc);
      67                 :             : 
      68                 :      235960 :   for (node = LAMBDA_EXPR_CAPTURE_LIST (lambda_expr);
      69                 :      693174 :        node;
      70                 :      457214 :        node = TREE_CHAIN (node))
      71                 :             :     {
      72                 :      457214 :       tree field = TREE_PURPOSE (node);
      73                 :      457214 :       tree val = TREE_VALUE (node);
      74                 :             : 
      75                 :      457214 :       if (field == error_mark_node)
      76                 :             :         {
      77                 :           0 :           expr = error_mark_node;
      78                 :           0 :           goto out;
      79                 :             :         }
      80                 :             : 
      81                 :      457214 :       if (TREE_CODE (val) == TREE_LIST)
      82                 :           0 :         val = build_x_compound_expr_from_list (val, ELK_INIT,
      83                 :             :                                                tf_warning_or_error);
      84                 :             : 
      85                 :      457214 :       if (DECL_P (val))
      86                 :      248734 :         mark_used (val);
      87                 :             : 
      88                 :             :       /* Mere mortals can't copy arrays with aggregate initialization, so
      89                 :             :          do some magic to make it work here.  */
      90                 :      457214 :       if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE)
      91                 :          19 :         val = build_array_copy (val);
      92                 :      457195 :       else if (DECL_NORMAL_CAPTURE_P (field)
      93                 :      456858 :                && !DECL_VLA_CAPTURE_P (field)
      94                 :      914011 :                && !TYPE_REF_P (TREE_TYPE (field)))
      95                 :             :         {
      96                 :             :           /* "the entities that are captured by copy are used to
      97                 :             :              direct-initialize each corresponding non-static data
      98                 :             :              member of the resulting closure object."
      99                 :             : 
     100                 :             :              There's normally no way to express direct-initialization
     101                 :             :              from an element of a CONSTRUCTOR, so we build up a special
     102                 :             :              TARGET_EXPR to bypass the usual copy-initialization.  */
     103                 :      192314 :           val = force_rvalue (val, tf_warning_or_error);
     104                 :      192314 :           if (TREE_CODE (val) == TARGET_EXPR)
     105                 :        4417 :             TARGET_EXPR_DIRECT_INIT_P (val) = true;
     106                 :             :         }
     107                 :             : 
     108                 :      457214 :       CONSTRUCTOR_APPEND_ELT (elts, DECL_NAME (field), val);
     109                 :             :     }
     110                 :             : 
     111                 :      235960 :   expr = build_constructor (init_list_type_node, elts);
     112                 :      235960 :   CONSTRUCTOR_IS_DIRECT_INIT (expr) = 1;
     113                 :             : 
     114                 :             :   /* N2927: "[The closure] class type is not an aggregate."
     115                 :             :      But we briefly treat it as an aggregate to make this simpler.  */
     116                 :      235960 :   type = LAMBDA_EXPR_CLOSURE (lambda_expr);
     117                 :      235960 :   CLASSTYPE_NON_AGGREGATE (type) = 0;
     118                 :      235960 :   expr = finish_compound_literal (type, expr, tf_warning_or_error);
     119                 :      235960 :   protected_set_expr_location (expr, loc);
     120                 :      235960 :   CLASSTYPE_NON_AGGREGATE (type) = 1;
     121                 :             : 
     122                 :      235960 :  out:
     123                 :      235960 :   return expr;
     124                 :      235960 : }
     125                 :             : 
     126                 :             : /* Return an initialized RECORD_TYPE for LAMBDA.
     127                 :             :    LAMBDA must have its explicit captures already.  */
     128                 :             : 
     129                 :             : tree
     130                 :      667138 : begin_lambda_type (tree lambda)
     131                 :             : {
     132                 :             :   /* Lambda names are nearly but not quite anonymous.  */
     133                 :      667138 :   tree name = make_anon_name ();
     134                 :      667138 :   IDENTIFIER_LAMBDA_P (name) = true;
     135                 :             : 
     136                 :             :   /* Create the new RECORD_TYPE for this lambda.  */
     137                 :      667138 :   tree type = xref_tag (/*tag_code=*/record_type, name);
     138                 :      667138 :   if (type == error_mark_node)
     139                 :             :     return error_mark_node;
     140                 :             : 
     141                 :             :   /* Designate it as a struct so that we can use aggregate initialization.  */
     142                 :      667138 :   CLASSTYPE_DECLARED_CLASS (type) = false;
     143                 :             : 
     144                 :             :   /* Cross-reference the expression and the type.  */
     145                 :      667138 :   LAMBDA_EXPR_CLOSURE (lambda) = type;
     146                 :      667138 :   CLASSTYPE_LAMBDA_EXPR (type) = lambda;
     147                 :             : 
     148                 :             :   /* In C++17, assume the closure is literal; we'll clear the flag later if
     149                 :             :      necessary.  */
     150                 :      667138 :   if (cxx_dialect >= cxx17)
     151                 :      662395 :     CLASSTYPE_LITERAL_P (type) = true;
     152                 :             : 
     153                 :             :   /* Clear base types.  */
     154                 :      667138 :   xref_basetypes (type, /*bases=*/NULL_TREE);
     155                 :             : 
     156                 :             :   /* Start the class.  */
     157                 :      667138 :   type = begin_class_definition (type);
     158                 :             : 
     159                 :      667138 :   return type;
     160                 :             : }
     161                 :             : 
     162                 :             : /* Given a LAMBDA_EXPR or closure type LAMBDA, return the op() of the
     163                 :             :    closure type.  */
     164                 :             : 
     165                 :             : tree
     166                 :     6073494 : lambda_function (tree lambda)
     167                 :             : {
     168                 :     6073494 :   tree type;
     169                 :     6073494 :   if (TREE_CODE (lambda) == LAMBDA_EXPR)
     170                 :     2371958 :     type = LAMBDA_EXPR_CLOSURE (lambda);
     171                 :             :   else
     172                 :             :     type = lambda;
     173                 :    12146988 :   gcc_assert (LAMBDA_TYPE_P (type));
     174                 :             :   /* Don't let debug_tree cause instantiation.  */
     175                 :     6073494 :   if (CLASSTYPE_TEMPLATE_INSTANTIATION (type)
     176                 :     6073494 :       && !COMPLETE_OR_OPEN_TYPE_P (type))
     177                 :             :     return NULL_TREE;
     178                 :     6073494 :   lambda = get_class_binding_direct (type, call_op_identifier);
     179                 :     6073494 :   if (lambda)
     180                 :     6073485 :     lambda = STRIP_TEMPLATE (get_first_fn (lambda));
     181                 :             :   return lambda;
     182                 :             : }
     183                 :             : 
     184                 :             : /* True if EXPR is an expression whose type can be used directly in lambda
     185                 :             :    capture.  Not to be used for 'auto'.  */
     186                 :             : 
     187                 :             : static bool
     188                 :      757959 : type_deducible_expression_p (tree expr)
     189                 :             : {
     190                 :      757959 :   if (!type_dependent_expression_p (expr))
     191                 :             :     return true;
     192                 :           0 :   if (BRACE_ENCLOSED_INITIALIZER_P (expr)
     193                 :      335742 :       || TREE_CODE (expr) == EXPR_PACK_EXPANSION)
     194                 :             :     return false;
     195                 :      335742 :   tree t = non_reference (TREE_TYPE (expr));
     196                 :      335742 :   return (t && TREE_CODE (t) != TYPE_PACK_EXPANSION
     197                 :      326088 :           && !WILDCARD_TYPE_P (t) && !LAMBDA_TYPE_P (t)
     198                 :      174087 :           && !array_of_unknown_bound_p (t)
     199                 :      509790 :           && !type_uses_auto (t));
     200                 :             : }
     201                 :             : 
     202                 :             : /* Returns the type to use for the FIELD_DECL corresponding to the
     203                 :             :    capture of EXPR.  EXPLICIT_INIT_P indicates whether this is a
     204                 :             :    C++14 init capture, and BY_REFERENCE_P indicates whether we're
     205                 :             :    capturing by reference.  */
     206                 :             : 
     207                 :             : tree
     208                 :      925547 : lambda_capture_field_type (tree expr, bool explicit_init_p,
     209                 :             :                            bool by_reference_p)
     210                 :             : {
     211                 :      925547 :   tree type;
     212                 :      925547 :   bool is_this = is_this_parameter (tree_strip_nop_conversions (expr));
     213                 :             : 
     214                 :      925547 :   if (is_this)
     215                 :      167104 :     type = TREE_TYPE (expr);
     216                 :      758443 :   else if (explicit_init_p)
     217                 :             :     {
     218                 :         484 :       tree auto_node = make_auto ();
     219                 :             :       
     220                 :         484 :       type = auto_node;
     221                 :         484 :       if (by_reference_p)
     222                 :             :         /* Add the reference now, so deduction doesn't lose
     223                 :             :            outermost CV qualifiers of EXPR.  */
     224                 :          57 :         type = build_reference_type (type);
     225                 :         484 :       if (uses_parameter_packs (expr))
     226                 :             :         /* Stick with 'auto' even if the type could be deduced.  */;
     227                 :             :       else
     228                 :         469 :         type = do_auto_deduction (type, expr, auto_node);
     229                 :             :     }
     230                 :      757959 :   else if (!type_deducible_expression_p (expr))
     231                 :             :     {
     232                 :      161697 :       type = cxx_make_type (DECLTYPE_TYPE);
     233                 :      161697 :       DECLTYPE_TYPE_EXPR (type) = expr;
     234                 :      161697 :       DECLTYPE_FOR_LAMBDA_CAPTURE (type) = true;
     235                 :      161697 :       DECLTYPE_FOR_REF_CAPTURE (type) = by_reference_p;
     236                 :      161697 :       SET_TYPE_STRUCTURAL_EQUALITY (type);
     237                 :             :     }
     238                 :             :   else
     239                 :             :     {
     240                 :      596262 :       STRIP_ANY_LOCATION_WRAPPER (expr);
     241                 :             : 
     242                 :      596262 :       if (!by_reference_p && is_capture_proxy (expr))
     243                 :             :         {
     244                 :             :           /* When capturing by-value another capture proxy from an enclosing
     245                 :             :              lambda, consider the type of the corresponding field instead,
     246                 :             :              as the proxy may be additionally const-qualifed if the enclosing
     247                 :             :              lambda is non-mutable (PR94376).  */
     248                 :         110 :           gcc_assert (TREE_CODE (DECL_VALUE_EXPR (expr)) == COMPONENT_REF);
     249                 :         110 :           expr = TREE_OPERAND (DECL_VALUE_EXPR (expr), 1);
     250                 :             :         }
     251                 :             : 
     252                 :      596262 :       type = non_reference (unlowered_expr_type (expr));
     253                 :             : 
     254                 :      596262 :       if (by_reference_p || TREE_CODE (type) == FUNCTION_TYPE)
     255                 :      422582 :         type = build_reference_type (type);
     256                 :             :     }
     257                 :             : 
     258                 :      925547 :   return type;
     259                 :             : }
     260                 :             : 
     261                 :             : /* Returns true iff DECL is a lambda capture proxy variable created by
     262                 :             :    build_capture_proxy.  */
     263                 :             : 
     264                 :             : bool
     265                 :  4088392733 : is_capture_proxy (tree decl)
     266                 :             : {
     267                 :             :   /* Location wrappers should be stripped or otherwise handled by the
     268                 :             :      caller before using this predicate.  */
     269                 :  4088392733 :   gcc_checking_assert (!location_wrapper_p (decl));
     270                 :             : 
     271                 :  4088392733 :   return (VAR_P (decl)
     272                 :  1125938082 :           && DECL_HAS_VALUE_EXPR_P (decl)
     273                 :    17818667 :           && !DECL_ANON_UNION_VAR_P (decl)
     274                 :    17816332 :           && !DECL_DECOMPOSITION_P (decl)
     275                 :    16992984 :           && !DECL_FNAME_P (decl)
     276                 :    16811999 :           && !(DECL_ARTIFICIAL (decl)
     277                 :    16810107 :                && DECL_LANG_SPECIFIC (decl)
     278                 :    16804124 :                && DECL_OMP_PRIVATIZED_MEMBER (decl))
     279                 :  4122000906 :           && LAMBDA_FUNCTION_P (DECL_CONTEXT (decl)));
     280                 :             : }
     281                 :             : 
     282                 :             : /* Returns true iff DECL is a capture proxy for a normal capture
     283                 :             :    (i.e. without explicit initializer).  */
     284                 :             : 
     285                 :             : bool
     286                 :  3956310866 : is_normal_capture_proxy (tree decl)
     287                 :             : {
     288                 :  3956310866 :   if (!is_capture_proxy (decl))
     289                 :             :     /* It's not a capture proxy.  */
     290                 :             :     return false;
     291                 :             : 
     292                 :    12243148 :   return (DECL_LANG_SPECIFIC (decl)
     293                 :    12243148 :           && DECL_CAPTURED_VARIABLE (decl));
     294                 :             : }
     295                 :             : 
     296                 :             : /* Returns true iff DECL is a capture proxy for a normal capture
     297                 :             :    of a constant variable.  */
     298                 :             : 
     299                 :             : bool
     300                 :        3156 : is_constant_capture_proxy (tree decl)
     301                 :             : {
     302                 :        3156 :   if (is_normal_capture_proxy (decl))
     303                 :         203 :     return decl_constant_var_p (DECL_CAPTURED_VARIABLE (decl));
     304                 :             :   return false;
     305                 :             : }
     306                 :             : 
     307                 :             : /* VAR is a capture proxy created by build_capture_proxy; add it to the
     308                 :             :    current function, which is the operator() for the appropriate lambda.  */
     309                 :             : 
     310                 :             : void
     311                 :     1210784 : insert_capture_proxy (tree var)
     312                 :             : {
     313                 :     1210784 :   if (is_normal_capture_proxy (var))
     314                 :             :     {
     315                 :     1210167 :       tree cap = DECL_CAPTURED_VARIABLE (var);
     316                 :     1210167 :       if (CHECKING_P)
     317                 :             :         {
     318                 :     1210167 :           gcc_assert (!is_normal_capture_proxy (cap));
     319                 :     1210167 :           tree old = retrieve_local_specialization (cap);
     320                 :     1210167 :           if (old)
     321                 :       12186 :             gcc_assert (DECL_CONTEXT (old) != DECL_CONTEXT (var));
     322                 :             :         }
     323                 :     1210167 :       register_local_specialization (var, cap);
     324                 :             :     }
     325                 :             : 
     326                 :             :   /* Put the capture proxy in the extra body block so that it won't clash
     327                 :             :      with a later local variable.  */
     328                 :     1210784 :   pushdecl_outermost_localscope (var);
     329                 :             : 
     330                 :             :   /* And put a DECL_EXPR in the STATEMENT_LIST for the same block.  */
     331                 :     1210784 :   var = build_stmt (DECL_SOURCE_LOCATION (var), DECL_EXPR, var);
     332                 :     1210784 :   tree stmt_list = (*stmt_list_stack)[1];
     333                 :     1210784 :   gcc_assert (stmt_list);
     334                 :     1210784 :   append_to_statement_list_force (var, &stmt_list);
     335                 :     1210784 : }
     336                 :             : 
     337                 :             : /* We've just finished processing a lambda; if the containing scope is also
     338                 :             :    a lambda, insert any capture proxies that were created while processing
     339                 :             :    the nested lambda.  */
     340                 :             : 
     341                 :             : void
     342                 :      667138 : insert_pending_capture_proxies (void)
     343                 :             : {
     344                 :      667138 :   tree lam;
     345                 :      667138 :   vec<tree, va_gc> *proxies;
     346                 :      667138 :   unsigned i;
     347                 :             : 
     348                 :      709907 :   if (!current_function_decl || !LAMBDA_FUNCTION_P (current_function_decl))
     349                 :             :     return;
     350                 :             : 
     351                 :       14526 :   lam = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (current_function_decl));
     352                 :       14526 :   proxies = LAMBDA_EXPR_PENDING_PROXIES (lam);
     353                 :       15229 :   for (i = 0; i < vec_safe_length (proxies); ++i)
     354                 :             :     {
     355                 :         242 :       tree var = (*proxies)[i];
     356                 :         242 :       insert_capture_proxy (var);
     357                 :             :     }
     358                 :       14526 :   release_tree_vector (LAMBDA_EXPR_PENDING_PROXIES (lam));
     359                 :       14526 :   LAMBDA_EXPR_PENDING_PROXIES (lam) = NULL;
     360                 :             : }
     361                 :             : 
     362                 :             : /* Given REF, a COMPONENT_REF designating a field in the lambda closure,
     363                 :             :    return the type we want the proxy to have: the type of the field itself,
     364                 :             :    with added const-qualification if the lambda isn't mutable and the
     365                 :             :    capture is by value.  */
     366                 :             : 
     367                 :             : tree
     368                 :     1063145 : lambda_proxy_type (tree ref)
     369                 :             : {
     370                 :     1063145 :   tree type;
     371                 :     1063145 :   if (ref == error_mark_node)
     372                 :             :     return error_mark_node;
     373                 :     1063138 :   if (REFERENCE_REF_P (ref))
     374                 :           0 :     ref = TREE_OPERAND (ref, 0);
     375                 :     1063138 :   gcc_assert (TREE_CODE (ref) == COMPONENT_REF);
     376                 :     1063138 :   type = TREE_TYPE (ref);
     377                 :     1063138 :   if (!type || WILDCARD_TYPE_P (non_reference (type)))
     378                 :             :     {
     379                 :      161992 :       type = cxx_make_type (DECLTYPE_TYPE);
     380                 :      161992 :       DECLTYPE_TYPE_EXPR (type) = ref;
     381                 :      161992 :       DECLTYPE_FOR_LAMBDA_PROXY (type) = true;
     382                 :      161992 :       SET_TYPE_STRUCTURAL_EQUALITY (type);
     383                 :             :     }
     384                 :     1063138 :   if (DECL_PACK_P (TREE_OPERAND (ref, 1)))
     385                 :          53 :     type = make_pack_expansion (type);
     386                 :             :   return type;
     387                 :             : }
     388                 :             : 
     389                 :             : /* MEMBER is a capture field in a lambda closure class.  Now that we're
     390                 :             :    inside the operator(), build a placeholder var for future lookups and
     391                 :             :    debugging.  */
     392                 :             : 
     393                 :             : static tree
     394                 :     1063053 : build_capture_proxy (tree member, tree init)
     395                 :             : {
     396                 :     1063053 :   tree var, object, fn, closure, name, lam, type;
     397                 :             : 
     398                 :     1063053 :   if (PACK_EXPANSION_P (member))
     399                 :          46 :     member = PACK_EXPANSION_PATTERN (member);
     400                 :             : 
     401                 :     1063053 :   closure = DECL_CONTEXT (member);
     402                 :     1063053 :   fn = lambda_function (closure);
     403                 :     1063053 :   lam = CLASSTYPE_LAMBDA_EXPR (closure);
     404                 :             : 
     405                 :     1063053 :   object = DECL_ARGUMENTS (fn);
     406                 :             :   /* The proxy variable forwards to the capture field.  */
     407                 :     1063053 :   if (INDIRECT_TYPE_P (TREE_TYPE (object)))
     408                 :     1062953 :     object = build_fold_indirect_ref (object);
     409                 :     1063053 :   object = finish_non_static_data_member (member, object, NULL_TREE);
     410                 :     1063053 :   if (REFERENCE_REF_P (object))
     411                 :      534366 :     object = TREE_OPERAND (object, 0);
     412                 :             : 
     413                 :             :   /* Remove the __ inserted by add_capture.  */
     414                 :     1063053 :   if (IDENTIFIER_POINTER (DECL_NAME (member))[2] == '_'
     415                 :     1063053 :       && IDENTIFIER_POINTER (DECL_NAME (member))[3] == '.')
     416                 :          12 :     name = get_identifier ("_");
     417                 :             :   else
     418                 :     1063041 :     name = get_identifier (IDENTIFIER_POINTER (DECL_NAME (member)) + 2);
     419                 :             : 
     420                 :     1063053 :   type = lambda_proxy_type (object);
     421                 :             : 
     422                 :     1063053 :   if (name == this_identifier && !INDIRECT_TYPE_P (type))
     423                 :             :     {
     424                 :         107 :       type = build_pointer_type (type);
     425                 :         107 :       type = cp_build_qualified_type (type, TYPE_QUAL_CONST);
     426                 :         107 :       object = build_fold_addr_expr_with_type (object, type);
     427                 :             :     }
     428                 :             : 
     429                 :     1063053 :   if (DECL_VLA_CAPTURE_P (member))
     430                 :             :     {
     431                 :             :       /* Rebuild the VLA type from the pointer and maxindex.  */
     432                 :          45 :       tree field = next_aggregate_field (TYPE_FIELDS (type));
     433                 :          45 :       tree ptr = build_simple_component_ref (object, field);
     434                 :          45 :       field = next_aggregate_field (DECL_CHAIN (field));
     435                 :          45 :       tree max = build_simple_component_ref (object, field);
     436                 :          45 :       type = build_cplus_array_type (TREE_TYPE (TREE_TYPE (ptr)),
     437                 :             :                                      build_index_type (max));
     438                 :          45 :       type = build_reference_type (type);
     439                 :          45 :       object = convert (type, ptr);
     440                 :             :     }
     441                 :             : 
     442                 :     1063053 :   complete_type (type);
     443                 :             : 
     444                 :     1063053 :   var = build_decl (input_location, VAR_DECL, name, type);
     445                 :     1063053 :   SET_DECL_VALUE_EXPR (var, object);
     446                 :     1063053 :   DECL_HAS_VALUE_EXPR_P (var) = 1;
     447                 :     1063053 :   DECL_ARTIFICIAL (var) = 1;
     448                 :     1063053 :   TREE_USED (var) = 1;
     449                 :     1063053 :   DECL_CONTEXT (var) = fn;
     450                 :             : 
     451                 :     1063053 :   if (DECL_NORMAL_CAPTURE_P (member))
     452                 :             :     {
     453                 :     1062490 :       if (DECL_VLA_CAPTURE_P (member))
     454                 :             :         {
     455                 :          42 :           init = CONSTRUCTOR_ELT (init, 0)->value;
     456                 :          42 :           init = TREE_OPERAND (init, 0); // Strip ADDR_EXPR.
     457                 :          42 :           init = TREE_OPERAND (init, 0); // Strip ARRAY_REF.
     458                 :             :         }
     459                 :             :       else
     460                 :             :         {
     461                 :     1062448 :           if (PACK_EXPANSION_P (init))
     462                 :          40 :             init = PACK_EXPANSION_PATTERN (init);
     463                 :             :         }
     464                 :             : 
     465                 :     1062490 :       if (INDIRECT_REF_P (init))
     466                 :      287667 :         init = TREE_OPERAND (init, 0);
     467                 :     1062490 :       STRIP_NOPS (init);
     468                 :             : 
     469                 :     1062490 :       gcc_assert (VAR_P (init) || TREE_CODE (init) == PARM_DECL);
     470                 :     1074918 :       while (is_normal_capture_proxy (init))
     471                 :       12428 :         init = DECL_CAPTURED_VARIABLE (init);
     472                 :     1062490 :       retrofit_lang_decl (var);
     473                 :     1062490 :       DECL_CAPTURED_VARIABLE (var) = init;
     474                 :             :     }
     475                 :             : 
     476                 :     1063053 :   if (name == this_identifier)
     477                 :             :     {
     478                 :      190435 :       gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (lam) == member);
     479                 :      190435 :       LAMBDA_EXPR_THIS_CAPTURE (lam) = var;
     480                 :             :     }
     481                 :             : 
     482                 :     1063053 :   if (fn == current_function_decl)
     483                 :     1062811 :     insert_capture_proxy (var);
     484                 :             :   else
     485                 :         242 :     vec_safe_push (LAMBDA_EXPR_PENDING_PROXIES (lam), var);
     486                 :             : 
     487                 :     1063053 :   return var;
     488                 :             : }
     489                 :             : 
     490                 :             : static GTY(()) tree ptr_id;
     491                 :             : static GTY(()) tree max_id;
     492                 :             : 
     493                 :             : /* Return a struct containing a pointer and a length for lambda capture of
     494                 :             :    an array of runtime length.  */
     495                 :             : 
     496                 :             : static tree
     497                 :          45 : vla_capture_type (tree array_type)
     498                 :             : {
     499                 :          45 :   tree type = xref_tag (record_type, make_anon_name ());
     500                 :          45 :   xref_basetypes (type, NULL_TREE);
     501                 :          45 :   type = begin_class_definition (type);
     502                 :          45 :   if (!ptr_id)
     503                 :             :     {
     504                 :          36 :       ptr_id = get_identifier ("ptr");
     505                 :          36 :       max_id = get_identifier ("max");
     506                 :             :     }
     507                 :          45 :   tree ptrtype = build_pointer_type (TREE_TYPE (array_type));
     508                 :          45 :   tree field = build_decl (input_location, FIELD_DECL, ptr_id, ptrtype);
     509                 :          45 :   finish_member_declaration (field);
     510                 :          45 :   field = build_decl (input_location, FIELD_DECL, max_id, sizetype);
     511                 :          45 :   finish_member_declaration (field);
     512                 :          45 :   return finish_struct (type, NULL_TREE);
     513                 :             : }
     514                 :             : 
     515                 :             : /* From an ID and INITIALIZER, create a capture (by reference if
     516                 :             :    BY_REFERENCE_P is true), add it to the capture-list for LAMBDA,
     517                 :             :    and return it.  If ID is `this', BY_REFERENCE_P says whether
     518                 :             :    `*this' is captured by reference.  */
     519                 :             : 
     520                 :             : tree
     521                 :      808703 : add_capture (tree lambda, tree id, tree orig_init, bool by_reference_p,
     522                 :             :              bool explicit_init_p, unsigned *name_independent_cnt)
     523                 :             : {
     524                 :      808703 :   char *buf;
     525                 :      808703 :   tree type, member, name;
     526                 :      808703 :   bool vla = false;
     527                 :      808703 :   bool variadic = false;
     528                 :      808703 :   tree initializer = orig_init;
     529                 :             : 
     530                 :      808703 :   if (PACK_EXPANSION_P (initializer))
     531                 :             :     {
     532                 :          46 :       initializer = PACK_EXPANSION_PATTERN (initializer);
     533                 :             :       variadic = true;
     534                 :             :     }
     535                 :             : 
     536                 :      808703 :   if (TREE_CODE (initializer) == TREE_LIST
     537                 :             :       /* A pack expansion might end up with multiple elements.  */
     538                 :      808703 :       && !PACK_EXPANSION_P (TREE_VALUE (initializer)))
     539                 :           9 :     initializer = build_x_compound_expr_from_list (initializer, ELK_INIT,
     540                 :             :                                                    tf_warning_or_error);
     541                 :      808703 :   type = TREE_TYPE (initializer);
     542                 :      808703 :   if (type == error_mark_node)
     543                 :             :     return error_mark_node;
     544                 :             : 
     545                 :      808682 :   if (!dependent_type_p (type) && array_of_runtime_bound_p (type))
     546                 :             :     {
     547                 :          45 :       vla = true;
     548                 :          45 :       if (!by_reference_p)
     549                 :           3 :         error ("array of runtime bound cannot be captured by copy, "
     550                 :             :                "only by reference");
     551                 :             : 
     552                 :             :       /* For a VLA, we capture the address of the first element and the
     553                 :             :          maximum index, and then reconstruct the VLA for the proxy.  */
     554                 :          45 :       tree elt = cp_build_array_ref (input_location, initializer,
     555                 :             :                                      integer_zero_node, tf_warning_or_error);
     556                 :          45 :       initializer = build_constructor_va (init_list_type_node, 2,
     557                 :             :                                           NULL_TREE, build_address (elt),
     558                 :             :                                           NULL_TREE, array_type_nelts (type));
     559                 :          45 :       type = vla_capture_type (type);
     560                 :             :     }
     561                 :      808637 :   else if (!dependent_type_p (type)
     562                 :      808637 :            && variably_modified_type_p (type, NULL_TREE))
     563                 :             :     {
     564                 :          18 :       sorry ("capture of variably-modified type %qT that is not an N3639 array "
     565                 :             :              "of runtime bound", type);
     566                 :          18 :       if (TREE_CODE (type) == ARRAY_TYPE
     567                 :          18 :           && variably_modified_type_p (TREE_TYPE (type), NULL_TREE))
     568                 :          12 :         inform (input_location, "because the array element type %qT has "
     569                 :          12 :                 "variable size", TREE_TYPE (type));
     570                 :          18 :       return error_mark_node;
     571                 :             :     }
     572                 :             :   else
     573                 :             :     {
     574                 :      808619 :       type = lambda_capture_field_type (initializer, explicit_init_p,
     575                 :             :                                         by_reference_p);
     576                 :      808619 :       if (type == error_mark_node)
     577                 :             :         return error_mark_node;
     578                 :             : 
     579                 :      808616 :       if (id == this_identifier && !by_reference_p)
     580                 :             :         {
     581                 :         101 :           gcc_assert (INDIRECT_TYPE_P (type));
     582                 :         101 :           type = TREE_TYPE (type);
     583                 :         101 :           initializer = cp_build_fold_indirect_ref (initializer);
     584                 :             :         }
     585                 :             : 
     586                 :      808616 :       if (dependent_type_p (type))
     587                 :             :         ;
     588                 :      322687 :       else if (id != this_identifier && by_reference_p)
     589                 :             :         {
     590                 :      144668 :           if (!lvalue_p (initializer))
     591                 :             :             {
     592                 :           3 :               error ("cannot capture %qE by reference", initializer);
     593                 :           3 :               return error_mark_node;
     594                 :             :             }
     595                 :             :         }
     596                 :             :       else
     597                 :             :         {
     598                 :             :           /* Capture by copy requires a complete type.  */
     599                 :      178019 :           type = complete_type (type);
     600                 :      178019 :           if (!COMPLETE_TYPE_P (type))
     601                 :             :             {
     602                 :           6 :               error ("capture by copy of incomplete type %qT", type);
     603                 :           6 :               cxx_incomplete_type_inform (type);
     604                 :           6 :               return error_mark_node;
     605                 :             :             }
     606                 :      178013 :           else if (!verify_type_context (input_location,
     607                 :             :                                          TCTX_CAPTURE_BY_COPY, type))
     608                 :           0 :             return error_mark_node;
     609                 :             :         }
     610                 :             :     }
     611                 :             : 
     612                 :             :   /* Add __ to the beginning of the field name so that user code
     613                 :             :      won't find the field with name lookup.  We can't just leave the name
     614                 :             :      unset because template instantiation uses the name to find
     615                 :             :      instantiated fields.  */
     616                 :      808652 :   if (id_equal (id, "_") && name_independent_cnt)
     617                 :             :     {
     618                 :          33 :       if (*name_independent_cnt == 0)
     619                 :          21 :         name = get_identifier ("___");
     620                 :             :       else
     621                 :             :         {
     622                 :             :           /* For 2nd and later name-independent capture use
     623                 :             :              unique names.  */
     624                 :          12 :           char buf2[5 + (HOST_BITS_PER_INT + 2) / 3];
     625                 :          12 :           sprintf (buf2, "___.%u", *name_independent_cnt);
     626                 :          12 :           name = get_identifier (buf2);
     627                 :             :         }
     628                 :          33 :       name_independent_cnt[0]++;
     629                 :             :     }
     630                 :             :   else
     631                 :             :     {
     632                 :      808619 :       buf = XALLOCAVEC (char, IDENTIFIER_LENGTH (id) + 3);
     633                 :      808619 :       buf[1] = buf[0] = '_';
     634                 :      808619 :       memcpy (buf + 2, IDENTIFIER_POINTER (id),
     635                 :      808619 :               IDENTIFIER_LENGTH (id) + 1);
     636                 :      808619 :       name = get_identifier (buf);
     637                 :             :     }
     638                 :             : 
     639                 :      808652 :   if (variadic)
     640                 :             :     {
     641                 :          46 :       type = make_pack_expansion (type);
     642                 :          46 :       if (explicit_init_p)
     643                 :             :         /* With an explicit initializer 'type' is auto, which isn't really a
     644                 :             :            parameter pack in this context.  We will want as many fields as we
     645                 :             :            have elements in the expansion of the initializer, so use its packs
     646                 :             :            instead.  */
     647                 :             :         {
     648                 :          24 :           PACK_EXPANSION_PARAMETER_PACKS (type)
     649                 :          12 :             = uses_parameter_packs (initializer);
     650                 :          12 :           PACK_EXPANSION_AUTO_P (type) = true;
     651                 :             :         }
     652                 :             :     }
     653                 :             : 
     654                 :             :   /* Make member variable.  */
     655                 :      808652 :   member = build_decl (input_location, FIELD_DECL, name, type);
     656                 :      808652 :   DECL_VLA_CAPTURE_P (member) = vla;
     657                 :             : 
     658                 :      808652 :   if (!explicit_init_p)
     659                 :             :     /* Normal captures are invisible to name lookup but uses are replaced
     660                 :             :        with references to the capture field; we implement this by only
     661                 :             :        really making them invisible in unevaluated context; see
     662                 :             :        qualify_lookup.  For now, let's make explicitly initialized captures
     663                 :             :        always visible.  */
     664                 :      808168 :     DECL_NORMAL_CAPTURE_P (member) = true;
     665                 :             : 
     666                 :      808652 :   if (id == this_identifier)
     667                 :      167101 :     LAMBDA_EXPR_THIS_CAPTURE (lambda) = member;
     668                 :             : 
     669                 :             :   /* Add it to the appropriate closure class if we've started it.  */
     670                 :      808652 :   if (current_class_type
     671                 :      808652 :       && current_class_type == LAMBDA_EXPR_CLOSURE (lambda))
     672                 :             :     {
     673                 :      400232 :       if (COMPLETE_TYPE_P (current_class_type))
     674                 :           0 :         internal_error ("trying to capture %qD in instantiation of "
     675                 :             :                         "generic lambda", id);
     676                 :      400232 :       finish_member_declaration (member);
     677                 :             :     }
     678                 :             : 
     679                 :      808652 :   tree listmem = member;
     680                 :      808652 :   if (variadic)
     681                 :             :     {
     682                 :          46 :       listmem = make_pack_expansion (member);
     683                 :          46 :       initializer = orig_init;
     684                 :             :     }
     685                 :      808652 :   LAMBDA_EXPR_CAPTURE_LIST (lambda)
     686                 :      808652 :     = tree_cons (listmem, initializer, LAMBDA_EXPR_CAPTURE_LIST (lambda));
     687                 :             : 
     688                 :      808652 :   if (LAMBDA_EXPR_CLOSURE (lambda))
     689                 :      400232 :     return build_capture_proxy (member, initializer);
     690                 :             :   /* For explicit captures we haven't started the function yet, so we wait
     691                 :             :      and build the proxy from cp_parser_lambda_body.  */
     692                 :      408420 :   LAMBDA_CAPTURE_EXPLICIT_P (LAMBDA_EXPR_CAPTURE_LIST (lambda)) = true;
     693                 :      408420 :   return NULL_TREE;
     694                 :             : }
     695                 :             : 
     696                 :             : /* Register all the capture members on the list CAPTURES, which is the
     697                 :             :    LAMBDA_EXPR_CAPTURE_LIST for the lambda after the introducer.  */
     698                 :             : 
     699                 :             : void
     700                 :     1329961 : register_capture_members (tree captures)
     701                 :             : {
     702                 :     1329961 :   if (captures == NULL_TREE)
     703                 :             :     return;
     704                 :             : 
     705                 :      662823 :   register_capture_members (TREE_CHAIN (captures));
     706                 :             : 
     707                 :      662823 :   tree field = TREE_PURPOSE (captures);
     708                 :      662823 :   if (PACK_EXPANSION_P (field))
     709                 :          46 :     field = PACK_EXPANSION_PATTERN (field);
     710                 :             : 
     711                 :      662823 :   finish_member_declaration (field);
     712                 :             : }
     713                 :             : 
     714                 :             : /* Similar to add_capture, except this works on a stack of nested lambdas.
     715                 :             :    BY_REFERENCE_P in this case is derived from the default capture mode.
     716                 :             :    Returns the capture for the lambda at the bottom of the stack.  */
     717                 :             : 
     718                 :             : tree
     719                 :      400008 : add_default_capture (tree lambda_stack, tree id, tree initializer)
     720                 :             : {
     721                 :      400008 :   bool this_capture_p = (id == this_identifier);
     722                 :      400008 :   tree var = NULL_TREE;
     723                 :      400008 :   tree saved_class_type = current_class_type;
     724                 :             : 
     725                 :      400008 :   for (tree node = lambda_stack;
     726                 :      800264 :        node;
     727                 :      400256 :        node = TREE_CHAIN (node))
     728                 :             :     {
     729                 :      400256 :       tree lambda = TREE_VALUE (node);
     730                 :             : 
     731                 :      400256 :       current_class_type = LAMBDA_EXPR_CLOSURE (lambda);
     732                 :      400256 :       if (DECL_PACK_P (initializer))
     733                 :           0 :         initializer = make_pack_expansion (initializer);
     734                 :      400256 :       var = add_capture (lambda,
     735                 :             :                             id,
     736                 :             :                             initializer,
     737                 :             :                             /*by_reference_p=*/
     738                 :             :                             (this_capture_p
     739                 :      400256 :                              || (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda)
     740                 :      352427 :                                  == CPLD_REFERENCE)),
     741                 :             :                             /*explicit_init_p=*/false, NULL);
     742                 :      400256 :       initializer = convert_from_reference (var);
     743                 :             : 
     744                 :             :       /* Warn about deprecated implicit capture of this via [=].  */
     745                 :      400256 :       if (cxx_dialect >= cxx20
     746                 :      215936 :           && this_capture_p
     747                 :      426195 :           && LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) == CPLD_COPY)
     748                 :             :         {
     749                 :          38 :           if (warning_at (LAMBDA_EXPR_LOCATION (lambda), OPT_Wdeprecated,
     750                 :             :                           "implicit capture of %qE via %<[=]%> is deprecated "
     751                 :             :                           "in C++20", this_identifier))
     752                 :          34 :             inform (LAMBDA_EXPR_LOCATION (lambda), "add explicit %<this%> or "
     753                 :             :                     "%<*this%> capture");
     754                 :             :         }
     755                 :             :     }
     756                 :             : 
     757                 :      400008 :   current_class_type = saved_class_type;
     758                 :             : 
     759                 :      400008 :   return var;
     760                 :             : }
     761                 :             : 
     762                 :             : /* Return the capture pertaining to a use of 'this' in LAMBDA, in the
     763                 :             :    form of an INDIRECT_REF, possibly adding it through default
     764                 :             :    capturing, if ADD_CAPTURE_P is nonzero.  If ADD_CAPTURE_P is negative,
     765                 :             :    try to capture but don't complain if we can't.  */
     766                 :             : 
     767                 :             : tree
     768                 :      644159 : lambda_expr_this_capture (tree lambda, int add_capture_p)
     769                 :             : {
     770                 :      644159 :   tree result;
     771                 :             : 
     772                 :      644159 :   tree this_capture = LAMBDA_EXPR_THIS_CAPTURE (lambda);
     773                 :             : 
     774                 :             :   /* In unevaluated context this isn't an odr-use, so don't capture.  */
     775                 :      644159 :   if (cp_unevaluated_operand)
     776                 :          91 :     add_capture_p = false;
     777                 :             : 
     778                 :             :   /* Try to default capture 'this' if we can.  */
     779                 :      644159 :   if (!this_capture)
     780                 :             :     {
     781                 :             :       tree lambda_stack = NULL_TREE;
     782                 :       92100 :       tree init = NULL_TREE;
     783                 :             :       bool saw_complete = false;
     784                 :             : 
     785                 :             :       /* If we are in a lambda function, we can move out until we hit:
     786                 :             :            1. a non-lambda function or NSDMI,
     787                 :             :            2. a lambda function capturing 'this', or
     788                 :             :            3. a non-default capturing lambda function.  */
     789                 :             :       for (tree tlambda = lambda; ;)
     790                 :             :         {
     791                 :       92100 :           if (add_capture_p
     792                 :      139948 :               && LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (tlambda) == CPLD_NONE)
     793                 :             :             /* tlambda won't let us capture 'this'.  */
     794                 :             :             break;
     795                 :             : 
     796                 :       92084 :           if (add_capture_p)
     797                 :       47832 :             lambda_stack = tree_cons (NULL_TREE,
     798                 :             :                                       tlambda,
     799                 :             :                                       lambda_stack);
     800                 :             : 
     801                 :       92084 :           tree closure = LAMBDA_EXPR_CLOSURE (tlambda);
     802                 :       92084 :           if (COMPLETE_TYPE_P (closure))
     803                 :             :             /* We're instantiating a generic lambda op(), the containing
     804                 :             :                scope may be gone.  */
     805                 :        3624 :             saw_complete = true;
     806                 :             : 
     807                 :       92084 :           tree containing_function
     808                 :       92084 :             = decl_function_context (TYPE_NAME (closure));
     809                 :             : 
     810                 :       92084 :           tree ex = LAMBDA_EXPR_EXTRA_SCOPE (tlambda);
     811                 :       92084 :           if (ex && TREE_CODE (ex) == FIELD_DECL)
     812                 :             :             {
     813                 :             :               /* Lambda in an NSDMI.  We don't have a function to look up
     814                 :             :                  'this' in, but we can find (or rebuild) the fake one from
     815                 :             :                  inject_this_parameter.  */
     816                 :          63 :               if (!containing_function && !saw_complete)
     817                 :             :                 /* If we're parsing a lambda in a non-local class,
     818                 :             :                    we can find the fake 'this' in scope_chain.  */
     819                 :          45 :                 init = scope_chain->x_current_class_ptr;
     820                 :             :               else
     821                 :             :                 /* Otherwise it's either gone or buried in
     822                 :             :                    function_context_stack, so make another.  */
     823                 :          18 :                 init = build_this_parm (NULL_TREE, DECL_CONTEXT (ex),
     824                 :             :                                         TYPE_UNQUALIFIED);
     825                 :          63 :               gcc_checking_assert
     826                 :             :                 (init && (TREE_TYPE (TREE_TYPE (init))
     827                 :             :                           == current_nonlambda_class_type ()));
     828                 :             :               break;
     829                 :             :             }
     830                 :             : 
     831                 :       92021 :           if (containing_function == NULL_TREE)
     832                 :             :             /* We ran out of scopes; there's no 'this' to capture.  */
     833                 :             :             break;
     834                 :             : 
     835                 :       92763 :           if (!LAMBDA_FUNCTION_P (containing_function))
     836                 :             :             {
     837                 :             :               /* We found a non-lambda function.
     838                 :             :                  There is no this pointer in xobj member functions.  */
     839                 :       91515 :               if (DECL_IOBJ_MEMBER_FUNCTION_P (containing_function))
     840                 :             :                 /* First parameter is 'this'.  */
     841                 :       86838 :                 init = DECL_ARGUMENTS (containing_function);
     842                 :             :               break;
     843                 :             :             }
     844                 :             : 
     845                 :         483 :           tlambda
     846                 :         483 :             = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (containing_function));
     847                 :             : 
     848                 :         483 :           if (LAMBDA_EXPR_THIS_CAPTURE (tlambda))
     849                 :             :             {
     850                 :             :               /* An outer lambda has already captured 'this'.  */
     851                 :             :               init = LAMBDA_EXPR_THIS_CAPTURE (tlambda);
     852                 :             :               break;
     853                 :             :             }
     854                 :             :         }
     855                 :             : 
     856                 :       86958 :       if (init)
     857                 :             :         {
     858                 :       86919 :           if (add_capture_p)
     859                 :       47807 :             this_capture = add_default_capture (lambda_stack,
     860                 :             :                                                 /*id=*/this_identifier,
     861                 :             :                                                 init);
     862                 :             :           else
     863                 :             :             this_capture = init;
     864                 :             :         }
     865                 :             :     }
     866                 :             : 
     867                 :      644159 :   if (cp_unevaluated_operand)
     868                 :             :     result = this_capture;
     869                 :      644068 :   else if (!this_capture)
     870                 :             :     {
     871                 :        4704 :       if (add_capture_p == 1)
     872                 :             :         {
     873                 :          16 :           error ("%<this%> was not captured for this lambda function");
     874                 :          16 :           result = error_mark_node;
     875                 :             :         }
     876                 :             :       else
     877                 :             :         result = NULL_TREE;
     878                 :             :     }
     879                 :             :   else
     880                 :             :     {
     881                 :             :       /* To make sure that current_class_ref is for the lambda.  */
     882                 :      639364 :       gcc_assert (TYPE_MAIN_VARIANT (TREE_TYPE (current_class_ref))
     883                 :             :                   == LAMBDA_EXPR_CLOSURE (lambda));
     884                 :             : 
     885                 :      639364 :       result = this_capture;
     886                 :             : 
     887                 :             :       /* If 'this' is captured, each use of 'this' is transformed into an
     888                 :             :          access to the corresponding unnamed data member of the closure
     889                 :             :          type cast (_expr.cast_ 5.4) to the type of 'this'. [ The cast
     890                 :             :          ensures that the transformed expression is an rvalue. ] */
     891                 :      639364 :       result = rvalue (result);
     892                 :             :     }
     893                 :             : 
     894                 :      644159 :   return result;
     895                 :             : }
     896                 :             : 
     897                 :             : /* Return the innermost LAMBDA_EXPR we're currently in, if any.  */
     898                 :             : 
     899                 :             : tree
     900                 :    35540966 : current_lambda_expr (void)
     901                 :             : {
     902                 :    35540966 :   tree type = current_class_type;
     903                 :    46913102 :   while (type && !LAMBDA_TYPE_P (type))
     904                 :     4664448 :     type = decl_type_context (TYPE_NAME (type));
     905                 :    35540966 :   if (type)
     906                 :     2211231 :     return CLASSTYPE_LAMBDA_EXPR (type);
     907                 :             :   else
     908                 :             :     return NULL_TREE;
     909                 :             : }
     910                 :             : 
     911                 :             : /* Return the current LAMBDA_EXPR, if this is a resolvable dummy
     912                 :             :    object.  NULL otherwise..  */
     913                 :             : 
     914                 :             : static tree
     915                 :   191714809 : resolvable_dummy_lambda (tree object)
     916                 :             : {
     917                 :   191714809 :   if (!is_dummy_object (object))
     918                 :             :     return NULL_TREE;
     919                 :             : 
     920                 :    13175495 :   tree type = TYPE_MAIN_VARIANT (TREE_TYPE (object));
     921                 :    13175495 :   gcc_assert (!TYPE_PTR_P (type));
     922                 :             : 
     923                 :    13175495 :   if (type != current_class_type
     924                 :    11055356 :       && current_class_type
     925                 :    15672578 :       && LAMBDA_TYPE_P (current_class_type)
     926                 :      234828 :       && lambda_function (current_class_type)
     927                 :    13410314 :       && DERIVED_FROM_P (type, nonlambda_method_basetype()))
     928                 :      229569 :     return CLASSTYPE_LAMBDA_EXPR (current_class_type);
     929                 :             : 
     930                 :             :   return NULL_TREE;
     931                 :             : }
     932                 :             : 
     933                 :             : /* We don't want to capture 'this' until we know we need it, i.e. after
     934                 :             :    overload resolution has chosen a non-static member function.  At that
     935                 :             :    point we call this function to turn a dummy object into a use of the
     936                 :             :    'this' capture.  */
     937                 :             : 
     938                 :             : tree
     939                 :   112935487 : maybe_resolve_dummy (tree object, bool add_capture_p)
     940                 :             : {
     941                 :   112935487 :   if (tree lam = resolvable_dummy_lambda (object))
     942                 :      217331 :     if (tree cap = lambda_expr_this_capture (lam, add_capture_p))
     943                 :      217331 :       if (cap != error_mark_node)
     944                 :      217325 :         object = build_fold_indirect_ref (cap);
     945                 :             : 
     946                 :   112935487 :   return object;
     947                 :             : }
     948                 :             : 
     949                 :             : /* When parsing a generic lambda containing an argument-dependent
     950                 :             :    member function call we defer overload resolution to instantiation
     951                 :             :    time.  But we have to know now whether to capture this or not.
     952                 :             :    Do that if FNS contains any non-static fns.
     953                 :             :    The std doesn't anticipate this case, but I expect this to be the
     954                 :             :    outcome of discussion.  */
     955                 :             : 
     956                 :             : void
     957                 :    78779322 : maybe_generic_this_capture (tree object, tree fns)
     958                 :             : {
     959                 :    78779322 :   if (tree lam = resolvable_dummy_lambda (object))
     960                 :       12238 :     if (!LAMBDA_EXPR_THIS_CAPTURE (lam))
     961                 :             :       {
     962                 :             :         /* We've not yet captured, so look at the function set of
     963                 :             :            interest.  */
     964                 :        1131 :         if (BASELINK_P (fns))
     965                 :          49 :           fns = BASELINK_FUNCTIONS (fns);
     966                 :        1131 :         bool id_expr = TREE_CODE (fns) == TEMPLATE_ID_EXPR;
     967                 :        1131 :         if (id_expr)
     968                 :        1088 :           fns = TREE_OPERAND (fns, 0);
     969                 :             : 
     970                 :        1140 :         for (lkp_iterator iter (fns); iter; ++iter)
     971                 :          52 :           if (((!id_expr && TREE_CODE (*iter) != USING_DECL)
     972                 :        1091 :                || TREE_CODE (*iter) == TEMPLATE_DECL)
     973                 :        2277 :               && DECL_IOBJ_MEMBER_FUNCTION_P (*iter))
     974                 :             :             {
     975                 :             :               /* Found a non-static member.  Capture this.  */
     976                 :        1131 :               lambda_expr_this_capture (lam, /*maybe*/-1);
     977                 :        1131 :               break;
     978                 :             :             }
     979                 :             :       }
     980                 :    78779322 : }
     981                 :             : 
     982                 :             : /* Returns the innermost non-lambda function.  */
     983                 :             : 
     984                 :             : tree
     985                 :          50 : current_nonlambda_function (void)
     986                 :             : {
     987                 :          50 :   tree fn = current_function_decl;
     988                 :          56 :   while (fn && LAMBDA_FUNCTION_P (fn))
     989                 :           3 :     fn = decl_function_context (fn);
     990                 :          50 :   return fn;
     991                 :             : }
     992                 :             : 
     993                 :             : /* Returns the method basetype of the innermost non-lambda function, including
     994                 :             :    a hypothetical constructor if inside an NSDMI, or NULL_TREE if none.  */
     995                 :             : 
     996                 :             : tree
     997                 :      235225 : nonlambda_method_basetype (void)
     998                 :             : {
     999                 :      235225 :   if (!current_class_ref)
    1000                 :             :     return NULL_TREE;
    1001                 :             : 
    1002                 :      234948 :   tree type = current_class_type;
    1003                 :      469896 :   if (!type || !LAMBDA_TYPE_P (type))
    1004                 :             :     return type;
    1005                 :             : 
    1006                 :      235817 :   while (true)
    1007                 :             :     {
    1008                 :      235324 :       tree lam = CLASSTYPE_LAMBDA_EXPR (type);
    1009                 :      235324 :       tree ex = LAMBDA_EXPR_EXTRA_SCOPE (lam);
    1010                 :      235324 :       if (ex && TREE_CODE (ex) == FIELD_DECL)
    1011                 :             :         /* Lambda in an NSDMI.  */
    1012                 :          30 :         return DECL_CONTEXT (ex);
    1013                 :             : 
    1014                 :      235294 :       tree fn = TYPE_CONTEXT (type);
    1015                 :      235294 :       if (!fn || TREE_CODE (fn) != FUNCTION_DECL
    1016                 :      470579 :           || !DECL_IOBJ_MEMBER_FUNCTION_P (fn))
    1017                 :             :         /* No enclosing non-lambda method.  */
    1018                 :             :         return NULL_TREE;
    1019                 :      231254 :       if (!LAMBDA_FUNCTION_P (fn))
    1020                 :             :         /* Found an enclosing non-lambda method.  */
    1021                 :      230121 :         return TYPE_METHOD_BASETYPE (TREE_TYPE (fn));
    1022                 :         493 :       type = DECL_CONTEXT (fn);
    1023                 :         493 :     }
    1024                 :             : }
    1025                 :             : 
    1026                 :             : /* Like current_scope, but looking through lambdas.  */
    1027                 :             : 
    1028                 :             : tree
    1029                 :    38320885 : current_nonlambda_scope (void)
    1030                 :             : {
    1031                 :    38320885 :   tree scope = current_scope ();
    1032                 :    38469278 :   for (;;)
    1033                 :             :     {
    1034                 :    38617659 :       if (TREE_CODE (scope) == FUNCTION_DECL
    1035                 :    38948136 :           && LAMBDA_FUNCTION_P (scope))
    1036                 :             :         {
    1037                 :      148381 :           scope = CP_TYPE_CONTEXT (DECL_CONTEXT (scope));
    1038                 :      148381 :           continue;
    1039                 :             :         }
    1040                 :    43592457 :       else if (LAMBDA_TYPE_P (scope))
    1041                 :             :         {
    1042                 :          12 :           scope = CP_TYPE_CONTEXT (scope);
    1043                 :          12 :           continue;
    1044                 :             :         }
    1045                 :    38320885 :       break;
    1046                 :             :     }
    1047                 :    38320885 :   return scope;
    1048                 :             : }
    1049                 :             : 
    1050                 :             : /* Helper function for maybe_add_lambda_conv_op; build a CALL_EXPR with
    1051                 :             :    indicated FN and NARGS, but do not initialize the return type or any of the
    1052                 :             :    argument slots.  */
    1053                 :             : 
    1054                 :             : static tree
    1055                 :       16557 : prepare_op_call (tree fn, int nargs)
    1056                 :             : {
    1057                 :       16557 :   tree t;
    1058                 :             : 
    1059                 :       16557 :   t = build_vl_exp (CALL_EXPR, nargs + 3);
    1060                 :       16557 :   CALL_EXPR_FN (t) = fn;
    1061                 :       16557 :   CALL_EXPR_STATIC_CHAIN (t) = NULL;
    1062                 :             : 
    1063                 :       16557 :   return t;
    1064                 :             : }
    1065                 :             : 
    1066                 :             : /* Return true iff CALLOP is the op() for a generic lambda.  */
    1067                 :             : 
    1068                 :             : bool
    1069                 :      293159 : generic_lambda_fn_p (tree callop)
    1070                 :             : {
    1071                 :      586318 :   return (LAMBDA_FUNCTION_P (callop)
    1072                 :      293159 :           && DECL_TEMPLATE_INFO (callop)
    1073                 :      558069 :           && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (callop)));
    1074                 :             : }
    1075                 :             : 
    1076                 :             : /* If the closure TYPE has a static op(), also add a conversion to function
    1077                 :             :    pointer.  */
    1078                 :             : 
    1079                 :             : void
    1080                 :      667099 : maybe_add_lambda_conv_op (tree type)
    1081                 :             : {
    1082                 :      667099 :   bool nested = (cfun != NULL);
    1083                 :      667099 :   bool nested_def = decl_function_context (TYPE_MAIN_DECL (type));
    1084                 :      667099 :   tree callop = lambda_function (type);
    1085                 :      667099 :   tree lam = CLASSTYPE_LAMBDA_EXPR (type);
    1086                 :             : 
    1087                 :      667099 :   if (LAMBDA_EXPR_CAPTURE_LIST (lam) != NULL_TREE
    1088                 :      667099 :       || LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lam) != CPLD_NONE)
    1089                 :      630781 :     return;
    1090                 :             : 
    1091                 :      109970 :   if (processing_template_decl)
    1092                 :             :     return;
    1093                 :             : 
    1094                 :       36638 :   bool const generic_lambda_p = generic_lambda_fn_p (callop);
    1095                 :             : 
    1096                 :       36638 :   if (!generic_lambda_p && undeduced_auto_decl (callop))
    1097                 :             :     {
    1098                 :             :       /* If the op() wasn't deduced due to errors, give up.  */
    1099                 :          26 :       gcc_assert (errorcount || sorrycount);
    1100                 :             :       return;
    1101                 :             :     }
    1102                 :             : 
    1103                 :             :   /* Non-generic non-capturing lambdas only have a conversion function to
    1104                 :             :      pointer to function when the trailing requires-clause's constraints are
    1105                 :             :      satisfied.  */
    1106                 :       36612 :   if (!generic_lambda_p && !constraints_satisfied_p (callop))
    1107                 :             :     return;
    1108                 :             : 
    1109                 :             :   /* Non-template conversion operators are defined directly with build_call_a
    1110                 :             :      and using DIRECT_ARGVEC for arguments (including 'this').  Templates are
    1111                 :             :      deferred and the CALL is built in-place.  In the case of a deduced return
    1112                 :             :      call op, the decltype expression, DECLTYPE_CALL, used as a substitute for
    1113                 :             :      the return type is also built in-place.  The arguments of DECLTYPE_CALL in
    1114                 :             :      the return expression may differ in flags from those in the body CALL.  In
    1115                 :             :      particular, parameter pack expansions are marked PACK_EXPANSION_LOCAL_P in
    1116                 :             :      the body CALL, but not in DECLTYPE_CALL.  */
    1117                 :             : 
    1118                 :       36606 :   vec<tree, va_gc> *direct_argvec = 0;
    1119                 :       36606 :   tree decltype_call = 0, call = 0;
    1120                 :       36606 :   tree optype = TREE_TYPE (callop);
    1121                 :       36606 :   tree fn_result = TREE_TYPE (optype);
    1122                 :             : 
    1123                 :       36606 :   tree thisarg = NULL_TREE;
    1124                 :       36606 :   if (TREE_CODE (optype) == METHOD_TYPE)
    1125                 :       36474 :     thisarg = build_int_cst (TREE_TYPE (DECL_ARGUMENTS (callop)), 0);
    1126                 :       36606 :   if (generic_lambda_p)
    1127                 :             :     {
    1128                 :        8389 :       ++processing_template_decl;
    1129                 :             : 
    1130                 :             :       /* Prepare the dependent member call for the static member function
    1131                 :             :          '_FUN' and, potentially, prepare another call to be used in a decltype
    1132                 :             :          return expression for a deduced return call op to allow for simple
    1133                 :             :          implementation of the conversion operator.  */
    1134                 :             : 
    1135                 :        8389 :       tree objfn;
    1136                 :        8389 :       int nargs = list_length (DECL_ARGUMENTS (callop));
    1137                 :        8389 :       if (thisarg)
    1138                 :             :         {
    1139                 :        8289 :           tree instance = cp_build_fold_indirect_ref (thisarg);
    1140                 :        8289 :           objfn = lookup_template_function (DECL_NAME (callop),
    1141                 :        8289 :                                             DECL_TI_ARGS (callop));
    1142                 :        8289 :           objfn = build_min (COMPONENT_REF, NULL_TREE,
    1143                 :             :                              instance, objfn, NULL_TREE);
    1144                 :        8289 :           --nargs;
    1145                 :        8289 :           call = prepare_op_call (objfn, nargs);
    1146                 :             :         }
    1147                 :             :       else
    1148                 :             :         objfn = callop;
    1149                 :             : 
    1150                 :        8389 :       if (type_uses_auto (fn_result))
    1151                 :        8268 :         decltype_call = prepare_op_call (objfn, nargs);
    1152                 :             :     }
    1153                 :       28217 :   else if (thisarg)
    1154                 :             :     {
    1155                 :       28185 :       direct_argvec = make_tree_vector ();
    1156                 :       28185 :       direct_argvec->quick_push (thisarg);
    1157                 :             :     }
    1158                 :             : 
    1159                 :             :   /* Copy CALLOP's argument list (as per 'copy_list') as FN_ARGS in order to
    1160                 :             :      declare the static member function "_FUN" below.  For each arg append to
    1161                 :             :      DIRECT_ARGVEC (for the non-template case) or populate the pre-allocated
    1162                 :             :      call args (for the template case).  If a parameter pack is found, expand
    1163                 :             :      it, flagging it as PACK_EXPANSION_LOCAL_P for the body call.  */
    1164                 :             : 
    1165                 :       36606 :   tree fn_args = NULL_TREE;
    1166                 :       36606 :   {
    1167                 :       36606 :     int ix = 0;
    1168                 :       36606 :     tree src = FUNCTION_FIRST_USER_PARM (callop);
    1169                 :       36606 :     tree tgt = NULL;
    1170                 :             : 
    1171                 :       36606 :     if (!thisarg && !decltype_call)
    1172                 :       36606 :       src = NULL_TREE;
    1173                 :       62311 :     while (src)
    1174                 :             :       {
    1175                 :       25705 :         tree new_node = copy_node (src);
    1176                 :             :         /* We set DECL_CONTEXT of NEW_NODE to the statfn below.
    1177                 :             :            Notice this is creating a recursive type!  */
    1178                 :             : 
    1179                 :             :         /* Clear TREE_ADDRESSABLE on thunk arguments.  */
    1180                 :       25705 :         TREE_ADDRESSABLE (new_node) = 0;
    1181                 :             : 
    1182                 :       25705 :         if (!fn_args)
    1183                 :       16831 :           fn_args = tgt = new_node;
    1184                 :             :         else
    1185                 :             :           {
    1186                 :        8874 :             TREE_CHAIN (tgt) = new_node;
    1187                 :        8874 :             tgt = new_node;
    1188                 :             :           }
    1189                 :             : 
    1190                 :       25705 :         mark_exp_read (tgt);
    1191                 :             : 
    1192                 :       25705 :         if (generic_lambda_p)
    1193                 :             :           {
    1194                 :       13906 :             tree a = tgt;
    1195                 :       13906 :             if (thisarg)
    1196                 :             :               {
    1197                 :       13805 :                 if (DECL_PACK_P (tgt))
    1198                 :             :                   {
    1199                 :         483 :                     a = make_pack_expansion (a);
    1200                 :         483 :                     PACK_EXPANSION_LOCAL_P (a) = true;
    1201                 :             :                   }
    1202                 :       13805 :                 CALL_EXPR_ARG (call, ix) = a;
    1203                 :             :               }
    1204                 :             : 
    1205                 :       13906 :             if (decltype_call)
    1206                 :             :               {
    1207                 :             :                 /* Avoid capturing variables in this context.  */
    1208                 :       13756 :                 ++cp_unevaluated_operand;
    1209                 :       13756 :                 CALL_EXPR_ARG (decltype_call, ix) = forward_parm (tgt);
    1210                 :       13756 :                 --cp_unevaluated_operand;
    1211                 :             :               }
    1212                 :             : 
    1213                 :       13906 :             ++ix;
    1214                 :             :           }
    1215                 :             :         else
    1216                 :       11799 :           vec_safe_push (direct_argvec, tgt);
    1217                 :             : 
    1218                 :       25705 :         src = TREE_CHAIN (src);
    1219                 :             :       }
    1220                 :             :   }
    1221                 :             : 
    1222                 :       36606 :   if (generic_lambda_p)
    1223                 :             :     {
    1224                 :        8389 :       if (decltype_call)
    1225                 :             :         {
    1226                 :        8268 :           fn_result = finish_decltype_type
    1227                 :        8268 :             (decltype_call, /*id_expression_or_member_access_p=*/false,
    1228                 :             :              tf_warning_or_error);
    1229                 :             :         }
    1230                 :             :     }
    1231                 :       28217 :   else if (thisarg)
    1232                 :             :     {
    1233                 :             :       /* Don't warn on deprecated or unavailable lambda declarations, unless
    1234                 :             :          the lambda is actually called.  */
    1235                 :       28185 :       auto du = make_temp_override (deprecated_state,
    1236                 :       28185 :                                     UNAVAILABLE_DEPRECATED_SUPPRESS);
    1237                 :       28185 :       call = build_call_a (callop, direct_argvec->length (),
    1238                 :             :                            direct_argvec->address ());
    1239                 :       28185 :     }
    1240                 :             : 
    1241                 :       36606 :   if (thisarg)
    1242                 :             :     {
    1243                 :       36474 :       CALL_FROM_THUNK_P (call) = 1;
    1244                 :       36474 :       SET_EXPR_LOCATION (call, UNKNOWN_LOCATION);
    1245                 :             :     }
    1246                 :             : 
    1247                 :       36606 :   tree stattype
    1248                 :       36606 :     = build_function_type (fn_result, FUNCTION_FIRST_USER_PARMTYPE (callop));
    1249                 :       36606 :   stattype = (cp_build_type_attribute_variant
    1250                 :       36606 :               (stattype, TYPE_ATTRIBUTES (optype)));
    1251                 :       36606 :   if (flag_noexcept_type
    1252                 :       36606 :       && TYPE_NOTHROW_P (TREE_TYPE (callop)))
    1253                 :          42 :     stattype = build_exception_variant (stattype, noexcept_true_spec);
    1254                 :             : 
    1255                 :       36606 :   if (generic_lambda_p)
    1256                 :        8389 :     --processing_template_decl;
    1257                 :             : 
    1258                 :             :   /* First build up the conversion op.  */
    1259                 :             : 
    1260                 :       36606 :   tree rettype = build_pointer_type (stattype);
    1261                 :       36606 :   tree name = make_conv_op_name (rettype);
    1262                 :       36606 :   tree thistype = cp_build_qualified_type (type, TYPE_QUAL_CONST);
    1263                 :       36606 :   tree fntype = build_method_type_directly (thistype, rettype, void_list_node);
    1264                 :             :   /* DR 1722: The conversion function should be noexcept.  */
    1265                 :       36606 :   fntype = build_exception_variant (fntype, noexcept_true_spec);
    1266                 :       36606 :   tree convfn = build_lang_decl (FUNCTION_DECL, name, fntype);
    1267                 :       36606 :   SET_DECL_LANGUAGE (convfn, lang_cplusplus);
    1268                 :       36606 :   tree fn = convfn;
    1269                 :       36606 :   DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (callop);
    1270                 :       36606 :   SET_DECL_ALIGN (fn, MINIMUM_METHOD_BOUNDARY);
    1271                 :       36606 :   grokclassfn (type, fn, NO_SPECIAL);
    1272                 :       36606 :   set_linkage_according_to_type (type, fn);
    1273                 :       36606 :   rest_of_decl_compilation (fn, namespace_bindings_p (), at_eof);
    1274                 :       36606 :   DECL_IN_AGGR_P (fn) = 1;
    1275                 :       36606 :   DECL_ARTIFICIAL (fn) = 1;
    1276                 :       36606 :   DECL_NOT_REALLY_EXTERN (fn) = 1;
    1277                 :       36606 :   DECL_DECLARED_INLINE_P (fn) = 1;
    1278                 :       36606 :   DECL_DECLARED_CONSTEXPR_P (fn) = DECL_DECLARED_CONSTEXPR_P (callop);
    1279                 :       73212 :   if (DECL_IMMEDIATE_FUNCTION_P (callop))
    1280                 :           9 :     SET_DECL_IMMEDIATE_FUNCTION_P (fn);
    1281                 :       36606 :   DECL_ARGUMENTS (fn) = build_this_parm (fn, fntype, TYPE_QUAL_CONST);
    1282                 :             : 
    1283                 :       36606 :   if (nested_def)
    1284                 :       35622 :     DECL_INTERFACE_KNOWN (fn) = 1;
    1285                 :             : 
    1286                 :       36606 :   if (generic_lambda_p)
    1287                 :        8389 :     fn = add_inherited_template_parms (fn, DECL_TI_TEMPLATE (callop));
    1288                 :             : 
    1289                 :       36606 :   add_method (type, fn, false);
    1290                 :             : 
    1291                 :       36606 :   if (thisarg == NULL_TREE)
    1292                 :             :     {
    1293                 :             :       /* For static lambda, just return operator().  */
    1294                 :         132 :       if (nested)
    1295                 :         128 :         push_function_context ();
    1296                 :             :       else
    1297                 :             :         /* Still increment function_depth so that we don't GC in the
    1298                 :             :            middle of an expression.  */
    1299                 :           4 :         ++function_depth;
    1300                 :             : 
    1301                 :             :       /* Generate the body of the conversion op.  */
    1302                 :             : 
    1303                 :         132 :       start_preparsed_function (convfn, NULL_TREE,
    1304                 :             :                                 SF_PRE_PARSED | SF_INCLASS_INLINE);
    1305                 :         132 :       tree body = begin_function_body ();
    1306                 :         132 :       tree compound_stmt = begin_compound_stmt (0);
    1307                 :             : 
    1308                 :             :       /* decl_needed_p needs to see that it's used.  */
    1309                 :         132 :       TREE_USED (callop) = 1;
    1310                 :         132 :       finish_return_stmt (decay_conversion (callop, tf_warning_or_error));
    1311                 :             : 
    1312                 :         132 :       finish_compound_stmt (compound_stmt);
    1313                 :         132 :       finish_function_body (body);
    1314                 :             : 
    1315                 :         132 :       fn = finish_function (/*inline_p=*/true);
    1316                 :         132 :       if (!generic_lambda_p)
    1317                 :          32 :         expand_or_defer_fn (fn);
    1318                 :             : 
    1319                 :         132 :       if (nested)
    1320                 :         128 :         pop_function_context ();
    1321                 :             :       else
    1322                 :           4 :         --function_depth;
    1323                 :         132 :       return;
    1324                 :             :     }
    1325                 :             : 
    1326                 :             :   /* Generic thunk code fails for varargs; we'll complain in mark_used if
    1327                 :             :      the conversion op is used.  */
    1328                 :       36474 :   if (varargs_function_p (callop))
    1329                 :             :     {
    1330                 :         156 :       DECL_DELETED_FN (fn) = 1;
    1331                 :         156 :       return;
    1332                 :             :     }
    1333                 :             : 
    1334                 :             :   /* Now build up the thunk to be returned.  */
    1335                 :             : 
    1336                 :       36318 :   tree statfn = build_lang_decl (FUNCTION_DECL, fun_identifier, stattype);
    1337                 :       36318 :   SET_DECL_LANGUAGE (statfn, lang_cplusplus);
    1338                 :       36318 :   fn = statfn;
    1339                 :       36318 :   DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (callop);
    1340                 :       36318 :   grokclassfn (type, fn, NO_SPECIAL);
    1341                 :       36318 :   set_linkage_according_to_type (type, fn);
    1342                 :       36318 :   rest_of_decl_compilation (fn, namespace_bindings_p (), at_eof);
    1343                 :       36318 :   DECL_IN_AGGR_P (fn) = 1;
    1344                 :       36318 :   DECL_ARTIFICIAL (fn) = 1;
    1345                 :       36318 :   DECL_NOT_REALLY_EXTERN (fn) = 1;
    1346                 :       36318 :   DECL_DECLARED_INLINE_P (fn) = 1;
    1347                 :       36318 :   DECL_STATIC_FUNCTION_P (fn) = 1;
    1348                 :       36318 :   DECL_DECLARED_CONSTEXPR_P (fn) = DECL_DECLARED_CONSTEXPR_P (callop);
    1349                 :       72636 :   if (DECL_IMMEDIATE_FUNCTION_P (callop))
    1350                 :           9 :     SET_DECL_IMMEDIATE_FUNCTION_P (fn);
    1351                 :       36318 :   DECL_ARGUMENTS (fn) = fn_args;
    1352                 :       61782 :   for (tree arg = fn_args; arg; arg = DECL_CHAIN (arg))
    1353                 :             :     {
    1354                 :             :       /* Avoid duplicate -Wshadow warnings.  */
    1355                 :       25464 :       DECL_NAME (arg) = NULL_TREE;
    1356                 :       25464 :       DECL_CONTEXT (arg) = fn;
    1357                 :             :     }
    1358                 :       36318 :   if (nested_def)
    1359                 :       35348 :     DECL_INTERFACE_KNOWN (fn) = 1;
    1360                 :             : 
    1361                 :       36318 :   if (generic_lambda_p)
    1362                 :        8276 :     fn = add_inherited_template_parms (fn, DECL_TI_TEMPLATE (callop));
    1363                 :             : 
    1364                 :       36318 :   if (flag_sanitize & SANITIZE_NULL)
    1365                 :             :     /* Don't UBsan this function; we're deliberately calling op() with a null
    1366                 :             :        object argument.  */
    1367                 :          30 :     add_no_sanitize_value (fn, SANITIZE_UNDEFINED);
    1368                 :             : 
    1369                 :       36318 :   add_method (type, fn, false);
    1370                 :             : 
    1371                 :       36318 :   if (nested)
    1372                 :       35358 :     push_function_context ();
    1373                 :             :   else
    1374                 :             :     /* Still increment function_depth so that we don't GC in the
    1375                 :             :        middle of an expression.  */
    1376                 :         960 :     ++function_depth;
    1377                 :             : 
    1378                 :             :   /* Generate the body of the thunk.  */
    1379                 :             : 
    1380                 :       36318 :   start_preparsed_function (statfn, NULL_TREE,
    1381                 :             :                             SF_PRE_PARSED | SF_INCLASS_INLINE);
    1382                 :       36318 :   tree body = begin_function_body ();
    1383                 :       36318 :   tree compound_stmt = begin_compound_stmt (0);
    1384                 :       36318 :   if (!generic_lambda_p)
    1385                 :             :     {
    1386                 :       28042 :       set_flags_from_callee (call);
    1387                 :       28042 :       if (MAYBE_CLASS_TYPE_P (TREE_TYPE (call)))
    1388                 :         399 :         call = build_cplus_new (TREE_TYPE (call), call, tf_warning_or_error);
    1389                 :             :     }
    1390                 :       36318 :   call = convert_from_reference (call);
    1391                 :       36318 :   finish_return_stmt (call);
    1392                 :             : 
    1393                 :       36318 :   finish_compound_stmt (compound_stmt);
    1394                 :       36318 :   finish_function_body (body);
    1395                 :             : 
    1396                 :       36318 :   fn = finish_function (/*inline_p=*/true);
    1397                 :       36318 :   if (!generic_lambda_p)
    1398                 :       28042 :     expand_or_defer_fn (fn);
    1399                 :             : 
    1400                 :             :   /* Generate the body of the conversion op.  */
    1401                 :             : 
    1402                 :       36318 :   start_preparsed_function (convfn, NULL_TREE,
    1403                 :             :                             SF_PRE_PARSED | SF_INCLASS_INLINE);
    1404                 :       36318 :   body = begin_function_body ();
    1405                 :       36318 :   compound_stmt = begin_compound_stmt (0);
    1406                 :             : 
    1407                 :             :   /* decl_needed_p needs to see that it's used.  */
    1408                 :       36318 :   TREE_USED (statfn) = 1;
    1409                 :       36318 :   finish_return_stmt (decay_conversion (statfn, tf_warning_or_error));
    1410                 :             : 
    1411                 :       36318 :   finish_compound_stmt (compound_stmt);
    1412                 :       36318 :   finish_function_body (body);
    1413                 :             : 
    1414                 :       36318 :   fn = finish_function (/*inline_p=*/true);
    1415                 :       36318 :   if (!generic_lambda_p)
    1416                 :       28042 :     expand_or_defer_fn (fn);
    1417                 :             : 
    1418                 :       36318 :   if (nested)
    1419                 :       35358 :     pop_function_context ();
    1420                 :             :   else
    1421                 :         960 :     --function_depth;
    1422                 :             : }
    1423                 :             : 
    1424                 :             : /* True if FN is the static function "_FUN" that gets returned from the lambda
    1425                 :             :    conversion operator.  */
    1426                 :             : 
    1427                 :             : bool
    1428                 :      439845 : lambda_static_thunk_p (tree fn)
    1429                 :             : {
    1430                 :      439845 :   return (fn && TREE_CODE (fn) == FUNCTION_DECL
    1431                 :      439845 :           && DECL_ARTIFICIAL (fn)
    1432                 :       37176 :           && DECL_STATIC_FUNCTION_P (fn)
    1433                 :      510453 :           && LAMBDA_TYPE_P (CP_DECL_CONTEXT (fn)));
    1434                 :             : }
    1435                 :             : 
    1436                 :             : bool
    1437                 :   141049206 : call_from_lambda_thunk_p (tree call)
    1438                 :             : {
    1439                 :   141049206 :   return (CALL_FROM_THUNK_P (call)
    1440                 :   141049206 :           && lambda_static_thunk_p (current_function_decl));
    1441                 :             : }
    1442                 :             : 
    1443                 :             : /* Returns true iff VAL is a lambda-related declaration which should
    1444                 :             :    be ignored by unqualified lookup.  */
    1445                 :             : 
    1446                 :             : bool
    1447                 :  2804191025 : is_lambda_ignored_entity (tree val)
    1448                 :             : {
    1449                 :             :   /* Look past normal, non-VLA capture proxies.  */
    1450                 :  2804191025 :   if (is_normal_capture_proxy (val)
    1451                 :  2804191025 :       && !variably_modified_type_p (TREE_TYPE (val), NULL_TREE))
    1452                 :             :     return true;
    1453                 :             : 
    1454                 :             :   /* Always ignore lambda fields, their names are only for debugging.  */
    1455                 :  2800094871 :   if (TREE_CODE (val) == FIELD_DECL
    1456                 :  2800094871 :       && CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (val)))
    1457                 :             :     return true;
    1458                 :             : 
    1459                 :             :   /* None of the lookups that use qualify_lookup want the op() from the
    1460                 :             :      lambda; they want the one from the enclosing class.  */
    1461                 :  2800094844 :   if (tree fns = maybe_get_fns (val))
    1462                 :   604207749 :     if (LAMBDA_FUNCTION_P (OVL_FIRST (fns)))
    1463                 :             :       return true;
    1464                 :             : 
    1465                 :             :   return false;
    1466                 :             : }
    1467                 :             : 
    1468                 :             : /* Lambdas that appear in variable initializer or default argument
    1469                 :             :    scope get that in their mangling, so we need to record it.  Also,
    1470                 :             :    multiple lambdas in the same scope may need a mangling
    1471                 :             :    discriminator.  In ABI <= 17, there is a single per-scope sequence
    1472                 :             :    number.  In ABI >= 18, there are per-scope per-signature sequence
    1473                 :             :    numbers.  */
    1474                 :             : struct GTY(()) lambda_sig_count
    1475                 :             : {
    1476                 :             :   tree fn; // The lambda fn whose sig this is.
    1477                 :             :   unsigned count;
    1478                 :             : };
    1479                 :             : struct GTY(()) lambda_discriminator
    1480                 :             : {
    1481                 :             :   tree scope;
    1482                 :             :   unsigned nesting; // Inside a function, VAR_DECLs get the function
    1483                 :             :                     // as scope. This counts that nesting.
    1484                 :             :   unsigned count;   // The per-scope counter.
    1485                 :             :   vec<lambda_sig_count, va_gc> *discriminators; // Per-signature counters
    1486                 :             : };
    1487                 :             : // The current scope.
    1488                 :             : static GTY(()) lambda_discriminator lambda_scope;
    1489                 :             : // Stack of previous scopes.
    1490                 :             : static GTY(()) vec<lambda_discriminator, va_gc> *lambda_scope_stack;
    1491                 :             : 
    1492                 :             : // Push DECL as lambda extra scope, also new discriminator counters.
    1493                 :             : 
    1494                 :             : void
    1495                 :   191146355 : start_lambda_scope (tree decl)
    1496                 :             : {
    1497                 :   191146355 :   gcc_checking_assert (decl);
    1498                 :   191146355 :   if (current_function_decl && VAR_P (decl))
    1499                 :             :     // If we're inside a function, we ignore variable scope.  Don't push.
    1500                 :    38608091 :     lambda_scope.nesting++;
    1501                 :             :   else
    1502                 :             :     {
    1503                 :   152538264 :       vec_safe_push (lambda_scope_stack, lambda_scope);
    1504                 :   152538264 :       lambda_scope.scope = decl;
    1505                 :   152538264 :       lambda_scope.nesting = 0;
    1506                 :   152538264 :       lambda_scope.count = 0;
    1507                 :   152538264 :       lambda_scope.discriminators = nullptr;
    1508                 :             :     }
    1509                 :   191146355 : }
    1510                 :             : 
    1511                 :             : // Pop from the current lambda extra scope.
    1512                 :             : 
    1513                 :             : void
    1514                 :   191146312 : finish_lambda_scope (void)
    1515                 :             : {
    1516                 :   191146312 :   if (!lambda_scope.nesting--)
    1517                 :             :     {
    1518                 :   152538221 :       lambda_scope = lambda_scope_stack->last ();
    1519                 :   152538221 :       lambda_scope_stack->pop ();
    1520                 :             :     }
    1521                 :   191146312 : }
    1522                 :             : 
    1523                 :             : // Record the current lambda scope into LAMBDA
    1524                 :             : 
    1525                 :             : void
    1526                 :      666970 : record_lambda_scope (tree lambda)
    1527                 :             : {
    1528                 :      666970 :   LAMBDA_EXPR_EXTRA_SCOPE (lambda) = lambda_scope.scope;
    1529                 :      666970 :   if (lambda_scope.scope)
    1530                 :             :     {
    1531                 :      666648 :       tree closure = LAMBDA_EXPR_CLOSURE (lambda);
    1532                 :      666648 :       gcc_checking_assert (closure);
    1533                 :      666648 :       maybe_key_decl (lambda_scope.scope, TYPE_NAME (closure));
    1534                 :             :     }
    1535                 :      666970 : }
    1536                 :             : 
    1537                 :             : // Compare lambda template heads TMPL_A and TMPL_B, used for both
    1538                 :             : // templated lambdas, and template template parameters of said lambda.
    1539                 :             : 
    1540                 :             : static bool
    1541                 :        4572 : compare_lambda_template_head (tree tmpl_a, tree tmpl_b)
    1542                 :             : {
    1543                 :             :   // We only need one level of template parms
    1544                 :        4572 :   tree inner_a = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl_a));
    1545                 :        4572 :   tree inner_b = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl_b));
    1546                 :             : 
    1547                 :             :   // We only compare explicit template parms, ignoring trailing
    1548                 :             :   // synthetic ones.
    1549                 :        4572 :   int len_a = TREE_VEC_LENGTH (inner_a);
    1550                 :        4572 :   int len_b = TREE_VEC_LENGTH (inner_b);
    1551                 :             :   
    1552                 :        4916 :   for (int ix = 0, len = MAX (len_a, len_b); ix != len; ix++)
    1553                 :             :     {
    1554                 :        4606 :       tree parm_a = NULL_TREE;
    1555                 :        4606 :       if (ix < len_a)
    1556                 :             :         {
    1557                 :        4600 :           parm_a = TREE_VEC_ELT (inner_a, ix);
    1558                 :        4600 :           if (parm_a == error_mark_node)
    1559                 :             :             return false;
    1560                 :        4600 :           parm_a = TREE_VALUE (parm_a);
    1561                 :        4600 :           if (parm_a == error_mark_node)
    1562                 :             :             return false;
    1563                 :        4600 :           if (DECL_VIRTUAL_P (parm_a))
    1564                 :        4236 :             parm_a = NULL_TREE;
    1565                 :             :         }
    1566                 :             :       
    1567                 :        4606 :       tree parm_b = NULL_TREE;
    1568                 :        4606 :       if (ix < len_b)
    1569                 :             :         {
    1570                 :        4587 :           parm_b = TREE_VEC_ELT (inner_b, ix);
    1571                 :        4587 :           if (parm_b == error_mark_node)
    1572                 :             :             return false;
    1573                 :        4587 :           parm_b = TREE_VALUE (parm_b);
    1574                 :        4587 :           if (parm_b == error_mark_node)
    1575                 :             :             return false;
    1576                 :        4575 :           if (DECL_VIRTUAL_P (parm_b))
    1577                 :        4197 :             parm_b = NULL_TREE;
    1578                 :             :         }
    1579                 :             : 
    1580                 :        4594 :       if (!parm_a && !parm_b)
    1581                 :             :         // we're done
    1582                 :             :         break;
    1583                 :             : 
    1584                 :         421 :       if (!(parm_a && parm_b))
    1585                 :             :         return false;
    1586                 :             : 
    1587                 :         344 :       if (TREE_CODE (parm_a) != TREE_CODE (parm_b))
    1588                 :             :         return false;
    1589                 :             : 
    1590                 :         344 :       if (TREE_CODE (parm_a) == PARM_DECL)
    1591                 :             :         {
    1592                 :           4 :           if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm_a))
    1593                 :           4 :               != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm_b)))
    1594                 :             :             return false;
    1595                 :             : 
    1596                 :           4 :           if (!same_type_p (TREE_TYPE (parm_a), TREE_TYPE (parm_b)))
    1597                 :             :             return false;
    1598                 :             :         }
    1599                 :             :       else 
    1600                 :             :         {
    1601                 :         340 :           if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm_a))
    1602                 :         340 :               != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm_b)))
    1603                 :             :             return false;
    1604                 :             : 
    1605                 :         340 :           if (TREE_CODE (parm_a) != TEMPLATE_DECL)
    1606                 :         340 :             gcc_checking_assert (TREE_CODE (parm_a) == TYPE_DECL);
    1607                 :           0 :           else if (!compare_lambda_template_head (parm_a, parm_b))
    1608                 :             :             return false;
    1609                 :             :         }
    1610                 :             :     }
    1611                 :             : 
    1612                 :             :   return true;
    1613                 :             : }
    1614                 :             : 
    1615                 :             : // Compare lambda signatures FN_A and FN_B, they may be TEMPLATE_DECLs too.
    1616                 :             : 
    1617                 :             : static bool
    1618                 :       87335 : compare_lambda_sig (tree fn_a, tree fn_b)
    1619                 :             : {
    1620                 :       87335 :   if (TREE_CODE (fn_a) == TEMPLATE_DECL
    1621                 :        4776 :       && TREE_CODE (fn_b) == TEMPLATE_DECL)
    1622                 :             :     {
    1623                 :        4572 :       if (!compare_lambda_template_head (fn_a, fn_b))
    1624                 :             :         return false;
    1625                 :        4483 :       fn_a = DECL_TEMPLATE_RESULT (fn_a);
    1626                 :        4483 :       fn_b = DECL_TEMPLATE_RESULT (fn_b);
    1627                 :             :     }
    1628                 :       82763 :   else if (TREE_CODE (fn_a) == TEMPLATE_DECL
    1629                 :       82559 :            || TREE_CODE (fn_b) == TEMPLATE_DECL)
    1630                 :             :     return false;
    1631                 :             : 
    1632                 :       86876 :   if (fn_a == error_mark_node
    1633                 :       86875 :       || fn_b == error_mark_node)
    1634                 :             :     return false;
    1635                 :             : 
    1636                 :       86875 :   for (tree args_a = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (fn_a))),
    1637                 :       86875 :          args_b = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (fn_b)));
    1638                 :      157911 :        args_a || args_b;
    1639                 :       71036 :        args_a = TREE_CHAIN (args_a), args_b = TREE_CHAIN (args_b))
    1640                 :             :     {
    1641                 :      118345 :       if (!args_a || !args_b)
    1642                 :             :         return false;
    1643                 :             :       // This check also deals with differing variadicness
    1644                 :      118337 :       if (!same_type_p (TREE_VALUE (args_a), TREE_VALUE (args_b)))
    1645                 :             :         return false;
    1646                 :             :     }
    1647                 :             : 
    1648                 :             :   return true;
    1649                 :             : }
    1650                 :             : 
    1651                 :             : // Record the per-scope discriminator of LAMBDA.  If the extra scope
    1652                 :             : // is empty, we must use the empty scope counter, which might not be
    1653                 :             : // the live one.
    1654                 :             : 
    1655                 :             : void
    1656                 :      667138 : record_lambda_scope_discriminator (tree lambda)
    1657                 :             : {
    1658                 :     1333886 :   auto *slot = (vec_safe_is_empty (lambda_scope_stack)
    1659                 :      666748 :                 || LAMBDA_EXPR_EXTRA_SCOPE (lambda)
    1660                 :         100 :                 ? &lambda_scope : lambda_scope_stack->begin ());
    1661                 :      667138 :   LAMBDA_EXPR_SCOPE_ONLY_DISCRIMINATOR (lambda) = slot->count++;
    1662                 :      667138 : }
    1663                 :             : 
    1664                 :             : // Record the per-scope per-signature discriminator of LAMBDA.  If the
    1665                 :             : // extra scope is empty, we must use the empty scope counter, which
    1666                 :             : // might not be the live one.
    1667                 :             : 
    1668                 :             : void
    1669                 :      667128 : record_lambda_scope_sig_discriminator (tree lambda, tree fn)
    1670                 :             : {
    1671                 :     1333866 :   auto *slot = (vec_safe_is_empty (lambda_scope_stack)
    1672                 :      666738 :                 || LAMBDA_EXPR_EXTRA_SCOPE (lambda)
    1673                 :          99 :                 ? &lambda_scope : lambda_scope_stack->begin ());
    1674                 :      667128 :   gcc_checking_assert (LAMBDA_EXPR_EXTRA_SCOPE (lambda) == slot->scope);
    1675                 :             : 
    1676                 :             :   // A linear search, we're not expecting this to be a big list, and
    1677                 :             :   // this avoids needing a signature hash function.
    1678                 :      667128 :   lambda_sig_count *sig;
    1679                 :      667128 :   if (unsigned ix = vec_safe_length (slot->discriminators))
    1680                 :      129765 :     for (sig = slot->discriminators->begin (); ix--; sig++)
    1681                 :       87335 :       if (compare_lambda_sig (fn, sig->fn))
    1682                 :       39566 :         goto found;
    1683                 :      627562 :   {
    1684                 :      627562 :     lambda_sig_count init = {fn, 0};
    1685                 :      627562 :     sig = vec_safe_push (slot->discriminators, init);
    1686                 :             :   }
    1687                 :      667128 :  found:
    1688                 :      667128 :   LAMBDA_EXPR_SCOPE_SIG_DISCRIMINATOR (lambda) = sig->count++;
    1689                 :      667128 : }
    1690                 :             : 
    1691                 :             : tree
    1692                 :      667099 : start_lambda_function (tree fco, tree lambda_expr)
    1693                 :             : {
    1694                 :             :   /* Let the front end know that we are going to be defining this
    1695                 :             :      function.  */
    1696                 :      667099 :   start_preparsed_function (fco,
    1697                 :             :                             NULL_TREE,
    1698                 :             :                             SF_PRE_PARSED | SF_INCLASS_INLINE);
    1699                 :             : 
    1700                 :      667099 :   tree body = begin_function_body ();
    1701                 :             : 
    1702                 :             :   /* Push the proxies for any explicit captures.  */
    1703                 :     1329920 :   for (tree cap = LAMBDA_EXPR_CAPTURE_LIST (lambda_expr); cap;
    1704                 :      662821 :        cap = TREE_CHAIN (cap))
    1705                 :      662821 :     build_capture_proxy (TREE_PURPOSE (cap), TREE_VALUE (cap));
    1706                 :             : 
    1707                 :      667099 :   return body;
    1708                 :             : }
    1709                 :             : 
    1710                 :             : /* Subroutine of prune_lambda_captures: CAP is a node in
    1711                 :             :    LAMBDA_EXPR_CAPTURE_LIST.  Return the variable it captures for which we
    1712                 :             :    might optimize away the capture, or NULL_TREE if there is no such
    1713                 :             :    variable.  */
    1714                 :             : 
    1715                 :             : static tree
    1716                 :         134 : var_to_maybe_prune (tree cap)
    1717                 :             : {
    1718                 :         134 :   if (LAMBDA_CAPTURE_EXPLICIT_P (cap))
    1719                 :             :     /* Don't prune explicit captures.  */
    1720                 :             :     return NULL_TREE;
    1721                 :             : 
    1722                 :         125 :   tree mem = TREE_PURPOSE (cap);
    1723                 :         250 :   if (!DECL_P (mem) || !DECL_NORMAL_CAPTURE_P (mem))
    1724                 :             :     /* Packs and init-captures aren't captures of constant vars.  */
    1725                 :             :     return NULL_TREE;
    1726                 :             : 
    1727                 :         125 :   tree init = TREE_VALUE (cap);
    1728                 :         125 :   if (is_normal_capture_proxy (init))
    1729                 :           3 :     init = DECL_CAPTURED_VARIABLE (init);
    1730                 :         125 :   if (decl_constant_var_p (init))
    1731                 :             :     return init;
    1732                 :             : 
    1733                 :             :   return NULL_TREE;
    1734                 :             : }
    1735                 :             : 
    1736                 :             : /* walk_tree helper for prune_lambda_captures: Remember which capture proxies
    1737                 :             :    for constant variables are actually used in the lambda body.
    1738                 :             : 
    1739                 :             :    There will always be a DECL_EXPR for the capture proxy; remember it when we
    1740                 :             :    see it, but replace it with any other use.  */
    1741                 :             : 
    1742                 :             : static tree
    1743                 :        3334 : mark_const_cap_r (tree *t, int *walk_subtrees, void *data)
    1744                 :             : {
    1745                 :        3334 :   hash_map<tree,tree*> &const_vars = *(hash_map<tree,tree*>*)data;
    1746                 :             : 
    1747                 :        3334 :   tree var = NULL_TREE;
    1748                 :        3334 :   if (TREE_CODE (*t) == DECL_EXPR)
    1749                 :             :     {
    1750                 :         197 :       tree decl = DECL_EXPR_DECL (*t);
    1751                 :         197 :       if (is_constant_capture_proxy (decl))
    1752                 :             :         {
    1753                 :          65 :           var = DECL_CAPTURED_VARIABLE (decl);
    1754                 :          65 :           *walk_subtrees = 0;
    1755                 :             :         }
    1756                 :             :     }
    1757                 :        3137 :   else if (!location_wrapper_p (*t) /* is_capture_proxy dislikes them.  */
    1758                 :        3137 :            && is_constant_capture_proxy (*t))
    1759                 :           6 :     var = DECL_CAPTURED_VARIABLE (*t);
    1760                 :             : 
    1761                 :        3334 :   if (var)
    1762                 :             :     {
    1763                 :          71 :       tree *&slot = const_vars.get_or_insert (var);
    1764                 :          71 :       if (!slot || VAR_P (*t))
    1765                 :          71 :         slot = t;
    1766                 :             :     }
    1767                 :             : 
    1768                 :        3334 :   return NULL_TREE;
    1769                 :             : }
    1770                 :             : 
    1771                 :             : /* We're at the end of processing a lambda; go back and remove any captures of
    1772                 :             :    constant variables for which we've folded away all uses.  */
    1773                 :             : 
    1774                 :             : static void
    1775                 :      667099 : prune_lambda_captures (tree body)
    1776                 :             : {
    1777                 :      667099 :   tree lam = current_lambda_expr ();
    1778                 :      667099 :   if (!LAMBDA_EXPR_CAPTURE_OPTIMIZED (lam))
    1779                 :             :     /* No uses were optimized away.  */
    1780                 :      667031 :     return;
    1781                 :         100 :   if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lam) == CPLD_NONE)
    1782                 :             :     /* No default captures, and we don't prune explicit captures.  */
    1783                 :             :     return;
    1784                 :             :   /* Don't bother pruning in a template, we'll prune at instantiation time.  */
    1785                 :          88 :   if (dependent_type_p (TREE_TYPE (lam)))
    1786                 :             :     return;
    1787                 :             : 
    1788                 :          68 :   hash_map<tree,tree*> const_vars;
    1789                 :             : 
    1790                 :          68 :   cp_walk_tree_without_duplicates (&body, mark_const_cap_r, &const_vars);
    1791                 :             : 
    1792                 :          68 :   tree *fieldp = &TYPE_FIELDS (LAMBDA_EXPR_CLOSURE (lam));
    1793                 :         202 :   for (tree *capp = &LAMBDA_EXPR_CAPTURE_LIST (lam); *capp; )
    1794                 :             :     {
    1795                 :         134 :       tree cap = *capp;
    1796                 :         134 :       if (tree var = var_to_maybe_prune (cap))
    1797                 :             :         {
    1798                 :          68 :           tree **use = const_vars.get (var);
    1799                 :          68 :           if (use && TREE_CODE (**use) == DECL_EXPR)
    1800                 :             :             {
    1801                 :             :               /* All uses of this capture were folded away, leaving only the
    1802                 :             :                  proxy declaration.  */
    1803                 :             : 
    1804                 :             :               /* Splice the capture out of LAMBDA_EXPR_CAPTURE_LIST.  */
    1805                 :          59 :               *capp = TREE_CHAIN (cap);
    1806                 :             : 
    1807                 :             :               /* And out of TYPE_FIELDS.  */
    1808                 :          59 :               tree field = TREE_PURPOSE (cap);
    1809                 :         131 :               while (*fieldp != field)
    1810                 :          72 :                 fieldp = &DECL_CHAIN (*fieldp);
    1811                 :          59 :               *fieldp = DECL_CHAIN (*fieldp);
    1812                 :             : 
    1813                 :             :               /* And remove the capture proxy declaration.  */
    1814                 :          59 :               **use = void_node;
    1815                 :          59 :               continue;
    1816                 :          59 :             }
    1817                 :             :         }
    1818                 :             : 
    1819                 :          75 :       capp = &TREE_CHAIN (cap);
    1820                 :             :     }
    1821                 :          68 : }
    1822                 :             : 
    1823                 :             : // Record the per-scope per-signature discriminator of LAMBDA.  If the
    1824                 :             : // extra scope is empty, we must use the empty scope counter, which
    1825                 :             : // might not be the live one.
    1826                 :             : 
    1827                 :             : void
    1828                 :      667099 : finish_lambda_function (tree body)
    1829                 :             : {
    1830                 :      667099 :   finish_function_body (body);
    1831                 :             : 
    1832                 :      667099 :   prune_lambda_captures (body);
    1833                 :             : 
    1834                 :             :   /* Finish the function and generate code for it if necessary.  */
    1835                 :      667099 :   tree fn = finish_function (/*inline_p=*/true);
    1836                 :             : 
    1837                 :             :   /* Only expand if the call op is not a template.  */
    1838                 :      667099 :   if (!DECL_TEMPLATE_INFO (fn))
    1839                 :      219001 :     expand_or_defer_fn (fn);
    1840                 :      667099 : }
    1841                 :             : 
    1842                 :             : #include "gt-cp-lambda.h"
        

Generated by: LCOV version 2.1-beta

LCOV profile is generated on x86_64 machine using following configure options: configure --disable-bootstrap --enable-coverage=opt --enable-languages=c,c++,fortran,go,jit,lto,rust,m2 --enable-host-shared. GCC test suite is run with the built compiler.