LCOV - code coverage report
Current view: top level - gcc - gimple-expr.cc (source / functions) Coverage Total Hit
Test: gcc.info Lines: 93.4 % 378 353
Test Date: 2026-02-28 14:20:25 Functions: 97.1 % 34 33
Legend: Lines:     hit not hit

            Line data    Source code
       1              : /* Gimple decl, type, and expression support functions.
       2              : 
       3              :    Copyright (C) 2007-2026 Free Software Foundation, Inc.
       4              :    Contributed by Aldy Hernandez <aldyh@redhat.com>
       5              : 
       6              : This file is part of GCC.
       7              : 
       8              : GCC is free software; you can redistribute it and/or modify it under
       9              : the terms of the GNU General Public License as published by the Free
      10              : Software Foundation; either version 3, or (at your option) any later
      11              : version.
      12              : 
      13              : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
      14              : WARRANTY; without even the implied warranty of MERCHANTABILITY or
      15              : FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
      16              : for more details.
      17              : 
      18              : You should have received a copy of the GNU General Public License
      19              : along with GCC; see the file COPYING3.  If not see
      20              : <http://www.gnu.org/licenses/>.  */
      21              : 
      22              : #include "config.h"
      23              : #include "system.h"
      24              : #include "coretypes.h"
      25              : #include "backend.h"
      26              : #include "tree.h"
      27              : #include "gimple.h"
      28              : #include "stringpool.h"
      29              : #include "gimple-ssa.h"
      30              : #include "fold-const.h"
      31              : #include "tree-eh.h"
      32              : #include "gimplify.h"
      33              : #include "stor-layout.h"
      34              : #include "demangle.h"
      35              : #include "hash-set.h"
      36              : #include "rtl.h"
      37              : #include "tree-pass.h"
      38              : #include "stringpool.h"
      39              : #include "attribs.h"
      40              : #include "target.h"
      41              : 
      42              : /* ----- Type related -----  */
      43              : 
      44              : /* Return true if the conversion from INNER_TYPE to OUTER_TYPE is a
      45              :    useless type conversion, otherwise return false.
      46              : 
      47              :    This function implicitly defines the middle-end type system.  With
      48              :    the notion of 'a < b' meaning that useless_type_conversion_p (a, b)
      49              :    holds and 'a > b' meaning that useless_type_conversion_p (b, a) holds,
      50              :    the following invariants shall be fulfilled:
      51              : 
      52              :      1) useless_type_conversion_p is transitive.
      53              :         If a < b and b < c then a < c.
      54              : 
      55              :      2) useless_type_conversion_p is not symmetric.
      56              :         From a < b does not follow a > b.
      57              : 
      58              :      3) Types define the available set of operations applicable to values.
      59              :         A type conversion is useless if the operations for the target type
      60              :         is a subset of the operations for the source type.  For example
      61              :         casts to void* are useless, casts from void* are not (void* can't
      62              :         be dereferenced or offsetted, but copied, hence its set of operations
      63              :         is a strict subset of that of all other data pointer types).  Casts
      64              :         to const T* are useless (can't be written to), casts from const T*
      65              :         to T* are not.  */
      66              : 
      67              : bool
      68  11818536711 : useless_type_conversion_p (tree outer_type, tree inner_type)
      69              : {
      70              :   /* Do the following before stripping toplevel qualifiers.  */
      71  11819071157 :   if (POINTER_TYPE_P (inner_type)
      72   2963071429 :       && POINTER_TYPE_P (outer_type))
      73              :     {
      74              :       /* Do not lose casts between pointers to different address spaces.  */
      75   2933672255 :       if (TYPE_ADDR_SPACE (TREE_TYPE (outer_type))
      76   2933672255 :           != TYPE_ADDR_SPACE (TREE_TYPE (inner_type)))
      77              :         return false;
      78              :       /* Do not lose casts to function pointer types.  */
      79   5791091544 :       if (FUNC_OR_METHOD_TYPE_P (TREE_TYPE (outer_type))
      80   2940939712 :           && !FUNC_OR_METHOD_TYPE_P (TREE_TYPE (inner_type)))
      81              :         return false;
      82              :     }
      83              : 
      84              :   /* From now on qualifiers on value types do not matter.  */
      85  11817600872 :   inner_type = TYPE_MAIN_VARIANT (inner_type);
      86  11817600872 :   outer_type = TYPE_MAIN_VARIANT (outer_type);
      87              : 
      88  11817600872 :   if (inner_type == outer_type)
      89              :     return true;
      90              : 
      91              :   /* Changes in machine mode are never useless conversions because the RTL
      92              :      middle-end expects explicit conversions between modes.  */
      93   1046589053 :   if (TYPE_MODE (inner_type) != TYPE_MODE (outer_type))
      94              :     return false;
      95              : 
      96              :   /* If both the inner and outer types are integral types, then the
      97              :      conversion is not necessary if they have the same mode and
      98              :      signedness and precision, and both or neither are boolean.  */
      99    939480281 :   if (INTEGRAL_TYPE_P (inner_type)
     100    173962304 :       && INTEGRAL_TYPE_P (outer_type))
     101              :     {
     102              :       /* Preserve changes in signedness or precision.  */
     103    161777344 :       if (TYPE_UNSIGNED (inner_type) != TYPE_UNSIGNED (outer_type)
     104    161777344 :           || TYPE_PRECISION (inner_type) != TYPE_PRECISION (outer_type))
     105              :         return false;
     106              : 
     107              :       /* Preserve conversions to/from BOOLEAN_TYPE if types are not
     108              :          of precision one.  */
     109     67428784 :       if (((TREE_CODE (inner_type) == BOOLEAN_TYPE)
     110     67428784 :            != (TREE_CODE (outer_type) == BOOLEAN_TYPE))
     111     67428784 :           && TYPE_PRECISION (outer_type) != 1)
     112              :         return false;
     113              : 
     114              :       /* Preserve conversions to/from BITINT_TYPE.  While we don't
     115              :          need to care that much about such conversions within a function's
     116              :          body, we need to prevent changing BITINT_TYPE to INTEGER_TYPE
     117              :          of the same precision or vice versa when passed to functions,
     118              :          especially for varargs.  */
     119     67376933 :       if ((TREE_CODE (inner_type) == BITINT_TYPE)
     120     67376933 :           != (TREE_CODE (outer_type) == BITINT_TYPE))
     121              :         return false;
     122              : 
     123              :       /* We don't need to preserve changes in the types minimum or
     124              :          maximum value in general as these do not generate code
     125              :          unless the types precisions are different.  */
     126              :       return true;
     127              :     }
     128              : 
     129              :   /* Scalar floating point types with the same mode are compatible.  */
     130    777702937 :   else if (SCALAR_FLOAT_TYPE_P (inner_type)
     131       581154 :            && SCALAR_FLOAT_TYPE_P (outer_type))
     132              :     return true;
     133              : 
     134              :   /* Fixed point types with the same mode are compatible.  */
     135    777124929 :   else if (FIXED_POINT_TYPE_P (inner_type)
     136            0 :            && FIXED_POINT_TYPE_P (outer_type))
     137            0 :     return TYPE_SATURATING (inner_type) == TYPE_SATURATING (outer_type);
     138              : 
     139              :   /* We need to take special care recursing to pointed-to types.  */
     140    777124929 :   else if (POINTER_TYPE_P (inner_type)
     141    750810524 :            && POINTER_TYPE_P (outer_type))
     142              :     {
     143              :       /* We do not care for const qualification of the pointed-to types
     144              :          as const qualification has no semantic value to the middle-end.  */
     145              : 
     146              :       /* Otherwise pointers/references are equivalent.  */
     147              :       return true;
     148              :     }
     149              : 
     150              :   /* Recurse for complex types.  */
     151     47218400 :   else if (TREE_CODE (inner_type) == COMPLEX_TYPE
     152        33467 :            && TREE_CODE (outer_type) == COMPLEX_TYPE)
     153        32609 :     return useless_type_conversion_p (TREE_TYPE (outer_type),
     154        65218 :                                       TREE_TYPE (inner_type));
     155              : 
     156              :   /* Recurse for vector types with the same number of subparts.  */
     157     47185791 :   else if (VECTOR_TYPE_P (inner_type)
     158      9615477 :            && VECTOR_TYPE_P (outer_type))
     159     19167238 :     return (known_eq (TYPE_VECTOR_SUBPARTS (inner_type),
     160              :                       TYPE_VECTOR_SUBPARTS (outer_type))
     161      9576747 :             && useless_type_conversion_p (TREE_TYPE (outer_type),
     162      9576747 :                                           TREE_TYPE (inner_type))
     163     18864841 :             && targetm.compatible_vector_types_p (inner_type, outer_type));
     164              : 
     165     37602172 :   else if (TREE_CODE (inner_type) == ARRAY_TYPE
     166       841552 :            && TREE_CODE (outer_type) == ARRAY_TYPE)
     167              :     {
     168              :       /* Preserve various attributes.  */
     169       679113 :       if (TYPE_REVERSE_STORAGE_ORDER (inner_type)
     170       679113 :           != TYPE_REVERSE_STORAGE_ORDER (outer_type))
     171              :         return false;
     172       679113 :       if (TYPE_STRING_FLAG (inner_type) != TYPE_STRING_FLAG (outer_type))
     173              :         return false;
     174              : 
     175              :       /* Conversions from array types with unknown extent to
     176              :          array types with known extent are not useless.  */
     177       644624 :       if (!TYPE_DOMAIN (inner_type) && TYPE_DOMAIN (outer_type))
     178              :         return false;
     179              : 
     180              :       /* Nor are conversions from array types with non-constant size to
     181              :          array types with constant size or to different size.  */
     182       642188 :       if (TYPE_SIZE (outer_type)
     183       625562 :           && TREE_CODE (TYPE_SIZE (outer_type)) == INTEGER_CST
     184      1241821 :           && (!TYPE_SIZE (inner_type)
     185       597937 :               || TREE_CODE (TYPE_SIZE (inner_type)) != INTEGER_CST
     186       596167 :               || !tree_int_cst_equal (TYPE_SIZE (outer_type),
     187       596167 :                                       TYPE_SIZE (inner_type))))
     188        41453 :         return false;
     189              : 
     190              :       /* Check conversions between arrays with partially known extents.
     191              :          If the array min/max values are constant they have to match.
     192              :          Otherwise allow conversions to unknown and variable extents.
     193              :          In particular this declares conversions that may change the
     194              :          mode to BLKmode as useless.  */
     195       600735 :       if (TYPE_DOMAIN (inner_type)
     196       600733 :           && TYPE_DOMAIN (outer_type)
     197      1201446 :           && TYPE_DOMAIN (inner_type) != TYPE_DOMAIN (outer_type))
     198              :         {
     199       134381 :           tree inner_min = TYPE_MIN_VALUE (TYPE_DOMAIN (inner_type));
     200       134381 :           tree outer_min = TYPE_MIN_VALUE (TYPE_DOMAIN (outer_type));
     201       134381 :           tree inner_max = TYPE_MAX_VALUE (TYPE_DOMAIN (inner_type));
     202       134381 :           tree outer_max = TYPE_MAX_VALUE (TYPE_DOMAIN (outer_type));
     203              : 
     204              :           /* After gimplification a variable min/max value carries no
     205              :              additional information compared to a NULL value.  All that
     206              :              matters has been lowered to be part of the IL.  */
     207       134381 :           if (inner_min && TREE_CODE (inner_min) != INTEGER_CST)
     208            0 :             inner_min = NULL_TREE;
     209       134381 :           if (outer_min && TREE_CODE (outer_min) != INTEGER_CST)
     210            0 :             outer_min = NULL_TREE;
     211       134381 :           if (inner_max && TREE_CODE (inner_max) != INTEGER_CST)
     212        24131 :             inner_max = NULL_TREE;
     213       134381 :           if (outer_max && TREE_CODE (outer_max) != INTEGER_CST)
     214        28394 :             outer_max = NULL_TREE;
     215              : 
     216              :           /* Conversions NULL / variable <- cst are useless, but not
     217              :              the other way around.  */
     218       134381 :           if (outer_min
     219       134381 :               && (!inner_min
     220       134381 :                   || !tree_int_cst_equal (inner_min, outer_min)))
     221         8546 :             return false;
     222       125835 :           if (outer_max
     223       125835 :               && (!inner_max
     224        97429 :                   || !tree_int_cst_equal (inner_max, outer_max)))
     225        90352 :             return false;
     226              :         }
     227              : 
     228              :       /* Recurse on the element check.  */
     229       501837 :       return useless_type_conversion_p (TREE_TYPE (outer_type),
     230      1003674 :                                         TREE_TYPE (inner_type));
     231              :     }
     232              : 
     233     36923059 :   else if (FUNC_OR_METHOD_TYPE_P (inner_type)
     234       320201 :            && TREE_CODE (inner_type) == TREE_CODE (outer_type))
     235              :     {
     236       314755 :       tree outer_parm, inner_parm;
     237              : 
     238              :       /* If the return types are not compatible bail out.  */
     239       314755 :       if (!useless_type_conversion_p (TREE_TYPE (outer_type),
     240       314755 :                                       TREE_TYPE (inner_type)))
     241              :         return false;
     242              : 
     243              :       /* Method types should belong to a compatible base class.  */
     244       306519 :       if (TREE_CODE (inner_type) == METHOD_TYPE
     245       321192 :           && !useless_type_conversion_p (TYPE_METHOD_BASETYPE (outer_type),
     246        14673 :                                          TYPE_METHOD_BASETYPE (inner_type)))
     247              :         return false;
     248              : 
     249              :       /* A conversion to an unprototyped argument list is ok.  */
     250       298746 :       if (!prototype_p (outer_type))
     251              :         return true;
     252              : 
     253              :       /* If the unqualified argument types are compatible the conversion
     254              :          is useless.  */
     255       298630 :       if (TYPE_ARG_TYPES (outer_type) == TYPE_ARG_TYPES (inner_type))
     256              :         return true;
     257              : 
     258       294246 :       for (outer_parm = TYPE_ARG_TYPES (outer_type),
     259       294246 :            inner_parm = TYPE_ARG_TYPES (inner_type);
     260      1236668 :            outer_parm && inner_parm;
     261       942422 :            outer_parm = TREE_CHAIN (outer_parm),
     262       942422 :            inner_parm = TREE_CHAIN (inner_parm))
     263      1891986 :         if (!useless_type_conversion_p
     264       945993 :                (TYPE_MAIN_VARIANT (TREE_VALUE (outer_parm)),
     265       945993 :                 TYPE_MAIN_VARIANT (TREE_VALUE (inner_parm))))
     266              :           return false;
     267              : 
     268              :       /* If there is a mismatch in the number of arguments the functions
     269              :          are not compatible.  */
     270       290675 :       if (outer_parm || inner_parm)
     271              :         return false;
     272              : 
     273              :       /* Defer to the target if necessary.  */
     274       289047 :       if (TYPE_ATTRIBUTES (inner_type) || TYPE_ATTRIBUTES (outer_type))
     275       279262 :         return comp_type_attributes (outer_type, inner_type) != 0;
     276              : 
     277              :       return true;
     278              :     }
     279              : 
     280              :   /* For aggregates we rely on TYPE_CANONICAL exclusively and require
     281              :      explicit conversions for types involving to be structurally
     282              :      compared types.  */
     283     36608304 :   else if (AGGREGATE_TYPE_P (inner_type)
     284      3468167 :            && TREE_CODE (inner_type) == TREE_CODE (outer_type))
     285      2334280 :     return TYPE_CANONICAL (inner_type)
     286      2334280 :            && TYPE_CANONICAL (inner_type) == TYPE_CANONICAL (outer_type);
     287              : 
     288     34274024 :   else if (TREE_CODE (inner_type) == OFFSET_TYPE
     289         9854 :            && TREE_CODE (outer_type) == OFFSET_TYPE)
     290         2558 :     return useless_type_conversion_p (TREE_TYPE (outer_type),
     291         2558 :                                       TREE_TYPE (inner_type))
     292         4936 :            && useless_type_conversion_p
     293         2378 :                 (TYPE_OFFSET_BASETYPE (outer_type),
     294         2378 :                  TYPE_OFFSET_BASETYPE (inner_type));
     295              : 
     296              :   return false;
     297              : }
     298              : 
     299              : 
     300              : /* ----- Decl related -----  */
     301              : 
     302              : /* Set sequence SEQ to be the GIMPLE body for function FN.  */
     303              : 
     304              : void
     305    125865968 : gimple_set_body (tree fndecl, gimple_seq seq)
     306              : {
     307    125865968 :   struct function *fn = DECL_STRUCT_FUNCTION (fndecl);
     308    125865968 :   if (fn == NULL)
     309              :     {
     310              :       /* If FNDECL still does not have a function structure associated
     311              :          with it, then it does not make sense for it to receive a
     312              :          GIMPLE body.  */
     313           62 :       gcc_assert (seq == NULL);
     314              :     }
     315              :   else
     316    125865906 :     fn->gimple_body = seq;
     317    125865968 : }
     318              : 
     319              : 
     320              : /* Return the body of GIMPLE statements for function FN.  After the
     321              :    CFG pass, the function body doesn't exist anymore because it has
     322              :    been split up into basic blocks.  In this case, it returns
     323              :    NULL.  */
     324              : 
     325              : gimple_seq
     326    429066642 : gimple_body (tree fndecl)
     327              : {
     328    429066642 :   struct function *fn = DECL_STRUCT_FUNCTION (fndecl);
     329    429066642 :   return fn ? fn->gimple_body : NULL;
     330              : }
     331              : 
     332              : /* Return true when FNDECL has Gimple body either in unlowered
     333              :    or CFG form.  */
     334              : bool
     335    393805528 : gimple_has_body_p (tree fndecl)
     336              : {
     337    393805528 :   struct function *fn = DECL_STRUCT_FUNCTION (fndecl);
     338    393805528 :   return (gimple_body (fndecl) || (fn && fn->cfg && !(fn->curr_properties & PROP_rtl)));
     339              : }
     340              : 
     341              : /* Return a printable name for symbol DECL.  */
     342              : 
     343              : const char *
     344        33700 : gimple_decl_printable_name (tree decl, int verbosity)
     345              : {
     346        33700 :   if (!DECL_NAME (decl))
     347              :     return NULL;
     348              : 
     349        33700 :   if (HAS_DECL_ASSEMBLER_NAME_P (decl) && DECL_ASSEMBLER_NAME_SET_P (decl))
     350              :     {
     351        33347 :       int dmgl_opts = DMGL_NO_OPTS;
     352              : 
     353        33347 :       if (verbosity >= 2)
     354              :         {
     355         4453 :           dmgl_opts = DMGL_VERBOSE
     356              :                       | DMGL_ANSI
     357              :                       | DMGL_GNU_V3
     358              :                       | DMGL_RET_POSTFIX;
     359         4453 :           if (TREE_CODE (decl) == FUNCTION_DECL)
     360         4380 :             dmgl_opts |= DMGL_PARAMS;
     361              :         }
     362              : 
     363        33347 :       const char *mangled_str
     364        33347 :         = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME_RAW (decl));
     365        33347 :       const char *str = cplus_demangle_v3 (mangled_str, dmgl_opts);
     366        65350 :       return str ? str : mangled_str;
     367              :     }
     368              : 
     369          353 :   return IDENTIFIER_POINTER (DECL_NAME (decl));
     370              : }
     371              : 
     372              : 
     373              : /* Create a new VAR_DECL and copy information from VAR to it.  */
     374              : 
     375              : tree
     376      1507558 : copy_var_decl (tree var, tree name, tree type)
     377              : {
     378      1507558 :   tree copy = build_decl (DECL_SOURCE_LOCATION (var), VAR_DECL, name, type);
     379              : 
     380      1507558 :   TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (var);
     381      1507558 :   TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (var);
     382      1507558 :   DECL_NOT_GIMPLE_REG_P (copy) = DECL_NOT_GIMPLE_REG_P (var);
     383      1507558 :   DECL_ARTIFICIAL (copy) = DECL_ARTIFICIAL (var);
     384      1507558 :   DECL_IGNORED_P (copy) = DECL_IGNORED_P (var);
     385      1507558 :   DECL_CONTEXT (copy) = DECL_CONTEXT (var);
     386      1507558 :   TREE_USED (copy) = 1;
     387      1507558 :   DECL_SEEN_IN_BIND_EXPR_P (copy) = 1;
     388      1507558 :   DECL_ATTRIBUTES (copy) = DECL_ATTRIBUTES (var);
     389      1507558 :   if (DECL_USER_ALIGN (var))
     390              :     {
     391          145 :       SET_DECL_ALIGN (copy, DECL_ALIGN (var));
     392          145 :       DECL_USER_ALIGN (copy) = 1;
     393              :     }
     394              : 
     395      1507558 :   copy_warning (copy, var);
     396      1507558 :   return copy;
     397              : }
     398              : 
     399              : /* Strip off a legitimate source ending from the input string NAME of
     400              :    length LEN.  Rather than having to know the names used by all of
     401              :    our front ends, we strip off an ending of a period followed by
     402              :    up to four characters.  (like ".cpp".)  */
     403              : 
     404              : static inline void
     405     23675735 : remove_suffix (char *name, int len)
     406              : {
     407     23675735 :   int i;
     408              : 
     409     89623655 :   for (i = 2; i < 7 && len > i; i++)
     410     67090012 :     if (name[len - i] == '.')
     411              :       {
     412      1142092 :         name[len - i] = '\0';
     413      1142092 :         break;
     414              :       }
     415     23675735 : }
     416              : 
     417              : /* Create a new temporary name with PREFIX.  Return an identifier.  */
     418              : 
     419              : static GTY(()) unsigned int tmp_var_id_num;
     420              : 
     421              : tree
     422     23675735 : create_tmp_var_name (const char *prefix)
     423              : {
     424     23675735 :   char *tmp_name;
     425              : 
     426     23675735 :   if (prefix)
     427              :     {
     428     23675735 :       char *preftmp = ASTRDUP (prefix);
     429              : 
     430     23675735 :       remove_suffix (preftmp, strlen (preftmp));
     431     23675735 :       prefix = preftmp;
     432              :     }
     433              : 
     434     23675735 :   ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
     435     23675735 :   return get_identifier (tmp_name);
     436              : }
     437              : 
     438              : /* Create a new temporary variable declaration of type TYPE.
     439              :    Do NOT push it into the current binding.  */
     440              : 
     441              : tree
     442     26969530 : create_tmp_var_raw (tree type, const char *prefix)
     443              : {
     444     26969530 :   tree tmp_var;
     445              : 
     446     46984363 :   tmp_var = build_decl (input_location,
     447     20014833 :                         VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
     448              :                         type);
     449              : 
     450              :   /* The variable was declared by the compiler.  */
     451     26969530 :   DECL_ARTIFICIAL (tmp_var) = 1;
     452              :   /* And we don't want debug info for it.  */
     453     26969530 :   DECL_IGNORED_P (tmp_var) = 1;
     454              :   /* And we don't want even the fancy names of those printed in
     455              :      -fdump-final-insns= dumps.  */
     456     26969530 :   DECL_NAMELESS (tmp_var) = 1;
     457              : 
     458              :   /* Make the variable writable.  */
     459     26969530 :   TREE_READONLY (tmp_var) = 0;
     460              : 
     461     26969530 :   DECL_EXTERNAL (tmp_var) = 0;
     462     26969530 :   TREE_STATIC (tmp_var) = 0;
     463     26969530 :   TREE_USED (tmp_var) = 1;
     464              : 
     465     26969530 :   return tmp_var;
     466              : }
     467              : 
     468              : /* Create a new temporary variable declaration of type TYPE.  DO push the
     469              :    variable into the current binding.  Further, assume that this is called
     470              :    only from gimplification or optimization, at which point the creation of
     471              :    certain types are bugs.  */
     472              : 
     473              : tree
     474     14954979 : create_tmp_var (tree type, const char *prefix)
     475              : {
     476     14954979 :   tree tmp_var;
     477              : 
     478              :   /* We don't allow types that are addressable (meaning we can't make copies),
     479              :      or incomplete.  We also used to reject every variable size objects here,
     480              :      but now support those for which a constant upper bound can be obtained.
     481              :      The processing for variable sizes is performed in gimple_add_tmp_var,
     482              :      point at which it really matters and possibly reached via paths not going
     483              :      through this function, e.g. after direct calls to create_tmp_var_raw.  */
     484     14954979 :   gcc_assert (!TREE_ADDRESSABLE (type) && COMPLETE_TYPE_P (type));
     485              : 
     486     14954979 :   tmp_var = create_tmp_var_raw (type, prefix);
     487     14954979 :   gimple_add_tmp_var (tmp_var);
     488     14954979 :   return tmp_var;
     489              : }
     490              : 
     491              : /* Create a new temporary variable declaration of type TYPE by calling
     492              :    create_tmp_var and if TYPE is a vector or a complex number, mark the new
     493              :    temporary as gimple register.  */
     494              : 
     495              : tree
     496      3530139 : create_tmp_reg (tree type, const char *prefix)
     497              : {
     498      3530139 :   return create_tmp_var (type, prefix);
     499              : }
     500              : 
     501              : /* Create a new temporary variable declaration of type TYPE by calling
     502              :    create_tmp_var and if TYPE is a vector or a complex number, mark the new
     503              :    temporary as gimple register.  */
     504              : 
     505              : tree
     506        34201 : create_tmp_reg_fn (struct function *fn, tree type, const char *prefix)
     507              : {
     508        34201 :   tree tmp;
     509              : 
     510        34201 :   tmp = create_tmp_var_raw (type, prefix);
     511        34201 :   gimple_add_tmp_var_fn (fn, tmp);
     512              : 
     513        34201 :   return tmp;
     514              : }
     515              : 
     516              : 
     517              : /* ----- Expression related -----  */
     518              : 
     519              : /* Extract the operands and code for expression EXPR into *SUBCODE_P,
     520              :    *OP1_P, *OP2_P and *OP3_P respectively.  */
     521              : 
     522              : void
     523    174601823 : extract_ops_from_tree (tree expr, enum tree_code *subcode_p, tree *op1_p,
     524              :                        tree *op2_p, tree *op3_p)
     525              : {
     526    174601823 :   *subcode_p = TREE_CODE (expr);
     527    174601823 :   switch (get_gimple_rhs_class (*subcode_p))
     528              :     {
     529       104872 :     case GIMPLE_TERNARY_RHS:
     530       104872 :       {
     531       104872 :         *op1_p = TREE_OPERAND (expr, 0);
     532       104872 :         *op2_p = TREE_OPERAND (expr, 1);
     533       104872 :         *op3_p = TREE_OPERAND (expr, 2);
     534       104872 :         break;
     535              :       }
     536     21178756 :     case GIMPLE_BINARY_RHS:
     537     21178756 :       {
     538     21178756 :         *op1_p = TREE_OPERAND (expr, 0);
     539     21178756 :         *op2_p = TREE_OPERAND (expr, 1);
     540     21178756 :         *op3_p = NULL_TREE;
     541     21178756 :         break;
     542              :       }
     543     11615787 :     case GIMPLE_UNARY_RHS:
     544     11615787 :       {
     545     11615787 :         *op1_p = TREE_OPERAND (expr, 0);
     546     11615787 :         *op2_p = NULL_TREE;
     547     11615787 :         *op3_p = NULL_TREE;
     548     11615787 :         break;
     549              :       }
     550    141702408 :     case GIMPLE_SINGLE_RHS:
     551    141702408 :       {
     552    141702408 :         *op1_p = expr;
     553    141702408 :         *op2_p = NULL_TREE;
     554    141702408 :         *op3_p = NULL_TREE;
     555    141702408 :         break;
     556              :       }
     557            0 :     default:
     558            0 :       gcc_unreachable ();
     559              :     }
     560    174601823 : }
     561              : 
     562              : /* Extract operands for a GIMPLE_COND statement out of COND_EXPR tree COND.  */
     563              : 
     564              : void
     565      6070011 : gimple_cond_get_ops_from_tree (tree cond, enum tree_code *code_p,
     566              :                                tree *lhs_p, tree *rhs_p)
     567              : {
     568      6070011 :   gcc_assert (COMPARISON_CLASS_P (cond)
     569              :               || TREE_CODE (cond) == TRUTH_NOT_EXPR
     570              :               || is_gimple_min_invariant (cond)
     571              :               || SSA_VAR_P (cond));
     572      6070011 :   gcc_checking_assert (!tree_could_throw_p (cond));
     573              : 
     574      6070011 :   extract_ops_from_tree (cond, code_p, lhs_p, rhs_p);
     575              : 
     576              :   /* Canonicalize conditionals of the form 'if (!VAL)'.  */
     577      6070011 :   if (*code_p == TRUTH_NOT_EXPR)
     578              :     {
     579            0 :       *code_p = EQ_EXPR;
     580            0 :       gcc_assert (*lhs_p && *rhs_p == NULL_TREE);
     581            0 :       *rhs_p = build_zero_cst (TREE_TYPE (*lhs_p));
     582              :     }
     583              :   /* Canonicalize conditionals of the form 'if (VAL)'  */
     584      6070011 :   else if (TREE_CODE_CLASS (*code_p) != tcc_comparison)
     585              :     {
     586      1833929 :       *code_p = NE_EXPR;
     587      1833929 :       gcc_assert (*lhs_p && *rhs_p == NULL_TREE);
     588      1833929 :       *rhs_p = build_zero_cst (TREE_TYPE (*lhs_p));
     589              :     }
     590      6070011 : }
     591              : 
     592              : /*  Return true if T is a valid LHS for a GIMPLE assignment expression.  */
     593              : 
     594              : bool
     595    255359275 : is_gimple_lvalue (tree t)
     596              : {
     597    255359275 :   return (is_gimple_addressable (t)
     598     15032470 :           || TREE_CODE (t) == WITH_SIZE_EXPR
     599              :           /* These are complex lvalues, but don't have addresses, so they
     600              :              go here.  */
     601    270367652 :           || TREE_CODE (t) == BIT_FIELD_REF);
     602              : }
     603              : 
     604              : /* Helper for is_gimple_condexpr and is_gimple_condexpr_for_cond.  */
     605              : 
     606              : static bool
     607     10216172 : is_gimple_condexpr_1 (tree t, bool allow_traps, bool allow_cplx)
     608              : {
     609     10216172 :   tree op0;
     610     10216172 :   return (is_gimple_val (t)
     611     10216172 :           || (COMPARISON_CLASS_P (t)
     612      7037431 :               && (allow_traps || !tree_could_throw_p (t))
     613      7030552 :               && ((op0 = TREE_OPERAND (t, 0)), true)
     614      7030552 :               && (allow_cplx || TREE_CODE (TREE_TYPE (op0)) != COMPLEX_TYPE)
     615      7030552 :               && is_gimple_val (op0)
     616      5446687 :               && is_gimple_val (TREE_OPERAND (t, 1))));
     617              : }
     618              : 
     619              : /* Like is_gimple_condexpr, but does not allow T to trap.  */
     620              : 
     621              : bool
     622      6567498 : is_gimple_condexpr_for_cond (tree t)
     623              : {
     624      6567498 :   return is_gimple_condexpr_1 (t, false, true);
     625              : }
     626              : 
     627              : /* Canonicalize a tree T for use in a COND_EXPR as conditional.  Returns
     628              :    a canonicalized tree that is valid for a COND_EXPR or NULL_TREE, if
     629              :    we failed to create one.  */
     630              : 
     631              : tree
     632      3648674 : canonicalize_cond_expr_cond (tree t)
     633              : {
     634              :   /* Strip conversions around boolean operations.  */
     635      3499108 :   if (CONVERT_EXPR_P (t)
     636      3648674 :       && (truth_value_p (TREE_CODE (TREE_OPERAND (t, 0)))
     637       148444 :           || TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0)))
     638              :              == BOOLEAN_TYPE))
     639         1126 :     t = TREE_OPERAND (t, 0);
     640              : 
     641              :   /* For !x use x == 0.  */
     642      3648674 :   if (TREE_CODE (t) == TRUTH_NOT_EXPR)
     643              :     {
     644        23245 :       tree top0 = TREE_OPERAND (t, 0);
     645        23245 :       t = build2 (EQ_EXPR, TREE_TYPE (t),
     646        23245 :                   top0, build_int_cst (TREE_TYPE (top0), 0));
     647              :     }
     648              :   /* For cmp ? 1 : 0 use cmp.  */
     649      3625429 :   else if (TREE_CODE (t) == COND_EXPR
     650       101347 :            && COMPARISON_CLASS_P (TREE_OPERAND (t, 0))
     651        99666 :            && integer_onep (TREE_OPERAND (t, 1))
     652      3725095 :            && integer_zerop (TREE_OPERAND (t, 2)))
     653              :     {
     654        99666 :       tree top0 = TREE_OPERAND (t, 0);
     655        99666 :       t = build2 (TREE_CODE (top0), TREE_TYPE (t),
     656        99666 :                   TREE_OPERAND (top0, 0), TREE_OPERAND (top0, 1));
     657              :     }
     658              :   /* For x ^ y use x != y.  */
     659      3525763 :   else if (TREE_CODE (t) == BIT_XOR_EXPR)
     660            0 :     t = build2 (NE_EXPR, TREE_TYPE (t),
     661            0 :                 TREE_OPERAND (t, 0), TREE_OPERAND (t, 1));
     662              : 
     663              :   /* We don't know where this will be used so allow both traps and
     664              :      _Complex.  The caller is responsible for more precise checking.  */
     665      3648674 :   if (is_gimple_condexpr_1 (t, true, true))
     666      1284774 :     return t;
     667              : 
     668              :   return NULL_TREE;
     669              : }
     670              : 
     671              : /* Return true if T is a gimple address.  */
     672              : 
     673              : bool
     674            0 : is_gimple_address (const_tree t)
     675              : {
     676            0 :   tree op;
     677              : 
     678            0 :   if (TREE_CODE (t) != ADDR_EXPR)
     679              :     return false;
     680              : 
     681            0 :   op = TREE_OPERAND (t, 0);
     682            0 :   while (handled_component_p (op))
     683              :     {
     684            0 :       if ((TREE_CODE (op) == ARRAY_REF
     685            0 :            || TREE_CODE (op) == ARRAY_RANGE_REF)
     686            0 :           && !is_gimple_val (TREE_OPERAND (op, 1)))
     687              :             return false;
     688              : 
     689            0 :       op = TREE_OPERAND (op, 0);
     690              :     }
     691              : 
     692            0 :   if (CONSTANT_CLASS_P (op)
     693            0 :       || TREE_CODE (op) == TARGET_MEM_REF
     694            0 :       || TREE_CODE (op) == MEM_REF)
     695              :     return true;
     696              : 
     697            0 :   switch (TREE_CODE (op))
     698              :     {
     699              :     case PARM_DECL:
     700              :     case RESULT_DECL:
     701              :     case LABEL_DECL:
     702              :     case FUNCTION_DECL:
     703              :     case VAR_DECL:
     704              :     case CONST_DECL:
     705              :       return true;
     706              : 
     707              :     default:
     708              :       return false;
     709              :     }
     710              : }
     711              : 
     712              : /* Return true if T is a gimple invariant address.  */
     713              : 
     714              : bool
     715   5723520415 : is_gimple_invariant_address (const_tree t)
     716              : {
     717   5723520415 :   const_tree op;
     718              : 
     719   5723520415 :   if (TREE_CODE (t) != ADDR_EXPR)
     720              :     return false;
     721              : 
     722   5723520415 :   op = strip_invariant_refs (TREE_OPERAND (t, 0));
     723   5723520415 :   if (!op)
     724              :     return false;
     725              : 
     726   5711544152 :   if (TREE_CODE (op) == MEM_REF)
     727              :     {
     728    458856032 :       const_tree op0 = TREE_OPERAND (op, 0);
     729    458856032 :       return (TREE_CODE (op0) == ADDR_EXPR
     730    458856032 :               && (CONSTANT_CLASS_P (TREE_OPERAND (op0, 0))
     731    159972006 :                   || decl_address_invariant_p (TREE_OPERAND (op0, 0))));
     732              :     }
     733              : 
     734   5252688120 :   return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
     735              : }
     736              : 
     737              : /* Return true if T is a gimple invariant address at IPA level
     738              :    (so addresses of variables on stack are not allowed).  */
     739              : 
     740              : bool
     741      2361664 : is_gimple_ip_invariant_address (const_tree t)
     742              : {
     743      2361664 :   const_tree op;
     744              : 
     745      2361664 :   if (TREE_CODE (t) != ADDR_EXPR)
     746              :     return false;
     747              : 
     748      2361664 :   op = strip_invariant_refs (TREE_OPERAND (t, 0));
     749      2361664 :   if (!op)
     750              :     return false;
     751              : 
     752      2360293 :   if (TREE_CODE (op) == MEM_REF)
     753              :     {
     754       120804 :       const_tree op0 = TREE_OPERAND (op, 0);
     755       120804 :       return (TREE_CODE (op0) == ADDR_EXPR
     756       120804 :               && (CONSTANT_CLASS_P (TREE_OPERAND (op0, 0))
     757        92179 :                   || decl_address_ip_invariant_p (TREE_OPERAND (op0, 0))));
     758              :     }
     759              : 
     760      2239489 :   return CONSTANT_CLASS_P (op) || decl_address_ip_invariant_p (op);
     761              : }
     762              : 
     763              : /* Return true if T is a GIMPLE minimal invariant.  It's a restricted
     764              :    form of function invariant.  */
     765              : 
     766              : bool
     767  22167856038 : is_gimple_min_invariant (const_tree t)
     768              : {
     769  22167856038 :   if (TREE_CODE (t) == ADDR_EXPR)
     770   5722303817 :     return is_gimple_invariant_address (t);
     771              : 
     772  16445552221 :   return is_gimple_constant (t);
     773              : }
     774              : 
     775              : /* Return true if T is a GIMPLE interprocedural invariant.  It's a restricted
     776              :    form of gimple minimal invariant.  */
     777              : 
     778              : bool
     779     25672133 : is_gimple_ip_invariant (const_tree t)
     780              : {
     781     25672133 :   if (TREE_CODE (t) == ADDR_EXPR)
     782      2360466 :     return is_gimple_ip_invariant_address (t);
     783              : 
     784     23311667 :   return is_gimple_constant (t);
     785              : }
     786              : 
     787              : /* Return true if T is a non-aggregate register variable.  */
     788              : 
     789              : bool
     790  44157730042 : is_gimple_reg (tree t)
     791              : {
     792  77083378877 :   if (virtual_operand_p (t))
     793              :     return false;
     794              : 
     795  44012487951 :   if (TREE_CODE (t) == SSA_NAME)
     796              :     return true;
     797              : 
     798  16249631776 :   if (!is_gimple_variable (t))
     799              :     return false;
     800              : 
     801   5536066087 :   if (!is_gimple_reg_type (TREE_TYPE (t)))
     802              :     return false;
     803              : 
     804              :   /* A volatile decl is not acceptable because we can't reuse it as
     805              :      needed.  We need to copy it into a temp first.  */
     806   2209326736 :   if (TREE_THIS_VOLATILE (t))
     807              :     return false;
     808              : 
     809              :   /* We define "registers" as things that can be renamed as needed,
     810              :      which with our infrastructure does not apply to memory.  */
     811   1967478900 :   if (needs_to_live_in_memory (t))
     812              :     return false;
     813              : 
     814              :   /* Hard register variables are an interesting case.  For those that
     815              :      are call-clobbered, we don't know where all the calls are, since
     816              :      we don't (want to) take into account which operations will turn
     817              :      into libcalls at the rtl level.  For those that are call-saved,
     818              :      we don't currently model the fact that calls may in fact change
     819              :      global hard registers, nor do we examine ASM_CLOBBERS at the tree
     820              :      level, and so miss variable changes that might imply.  All around,
     821              :      it seems safest to not do too much optimization with these at the
     822              :      tree level at all.  We'll have to rely on the rtl optimizers to
     823              :      clean this up, as there we've got all the appropriate bits exposed.  */
     824   1151588364 :   if (VAR_P (t) && DECL_HARD_REGISTER (t))
     825              :     return false;
     826              : 
     827              :   /* Variables can be marked as having partial definitions, avoid
     828              :      putting them into SSA form.  */
     829   1150139799 :   return !DECL_NOT_GIMPLE_REG_P (t);
     830              : }
     831              : 
     832              : 
     833              : /* Return true if T is a GIMPLE rvalue, i.e. an identifier or a constant.  */
     834              : 
     835              : bool
     836   9000674370 : is_gimple_val (tree t)
     837              : {
     838              :   /* Make loads from volatiles and memory vars explicit.  */
     839   9000674370 :   if (is_gimple_variable (t)
     840   4804122247 :       && is_gimple_reg_type (TREE_TYPE (t))
     841  13781384734 :       && !is_gimple_reg (t))
     842              :     return false;
     843              : 
     844              :   /* These eventually expand into constants, so treat them like that.  */
     845   8990214599 :   if (TREE_CODE (t) == OMP_NEXT_VARIANT
     846   8990214599 :       || TREE_CODE (t) == OMP_TARGET_DEVICE_MATCHES)
     847              :     return true;
     848              : 
     849   8990214547 :   return (is_gimple_variable (t) || is_gimple_min_invariant (t));
     850              : }
     851              : 
     852              : /* Similarly, but accept hard registers as inputs to asm statements.  */
     853              : 
     854              : bool
     855        43199 : is_gimple_asm_val (tree t)
     856              : {
     857        43199 :   if (VAR_P (t) && DECL_HARD_REGISTER (t))
     858              :     return true;
     859              : 
     860        42322 :   return is_gimple_val (t);
     861              : }
     862              : 
     863              : /* Return true if T is a GIMPLE minimal lvalue.  */
     864              : 
     865              : bool
     866     29935140 : is_gimple_min_lval (tree t)
     867              : {
     868     29935140 :   if (!(t = const_cast<tree> (strip_invariant_refs (t))))
     869              :     return false;
     870     29935125 :   return (is_gimple_id (t) || TREE_CODE (t) == MEM_REF);
     871              : }
     872              : 
     873              : /* Return true if T is a valid function operand of a CALL_EXPR.  */
     874              : 
     875              : bool
     876   1036919928 : is_gimple_call_addr (tree t)
     877              : {
     878   1036919928 :   return (TREE_CODE (t) == OBJ_TYPE_REF || is_gimple_val (t));
     879              : }
     880              : 
     881              : /* Return true if T is a valid address operand of a MEM_REF.  */
     882              : 
     883              : bool
     884   1389264320 : is_gimple_mem_ref_addr (tree t)
     885              : {
     886   1389264320 :   return (is_gimple_reg (t)
     887    377765760 :           || poly_int_tree_p (t)
     888   1766636364 :           || (TREE_CODE (t) == ADDR_EXPR
     889    375193139 :               && (CONSTANT_CLASS_P (TREE_OPERAND (t, 0))
     890    373285624 :                   || decl_address_invariant_p (TREE_OPERAND (t, 0)))));
     891              : }
     892              : 
     893              : /* Hold trees marked addressable during expand.  */
     894              : 
     895              : static hash_set<tree> *mark_addressable_queue;
     896              : 
     897              : /* Mark X as addressable or queue it up if called during expand.  We
     898              :    don't want to apply it immediately during expand because decls are
     899              :    made addressable at that point due to RTL-only concerns, such as
     900              :    uses of memcpy for block moves, and TREE_ADDRESSABLE changes
     901              :    is_gimple_reg, which might make it seem like a variable that used
     902              :    to be a gimple_reg shouldn't have been an SSA name.  So we queue up
     903              :    this flag setting and only apply it when we're done with GIMPLE and
     904              :    only RTL issues matter.  */
     905              : 
     906              : static void
     907     10891007 : mark_addressable_1 (tree x)
     908              : {
     909     10891007 :   if (!currently_expanding_to_rtl)
     910              :     {
     911     10833317 :       TREE_ADDRESSABLE (x) = 1;
     912     10833317 :       return;
     913              :     }
     914              : 
     915        57690 :   if (!mark_addressable_queue)
     916        14362 :     mark_addressable_queue = new hash_set<tree>();
     917        57690 :   mark_addressable_queue->add (x);
     918              : }
     919              : 
     920              : /* Adaptor for mark_addressable_1 for use in hash_set traversal.  */
     921              : 
     922              : static bool
     923        34922 : mark_addressable_2 (tree const &x, void * ATTRIBUTE_UNUSED = NULL)
     924              : {
     925        34922 :   mark_addressable_1 (x);
     926        34922 :   return false;
     927              : }
     928              : 
     929              : /* Mark all queued trees as addressable, and empty the queue.  To be
     930              :    called right after clearing CURRENTLY_EXPANDING_TO_RTL.  */
     931              : 
     932              : void
     933      1472140 : flush_mark_addressable_queue ()
     934              : {
     935      1472140 :   gcc_assert (!currently_expanding_to_rtl);
     936      1472140 :   if (mark_addressable_queue)
     937              :     {
     938        49284 :       mark_addressable_queue->traverse<void*, mark_addressable_2> (NULL);
     939        28724 :       delete mark_addressable_queue;
     940        14362 :       mark_addressable_queue = NULL;
     941              :     }
     942      1472140 : }
     943              : 
     944              : /* Mark X addressable.  Unlike the langhook we expect X to be in gimple
     945              :    form and we don't do any syntax checking.  */
     946              : 
     947              : void
     948     33231715 : mark_addressable (tree x)
     949              : {
     950     33231715 :   if (TREE_CODE (x) == WITH_SIZE_EXPR)
     951            0 :     x = TREE_OPERAND (x, 0);
     952     38558249 :   while (handled_component_p (x))
     953      5326534 :     x = TREE_OPERAND (x, 0);
     954     33231715 :   if ((TREE_CODE (x) == MEM_REF
     955     33231715 :        || TREE_CODE (x) == TARGET_MEM_REF)
     956     33231715 :       && TREE_CODE (TREE_OPERAND (x, 0)) == ADDR_EXPR)
     957        10648 :     x = TREE_OPERAND (TREE_OPERAND (x, 0), 0);
     958     33231715 :   if (!VAR_P (x)
     959              :       && TREE_CODE (x) != PARM_DECL
     960              :       && TREE_CODE (x) != RESULT_DECL)
     961              :     return;
     962     10848269 :   mark_addressable_1 (x);
     963              : 
     964              :   /* Also mark the artificial SSA_NAME that points to the partition of X.  */
     965     10848269 :   if (VAR_P (x)
     966     10249649 :       && !DECL_EXTERNAL (x)
     967      9118007 :       && !TREE_STATIC (x)
     968      5799393 :       && cfun->gimple_df != NULL
     969     16647662 :       && cfun->gimple_df->decls_to_pointers != NULL)
     970              :     {
     971        13095 :       tree *namep = cfun->gimple_df->decls_to_pointers->get (x);
     972        13095 :       if (namep)
     973         7816 :         mark_addressable_1 (*namep);
     974              :     }
     975              : }
     976              : 
     977              : /* Returns true iff T is a valid RHS for an assignment to a renamed
     978              :    user -- or front-end generated artificial -- variable.  */
     979              : 
     980              : bool
     981       816522 : is_gimple_reg_rhs (tree t)
     982              : {
     983       816522 :   return get_gimple_rhs_class (TREE_CODE (t)) != GIMPLE_INVALID_RHS;
     984              : }
     985              : 
     986              : #include "gt-gimple-expr.h"
        

Generated by: LCOV version 2.4-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.